@import url("base.css");

.navbar {
    background: transparent !important;
    z-index: 1001;
}

/* .navbar-brand {
    width: 50%;
} */

.navbar-nav.right-side {
    width: 25%;
}

.white {
    background: var(--default) !important;
}

.nav-item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.nav-link {
    color: var(--text-white);
    font-size: 20px !important;
    font-family: var(--font-primary);
    /* font-weight: bold !important; */
    line-height: 1.3;
    cursor: pointer;
    text-decoration: none;
    text-transform: none;
    height: auto;
    box-shadow: 0 1px 0 0 transparent;
    letter-spacing: 1px;
    padding: 0 !important;
    border-bottom: solid 1px transparent;
}

.left-side .nav-link:hover,
.left-side .nav-link.active,
.left-side .nav-link:focus {
    border-bottom: solid 1px var(--text-white);
    color: var(--text-white);
}

.right-side .nav-link:hover {
    color: var(--text-white);
}

.nav-link i {
    font-size: 15px;
}

.offcanvas {
    background-color: var(--accent-brown);
    color: var(--text-white) !important;
    width: 500px;
    transition: width 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/* .offcanvas:hover {
    width: 600px;
} */

.offcanvas .btn-close {
    color: var(--default) !important;
}

.offcanvas-body {
    padding: 0 22px 0 22px;
}

.offcanvas .nav-link {
    color: rgba(255, 255, 255, 0.5);
    fill: rgba(255, 255, 255, 0.5);
    text-decoration: none !important;
    animation: fadeInMainLink 0.7s cubic-bezier(0.5, 0, 0.5, 1);
    z-index: 1000;
    border-bottom: solid 1px transparent;
}

.offcanvas .nav-link.active {
    border-bottom: solid 1px var(--default);
    color: var(--default);
    fill: var(--default);
}

.offcanvas .offcanvas-body .content {
    scrollbar-color: #ffffff #221f20;
    scrollbar-width: thin;
    padding: 15px 10px;
    margin-bottom: 2px;
    flex-direction: column;
    height: auto;
}

.offcanvas .offcanvas-body .content label {
    font-size: 18px;
    font-family: var(--font-primary);
    line-height: 17.75px;
    color: var(--default);
    margin-bottom: 7px;
    text-decoration: underline;
}

.offcanvas .offcanvas-body .content a {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    line-height: 40px;
    text-decoration: none;
    font-family: var(--font-primary);
    letter-spacing: 0.1px;
    font-weight: 500 !important;
}

.offcanvas .offcanvas-body .content a:hover {
    color: var(--default);
}

.offcanvas .sidebar-formatter-link {
    font-weight: 700 !important;
    font-family: var(--font-primary) !important;

    font-size: 15px !important;
    line-height: 1.3;
    display: flex;
    align-items: center;
    height: 31px;
    text-decoration: none;
}

.carousel {
    height: 99vh;
    overflow: hidden;
}

.carousel-item {
    transform: scale(1);
    transition: transform 1s cubic-bezier(0.18, 0.63, 0.25, 1),
        opacity 0.7s ease;
}

/* 🔹 Overlay styling */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    /* Dark transparent overlay */
    /* OR use a soft gradient for a more modern look: */
    /* background: linear-gradient(to bottom right, rgba(0,0,0,0.5), rgba(0,0,0,0.2)); */
    z-index: 1;
}

.carousel img,
.carousel video {
    /* height: 90vh !important; */
    /* object-fit: fill; */
    object-position: center center;
}

.carousel-caption {
    top: 45% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    bottom: auto !important;
    left: 30% !important;
    width: 30%;
    text-align: left !important;
    position: absolute;
    z-index: 2;
}
@media (max-width: 991.98px) {
    .carousel-caption {
        top: 60% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 720px;
        text-align: center !important;
        padding: 0.25rem 0 !important;
        z-index: 5;
    }

    .carousel-caption h1 {
        font-size: clamp(1.2rem, 3.6vw, 1.05rem) !important;
    }

    .carousel-caption p {
        font-size: clamp(0.1rem, 3.6vw, 1.05rem) !important;
        margin-bottom: 0px !important;
    }

    .btn-landing {
        padding: 9px 18px !important;
        font-size: clamp(13px, 3.4vw, 16px) !important;
    }
    .bg-image{
        height: 200px;
    }
}
@media (max-width: 1440.98px) {
    .carousel-caption {
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 720px;
        text-align: center !important;
        padding: 0.25rem 0 !important;
        z-index: 5;
    }

    .carousel-caption p {
        margin-bottom: 20px;
        color: var(--text-white);

        font-size: 1.5rem;
        font-family: var(--font-primary);
        font-weight: 400;
        line-height: 1.3;
    }

    .carousel-caption h1 {
        margin-bottom: 20px;
        color: var(--text-white);
        letter-spacing: 0.01em;
        font-size: 2.8rem;
        line-height: 1.2;
        font-family: var(--font-primary);
        font-weight: 600;
    }

    .btn-landing {
        padding: 9px 18px !important;
        font-size: clamp(13px, 3.4vw, 16px) !important;
    }
}

/* .landingsection{
    background-image: linear-gradient(#c7515159,0,#e857576a,#d7757022),url('../images/hero-img.webp');
    background-size:cover;
    background-position:center;
    height: 99vh;
} */

.carousel-caption p {
    margin-bottom: 20px;
    color: var(--text-white);

    font-size: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
}

.carousel-caption h1 {
    margin-bottom: 20px;
    color: var(--text-white);
    letter-spacing: 0.01em;
    font-size: 2.8rem;
    line-height: 1.2;
    font-family: var(--font-primary);
    font-weight: 600;
}

.btn-landing {
    padding: 10px 28px;
    background-color: var(--accent-brown) !important;
    color: var(--text-white) !important;
    border: 1px solid var(--accent-brown) !important;
    border-radius: 50px;
    font-size: 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    min-width: 295px;
    line-height: 1.3;
    text-transform: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    /* transition: color .1s linear, background .1s linear; */
}

.btn-landing:hover {
    /* background-color: var(--accent-dark-green) !important; */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.sticky_cart {
    position: fixed;
    right: 15px;
    top: 100px;
    bottom: initial;
    z-index: 99999;
}

.sticky_cart a {
    text-decoration: none;
    font-size: 20px;
    color: #34495e;
}

.sticky_cart i {
    display: block;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px !important;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 1px 1px 5px #808080;
    -moz-box-shadow: 1px 1px 5px #808080;
    box-shadow: 1px 1px 5px #808080;
    padding: 10px;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    line-height: 30px !important;
    text-align: center;
    position: relative;
    box-sizing: content-box !important;
    z-index: 1;
}

/* .sticky_cart .glyphicon-shopping-cart:before {
    content: "";
    font-family: 'SATCB Glyphicons Halflings' !important;
    font-style: normal !important;
    font-weight: normal !important;
} */

.sticky_cart .fa-cart-shopping {
    position: relative;
    top: 1px;
    display: inline-block;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
}

.sticky_cart mark {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 2px solid #fff;
    width: 20px;
    height: 20px;
    background-color: #ff6b6b;
    position: absolute;
    top: -5px;
    left: -10px;
    font-size: 10px;
    line-height: 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #fff;
    font-weight: 700;
    box-sizing: content-box !important;
}

.section-title {
    padding-right: 5%;
    padding-bottom: 100px;
}

.section-title h1 {
    font-size: 40px;
    font-family: hbsans;
    line-height: 1;
    /* letter-spacing: -.1em; */
}

.section-title a {
    color: var(--text-dark);
    font-size: 15px;
    font-family: var(--font-primary);
    line-height: 1.3;
    cursor: pointer;
    text-decoration-line: underline;
}

.section-title p {
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.3;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    font-size: 15px;
    font-family: var(--font-primary);
    background: var(--default);
    display: flex;
    justify-content: center;
    border-left: 1px solid rgba(34, 31, 32, 0.15);
    padding: 0px 20px 0px 20px;
}

.swiper-slide .card {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid transparent !important;
}

.swiper-slide .card .product-details a.tag {
    display: inline-block;
    margin-bottom: 5px;
    background-color: var(--accent-brown);
    /* min-height: 19px; */
    color: var(--text-white);
    text-decoration: none;

    position: relative;
    padding: 5px;
}

.figure img.image-hover {
    /* position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0; */
    object-fit: fill;
    opacity: 1;
    transition: opacity 0.2s;
}

/*
.figure:hover img.image-hover {
    opacity: 1;
} */

.swiper-slide .card .product-details a img {
    display: block;
    /* width: 100%; */
    /* height: 350px !important; */
    margin: auto;
    margin-bottom: 20px;
}

.swiper-slide .card .product-details .product-info {
    display: flex;
    flex-direction: column;
    flex: initial;
}

.swiper-slide .card .product-details .product-info h3 {
    font-weight: 500;
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);

    font-size: 18px;
    line-height: 1.3;
    color: var(--accent-brown);
    text-align: left;
    margin-bottom: 4px;
    text-transform: none;
}

.swiper-slide .card .product-details .product-info h4 {
    font-family: var(--font-primary);
    font-weight: 400;

    font-size: 15px;
    line-height: 19px;
    color: rgba(34, 31, 32, 0.65);
    text-align: left;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-slide .card .product-details .product-info span {
    font-size: 14px;
    line-height: 1.3;
    color: var(--text-dark);
    text-align: left;
    margin-bottom: 20px;
}

.swiper-slide .card .product-details .product-info span:first-child {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-brown);
    margin-right: 5px;
}

.span-accent {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent-brown);
    margin-right: 5px;
}

.product-info span {
    font-size: 14px;
    line-height: 1.3;
    color: var(--text-dark);
    text-align: left;
    margin-bottom: 20px;
}

.product-info span:first-child {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent-brown);
    margin-right: 5px;
}

/* .swiper-slide .card .product-details .product-info span:not(:last-child)::after {
    content: '•';
    display: inline-block;
    color: rgba(34, 31, 32, .65);
    margin: 0 8px;
} */

.flap-able-info {
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

.flapped {
    /* position: absolute; */
    width: 100%;
    /* bottom:-35px; */
    opacity: 1;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

/*
.product-info a:hover > .flap-able-info {
    opacity: 0.0;
}

.product-info a:hover + .flapped {
    opacity: 1.0;
} */

.swiper-button-next,
.swiper-button-prev {
    /* position: fixed;
    top: 50% !important; */
    width: 80px;
    height: 80px;
    margin-top: calc(0px - (20px / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    background-color: var(--accent-brown);
}

/* .swiper-button-prev {
    left: 360px;
}

.swiper-button-next {
    right: 20px;
} */

.section-title-big {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    padding-top: 40px;
    text-align: left;
}

.section-title-big h1 {
    font-size: 60px;
    line-height: 1;
    font-family: hbsans;
    /* letter-spacing: -.1em; */
}

.shopbycategory .card-text {
    /* margin: 5px 0 0; */
    font-size: 24px;
    font-family: var(--font-primary);
    line-height: 1;
    text-decoration: underline;
}

.shopbycategory .card-body h4 {
    font-size: 24px;
    line-height: 1;
    font-family: var(--font-primary);
    /* letter-spacing: -.02em; */
}

.shopbycategory .card-body .card-details p {
    font-family: var(--font-primary);

    font-size: 15px;
    line-height: 1.3;
}

.shopbycategory .card-body .card-details p a {
    color: #221f20a6;
    text-decoration: underline;
    transition: color 0.2s;
    font-family: var(--font-primary);

    font-size: 15px;
    line-height: 1.3;
}

.three-col-section.gr-bg {
    /* background-color: var(--secondary); */

    background: linear-gradient(
        70deg,
        rgba(244, 244, 246),
        rgba(213, 216, 221)
    );
}

/* .three-col-section .image-wrapper {
    padding: 0 10px;
} */
.card-img-top{
    height: 300px;
}
video {
    width: 100%;
    height: 800px;
}

.bg-image {
    background: url("../images/chat/soaps.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
}

/*
.bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(70deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
    z-index: -1;
} */

.footer {
    /* background-color: var(--accent-brown); */
    background: linear-gradient(
            135deg,
            rgba(255, 229, 180, 0.7),
            rgba(255, 216, 176, 0.7)
        ),
        url("../images/banners/footer-light-sm.webp");
    color: var(--text-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer p {
    font-size: 18px;
    line-height: 19.5px;
    font-weight: bold;
}

form input {
    font-family: var(--font-primary);

    font-size: 25px;
    line-height: 1.3;
    border: solid 1px #000;
    border-width: 0 0 1px;
    background: 0 0;
    width: 100%;
    max-width: 100%;
    padding: 10px 0 10px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

form textarea {
    background-color: transparent !important;
    border-color: #000 !important;
}

.footer .btn-signup {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.3;
    text-transform: initial;
    color: var(--text-white);
    background-color: #000;
    border: 0;
    padding: 10px 20px;
    display: inline-block;
    width: auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 20px;
}

.footer ul li a {
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 18px;
    line-height: 1.3;
    color: var(--accent-brown);
    display: inline-block;
    border: 0;
    padding: 0;
}

.footer .social {
    margin-top: 50px;
}

.footer .social .title {
    width: 100%;
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 15px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: var(--default);
    margin-right: 10px;
    transition: 0.3s;
    background-color: var(--primary);
    text-decoration: none;
}

.footer .social-links a:hover {
    background-color: var(--default);
    color: var(--accent);
}

.footer .links a {
    font-size: 12px;
}

.footer .country-select select {
    padding: 25px 50px 25px 30px;
    text-transform: capitalize;
    margin: 0;
    height: auto;
    font-size: 15px;
    color: #ffffff;
    background: #221f20;
    border: solid 1px rgba(255, 255, 255, 0.5);
    line-height: 1.3;
    width: 40%;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ensure the video fills the container */
}

.searchform {
    color: white !important;
    background-color: transparent !important;
}

::placeholder {
    color: #918f90 !important;
    font-size: 24px;
    border-color: #918f90 !important;
    background-color: transparent;
}

.sticky-footer-chat {
    display: block;
    margin-top: 2px;
    left: auto;
    right: 15px;
    position: fixed;
    top: 77%;
    width: auto;
    z-index: 100;
    min-height: 63px;
    text-align: center;
}

.sticky-footer-chat a {
    margin: 1px !important;
    padding: 0px !important;
    border-style: solid !important;
    border-width: 0px !important;
    text-decoration: none !important;
    cursor: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    top: 0px !important;
    left: 0px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 100% !important;
    right: 7px !important;
    color: var(--default) !important;
    background-color: var(--accent) !important;
    font-size: 16px !important;
}

.sticky-footer-chat a i {
    margin: auto;
    display: flex;
    justify-content: center;
}

.inner-banner.image {
    background: linear-gradient(
            112.1deg,
            rgba(32, 38, 57, 0.2) 21.4%,
            rgba(0, 0, 0, 0.6) 70.2%
        ),
        url("../images/banners/bestseller.webp");
    background-size: cover;
    background-position: 40% 30%;
    height: 20%;
}


.page-title-area {
    padding-top: 205px;
    background-color: transparent;
    overflow: hidden;
}

.page-title-area .page-title {
    font-size: clamp(16px, 3.5vw, 30px);
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
    /* letter-spacing: -0.1em; */
    color: var(--text-white);
}

.page-title-area .subtitle {
    font-size: clamp(16px, 3.5vw, 30px);
    font-family: var(--font-primary);
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 10px;
}
.page-title-area p {
    font-size: 30px;
    font-family: var(--font-primary);
    color: var(--text-white);
    line-height: 15.6px;
    font-weight: 400;
    text-transform: uppercase;
}

.page-title-area .breadcrumb-nav {
    background: 0 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-title-area .breadcrumb-nav li {
    font-family: var(--font-primary);

    font-size: 15px;
    line-height: 1.3;
    color: var(--text-white);
    text-align: right;
}

.page-title-area .breadcrumb-nav li:before {
    content: " •";
    color: var(--text-white);
    margin-right: 0.5rem !important;
}

.page-title-area .breadcrumb-nav li:first-child:before {
    content: "";
}

.page-title-area .breadcrumb-nav li a {
    color: var(--text-white);
    text-decoration: underline;
}

.page-title-area .breadcrumb-nav li i {
    padding-left: 12px;
    padding-right: 12px;
    color: var(--text-white);
    padding-top: 3px;
}

.page-tile-content p span {
    font-size: 25px;
    font-family: var(--font-primary);
    line-height: 15.6px;
    font-weight: 400;
    text-transform: uppercase;
}

.innerpage-description {
    font-size: 22px !important;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 25px;
    color: #221f20;
    text-align: left;
    /* margin-left: 20vw;
    margin-right: 20vw; */
}

.faq .card-title {
    font-size: 24px;
    line-height: 1;
    /* letter-spacing: 5px; */
    text-align: left;
    text-transform: uppercase;
}

.accordion-item {
    border-color: var(--default) !important;
    border-bottom: solid 1px #eff0f0 !important;
}

.accordion-button {
    margin: 0;
    padding: 1.5em 20px !important;
    text-transform: uppercase;
    background-position: 97% center;
    background-repeat: no-repeat;
    border-top: 1px solid #eff0f0;
    cursor: pointer;
    font-size: 18px;
    font-family: var(--font-primary);
    line-height: 1;
    /* letter-spacing: 1px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button:not(.collapsed) {
    background-color: var(--default) !important;
    box-shadow: none !important;
}

.accordion-body {
    font-size: 16px;
    border-top: 1px solid #eff0f0 !important;
}

.right-col p {
    text-align: justify;
    margin-left: 20px;
    margin-right: 20px;
    font-family: var(--font-primary) !important;
    line-height: 28.8px;
    font-size: 22px !important;
    font-weight: 400;
    color: var(--text-medium);
}

.modal-content {
    border: 1px solid #d4d4d4 !important;
    border-radius: 0px !important;
}

.modal-content .bg-image {
    background-image: url("../images/banners/offer2.jpg");
    background-color: transparent;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-size: cover;
}

.modal-body {
    align-content: flex-start;
    align-items: flex-start;
    background-color: #fff;
    border: unset;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 50px;
}

.modal-body .btn-close {
    align-self: flex-end;
    aspect-ratio: 1;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    min-inline-size: 24px;
}

.modal-body #logo {
    background-image: url("../images/logo-black.png");
    background-color: transparent;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    inline-size: 100%;
    block-size: inherit;
    height: 25px;
    width: 100%;
    margin-block-end: calc(16px * 1.5);
}

.modal-body #formMainTitle {
    font-family: hbsans;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

.modal-body .subHeader {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 5px 0 16px;
}

.modal-body input {
    border: 1px solid #000;
    inline-size: 100%;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    min-block-size: 48px;
    padding: 0 16px;
}

.modal-body input::placeholder {
    background: #fff;
    color: #525252;
    font-family: var(--font-primary);
    font-size: 1rem;
    text-overflow: clip;
    transition: all 0.2s ease-out;
    pointer-events: none;
    inline-size: 50%;
    z-index: 1;
}

#cartOffCanvas {
    background-color: #fff;
    /* margin-top: 85px; */
    border: solid 1px #d0d0d0;
    color: #000000;
    width: 25%;
    /* height: 90vh; */
}

#cartOffCanvas .offcanvas-body {
    padding: 0px !important;
}

#cartOffCanvas .offcanvas-title {
    margin: 20px 20px 10px;
    font-size: 15px;
    font-family: var(--font-primary);
    font-weight: bold;
    letter-spacing: 2px;
    text-align: left;
    color: #000000;
}

#cartOffCanvas #cartItems {
    height: 65vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.reviews-section {
    /* max-width: var(--max-width); */
    /* margin: 48px auto; */
    padding: 36px;
    border-radius: 18px;
    backdrop-filter: blur(var(--glass-blur));
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.reviews-sub {
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.3;
}

/* layout */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

/* review card */
.review-card {
    background: var(--card-bg);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(21, 21, 21, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 52px;
    background: linear-gradient(180deg, #fff, #f9f9f9);
    display: grid;
    place-items: center;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.meta {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 600;
}

.meta small {
    color: var(--muted);
    font-size: 0.85rem;
}

.stars {
    display: inline-flex;
    gap: 4px;
}

.star {
    width: 18px;
    height: 18px;
    display: inline-block;
}

.review-body {
    font-size: 0.98rem;
    color: #222;
    line-height: 1.4;
    flex: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.helpful {
    font-size: 0.9rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn {
    background: transparent;
    border: 1px solid rgba(34, 34, 34, 0.06);
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
}

/* star colors */
.star svg {
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.06));
}

.star.full svg path {
    fill: var(--accent);
}

.star.empty svg path {
    fill: #e6e6e6;
}

/* slider controls (small) */
.controls {
    display: flex;
    gap: 8px;
}

.control-btn {
    background: white;
    border: none;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(16, 16, 16, 0.06);
    cursor: pointer;
}

/* CTA */
.leave-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--accent), #ffbfa0);
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

/* responsive tweak */
@media (max-width: 520px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .avatar {
        width: 46px;
        height: 46px;
    }
}

.quantity-control {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.quantity-control .quantity-btn {
    width: 36px;
    height: 36px;
    line-height: 1;
    padding: 0;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: none;
}

.quantity-control .quantity-btn:first-child {
    border-right: 1px solid #dee2e6;
}

.quantity-control .quantity-btn:last-child {
    border-left: 1px solid #dee2e6;
}

.quantity-control .quantity-input {
    width: 60px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 16px;
    outline: none;
    box-shadow: none;
}

.quantity-control .quantity-input:focus {
    border: none;
    box-shadow: none;
}

.quantity-control .btn:focus {
    box-shadow: none;
}
.product-img{
    width: 100%;
    height: 513px;
    object-fit: cover;
    border-radius: 10px;
}
