@import url('https://fonts.googleapis.com/css2?family=Iansui&family=Kosugi+Maru&family=LXGW+Marker+Gothic&family=Mochiy+Pop+One&family=Roboto:ital,wght@0,100..900;1,100..900&family=Yusei+Magic&family=Zen+Maru+Gothic&display=swap');

:root {
    --banner-ratio-720: calc(100vw * (720 / 720)); /* 預設比例 */
    --banner-ratio-1024: calc(100vw * (624 / 1024));
    --banner-ratio-1440: calc(100vw * (624 / 1440));
    --banner-ratio-1280: calc(100vw * (720 / 1280));
    --banner-ratio-1920: calc(100vw * (624 / 1920));

    --text-color: #474646;
    --color-a4cb68: #a4cb68;
    --color-48382b: #48382b;
    --color-2ca47d: #2ca47d;
    --color-305a4c: #305a4c;
    --color-618c1f: #618c1f;
    --color-eaf0ca: #eaf0ca;
    --color-02512e: #02512e;
    --color-037a54: #037a54;
    --color-7e9f94: #7e9f94;
    --color-273b32: #273b32;
    --color-337357: #337357;
    --color-dfead7: #dfead7;
    --color-2e8b5e: #2e8b5e;
    --color-2e7413: #2e7413;
    --color-c93c21: #c93c21;
    --color-2d8b5d: #2d8b5d;
    --color-7e7e7e: #7e7e7e;
    --color-ef4d06: #ef4d06;
    --color-262626: #262626;
    --font-family: "Roboto", sans-serif;
    --heading-font-family: "Mochiy Pop One", "Yusei Magic", "LXGW Marker Gothic", "Zen Maru Gothic", "Kosugi Maru", sans-serif;
    --border-radius: 8px;
    --transition-duration: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font-family), "微軟正黑體", var(--font-family),
        "Noto Sans TC", sans-serif !important;
}

p {
    font-family: var(--font-family), "微軟正黑體", "Noto Sans TC", sans-serif !important;
    color: var(--text-color);
    font-weight: 500;
}

.w-fit {
    width: fit-content !important;
}

.tw-yusei {
    font-family: var(--heading-font-family), "微軟正黑體", var(--font-family),
        "Noto Sans TC", sans-serif !important;
}

.tw-roboto {
    font-family: var(--font-family), "微軟正黑體", "Noto Sans TC", sans-serif !important;
}

.text-48382b {
    color: var(--color-48382b) !important;
}

.text-a4cb68 {
    color: var(--color-a4cb68) !important;
}

.text-474646 {
    color: var(--text-color) !important;
}

.text-305a4c {
    color: var(--color-305a4c) !important;
}

.text-618c1f {
    color: var(--color-618c1f) !important;
}

.text-eaf0ca {
    color: var(--color-eaf0ca) !important;
}

.text-273b32 {
    color: var(--color-273b32) !important;
}

.text-02512e {
    color: var(--color-02512e) !important;
}

.text-dfead7 {
    color: var(--color-dfead7) !important;
}

.text-2e7413 {
    color: var(--color-2e7413) !important;
}

.text-c93c21 {
    color: var(--color-c93c21) !important;
}

.text-2d8b5d {
    color: var(--color-2d8b5d) !important;
}

.text-ef4d06 {
    color: var(--color-ef4d06) !important;
}

.text-262626 {
    color: var(--color-262626) !important;
}

.bg-2ca47d {
    background-color: var(--color-2ca47d) !important;
}

.bg-2d8b5d {
    background-color: var(--color-2d8b5d) !important;
}

.border-radius-20 {
    border-radius: 20px !important;
}

.btn:focus, .nav-link:focus, a:focus {
    /* box-shadow: none !important; */
    outline: none !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

/* Hero Section Styles / 英雄區域樣式 */
.hero-section {
    background: unset;
    display: block;
    min-height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#hero {
    min-height: auto !important;
}

#hero .item1,
#hero .item2,
#hero .item3 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* width: 100vw; */
}

#hero .item1 {
    background-image: url(../images/00-hp/banner01_624.jpg);
}
#hero .item2 {
    background-image: url(../images/00-hp/banner02_624.jpg);
}
#hero .item3 {
    background-image: url(../images/00-hp/banner03_624.jpg);
}

@media (max-width: 768px) {
    #hero .item1,
    #hero .item2,
    #hero .item3 {
        height: var(--banner-ratio-720);
        /* height: 100vw; 以正方形顯示 */
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #hero .item1,
    #hero .item2,
    #hero .item3 {
        height: var(--banner-ratio-1024);
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    #hero .item1,
    #hero .item2,
    #hero .item3 {
        height: var(--banner-ratio-1280);
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    #hero .item1,
    #hero .item2,
    #hero .item3 {
        height: var(--banner-ratio-1440);
    }
}

@media (min-width: 1440px) {
    #hero .item1,
    #hero .item2,
    #hero .item3 {
        height: var(--banner-ratio-1920);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #hero .item1 {
        background-image: url(../images/00-hp/banner01_1024.png);
    }
    #hero .item2 {
        background-image: url(../images/00-hp/banner02_1024.png);
    }
    #hero .item3 {
        background-image: url(../images/00-hp/banner03_1024.png);
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    #hero .item1 {
        background-image: url(../images/00-hp/banner01_1280.png);
    }
    #hero .item2 {
        background-image: url(../images/00-hp/banner02_1280.png);
    }
    #hero .item3 {
        background-image: url(../images/00-hp/banner03_1280.png);
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    #hero .item1 {
        background-image: url(../images/00-hp/banner01_1440.png);
    }
    #hero .item2 {
        background-image: url(../images/00-hp/banner02_1440.png);
    }
    #hero .item3 {
        background-image: url(../images/00-hp/banner03_1440.png);
    }
}

@media (min-width: 1440px) {
    #hero .item1 {
        background-image: url(../images/00-hp/banner01_1920.png);
    }
    #hero .item2 {
        background-image: url(../images/00-hp/banner02_1920.png);
    }
    #hero .item3 {
        background-image: url(../images/00-hp/banner03_1920.png);
    }
}

.cart-icon {
    position: fixed;
    top: 40%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    width: 100px;
    height: 100px;
}

.cart-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.cart-count {
    position: absolute;
    top: 0.7rem;
    right: 0.75rem;
    background-color: #efa162;
    color: white;
    border-radius: 50%;
    padding: 3.5px 6.85px;
    font-size: 12px;
    font-weight: bold;
    min-width: 23px;
    text-align: center;
}

@media (max-width: 768px) {
    .cart-icon {
        width: 70px;
        height: 70px;
    }
    .cart-count {
        top: 0.45rem;
        right: 0.45rem;
        padding: 2.5px 5px;
        font-size: 10px;
        min-width: 18px;
        text-align: center;
    }
}

/* Navbar */
.navbar {
    border: none;
}

/* .navbar .nav-item {

} */

.navbar .nav-link {
    font-family: var(--heading-font-family), "微軟正黑體", var(--font-family),
        "Noto Sans TC", sans-serif !important;
    font-size: 1.2rem;
    color: var(--color-48382b);
    margin: 0rem 0.2rem !important;
    border: none;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: white !important;
    transition: color var(--transition-duration) ease-in-out;
    background: url("../images/00-hp/menu-item-bg.png") no-repeat center center;
    background-size: contain;
}

.offcanvas {
    background-color: var(--color-2e8b5e);
}

.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus,
.offcanvas .nav-link.active {
    color: white;
    transition: color var(--transition-duration) ease-in-out;
    /* background: url('../images/00-hp/menu-item-bg.png') no-repeat center center;
    background-size: contain; */
    background-color: unset;
    padding: 0.75rem 1rem !important;
}

.offcanvas .nav-link {
    width: fit-content !important;
    padding: 0.75rem 1rem !important;
    font-family: var(--heading-font-family), "微軟正黑體", var(--font-family),
        "Noto Sans TC", sans-serif !important;
    font-size: 1.2rem;
    color: white;
    margin: 0rem 0.2rem !important;
    border: none;
}

.offcanvas-header {
    border: none;
}

.btn-close {
    color: #ffffff !important;
    --bs-btn-close-color: #ffffff !important;
    --bs-btn-close-opacity: 1 !important;
    --bs-btn-close-hover-opacity: 0.8 !important;
    filter: invert(1) !important;
}

@media (max-width: 768px) {
    .offcanvas-end {
        width: 50% !important;
        min-width: 200px !important;
    }
}

.hp-about-img {
    width: 100%;
    border-radius: 20px !important;
}

.btn-main {
    background-color: var(--color-2ca47d);
    padding: 3px 15px;
    border-radius: 30px;
}

.btn-main p {
    margin-bottom: 0 !important;
    color: white;
}

.btn-main p:first-child {
    margin-right: 6px;
}

.btn-main p:last-child {
    font-size: 12px;
}

/*
   重疊圖片相關的CSS已整合到JavaScript共用方法中
   現在透過createOverlapImageHandler自動生成CSS
   如需自訂樣式，請使用customImageCSS、customContainerCSS等配置選項
*/

/* Container for the overlapping area - 保留容器基礎樣式 */
.section-overlap-container {
    position: relative;
    height: 0;
    z-index: 15;
}

/*
   注意：.section-divider-image 的樣式現在由JavaScript自動生成
   不要在這裡手動添加相關CSS，以免與自動生成的樣式衝突
*/

.products-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}

.products-bg-right {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.product-item-img {
    border-radius: 20px !important;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.btn-products-item {
    padding: 1px 18px;
    border-radius: 30px;
    border: 2px solid var(--color-618c1f);
}

.btn-products-item p {
    margin-bottom: 0 !important;
    color: var(--color-618c1f) !important;
    font-weight: 600;
    font-size: smaller;
}

.products-section {
    background: url(../images/00-hp/product_bg_1024.jpg) no-repeat center center;
    background-size: cover;
}

@media (max-width: 768px) {
    .products-section {
        background-color: #282a2d;
        background-image: url(../images/00-hp/product_bg_750.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .products-section {
        background: url(../images/00-hp/product_bg_1024.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .products-section {
        background: url(../images/00-hp/product_bg_1280.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .products-section {
        background: url(../images/00-hp/product_bg_1440.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1440px) {
    .products-section {
        background: url(../images/00-hp/product_bg_1920.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

.choose-section {
    background: url(../images/00-hp/choose_bg1024.jpg) no-repeat center center;
    background-size: cover;
}

@media (max-width: 768px) {
    .choose-section {
        background-color: #282a2d;
        background-image: url(../images/00-hp/choose_bg750.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .choose-section {
        background: url(../images/00-hp/choose_bg1024.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .choose-section {
        background: url(../images/00-hp/choose_bg1280.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .choose-section {
        background: url(../images/00-hp/choose_bg1440.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1440px) {
    .choose-section {
        background: url(../images/00-hp/choose_bg1920.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

.choose-text .num {
    color: var(--color-2ca47d) !important;
    background-color: white;
    padding: 0 6px;
    border-radius: 50%;
    font-size: 12px !important;
}

.choose-text p {
    margin-bottom: 0 !important;
    color: var(--color-eaf0ca) !important;
    line-height: 1.8;
}

.contact-section {
    background: url(../images/00-hp/contact_bg1024.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

@media (max-width: 768px) {
    .contact-section {
        background-color: #282a2d;
        background-image: url(../images/00-hp/contact_bg624.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .contact-section {
        background: url(../images/00-hp/contact_bg1024.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .contact-section {
        background: url(../images/00-hp/contact_bg1280.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .contact-section {
        background: url(../images/00-hp/contact_bg1440.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1440px) {
    .contact-section {
        background: url(../images/00-hp/contact_bg1920.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

.contact-content {
    border-radius: 20px !important;
    background-color: white;
    position: relative;
}

.hp-contact-img {
    position: absolute;
    bottom: 30px;
    right: -15%;
    width: 50% !important;
}

.contact-map {
    border: 8px solid white;
    border-radius: 20px !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-map iframe {
    border-radius: 20px !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-bg-left {
    position: absolute;
    top: -20%;
    left: 0;
    z-index: 3;
}

@media (max-width: 768px) {
    .hp-contact-img {
        bottom: 12px;
        right: -5%;
    }
    .contact-map {
        height: 350px;
    }
}

.cta-box {
    border: 2px solid transparent;
    background: linear-gradient(72deg, var(--color-037a54), var(--color-037a54))
            padding-box,
        /* 內部背景 */
            linear-gradient(35deg, var(--color-eaf0ca), var(--color-eaf0ca))
            border-box; /* 邊框漸層 */
    background-clip: padding-box, border-box;
    border-radius: 20px !important;
    box-shadow: 0 4px 6px #7e9f94;
}

.cta-content {
    background: linear-gradient(
        72deg,
        var(--color-02512e),
        var(--color-037a54)
    );
    border-radius: 20px !important;
}

.footer {
    background: url(../images/00-hp/contact_bg1024.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

@media (max-width: 768px) {
    .footer {
        background-color: #282a2d;
        background-image: url(../images/00-hp/contact_bg624.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer {
        background: url(../images/00-hp/contact_bg1024.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .footer {
        background: url(../images/00-hp/contact_bg1280.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .footer {
        background: url(../images/00-hp/contact_bg1440.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1440px) {
    .footer {
        background: url(../images/00-hp/contact_bg1920.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

.footer-section {
    background: url(../images/00-hp/footer_bg1024.png) no-repeat center top;
    background-size: cover;
    position: relative;
}

@media (max-width: 768px) {
    .footer-section {
        /* background-color: #282a2d; */
        background-image: url(../images/00-hp/footer_bg750.png);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .footer-section {
        background: url(../images/00-hp/footer_bg1024.png) no-repeat center top;
        background-size: cover;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .footer-section {
        background: url(../images/00-hp/footer_bg1280.png) no-repeat center top;
        background-size: cover;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .footer-section {
        background: url(../images/00-hp/footer_bg1440.png) no-repeat center top;
        background-size: cover;
    }
}

@media (min-width: 1440px) {
    .footer-section {
        background: url(../images/00-hp/footer_bg1920.png) no-repeat center top;
        background-size: cover;
    }
}

.links p {
    padding-right: 15px;
    padding-left: 15px;
}

.links p:not(:first-child) {
    /* margin-left: 5px !important; */
    border-left: 1px solid var(--color-02512e);
}

.links p a,
.links p a:hover,
.links p a:focus {
    color: var(--color-02512e) !important;
    font-weight: 500;
}

.views p {
    color: var(--color-02512e);
    font-weight: 500;
}

.back-to-top {
    background: none;
    width: 85px;
    height: 85px;
    box-shadow: none;
}

.back-to-top:hover {
    background: none;
    box-shadow: none;
    transition: transform var(--transition-duration) ease-in-out;
}

.footer-cta-info p {
    font-weight: 500 !important;
}

.social-links-btn {
    position: fixed;
    z-index: 9;
    top: 50%;
    left: 2%;
    transform: translate(-5%, -50%);
    -webkit-transform: translate(-5%, -50%);
    -moz-transform: translate(-5%, -50%);
    -ms-transform: translate(-5%, -50%);
    -o-transform: translate(-5%, -50%);
}

.social-links-btn a {
    width: 4rem;
}

.social-links-btn-mobile {
    width: 100vw;
    height: 45px;
    z-index: 99999;
    border-top: 3px solid #ce8e33;
}

.s-line-btn {
    background: linear-gradient(to top, #fff 0%, #fff 100%);
    height: 100%;
    border-right: 0.5px solid #ce8e33;
    /* border-left: 0.5px solid #fff; */
}

.s-phone-btn {
    background: linear-gradient(to top, #fff 0%, #fff 100%);
    height: 100%;
    /* border-right: 0.5px solid #fff; */
    border-left: 0.5px solid #ce8e33;
}

.s-location-btn {
    background: linear-gradient(to top, #fff 0%, #fff 100%);
    height: 100%;
    /* border-right: 0.5px solid #fff; */
    border-left: 0.5px solid #ce8e33;
}

.social-links-btn-mobile a {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 60px;
    }
    footer {
        margin-bottom: 40px;
    }
}

.offcanvas-backdrop {
    background-color: #fff !important;
}

.about {
    background: url(../images/01/bg1024.jpg) no-repeat center top;
    background-size: cover;
    position: relative;
}

@media (max-width: 768px) {
    .about {
        /* background-color: #282a2d; */
        background-image: url(../images/01/bg750.jpg);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .about {
        background: url(../images/01/bg1024.jpg) no-repeat center top;
        background-size: cover;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .about {
        background: url(../images/01/bg1280.jpg) no-repeat center top;
        background-size: cover;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .about {
        background: url(../images/01/bg1440.jpg) no-repeat center top;
        background-size: cover;
    }
}

@media (min-width: 1440px) {
    .about {
        background: url(../images/01/bg1920.jpg) no-repeat center top;
        background-size: cover;
    }
}

.about-feature {
    background: url(../images/00-hp/contact_bg1024.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

@media (max-width: 768px) {
    .about-feature {
        background-color: #282a2d;
        background-image: url(../images/00-hp/contact_bg624.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .about-feature {
        background: url(../images/00-hp/contact_bg1024.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .about-feature {
        background: url(../images/00-hp/contact_bg1280.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .about-feature {
        background: url(../images/00-hp/contact_bg1440.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

@media (min-width: 1440px) {
    .about-feature {
        background: url(../images/00-hp/contact_bg1920.jpg) no-repeat center
            center;
        background-size: cover;
    }
}

.about-bg-left {
    position: absolute;
    top: 40%;
    left: 0;
    z-index: 3;
    transform: translateY(-40%);
}

.about-bg-right {
    position: absolute;
    bottom: -7%;
    right: 0;
    z-index: 8;
    transform: translateY(-7%);
}

.about-feature-title {
    position: absolute;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
    padding: 3px 15px;
    border-radius: 30px;
}

@media (max-width: 992px) {
    .about-feature-line img {
        display: none;
        /* transform: rotate(90deg); */
    }
}

.resume-header {
    border-radius: 20px !important;
}

.resume-header-content {
    padding: 2rem 3rem;
}

.resume-header-content h3 {
    position: relative;
}

.resume-header-content h3::after {
    position: absolute;
    width: 50px !important;
    height: 1.5px !important;
    background: #2d8b5d;
    content: "";
    top: 50%;
    transform: translate(20%, 50%);
}

.resume-header-img {
    position: absolute;
    bottom: 0;
    left: -50px;
    width: 180px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .resume-header-img {
        position: static;
        width: 120px;
        margin-top: 1rem;
    }
}

.resume-box {
    border-radius: 20px !important;
    border: 1.5px solid var(--color-a4cb68);
    padding: 1.5rem;
    margin: 1rem 0;
}

.resume-placeholder {
    border-radius: 20px !important;
    height: 1200px;
    background-color: #f5f5f5;
    position: relative;
}

.resume-bg-left {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 3;
}

.resume-bg-right {
    position: absolute;
    top: 25%;
    right: 0;
    z-index: 8;
}

@media (max-width: 768px) {
    .resume-header-content {
        padding: 1rem 1.5rem;
    }
    .resume-placeholder {
        height: 600px;
    }
}

.online-shop {
    background: url(../images/03/03bg_1024.jpg) repeat center top;
    background-size: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .online-shop {
        /* background-color: #282a2d; */
        background-image: url(../images/03/03bg_750.jpg);
        background-position: center top;
        background-repeat: repeat;
        background-size: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .online-shop {
        background: url(../images/03/03bg_1024.jpg) repeat center top;
        background-size: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .online-shop {
        background: url(../images/03/03bg_1280.jpg) repeat center top;
        background-size: 100%;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .online-shop {
        background: url(../images/03/03bg_1440.jpg) repeat center top;
        background-size: 100%;
    }
}

@media (min-width: 1440px) {
    .online-shop {
        background: url(../images/03/03bg_1920.jpg) repeat center top;
        background-size: 100%;
    }
}

.shop-bg-left {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 3;
}

.shop-bg-right {
    position: absolute;
    bottom: 15%;
    right: 0;
    z-index: 8;
}

.online-shop .swiper {
    width: 100%;
    height: 100%;
}

.online-shop .swiper-slide {
    text-align: center;
    font-size: 15px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px !important;
    border: 1px solid var(--color-a4cb68);
    padding: 5px;
}

.online-shop .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px !important;
}

.online-shop .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.online-shop .swiper-slide {
    background-size: cover;
    background-position: center;
}

.online-shop .productsSwiper2 {
    height: auto;
    width: 100%;
}

.online-shop .productsSwiper {
    height: 8rem;
    box-sizing: border-box;
    padding: 10px 0;
}

.online-shop .productsSwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    padding: 3px;
}

.online-shop .productsSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.online-shop .productsSwiper2 .swiper-slide img {
    display: block;
    width: 100%;
    height: 23rem;
    object-fit: cover;
    object-position: center;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 25px !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    .online-shop .productsSwiper2 .swiper-slide img {
        height: 12.5rem;
    }

    .online-shop .productsSwiper .swiper-slide {
        height: 4.5rem;
    }
}

.product-info-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-a4cb68);
    margin: 1rem 0;
}

.addCartBtn {
    background-color: var(--color-2d8b5d);
    color: white;
    padding: 3px 12px;
    border-radius: 30px;
    width: fit-content !important;
    min-width: 125px;
}

.buyNowBtn {
    background-color: var(--color-48382b);
    color: white;
    padding: 3px 12px;
    border-radius: 30px;
    width: fit-content !important;
    min-width: 125px;
}

.backToShopBtn {
    background-color: white;
    color: var(--color-7e7e7e);
    border: 1px solid var(--color-7e7e7e);
    padding: 3px 12px;
    border-radius: 30px;
    width: fit-content !important;
    min-width: 125px;
}

.product-intro {
    background-color: white;
    border: 1px solid var(--color-a4cb68);
    padding: 1rem 1.5rem;
    border-radius: 20px;
}

.prod-intro-body * {
    color: var(--text-color);
}

.cartClearBtn {
    background-color: white;
    color: var(--color-7e7e7e);
    border: 1px solid var(--color-7e7e7e);
    padding: 3px 12px;
    border-radius: 30px;
    width: fit-content !important;
    min-width: 125px;
}

.quantity {
    max-width: 80px;
}

.modify-quantity {
    background-color: white;
    color: var(--color-7e7e7e);
    border: 1px solid var(--color-7e7e7e);
    padding: 8px 12px;
    border-radius: 5px;
    width: fit-content !important;
    min-width: 80px;
    line-height: 1 !important;
}

.modify-quantity:hover {
    color: var(--color-7e7e7e) !important;
}

.cart-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px !important;
}

.cart-table table {
    border-radius: 20px !important;
    overflow: hidden;
}

.cart-table table thead tr {

}

.cart-table table thead tr th {
    background-color: var(--color-2d8b5d);
    color: white;
}

.cart-table table tfoot tr {

}

.cart-table tbody {
    padding: 1.5rem 0 !important;
}

.cart-table tbody tr {
    position: relative;
}

.cart-table tbody tr::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 97%;
    height: 1px;
    background-color: var(--color-a4cb68);
}

.cart-table tbody tr td {
    padding: 1rem 1.5rem;
}

.cart-table tfoot tr td {
    padding: 1rem 1.5rem;
}

.cart-table tfoot tr td p {
    margin-bottom: 0.75rem !important;
}

.cartResetBtn {
    background-color: #a4a4a4;
    color: white;
    padding: 3px 12px;
    border-radius: 30px;
    width: fit-content !important;
    min-width: 125px;
}

.checkoutBtn {
    background-color: var(--color-ef4d06);
    color: white;
    padding: 3px 12px;
    border-radius: 30px;
    width: fit-content !important;
    min-width: 125px;
}


.privacy-policy-content {
    background-color: var(--color-eaf0ca);
    border-radius: 20px !important;
    padding: 3.6rem;
    color: var(--text-color);
    line-height: 1.8;
}

.faq-header {
    border-radius: 20px !important;
    background-color: var(--color-eaf0ca);
    width: 100% !important;
    padding: 0.5rem 85px;
}

.faq-num {
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-2d8b5d);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid var(--color-eaf0ca);
}


.faq-content p {
    padding: 1.5rem 85px;
}

.faq-section-header {
    position: relative;
    padding: 3.5rem 85px;
    border-radius: 20px !important;
    background: url(../images/04/02babg1920.jpg) no-repeat center center;
    background-size: cover;
}

.faq-section-header img {
    position: absolute;
    bottom: 50%;
    right: -5rem;
    transform: translateY(50%);
    /* width: 150px; */
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .faq-header {
        padding: 0.5rem 0px;
        padding-left: 70px;
        padding-right: 20px;
    }

    .faq-num {
        width: 60px;
        height: 60px;
    }

    .faq-content p {
        padding: 1.2rem 3rem;
    }

    .faq-section-header {
        padding: 2.5rem 20px;
    }

    .faq-section-header img {
        position: absolute;
        bottom: -3rem;
        right: 0%;
        transform: translate(0%, 0);
        width: 120px;
    }

}

.faq-bg-left {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 3;
}

.faq-bg-right {
    position: absolute;
    bottom: 15%;
    right: 0;
    z-index: 8;
}


.pg-contact-map {
    border: 8px solid var(--color-eaf0ca);
    border-radius: 20px !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pg-contact-map iframe {
    border-radius: 20px !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pg-contact-content {
    border-radius: 20px !important;
    background-color: transparent;
    position: relative;
}

.pgcontact-bg-left {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 3;
}

.pgcontact-bg-right {
    position: absolute;
    bottom: 0%;
    right: 0;
    z-index: 8;
}

.pg-contact-text {
    width: 100%;
    background: url(../images/05/05bg1216.jpg) no-repeat center center;
    background-size: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .pg-contact-text {
        /* background-color: #282a2d; */
        background-image: url(../images/05/05bg640.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .pg-contact-text {
        background: url(../images/05/05bg1440.jpg) no-repeat center center;
        background-size: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .pg-contact-text {
        background: url(../images/05/05bg1280.jpg) no-repeat center center;
        background-size: 100%;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .pg-contact-text {
        background: url(../images/05/05bg1440.jpg) no-repeat center center;
        background-size: 100%;
    }
}

@media (min-width: 1440px) {
    .pg-contact-text {
        background: url(../images/05/05bg1440.jpg) no-repeat center center;
        background-size: 100%;
    }
}

.pg-cta-txt-img {
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    width: 25% !important;
    object-fit: cover;
    object-position: center;
}

.pg-contact-text-bg {
    width: 120% !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.pg-contact-pic {
    width: 100%;
    border: 5px solid var(--color-eaf0ca);
    border-radius: 20px !important;
}

@media (max-width: 768px) {
    .pg-cta-txt-img {
        position: static;
        width: 75% !important;
        top: 30%;
        transform: translateY(-30%);
        margin-top: 1rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .pg-contact-text2 p {
        padding: 0rem 2.3rem !important;
    }

    .pg-contact-text-bg {
        width: 100% !important;
        height: 100% !important;
    }

    .pg-contact-pic {
        width: 80% !important;
    }
}
