.review-header {
    position: relative;
    text-align: center;
}

.review-slider-arrows {
    position: absolute;
    right: 0;
    top: 5%;
    transform: translateY(-30%);
    display: flex;
    gap: 8px;
    
}
.home-offer-section {
    padding: 15px 0;
}

.home-offer-header {
    position: relative;
    margin-bottom: 10px !important;
}

.home-offers-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #E8F5EC;
    color: #1F5D45;
    font-weight: 700;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.home-offers-all-btn:hover {
    background: #D4A017;
    color: #fff;
}

.home-offers-all-btn i {
    font-size: 20px;
}

.home-offer-arrows {
    position: absolute;
    right: 0;
    top: 30%;
    transform: translateY(-30%);
}
.home-offer-track > div {
    padding-bottom: 10px;
}

.best-selling-section {
    padding: 15px 0;
}

.best-selling-header {
    position: relative;
    margin-bottom: 10px !important;
}

.best-selling-arrows {
    position: absolute;
    right: 0;
    top: 30%;
    transform: translateY(-30%);
}
/* =========================================================
   4SCARTS - MAIN STYLE.CSS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F8F9FA;
    color: #222;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1E5D45;
    color: #fff;
    padding: 6px 0;
    z-index: 10000;
}

.top-bar .row {
    align-items: center;
    row-gap: 2px;
}

.top-bar span {
    font-size: 14px;
    font-weight: 500;
}

.social-icons {
    text-align: right;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin-left: 18px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #D4A017;
}

.topbar-auth-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 16px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.topbar-auth-links a:hover {
    color: #D4A017;
}


/* =========================================================
   TOP BAR MARQUEE
========================================================= */

.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-text {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding-left: 100%;
    animation: marquee-scroll 22s linear infinite;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.marquee-wrapper:hover .marquee-text {
    animation-play-state: paused;
}


/* =========================================================
   FIXED HEADER AREA
========================================================= */

.site-header {
    position: fixed;
    top: 34px;
    left: 0;
    width: 100%;
    z-index: 9999;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    width: 100%;
    background: #fff;
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s ease;
}

.logo {
    height: 90px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.brand-logo-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    flex-wrap: nowrap;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-decoration: none !important;
    transition: font-size 0.3s ease;
    background: linear-gradient(90deg, #1F5D45, #D4A017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-form-wrapper {
    max-width: 300px;
    width: 100%;
}

.search-form-wrapper .search-box {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 40px 0 0 40px;
}

.search-form-wrapper .btn-search {
    background: #1E5A41;
    color: #fff;
    border: none;
    border-radius: 0 30px 30px 0;
    padding: 0 16px;
}

.search-form-wrapper .btn-search:hover {
    background: #D4A017;
    color: #fff;
}

.header-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: nowrap;
}

.header-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    transition: 0.3s;
}

.header-nav-links a:hover {
    color: #1E5A41;
}

.header-cat-dropdown .dropdown-toggle::after {
    margin-left: 4px;
}

.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50%;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    background: #000;
    color: #fff;
}

.mobile-menu-toggle {
    border: 1px solid #1F5D45;
    background: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    color: #1F5D45;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: #1F5D45;
    color: #fff;
}


/* =========================================================
   MOBILE NAV WRAPPER (Custom toggle, not Bootstrap collapse)
========================================================= */

.mobile-nav-wrapper {
    display: flex;
}

@media (max-width: 991.98px) {

    .mobile-nav-wrapper {
        display: none;
    }

    .mobile-nav-wrapper.open {
        display: block;
    }

}


/* =========================================================
   MOBILE MAIN HEADER — logo + search + hamburger in ONE row
========================================================= */

@media (max-width: 991.98px) {

    .main-header .row {
        flex-wrap: wrap !important;
    }

    .main-header .col-6.col-lg-2 {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        order: 1;
    }

    .main-header .col-lg-3.order-3 {
        flex: 0 0 auto !important;
        width: 130px !important;
        max-width: 130px !important;
        min-width: 0 !important;
        order: 2 !important;
    }

    .main-header .col-6.d-lg-none {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        order: 4 !important;
        text-align: right;
    }

    .mobile-shop-offer-links {
        order: 3 !important;
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    .main-header .mobile-nav-wrapper {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        order: 4 !important;
        margin-top: 10px;
    }

    .header-nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 15px 0;
    }

    .brand-logo-wrapper .logo {
        height: 34px;
    }

    .brand-name {
        font-size: 15px;
    }

    .search-form-wrapper {
        max-width: 130px;
    }

    .search-form-wrapper .search-box {
        padding: 5px 8px;
        font-size: 12px;
    }

    .search-form-wrapper .btn-search {
        padding: 0 10px;
        font-size: 13px;
    }

    .site-header {
        top: 30px;
    }

}

@media (max-width: 767px) {

    .top-bar {
        padding: 4px 0;
    }

    .top-bar .row {
        row-gap: 0px;
    }

    .top-bar .row > div {
        text-align: center !important;
        padding-top: 1px;
        padding-bottom: 1px;
    }

    .top-bar span {
        font-size: 10px;
    }

    /* Hide the "delivery" text column on mobile, keep marquee */
    .top-bar .col-md-3:first-child {
        display: none;
    }

    .marquee-text {
        font-size: 11px;
    }

    .topbar-auth-links a {
        font-size: 11px;
        margin: 0 8px;
    }

    .site-header {
        top: 28px;
    }

    .main-header {
        padding: 6px 0;
    }

    .social-icons {
        margin-top: 5px;
    }

    .social-icons a {
        margin: 0 7px;
        font-size: 16px;
    }

    .search-form-wrapper {
        max-width: 105px;
    }

    .brand-name {
        font-size: 13px;
    }

    .brand-logo-wrapper .logo {
        height: 30px;
    }

}



/* =========================================================
   NAVBAR (legacy — dropdown styling reused)
========================================================= */

.dropdown-menu {
    border-radius: 10px;
    padding: 8px 0;
}

.dropdown-item {
    padding: 10px 18px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #E8F5EC;
    color: #1E5A41;
}


/* =========================================================
   HERO SECTION (legacy background-image version — kept for
   reference/backward-compat, overridden below by .hero-simple)
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero .carousel-item {
    position: relative;

    min-height: 580px;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    padding: 0;
}


/* =========================================================
   6 DIFFERENT HERO BACKGROUNDS (unused by new hero, kept)
========================================================= */

.hero-bg-1 {
    background-image:
        linear-gradient(
            90deg,
            rgba(248, 245, 239, 0.94) 0%,
            rgba(248, 245, 239, 0.72) 40%,
            rgba(248, 245, 239, 0.20) 100%
        ),
        url('../images/hero/slider-1.jpg');
}

.hero-bg-2 {
    background-image:
        linear-gradient(
            90deg,
            rgba(248, 245, 239, 0.94) 0%,
            rgba(248, 245, 239, 0.72) 40%,
            rgba(248, 245, 239, 0.20) 100%
        ),
        url('../images/hero/slider-2.jpg');
}

.hero-bg-3 {
    background-image:
        linear-gradient(
            90deg,
            rgba(248, 245, 239, 0.94) 0%,
            rgba(248, 245, 239, 0.72) 40%,
            rgba(248, 245, 239, 0.20) 100%
        ),
        url('../images/hero/slider-3.jpg');
}

.hero-bg-4 {
    background-image:
        linear-gradient(
            90deg,
            rgba(248, 245, 239, 0.94) 0%,
            rgba(248, 245, 239, 0.72) 40%,
            rgba(248, 245, 239, 0.20) 100%
        ),
        url('../images/hero/slider-4.jpg');
}

.hero-bg-5 {
    background-image:
        linear-gradient(
            90deg,
            rgba(248, 245, 239, 0.94) 0%,
            rgba(248, 245, 239, 0.72) 40%,
            rgba(248, 245, 239, 0.20) 100%
        ),
        url('../images/hero/slider-5.jpg');
}

.hero-bg-6 {
    background-image:
        linear-gradient(
            90deg,
            rgba(248, 245, 239, 0.94) 0%,
            rgba(248, 245, 239, 0.72) 40%,
            rgba(248, 245, 239, 0.20) 100%
        ),
        url('../images/hero/slider-6.jpg');
}


/* =========================================================
   HERO CONTENT (unused by new hero, kept)
========================================================= */

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    margin-left: 4%;
    padding: 40px 0;
}


/* =========================================================
   HERO TAG / BADGE (unused by new hero, kept)
========================================================= */

.hero-badge,
.hero-tag {
    display: inline-block;
    background: #E8F5EC;
    color: #1F5E43;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
}


/* =========================================================
   HERO HEADING (unused by new hero, kept)
========================================================= */

.hero h1,
.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
    margin: 0 0 20px;
}

.hero h1 span,
.hero-section h1 span {
    display: block;
    color: #1F5E43;
}


/* =========================================================
   HERO DESCRIPTION (unused by new hero, kept)
========================================================= */

.hero p,
.hero-section p {
    max-width: 620px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 30px;
}


/* =========================================================
   HERO BUTTON AREA (unused by new hero, kept)
========================================================= */

.hero-btn,
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
    flex-wrap: wrap;
}


/* =========================================================
   SHOP / PRIMARY BUTTON
========================================================= */

.hero-btn .btn-shop,
.hero-buttons .btn-shop,
.btn-shop,
.shop-btn {
    display: inline-block;
    background: #1F5E43;
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1F5E43;
    transition: all 0.2s ease;
}

.hero-btn .btn-shop:hover,
.hero-buttons .btn-shop:hover,
.btn-shop:hover,
.shop-btn:hover {
    background: #D4A017;
    border-color: #D4A017;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

.hero-btn .btn-outline,
.hero-buttons .btn-outline,
.btn-outline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.85);
    color: #1F5E43;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1F5E43;
    transition: all 0.2s ease;
}

.hero-btn .btn-outline:hover,
.hero-buttons .btn-outline:hover,
.btn-outline:hover {
    background: #1F5E43;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   REMOVE OLD IMAGE STYLING
========================================================= */

.hero-image,
.hero-img {
    display: none;
}


/* =========================================================
   NEW HERO SLIDE IMAGE (1680x613 — natural ratio, no crop)
========================================================= */

.hero-slide-img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================================
   CAROUSEL CONTROLS
========================================================= */

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: auto;
    bottom:6px;
    transform:none;
    transform: translateY(-50%);
    background: #D4A017;
    border-radius: 50%;
    opacity: 1;
    z-index: 5;
    transition: all 0.2s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #D4A017;
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}


/* =========================================================
   CAROUSEL INDICATORS
========================================================= */

.carousel-indicators {
    margin-bottom: 18px;
}

.carousel-indicators button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin: 0 5px;
    border: 0;
    opacity: 0.6;
}

.carousel-indicators button.active {
    opacity: 1;
}


/* =========================================================
   MOBILE (legacy hero text, unused by new hero, kept)
========================================================= */

@media (max-width: 767px) {

    .hero .carousel-item {
        min-height: 600px;
        background-position: center center;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        margin-left: 0;
        padding: 35px 20px;
        text-align: center;
    }

    .hero-badge,
    .hero-tag {
        font-size: 13px;
        padding: 8px 16px;
        margin-bottom: 18px;
    }

    .hero h1,
    .hero-section h1 {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .hero h1 span,
    .hero-section h1 span {
        display: block;
    }

    .hero p,
    .hero-section p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-btn,
    .hero-buttons {
        justify-content: center;
        gap: 10px;
    }

    .hero-btn .btn-shop,
    .hero-buttons .btn-shop,
    .btn-shop {
        padding: 12px 22px;
        font-size: 14px;
    }

    .hero-btn .btn-outline,
    .hero-buttons .btn-outline,
    .btn-outline {
        padding: 10px 20px;
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 38px;
        height: 38px;
    }

    .carousel-control-prev {
        left: 8px;
    }

    .carousel-control-next {
        right: 8px;
    }

    .carousel-indicators {
        margin-bottom: 12px;
    }
}


/* =========================================================
   HERO SIMPLE WRAPPER SPACING
========================================================= */

.hero.hero-simple {
    padding-top: 20px;
}

@media (max-width: 767px) {
    .hero.hero-simple {
        padding-top: 10px;
    }
}
/* =========================================================
   PRODUCT CARD
========================================================= */
.product-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.product-image {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background: #fafafa;
    text-align: center;
}
.product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: .35s;
}
.product-card:hover .product-image img {
    transform: scale(1.08);
}
.product-image .product-logo-watermark {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    object-fit: contain !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    z-index: 5;
    display: block;
}
.offer-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    z-index: 5;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.product-content {
    padding: 20px;
    text-align: left;
}
.product-category {
    color: #888;
    font-size: 12px;
    margin-bottom: 4px;
}
.product-title {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 6px;
}
.product-title a {
    color: #1F5D45;
    text-decoration: none;
}
.product-price {
    margin-bottom: 14px;
}
.old-price {
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-size: 14px;
}
.current-price {
    color: #1E5D45;
    font-size: 20px;
    font-weight: 700;
}

/* =========================================================
   PRODUCT CARD — MOBILE RESPONSIVE
========================================================= */
@media (max-width: 767px) {

    .product-image {
        padding: 12px;
    }

    .product-image img {
        height: 140px;
    }

    .product-content {
        padding: 14px;
    }

    .product-title {
        font-size: 14px;
    }

    .current-price {
        font-size: 16px;
    }

    .old-price {
        font-size: 12px;
        margin-left: 6px;
    }

}
/* =========================================================
   CATEGORIES
========================================================= */

.categories-section {
    background: #fff;
    padding: 10px 0;
}

.category-header {
    position: relative;
    margin-bottom:10px !important;
}
    

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #173F35;
}

.section-subtitle {
    color: #777;
    margin-top: 10px;
    margin-bottom: 40px;
}

.category-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.2s;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1F513F;
}

.category-card p {
    color: #666;
    margin: 20px 0;
    line-height: 28px;
}

.category-btn {
    display: inline-block;
    background: #1F5D45;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    transition: 0.2s;
}

.category-btn:hover {
    background: #E6B85C;
    color: #fff;
}
.col-category {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
}

@media (max-width: 991.98px) {
    .col-category {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 767.98px) {
    .col-category {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-category {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card .category-btn {
    margin-top: auto;
}
/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us {
    background: #F8FAF8;
}

.why-card {
    background: #FFF9EF;
    border-radius: 100px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.2s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-card:hover {
    transform: translateY(-12px);
}

.why-card h4 {
    font-size: 24px;
    color: #176b4a;
    font-weight: 700;
}

.why-card p {
    color: #666;
    margin-top: 15px;
    line-height: 28px;
    font-size: 16px;
}

@media (max-width: 575.98px) {
    .why-card {
        padding: 25px 20px;
    }

    .why-card h4 {
        font-size: 20px;
    }

    .why-card p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 10px;
    }
}


/* =========================================================
   REVIEWS
========================================================= */

.review-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.2s;
}

.review-card:hover {
    transform: translateY(-8px);
}

.review-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #1E5D45;
}


/* =========================================================
   BLOG
========================================================= */

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.2s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-content p {
    color: #666;
}

.blog-content a {
    color: #1F5D45;
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;
    background: #1E4D3D;
    color: #fff;
    padding: 22px 0;
    margin-top: 40px;
    border-top: 3px solid #7FBFA0;
    border-bottom: 3px solid #7FBFA0;
}

.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 13px;
    color: #cfe8dc;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #D4A017;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #D4A017;
}

.footer-copyright {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    color: #cfe8dc;
}

@media (max-width: 767px) {

    .footer {
        padding: 16px 0 10px;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer-brand {
        order: 1;
    }

    .footer-brand h3 {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .footer-brand p {
        font-size: 11px;
    }

    .footer-links {
        order: 2;
        justify-content: center;
        gap: 12px;
        row-gap: 4px;
    }

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

    .footer-social {
        order: 3;
        gap: 12px;
    }

    .footer-social a {
        font-size: 15px;
    }

    .footer-copyright {
        margin-top: 8px;
        padding-top: 8px;
        font-size: 11px;
    }

}


/* =========================================================
   FLOATING CHAT
========================================================= */

.floating-chat {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
}

.floating-chat a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.floating-chat a:hover {
    transform: scale(1.12);
}

.whatsapp {
    background: #25D366;
}

.messenger {
    background: #0084FF;
}

.call {
    background: #1E5D45;
}

.cart-float {
    position: relative;
    background: #1F5D45;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.cart-float:hover {
    background: #D4A017;
    color: #fff;
    transform: scale(1.12);
}

.cart-float .cart-count {
    top: -6px;
    right: -6px;
    background: #E63946;
}


/* =========================================================
   GENERAL PAGE BANNER
========================================================= */

.page-banner,
.shop-banner {
    background: #F8F5EF;
    padding: 70px 0;
}

.page-banner h1,
.shop-banner h1 {
    color: #173F35;
    font-size: 42px;
    font-weight: 700;
}

.page-banner p,
.shop-banner p {
    color: #777;
}

.page-banner a,
.shop-banner a {
    color: #1F5D45;
    text-decoration: none;
    font-weight: 600;
}


/* =========================================================
   PRODUCT PAGE TABS (Description / Reviews)
========================================================= */

.product-tabs-wrapper .nav-tabs {
    border-bottom: 2px solid #eee;
}

.product-tabs-wrapper .nav-tabs .nav-link {
    color: #666;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
}

.product-tabs-wrapper .nav-tabs .nav-link.active {
    color: #1F5D45;
    border-bottom: 3px solid #1F5D45;
    background: transparent;
}


/* =========================================================
   GLOBAL BUTTON COLOR OVERRIDE (Dark → Green, Hover → Gold)
========================================================= */

.btn-dark,
.btn-success {
    background-color: #1F5D45 !important;
    border-color: #1F5D45 !important;
    color: #fff !important;
    transition: 0.3s;
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #D4A017 !important;
    border-color: #D4A017 !important;
    color: #fff !important;
}

.btn-outline-dark {
    color: #1F5D45 !important;
    border-color: #1F5D45 !important;
    transition: 0.3s;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    background-color: #D4A017 !important;
    border-color: #D4A017 !important;
    color: #fff !important;
}


/* =========================================================
   FINAL SPACING FIX (single source of truth for margin-top)
========================================================= */

.hero,
.page-banner,
.shop-banner,
.auth-section,
.product-page-section {
    margin-top: 120px;
}

.hero-section {
    padding: 50px 0;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #222;
    margin-bottom: 25px;
}

@media (max-width: 991px) {

    .hero,
    .page-banner,
    .shop-banner,
    .auth-section,
    .product-page-section {
        margin-top: 100px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1 {
        font-size: 34px;
    }

}

@media (max-width: 767px) {

    .hero,
    .page-banner,
    .shop-banner,
    .auth-section,
    .product-page-section {
        margin-top: 85px;
    }

    .hero-section {
        padding: 30px 0;
    }

    .hero-section h1 {
        font-size: 28px;
    }

}

/* =========================================================
   REDUCE EMPTY SPACE ON SHORT PAGES
========================================================= */

.auth-section,
.product-page-section {
    min-height: calc(100vh - 320px);
}

@media (max-width: 767px) {
    .auth-section,
    .product-page-section {
        min-height: calc(100vh - 260px);
    }
}

/* =========================================================
   OUT OF STOCK OVERLAY
========================================================= */

.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.out-of-stock-overlay span {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 6px 18px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

/* =========================================================
   EXTRA SMALL MOBILE HEADER FIX
========================================================= */

@media (max-width: 767px) {

    .search-form-wrapper {
        max-width: 105px;
    }

    .brand-name {
        font-size: 13px;
    }

    .brand-logo-wrapper .logo {
        height: 30px;
    }

}


/* =========================================================
   TOP BAR — FORCE SINGLE LINE ON MOBILE (fixes header overlap)
========================================================= */

@media (max-width: 767px) {

    .top-bar .row {
        flex-wrap: nowrap !important;
    }

    .top-bar .row > div:nth-child(2) {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        text-align: left !important;
        padding-left: 8px !important;
    }

    .top-bar .row > div:nth-child(3) {
        flex: 0 0 auto !important;
        width: auto !important;
        text-align: right !important;
        padding-right: 8px !important;
        white-space: nowrap;
    }

    .topbar-auth-links a {
        margin: 0 0 0 8px !important;
    }

}

/* =========================================================
   MOBILE SHOP/OFFERS TEXT LINKS (beside hamburger)
========================================================= */

.mobile-shop-offer-links a {
    font-size: 12px;
    font-weight: 700;
    color: #1F5D45;
    text-decoration: none;
    white-space: nowrap;
}

.mobile-shop-offer-links a.offer-link {
    color: #dc3545;
}

@media (max-width: 480px) {

    .mobile-shop-offer-links a {
        font-size: 11px;
    }

}

/* =========================================================
   HERO SIMPLE — FINAL VERSION (image + 2 buttons below, centered)
   This overrides the legacy .hero rules above for the new
   image-only hero design, on both desktop and mobile.
========================================================= */

.hero-simple {
    margin-top: 120px;
    background: #fff;
    padding-bottom: 25px;
    overflow: hidden;
    isolation: isolate;
}

.hero-simple .carousel-inner {
    position: relative;
    overflow: hidden;
}

.hero-simple .carousel-item {
    position: relative;
    min-height: 0;
    display: block;
    padding: 0;
    background: none;
}

.hero-slide-img {
    width: 100%;
    display: block;
    border-radius: 12px;
    z-index: 1;
}

.hero-slide-buttons {
    position: relative;
    z-index: 2;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.hero-slide-buttons .btn-shop,
.hero-slide-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 26px;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 991px) {

    .hero-simple {
        margin-top: 100px;
    }

    .hero-slide-img {
        height: 300px;
    }

}

@media (max-width: 767px) {

    .hero-simple {
        margin-top: 85px;
    }

    .hero-slide-img {
        height: 220px;
    }

    .hero-slide-buttons {
        gap: 8px;
        margin-top: 14px;
        flex-wrap: nowrap;
    }

    .hero-slide-buttons .btn-shop,
    .hero-slide-buttons .btn-outline {
        padding: 9px 14px;
        font-size: 12px;
        white-space: nowrap;
    }

}
/* Force correct slide show/hide behavior, overriding the legacy .hero rule */
.hero-simple .carousel-item {
    display: none !important;
}

.hero-simple .carousel-item.active,
.hero-simple .carousel-item-next,
.hero-simple .carousel-item-prev {
    display: block !important;
}
/* =========================================================
   SECTION HEADING BUTTON STYLE (non-clickable, like category button)
========================================================= */

.section-heading-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #E8F5EC;
    color: #1F5D45;
    font-weight: 700;
    font-size: 20px;
    padding: 10px 22px;
    border-radius: 8px;
    text-align: center;
}