@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&family=Covered+By+Your+Grace&family=Outfit:wght@300;400;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* =========================================
   CSS VARIABLES / DESIGN TOKENS
   ========================================= */
:root {
    --primary:        #0e8343;
    --primary-dark:   #0b6634;
    --primary-light:  rgba(14,131,67,0.08);
    --secondary:      #ffd200;
    --secondary-dark: #e0b800;
    --dark:           #1b221b;
    --text:           #2c332e;
    --muted:          #7f8c8d;
    --border:         #eaeded;
    --light-bg:       #faf8f5;
    --white:          #ffffff;
    --card-shadow:    0 4px 20px rgba(0,0,0,0.07);
    --hover-shadow:   0 10px 35px rgba(0,0,0,0.13);
    --transition:     0.3s ease;
    --font:           'Outfit', sans-serif;
    --heading-font:   'Playfair Display', serif;
    --accent-font:    'Covered By Your Grace', cursive;
    --radius:         6px;
}

/* =========================================
   BASE / RESET
   ========================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 18px;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 2.05rem; }
h4 { font-size: 1.7rem; }
h5 { font-size: 1.45rem; }
h6 { font-size: 1.2rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition);
}
a:hover { color: var(--primary-dark); }

img { max-width: 100%; }

/* =========================================
   TOP INFO BAR
   ========================================= */
.top-bar {
    background-color: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 0;
    letter-spacing: 0.2px;
}
.top-bar a { color: #fff; opacity: 0.9; }
.top-bar a:hover { opacity: 1; }
.top-bar marquee { vertical-align: middle; }
.top-bar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 11px;
    margin-right: 4px;
    color: #fff;
    transition: background var(--transition);
}
.top-bar .social-links a:hover { background: rgba(255,255,255,0.3); }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    padding: 0;
    background: var(--white);
    border-bottom: 1px solid #eaeded;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.navbar-nav{
    gap:30px !important;
}
.navbar-brand img { max-height: 55px; }
.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 800;
    font-size: 19px;
    padding: 18px 14px !important;
    letter-spacing: 0px;
    position: relative;
    transition: color var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: var(--primary);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
    left: 0; right: 0;
}

/* Dropdown menu styling */
.navbar-nav .dropdown-menu {
    border-radius: 0 0 var(--radius) var(--radius) !important;
    border-top: 3px solid var(--primary) !important;
    margin-top: 0 !important;
    box-shadow: var(--card-shadow) !important;
    transition: opacity var(--transition), transform var(--transition);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    display: block !important;
}
.navbar-nav .dropdown-menu.show,
.navbar-nav .nav-item.dropdown:hover > .about-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* Desktop hover-to-open for About dropdown */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover > .about-dropdown-menu {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    /* Keep the desktop About link looking like a nav-link not a toggle */
    .about-desktop-link { cursor: pointer; }
    .about-desktop-link .fa-chevron-down {
        transition: transform var(--transition);
        display: inline-block;
    }
    .nav-item.dropdown:hover .about-desktop-link .fa-chevron-down {
        transform: rotate(180deg);
    }
}
.navbar-nav .dropdown-item:hover {
    background-color: var(--light-bg) !important;
    color: var(--primary) !important;
}
/* Nav icons */
.nav-icons {
    gap: 20px;
    padding-left: 20px;
    border-left: 1px solid #eaeded;
}
.nav-icons a {
    color: var(--dark);
    font-size: 18px;
    position: relative;
    transition: color var(--transition);
}
.nav-icons a:hover { color: var(--primary); }
.nav-icons .badge.cart-count-badge {
    position: absolute;
    top: -8px; right: -10px;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    border-radius: 50%;
    padding: 3px 5px;
    font-weight: 700;
    min-width: 17px;
    text-align: center;
}

/* Search box */
.search-wrapper {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 1050;
    width: 250px;
    background: #ffffff;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid #eaeded;
}
.search-wrapper.active {
    display: flex !important;
}
.search-wrapper input {
    border-radius: 4px !important;
    border: 1px solid var(--border) !important;
    font-size: 13px;
    padding: 6px 12px !important;
    width: 100% !important;
    transition: border-color var(--transition);
}
.search-wrapper input:focus {
    width: 100% !important;
    border-color: var(--primary) !important;
    box-shadow: none !important;
}
.ajax-search-suggestions {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}
.ajax-search-suggestions .suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
    cursor: pointer;
}
.ajax-search-suggestions .suggestion-item:hover { background: var(--light-bg); }
.ajax-search-suggestions .suggestion-item img {
    width: 40px; height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}
.ajax-search-suggestions .suggestion-item .info h6 { font-size: 13px; margin: 0; }
.ajax-search-suggestions .suggestion-item .info span {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider { position: relative; }
.hero-slider .carousel-item {
    height: 620px;
    background-size: cover;
    background-position: center top;
    position: relative;
}
.hero-slider .carousel-item::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.hero-slider .carousel-indicators [data-bs-target] {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 4px;
}
.hero-slider .carousel-indicators .active {
    background: var(--secondary);
    transform: scale(1.3);
}
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 20px;
    background-size: 14px;
}

/* =========================================
   SECTION UTILITIES
   ========================================= */
.section-padding { padding: 80px 0; }
.bg-light-cream { background-color: var(--light-bg); }

.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow, .pre-heading, .italic-tag, .eyebrow {
    display: block;
    font-family: var(--accent-font), cursive;
    font-size: 36px !important;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.2;
}
.section-title h2 {
    font-size: 46px;
    font-weight: 800;
    margin: 0;
    color: var(--dark);
    line-height: 1.15;
}
.section-title h2 span { color: var(--primary); }

/* =========================================
   FEATURE OVERLAY CARDS (dark cards over hero)
   ========================================= */
.features-overlay {
    margin-top: -80px;
    position: relative;
    z-index: 20;
    padding-bottom: 0;
}
.feature-card-dark {
    /* background-image set inline per card */
    background-color: rgba(20,28,20,0.0);
    background-size: cover;
    background-position: center;
    backdrop-filter: none;
    border-radius: var(--radius);
    padding: 0;
    text-align: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    position: relative;
    /* overflow: hidden; */
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
/* Dark overlay on top of background image */
.feature-card-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,22,15,0.75);
    z-index: 1;
    transition: background var(--transition);
}
.feature-card-dark:hover::before {
    background: rgba(15,22,15,0.60);
}
.feature-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
/* Text content inside card */
.card-content-wrap {
    position: relative;
    z-index: 2;
    padding: 20px 20px 60px;
    text-align: center;
}
.feature-card-dark h5 {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    
    letter-spacing: 0.4px;
}
.feature-card-dark p {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin: 0;
    line-height: 1.55;
}
/* Yellow badge at bottom center of card */
.card-badge-yellow {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #ffd200;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.22);
    z-index: 3;
    transition: transform 0.3s ease, bottom 0.3s ease;
    border: 3px solid #fff;
}
.feature-card-dark:hover .card-badge-yellow {
    bottom: -24px;
    transform: translateX(-50%) scale(1.1);
}
.card-badge-yellow svg,
.card-badge-yellow img {
    width: 28px;
    height: 28px;
    display: block;
}
/* Extra bottom margin so badge doesn't overlap next section */
.features-overlay {
    padding-bottom: 40px;
}

/* =========================================
   JOURNEY SECTION (About intro)
   ========================================= */
.journey-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: #faf8f5;
    z-index: 1;
}
.journey-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/farm-sketch.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
    animation: subtlePan 24s infinite alternate ease-in-out;
}
@keyframes subtlePan {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.08) translate(10px, -5px);
    }
}

/* =========================================
   ANIMATIONS & SCROLL REVEAL HELPERS
   ========================================= */
.animate-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity 420ms cubic-bezier(.2,.9,.2,1), transform 420ms cubic-bezier(.2,.9,.2,1); will-change: opacity, transform; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.animate-fade-up { opacity: 0; transform: translateY(18px); transition: opacity 480ms ease, transform 480ms ease; }
.animate-fade-up.visible { opacity: 1; transform: translateY(0); }
.animate-slide-left { opacity: 0; transform: translateX(18px); transition: opacity 420ms ease, transform 420ms ease; }
.animate-slide-left.visible { opacity: 1; transform: translateX(0); }
.will-animate { will-change: transform, opacity; }

/* =========================================
   RESPONSIVE TWEAKS / BREAKPOINTS
   ========================================= */
@media (max-width: 1199px) {
    .hero-slider .carousel-item { height: 520px; }
    .section-padding { padding: 60px 0; }
}
@media (max-width: 991px) {
    .hero-slider .carousel-item { height: 420px; }
    .navbar-nav .nav-link { padding: 12px 8px !important; font-size: 15px; }
    .search-wrapper input { width: 140px !important; }
    .features-overlay { margin-top: -48px; }
    .product-img-wrapper { aspect-ratio: 1 / 1; }
}
@media (max-width: 767px) {
    .hero-slider .carousel-item { height: 320px; }
    .section-title .eyebrow { font-size: 20px !important; }
    .section-title h2 { font-size: 28px; }
    .product-content h6 { font-size: 14px; }
    .product-img-wrapper { aspect-ratio: 1 / 1; }
    .product-actions { bottom: 6px; }
    .top-bar { font-size: 12px; }
}
@media (max-width: 480px) {
    .search-wrapper input { width: 110px !important; }
    .nav-icons { padding-left: 8px; }
    .navbar-brand img { max-height: 48px; }
}

/* FOOTER RESPONSIVE LAYOUT */
.site-footer { padding: 40px 0; background: #0f1f17; color: #dfeee4; }
.site-footer a { color: #dfeee4; }
.site-footer .footer-col { margin-bottom: 20px; }
.site-footer .footer-title { font-weight: 800; color: #fff; margin-bottom: 12px; }
.site-footer .social-links a { margin-right: 8px; }

@media (max-width: 767px) {
    .site-footer .footer-grid { display: block; }
    .site-footer .footer-col { width: 100%; }
}

/* Accessible focus states */
a:focus, button:focus, .nav-icon-btn:focus {
    outline: 3px solid rgba(11,147,85,0.18);
    outline-offset: 2px;
}

/* Buttons micro-interactions */
.btn-primary-custom, .btn-checkout, .price-apply-btn, .search-submit-btn {
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.btn-primary-custom:active, .btn-checkout:active { transform: translateY(2px); }


.journey-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}
.journey-img-main {
    width: 360px; height: 360px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}
.journey-img-small {
    position: absolute;
    bottom: -10px; left: 10px;
    width: 160px; height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--secondary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #fff;
}
.journey-content .eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}
.journey-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}
.journey-content p { color: var(--muted); font-size: 16px; line-height: 1.75; }

/* Promise icons */
.promise-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}

/* =========================================
   WHAT WE DO SECTION
   ========================================= */
.what-we-do-card {
    position: relative;
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 290px;
    border: 1px solid var(--border);
}
.what-we-do-card .card-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    inset: 0;
}
.what-we-do-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.what-we-do-card:hover .card-img-wrap img {
    transform: scale(1.07);
}
.what-we-do-info-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: #fff;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    z-index: 2;
    transition: transform var(--transition), box-shadow var(--transition);
}
.what-we-do-card:hover .what-we-do-info-box {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.what-we-do-info-box .info-badge {
    width: 42px;
    height: 42px;
    background: #ffd200;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}
.what-we-do-info-box h5 {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

/* =========================================
   OUR RANGE BANNER (yellow/image split)
   ========================================= */
.our-range-banner { overflow: hidden; }
.our-range-yellow {
    background: var(--secondary) !important;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 25px;
}
.our-range-yellow .eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}
.our-range-yellow h2 {
    font-size: 34px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.05;
}
.our-range-yellow p {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.5;
    margin: 0;
}
#rangeCarousel .carousel-control-prev-icon,
#rangeCarousel .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    padding: 18px;
    background-size: 12px;
}
#rangeCarousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 4px;
}
#rangeCarousel .carousel-indicators .active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

/* =========================================
   PRODUCT CARDS
   ========================================= */
.product-card {
    background: var(--white);
    border-radius: 4px;
    border: 1px solid #eaeded;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all var(--transition);
    height: 100%;
    position: relative;
}
.product-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}
/* Yellow Sale Badge - top left */
.badge-sale-label {
    position: absolute;
    top: 10px; left: 10px;
    background: #eed235;
    color: #000;
    font-size: 10px; font-weight: 800;
    padding: 3px 9px;
    border-radius: 2px;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Volume Badge - top right */
.badge-volume-label {
    position: absolute;
    top: 10px; right: 10px;
    background: #eed235;
    color: #000;
    font-size: 10px; font-weight: 800;
    padding: 3px 9px;
    border-radius: 2px;
    z-index: 10;
    letter-spacing: 0.3px;
}
/* Legacy badge classes kept for backward compat */
.product-card .badge-discount {
    position: absolute;
    top: 10px; left: 10px;
    background: #eed235;
    color: #000;
    font-size: 10px; font-weight: 800;
    padding: 3px 9px;
    border-radius: 2px;
    z-index: 10;
    text-transform: uppercase;
}
.product-card .badge-new {
    position: absolute;
    top: 10px; right: 10px;
    background: #eed235;
    color: #000;
    font-size: 10px; font-weight: 800;
    padding: 3px 9px;
    border-radius: 2px;
    z-index: 10;
}
.product-card .product-img-wrapper {
    position: relative;
    padding-top: 100%;
    background: #f5f6f2;
    overflow: hidden;
}
.product-card .product-img-wrapper img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrapper img { transform: scale(1.07); }
.product-card .product-actions {
    position: absolute;
    bottom: -55px; left: 0; right: 0;
    display: flex; justify-content: center; align-items: center;
    background: rgba(255,255,255,0.92);
    padding: 10px 0;
    transition: bottom var(--transition);
    gap: 6px;
}
.product-card:hover .product-actions { bottom: 0; }
.product-card .product-actions a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-size: 13px;
    transition: all var(--transition);
}
.product-card .product-actions a:hover {
    background: var(--primary);
    color: #fff;
}
.product-card .product-content {
    padding: 16px;
    text-align: center;
}
.product-card .product-rating {
    color: #f39c12;
    font-size: 11px;
    margin-bottom: 6px;
}
.product-card .product-content h6 {
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-card .product-content h6 a { color: var(--dark); }
.product-card .product-content h6 a:hover { color: var(--primary); }
.product-card .product-price { font-size: 16px; font-weight: 700; }
.product-card .product-price del { color: var(--muted); font-weight: 400; margin-right: 5px; }
.product-card .product-price span { color: var(--primary); }

/* =========================================
   COUNTERS BANNER
   ========================================= */
.counters-banner {
    position: relative;
    background-image: url('../sarokhet-bg-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    overflow: hidden;
}
.counters-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82); /* transparent light overlay */
    z-index: 1;
}
.counters-banner .container {
    position: relative;
    z-index: 2;
}
.counters-banner .counter-number {
    font-size: 44px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 3px;
    display: block;
    text-shadow: none;
}
.counters-banner .counter-label {
    font-size: 13.5px;
    
    letter-spacing: 1.5px;
    color: var(--primary);
    font-weight: 700;
}

/* =========================================
   VIDEO / QUOTE BANNER
   ========================================= */
.video-quote-banner {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.video-quote-banner .overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.68);
}
.video-quote-banner .content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.video-quote-banner h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 6px;
}
.video-quote-banner .sub {
    font-size: 11.5px;
    
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 700;
}
.play-btn {
    width: 68px; height: 68px;
    background: var(--secondary);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-size: 22px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}
.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(0,0,0,0.4);
    color: var(--dark);
}

/* =========================================
   RECIPE CARDS
   ========================================= */
.recipe-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 370px;
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
    cursor: pointer;
}
.recipe-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
    transition: transform 0.55s ease;
}
.recipe-card:hover img { transform: scale(1.06); }
.recipe-card .recipe-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
    z-index: 1;
}
.recipe-card .recipe-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px;
    z-index: 2;
    color: #fff;
}
.recipe-card .recipe-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* =========================================
   HEALTH BENEFITS (3-col with center bottle)
   ========================================= */
.health-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
}
.health-benefit-item.reverse { flex-direction: row-reverse; }
.health-benefit-item .hb-icon {
    width: 48px; height: 48px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-size: 16px;
    flex-shrink: 0;
}
.health-benefit-item .hb-text { padding: 0 14px; }
.health-benefit-item .hb-text h5 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 3px;
}
.health-benefit-item .hb-text p {
    font-size: 14.5px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}
.health-center-bottle {
    width: 260px; height: 260px;
    border-radius: 50%;
    padding: 10px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    position: relative;
}
.health-center-bottle img {
    width: 100%; height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.health-benefits-dark {
    background-color: #232b26 !important; /* dark charcoal background */
    color: #fff !important;
}
.health-benefits-dark .section-title h2 {
    color: #fff !important;
}
.health-benefits-dark .section-title .eyebrow {
    color: var(--secondary) !important;
}
.health-benefits-dark .health-benefit-item .hb-text h5 {
    color: #fff !important;
}
.health-benefits-dark .health-benefit-item .hb-text p {
    color: rgba(255, 255, 255, 0.72) !important;
}
.health-benefits-dark .health-benefit-item .hb-icon {
    background: var(--secondary) !important;
    color: var(--dark) !important;
}

/* =========================================
   PURE MUSTARD GOODNESS BAR
   ========================================= */
.goodness-bar {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.goodness-bar .eyebrow {
    font-size: 13px;
    
    letter-spacing: 2.5px;
    color: var(--muted);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}
.goodness-bar h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}
.goodness-icon-item i { font-size: 28px; color: var(--primary); margin-bottom: 8px; display: block; }
.goodness-icon-item h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; }

/* =========================================
    TESTIMONIALS
   ========================================= */
.testimonial-card-horizontal {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all var(--transition);
}
.testimonial-card-horizontal:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-4px);
}
.testimonial-left-content {
    flex: 1;
    text-align: left;
}
.testimonial-left-content blockquote {
    border-left: none !important;
    padding-left: 0 !important;
    margin: 0 0 10px 0 !important;
    font-style: italic;
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.6;
}
.testimonial-right-avatar {
    flex-shrink: 0;
}
.testimonial-right-avatar .avatar-wrapper {
    position: relative;
    width: 75px;
    height: 75px;
}
.testimonial-right-avatar .avatar-wrapper img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-right-avatar .avatar-wrapper .video-badge-play {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 26px;
    height: 26px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.testimonial-header .eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    
    letter-spacing: 2px;
    color: var(--primary);
}

/* =========================================
   TASTING EXPERIENCE (split section)
   ========================================= */
.tasting-section { overflow: hidden; }
.tasting-img {
    min-height: 420px;
    background-size: cover;
    background-position: center;
}
.tasting-content {
    background: var(--light-bg);
    padding: 60px 50px;
    display: flex;
    align-items: center;
}
.tasting-content .eyebrow {
    font-size: 12px;
    font-weight: 700;
    
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}
.tasting-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.tasting-content p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.tasting-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.tasting-badge i { font-size: 22px; color: var(--primary); margin-bottom: 6px; }
.tasting-badge h6 { font-size: 12px; font-weight: 700; margin: 0; }

/* =========================================
   WIDE QUOTE BANNER
   ========================================= */
.wide-quote-banner {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}
.wide-quote-banner .overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.68);
}
.wide-quote-banner h2 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.25;
    max-width: 750px;
    margin: 0 auto;
}

/* =========================================
   BLOG CARDS
   ========================================= */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    transition: all var(--transition);
    height: 100%;
}
.blog-card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-5px);
}
.blog-card .blog-img {
    height: 200px;
    overflow: hidden;
}
.blog-card .blog-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-card .blog-body { padding: 20px; }
.blog-card .blog-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
}
.blog-card .blog-meta i { color: var(--primary); margin-right: 4px; }
.blog-card h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card h5 a { color: var(--dark); }
.blog-card h5 a:hover { color: var(--primary); }
.blog-card p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }

/* =========================================
   GALLERY ROW (5-col strip)
   ========================================= */
.gallery-row .gallery-col {
    flex: 0 0 20%;
    max-width: 20%;
    overflow: hidden;
}
.gallery-row .gallery-item {
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
.gallery-row .gallery-item img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.gallery-row .gallery-col:hover .gallery-item img { transform: scale(1.08); }

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 56px; height: 56px;
    bottom: 36px; right: 36px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 999;
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    color: #fff;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary-custom {
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    
    letter-spacing: 0.5px;
    padding: 12px 32px;
    border-radius: 4px;
    transition: all var(--transition);
    display: inline-block;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14,131,67,0.3);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--dark);
    color: #a8b3a8;
    padding: 65px 0 0;
    font-size: 13.5px;
}
footer h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}
footer h5::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 2px;
    background: var(--primary);
}
footer a { color: #a8b3a8; }
footer a:hover { color: #fff; padding-left: 3px; }
footer ul li { margin-bottom: 9px; }
footer ul li a i { color: var(--primary); margin-right: 6px; font-size: 11px; }
footer p { color: #a8b3a8; line-height: 1.7; }

footer .footer-socials a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: #ffffff !important;
    color: #24231D !important;
    margin-right: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}
footer .footer-socials a:hover {
    background: #0b9355 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

footer .footer-recipe-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
footer .footer-recipe-item img {
    width: 58px; height: 58px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 12px;
    flex-shrink: 0;
}
footer .footer-recipe-item h6 { font-size: 13px; margin-bottom: 2px; }
footer .footer-recipe-item h6 a { color: #fff; }
footer .footer-recipe-item span { font-size: 11.5px; color: #7f8c8d; }

footer .newsletter-form .input-group {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 5px;
    overflow: hidden;
}
footer .newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: none !important;
    color: #fff;
    padding: 9px 18px;
    font-size: 15px;
}
footer .newsletter-form input::placeholder { color: #7f8c8d; }
footer .newsletter-form button {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 0 18px;
    font-size: 14px;
    transition: background var(--transition);
}
footer .newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    margin-top: 50px;
    font-size: 12.5px;
}
.footer-bottom a { color: #a8b3a8; margin-left: 16px; }
.footer-bottom a:hover { color: #fff; padding-left: 0; }

/* =========================================
   PAGE BANNERS (inner pages)
   ========================================= */
/* PAGE BANNER - Enhanced with Grid Support */
.page-banner-section {
    position: relative;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #1b221b !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 !important;
    overflow: hidden;
}
.page-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.10) 100%) !important;
    z-index: 1;
}

/* Grid Banner Layout */
.page-banner-grid {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 147, 85, 0.85) 0%, rgba(255, 210, 0, 0.6) 100%);
    z-index: 1;
}

.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
    height: 100%;
    padding: 20px;
    align-content: stretch;
    transform: rotate(-15deg) translateX(-50px) scaleY(1.2);
}

.grid-item {
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    animation: slideIn 0.6s ease-out forwards;
    opacity: 0.85;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.08);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.85;
        transform: translateY(0);
    }
}

/* Banner Overlay Content */
.page-banner-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-nav {
    font-size: 15px !important;
    font-weight: 700;
    letter-spacing: 1.5px !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-nav .breadcrumb-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-nav .breadcrumb-link:hover {
    color: var(--secondary);
}

.breadcrumb-nav .separator {
    margin: 0 8px;
    opacity: 0.6;
}

.breadcrumb-nav .breadcrumb-current {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.page-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    line-height: 1.1;
    margin: 0 !important;
    font-family: var(--font);
    color: #fff;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
    .page-title {
        font-size: 48px !important;
    }
}
@media (min-width: 992px) {
    .page-title {
        font-size: 54px !important;
    }
}

.page-eyebrow {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-banner-section {
        min-height: 280px;
    }
    
    .grid-wrapper {
        transform: rotate(-15deg) translateX(-30px) scaleY(1.1);
        gap: 5px;
        padding: 15px;
    }
    
    .grid-item {
        border-width: 2px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .breadcrumb-nav {
        font-size: 12px;
    }
}

/* Legacy support for basic banner without grid */
.page-banner {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.52);
}
.page-banner-content { position: relative; z-index: 2; }
.page-banner-content h1 { color: #fff; font-size: 36px; margin-bottom: 8px; }
.breadcrumb { margin: 0; background: transparent; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.8); }
.breadcrumb-item.active { color: var(--secondary); }

/* =========================================
   PRODUCT DETAIL
   ========================================= */
.product-detail-gallery .main-img {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #f9f9f9;
    margin-bottom: 14px;
    overflow: hidden;
    padding: 20px;
    min-height: 350px;
    display: flex; align-items: center; justify-content: center;
}
.product-detail-gallery .main-img img { max-height: 310px; object-fit: contain; }
.product-detail-gallery .thumb-img {
    width: 76px; height: 76px;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    margin-right: 10px;
    background: #f9f9f9;
    transition: border-color var(--transition);
    display: inline-block;
}
.product-detail-gallery .thumb-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-gallery .thumb-img.active,
.product-detail-gallery .thumb-img:hover { border-color: var(--primary); }

.product-detail-info h2 { font-size: 26px; margin-bottom: 12px; }
.product-detail-info .price-box {
    font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 18px;
}
.product-detail-info .price-box del {
    color: var(--muted); font-size: 16px; font-weight: 400; margin-right: 8px;
}
.product-detail-info .quantity-selector { display: flex; align-items: center; margin-bottom: 22px; }
.product-detail-info .quantity-selector input {
    width: 50px; text-align: center;
    border: 1px solid var(--border);
    border-left: none; border-right: none;
    height: 40px; font-weight: 700;
}
.product-detail-info .quantity-selector button {
    width: 40px; height: 40px;
    background: var(--light-bg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.product-detail-info .quantity-selector button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Tabs */
.nav-tabs .nav-link {
    color: var(--dark); font-weight: 600;
    border: none; border-bottom: 2px solid transparent;
    padding: 12px 22px;
}
.nav-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}

/* =========================================
   SIDEBAR
   ========================================= */
.sidebar-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.sidebar-box h5 {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    margin-bottom: 18px;
}
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin-bottom: 9px; }
.filter-list a { color: var(--text); display: flex; justify-content: space-between; font-size: 13.5px; }
.filter-list a:hover { color: var(--primary); padding-left: 4px; }

/* =========================================
   ADMIN PANEL
   ========================================= */
.admin-sidebar {
    background: var(--dark);
    color: #fff;
    min-height: 100vh;
}
.admin-sidebar .nav-link { color: rgba(255,255,255,0.65); padding: 11px 20px; font-weight: 500; }
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid var(--primary);
}
.admin-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 28px;
}
.admin-content { background: #f5f6f8; padding: 28px; min-height: calc(100vh - 64px); }
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}
.stat-card .icon-box {
    width: 48px; height: 48px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    color: #fff;
}

/* =========================================
   CART / CHECKOUT
   ========================================= */
.cart-table th { font-weight: 700; font-size: 13px;  letter-spacing: 0.5px; }
.cart-product-img { width: 65px; height: 65px; object-fit: cover; border-radius: 4px; }

/* =========================================
   ANIMATIONS & TRANSITIONS
   ========================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { 
    animation: fadeInUp 0.55s ease both;
    position: absolute;
    top: 150px;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.15); }
}
.counters-banner .counter-number { animation: pulse-dot 2.5s ease infinite; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991.98px) {
    .hero-slider .carousel-item { height: 440px; }
    .features-overlay { margin-top: 0; }
    .journey-img-main { width: 280px; height: 280px; }
    .journey-img-small { width: 120px; height: 120px; }
    .our-range-yellow { padding: 32px; }
    .our-range-yellow h2 { font-size: 30px; }
    .tasting-content { padding: 40px 30px; }
    .wide-quote-banner h2 { font-size: 24px; }
}

@media (max-width: 767.98px) {
    .hero-slider .carousel-item { height: 340px; }
    .section-padding { padding: 50px 0; }
    .section-title h2 { font-size: 24px; }
    .counters-banner .counter-number { font-size: 30px; }
    .gallery-row .gallery-col { flex: 0 0 50%; max-width: 50%; }
    .our-range-banner .row { flex-direction: column; }
    .our-range-img { min-height: 200px; }
    .tasting-section .row { flex-direction: column; }
    .tasting-img { min-height: 260px; }
    .tasting-content { padding: 30px 20px; }
    .health-center-bottle { width: 200px; height: 200px; }
}

@media (max-width: 575.98px) {
    .navbar-brand img { max-height: 42px; }
    .search-wrapper input { width: 140px; }
    .hero-slider .carousel-item { height: 280px; }
    .recipe-card { height: 280px; }
    .wide-quote-banner h2 { font-size: 20px; }
}

/* =========================================
   TOP HEADER AREA & MARQUEE & NAVBAR RESTRUCTURE
   ========================================= */
.top-header-area {
    border-bottom: 1px solid var(--border);
    background-color: #ffffff;
    font-family: var(--font);
}
.header-social-icons {
    margin-left: 0 !important;
    gap: 6px;
}
.header-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #F4F2EC;
    color: #1b221b;
    border-radius: 50%;
    font-size: 13px;
    margin-right: 0;
    transition: all var(--transition);
    text-decoration: none;
}
.header-social-icons a:hover {
    background: #ffd200;
    color: #1b221b;
}
.header-info-box .info-icon {
    width: 44px;
    height: 44px;
    border: 2px solid #0b9355;
    background: transparent;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
}
.header-info-box .info-icon:hover {
    background: #0b9355;
}
.header-info-box .info-icon:hover i {
    color: #fff;
}
.header-info-box .info-icon i {
    font-size: 15px;
    color: #0b9355;
}
.header-info-box .info-text .label {
    font-size: 12px !important;
    color: #777777 !important;
    font-weight: 400 !important;
    margin-bottom: 2px !important;
    text-transform: none !important;
}
.header-info-box .info-text .value {
    font-size: 15px !important;
    color: #1b221c !important;
    font-weight: 800 !important;
    letter-spacing: -0.2px;
}
.marquee-bar {
    font-family: var(--font);
    overflow: hidden;
    white-space: nowrap;
    background: #0b9355;
    padding: 8px 0;
}
.marquee-track {
    display: inline-block;
    animation: marqueeScroll 42s linear infinite;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-bar:hover .marquee-track { animation-play-state: paused; }

/* Navbar edits to support left-align links & right-align icons */
#mainNav {
    padding: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border-bottom: 1px solid #eaeded;
    transition: box-shadow .3s;
}
#mainNav .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 15.5px;
    padding: 18px 13px;
    color: #1b221b;
    letter-spacing: 0.1px;
    transition: color 0.3s;
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #0b9355 !important;
    font-weight: 700;
}
.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-link::after {
    display: none !important;
}
/* Black Arrow CTA Button in Navbar */
.nav-btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1b221b;
    color: #ffffff !important;
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}
.nav-btn-arrow:hover {
    background: #0b9355;
    color: #fff !important;
    transform: scale(1.08);
}

/* =========================================
   MY STICKY ELEMENTS (FLOATING SIDEBAR)
   ========================================= */
.mystickyelements-fixed {
    position: fixed;
    z-index: 99999;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: var(--font);
}
#mystickyelements-social-insagram{
position: absolute;
bottom: -52px;
}
.mystickyelements-fixed.mystickyelements-collapsed {
    right: -53px;
}
.mystickyelements-fixed.mystickyelements-collapsed ul.mystickyelements-lists li.mystickyelements-minimize {
    position: absolute;
    left: -30px;
    width: 30px;
    height: 30px;
}
.mystickyelements-fixed.mystickyelements-collapsed ul.mystickyelements-lists li.mystickyelements-minimize span {
    border-radius: 6px 0 0 6px;
}
.mystickyelements-fixed .mystickyelement-lists-wrap {
    margin: 0;
    padding: 0;
}
.mystickyelements-fixed ul.mystickyelements-lists {
    margin: 0;
    padding: 0;
    list-style: none;
}
.mystickyelements-fixed ul.mystickyelements-lists li {
    position: relative;
    width: 53px;
    margin: 40px 0px;
    padding: 0;
}
.mystickyelements-fixed ul.mystickyelements-lists li.mystickyelements-minimize {
    width: 53px;
    height: 30px;
}
.mystickyelements-fixed ul.mystickyelements-lists li.mystickyelements-minimize span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border-radius: 6px 0 0 0;
    transition: background var(--transition);
}
.mystickyelements-fixed ul.mystickyelements-lists li.mystickyelements-minimize span:hover {
    background: #222222 !important;
}

/* Contact Tab Rotated Text */
.mystickyelements-fixed li.mystickyelements-contact-form {
    padding-bottom: 49px;
    padding-top: 42px;
}
.mystickyelements-fixed li.mystickyelements-contact-form .mystickyelements-social-icon {
    transform: rotate(-90deg);
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 16px 10px 10px 10px;
    width: 144px;
    height: 53px;
    line-height: 1.2;
    transform-origin: 51px 51px 0;
    box-shadow: -3px 0 6px rgba(0,0,0,0.16);
    text-align: center;
    white-space: nowrap;
    
}
.mystickyelements-fixed li.mystickyelements-contact-form .mystickyelements-social-icon i {
    margin-right: 6px;
    transform: rotate(90deg);
    display: inline-block;
}

/* Social Link Tab Icons */
.mystickyelements-fixed span.mystickyelements-social-icon {
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.mystickyelements-fixed span.mystickyelements-social-icon a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.mystickyelements-fixed span.mystickyelements-social-text {
    position: absolute;
    top: 0;
    right: 100%;
    height: 100%;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 13.5px;
    transform: rotateY(90deg);
    transform-origin: 100% 0 0;
    transition: all 0.3s ease;
    border-radius: 8px 0 0 8px;
    padding: 0 15px;
}
.mystickyelements-fixed ul.mystickyelements-lists li:hover span.mystickyelements-social-text {
    transform: rotateY(0);
}

/* Slide-out Contact Form Panel */
.mystickyelements-fixed .element-contact-form {
    width: 380px;
    background-color: #ffffff;
    box-shadow: 0 4px 25px rgba(0,0,0,0.16);
    border-radius: 10px 0 0 10px;
    position: absolute;
    top: -150px;
    right: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: rotateY(90deg);
    transform-origin: 100% 0 0;
    z-index: 10;
    border: 1px solid var(--border);
}
.mystickyelements-fixed li.mystickyelements-contact-form.element-contact-active .element-contact-form {
    transform: rotateY(0);
}
.mystickyelements-fixed .contact-form-heading {
    border-radius: 9px 0 0 0;
    color: #0b9355;
    font-weight: 700;
    font-size: 15px;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mystickyelements-fixed .contact-form-heading .element-contact-close {
    color: #ccc;
    font-size: 18px;
    transition: color var(--transition);
}
.mystickyelements-fixed .contact-form-heading .element-contact-close:hover {
    color: #888;
}
.mystickyelements-fixed form.stickyelements-form {
    padding: 16px;
}
.mystickyelements-fixed form.stickyelements-form label {
    display: block;
    margin: 0;
}
.mystickyelements-fixed form.stickyelements-form input[type=text],
.mystickyelements-fixed form.stickyelements-form input[type=email],
.mystickyelements-fixed form.stickyelements-form input[type=tel],
.mystickyelements-fixed form.stickyelements-form textarea {
    border-radius: 20px !important;
    background-color: #ffffff;
    width: 100%;
    height: 38px;
    margin-bottom: 12px;
    border: 1px solid #dce2e2;
    font-size: 13px;
    color: #000000;
    padding: 0 16px;
    outline: none;
    transition: border-color var(--transition);
}
.mystickyelements-fixed form.stickyelements-form textarea {
    height: 90px;
    padding: 12px 16px;
    resize: none;
}
.mystickyelements-fixed form.stickyelements-form input:focus,
.mystickyelements-fixed form.stickyelements-form textarea:focus {
    border-color: #0b9355;
    background-color: #fcfdfe;
}
.mystickyelements-fixed form.stickyelements-form input[type=submit] {
    font-weight: 700;
    font-size: 14px;
    width: 100%;
    height: 40px;
    border-radius: 20px;
    border: none;
    transition: background var(--transition);
    
    letter-spacing: 0.5px;
}
.mystickyelements-fixed form.stickyelements-form input[type=submit]:hover {
    background-color: #086e3f !important;
}




/* =========================================
   SCROLL-TRIGGERED MICRO-ANIMATIONS
   ========================================= */

/* Fade-up animation class applied via JS IntersectionObserver */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children inside animated containers */
.animate-on-scroll.visible > * {
    animation: none;
}

/* Counter banner slide-in */
.counters-banner .counter-number {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
    color: var(--secondary);
    transition: transform 0.4s cubic-bezier(.23,1.3,.32,1);
}
.counters-banner .col-md-3:hover .counter-number {
    transform: scale(1.1);
}

/* Video quote play button pulse */
@keyframes pulse-ring {
    0%   { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255,210,0,0.7); }
    70%  { transform: scale(1);   box-shadow: 0 0 0 18px rgba(255,210,0,0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255,210,0,0); }
}
.play-btn {
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

/* Footer address text wrap fix */
.footer-contact-address {
    line-height: 1.6;
    font-size: 13.5px;
}

/* About desktop nav – active indicator underline */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown.active .about-desktop-link,
    .navbar-nav .nav-item.dropdown:hover .about-desktop-link {
        color: var(--primary);
    }
    .navbar-nav .nav-item.dropdown.active .about-desktop-link::after {
        left: 0; right: 0;
    }
}

/* Newsletter input group refinement */
.newsletter-form .input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11,147,85,0.15);
}

/* =========================================
   RESPONSIVE — TABLET & MOBILE OVERRIDES
   (matching behtreen.in reference breakpoints)
   ========================================= */

/* ── Tablet (≤1199px) ── */
@media (max-width: 1199.98px) {
    .hero-slider .carousel-item { height: 520px; }
    .journey-img-main { width: 300px; height: 300px; }
    .journey-img-small { width: 130px; height: 130px; }
}

/* ── Tablet portrait (≤991px) ── */
@media (max-width: 991.98px) {
    /* Feature overlay cards — remove negative margin, show below hero */
    .features-overlay {
        margin-top: 24px;
        padding-bottom: 48px;
    }
    .feature-card-dark { min-height: 220px; }

    /* Sections — tighter padding */
    .section-padding { padding: 60px 0; }
    .journey-section { padding: 60px 0; }

    /* Journey circles stack centered */
    .journey-img-main { width: 280px; height: 280px; }
    .journey-img-small { width: 110px; height: 110px; left: 20px; }

    /* Health bottle */
    .health-center-bottle { width: 200px; height: 200px; }

    /* Counters */
    .counters-banner { padding: 36px 0; }

    /* Tasting section stack */
    .tasting-content { padding: 40px 30px; }

    /* Hero height */
    .hero-slider .carousel-item { height: 460px; }

    /* Our range yellow */
    .our-range-yellow { padding: 36px 28px; }
    .our-range-yellow h2 { font-size: 32px; }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767.98px) {
    /* Hero */
    .hero-slider .carousel-item { height: 380px; }

    /* Section headings */
    .section-title h2 { font-size: 26px; }
    .section-title .eyebrow, .eyebrow { font-size: 22px !important; }

    /* Section padding */
    .section-padding { padding: 48px 0; }

    /* Feature cards grid — 2 cols */
    .features-overlay .row { row-gap: 48px; }
    .feature-card-dark { min-height: 200px; }

    /* Journey circles */
    .journey-img-main { width: 220px; height: 220px; }
    .journey-img-small { width: 90px; height: 90px; left: 8px; }

    /* Counter numbers */
    .counters-banner .counter-number { font-size: 2rem; }
    .counters-banner .counter-label { font-size: 10px; letter-spacing: 1px; }

    /* Video quote */
    .video-quote-banner h3 { font-size: 20px; }

    /* Wide quote */
    .wide-quote-banner h2 { font-size: 24px; }

    /* Health bottle */
    .health-center-bottle { width: 160px; height: 160px; }

    /* Tasting section */
    .tasting-content { padding: 32px 20px; }
    .tasting-content h2 { font-size: 22px; }

    /* Gallery — 3 cols on mobile */
    .gallery-row .gallery-col { flex: 0 0 33.333%; max-width: 33.333%; }

    /* Recipe cards */
    .recipe-card { height: 280px; }

    /* Our range */
    .our-range-yellow { min-height: auto; padding: 32px 20px; }
    .our-range-yellow h2 { font-size: 28px; }
    .our-range-img { min-height: 220px; }

    /* Footer */
    footer { padding: 48px 0 0; }
    .footer-bottom { margin-top: 32px; }
}

/* ── Small mobile (≤575px) ── */
@media (max-width: 575.98px) {
    .hero-slider .carousel-item { height: 320px; }
    .section-padding { padding: 36px 0; }
    .counters-banner { padding: 28px 0; }
    .counters-banner .counter-number { font-size: 1.75rem; }
    .gallery-row .gallery-col { flex: 0 0 50%; max-width: 50%; }
    .features-overlay { margin-top: 16px; }
}

/* =========================================
   ADDITIONAL CUSTOM HEADER AND SLIDER REPLICAS
   ========================================= */

/* Top header vertical dividers */
.header-v-divider {
    width: 1px;
    height: 34px;
    background-color: #eaeded;
    margin: 0 5px;
    align-self: center;
}

/* Contact info outline boxes */
.header-info-box .info-icon.phone-icon-box {
    width: 38px;
    height: 38px;
    background: transparent !important;
    border: 1.5px solid var(--primary) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-info-box .info-icon.email-icon-box {
    width: 38px;
    height: 38px;
    background: transparent !important;
    border: 1.5px solid var(--primary) !important;
    border-radius: 4px !important; /* square with slight rounding */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fullscreen Search Overlay */
.search-style-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.search-style-fullscreen.active {
    display: flex;
    opacity: 1;
}
.search-style-fullscreen .search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 55px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}
.search-style-fullscreen .search-close:hover {
    color: #ffffff;
}
.search-style-fullscreen .search_form_wrap {
    width: 80%;
    max-width: 600px;
    text-align: center;
}
.search-style-fullscreen .search-field {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    padding: 15px 0;
    outline: none;
    transition: border-bottom-color 0.3s ease;
}
.search-style-fullscreen .search-field:focus {
    border-bottom-color: var(--primary);
}
.search-style-fullscreen .search-submit {
    margin-top: 35px;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 42px;
    font-size: 15px;
    font-weight: 700;
    
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.search-style-fullscreen .search-submit:hover {
    background-color: var(--primary-dark);
}

/* Vertically stacked Hero Slider controls on the center-right side */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    position: absolute;
    top: auto;
    bottom: auto;
    left: auto;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.45) !important;
    background: transparent !important;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    opacity: 1;
}
.hero-slider .carousel-control-prev {
    top: calc(50% - 34px);
    transform: translateY(-50%);
}
.hero-slider .carousel-control-next {
    top: calc(50% + 34px);
    transform: translateY(-50%);
}

/* =========================================
   WHAT WE DO NEW CARD LAYOUT
   ========================================= */
.what-we-do-card-new {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    overflow: visible;
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
    margin-bottom: 30px;
    height: calc(100% - 30px);
}
.what-we-do-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}
.what-we-do-card-new .card-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}
.what-we-do-card-new .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.what-we-do-card-new:hover .card-img-wrap img {
    transform: scale(1.08);
}
.what-we-do-card-new .card-body-new {
    position: relative;
    padding: 40px 24px 30px;
    text-align: center;
    background: #fff;
    border-radius: 0 0 var(--radius) var(--radius);
}
.what-we-do-card-new .card-icon-new {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background-color: #0b9355 !important;
    color: #ffd200 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    border: 3px solid #fff;
    z-index: 5;
    transition: all 0.3s ease;
}
.what-we-do-card-new:hover .card-icon-new {
    transform: translateX(-50%) scale(1.08);
    background-color: #086e3f !important;
}
.what-we-do-card-new .card-body-new h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}
.what-we-do-card-new .card-body-new p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   TESTIMONIALS NEW COLUMN LAYOUT
   ========================================= */
.testimonial-section-layout {
    background-color: #f9f9f5 !important;
}
.testimonial-arrows {
    display: flex;
    gap: 12px;
}
.testimonial-arrows .arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    transition: all var(--transition);
}
.testimonial-arrows .arrow-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.testimonial-card-new {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.testimonial-card-new .rating i {
    font-size: 12px;
    margin-right: 2px;
}
.testimonial-card-new blockquote {
    font-size: 16.5px;
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
    margin: 15px 0 0;
}
.testimonial-card-new .reviewer-info h6 {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
}
.testimonial-card-new .reviewer-info span {
    font-size: 13.5px;
    color: var(--muted);
}
.testimonial-card-new .reviewer-img-wrapper img {
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.testimonial-card-new .reviewer-badge-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ============================================================
   PIXEL-PERFECT REDESIGN OVERRIDES
   ============================================================ */

/* Global Typography & Variables */
body, h1, h2, h3, h4, h5, h6, .navbar-nav .nav-link, .btn-primary-custom {
    font-family: 'Manrope', sans-serif !important;
}

:root {
    --primary: #0b9355;
    --primary-dark: #07703f;
    --secondary: #ffd200;
    --secondary-dark: #e0b800;
    --dark: #1b221b;
}

.cursive-eyebrow {
    font-family: 'Covered By Your Grace', cursive !important;
    font-size: 32px !important;
    color: var(--primary) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    display: block;
    margin-bottom: 8px;
}

/* Header & Navbar */
.top-header-area {
    background: #ffffff;
    border-bottom: 1px solid #f0f2f0;
}
.header-social-icons a {
    color: #555555;
    font-size: 14px;
    margin-right: 15px;
    transition: color 0.2s ease;
}
.header-social-icons a:hover {
    color: var(--primary);
}
.header-info-box .info-icon i {
    color: var(--primary) !important;
}
.navbar {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
}
.navbar-nav .nav-link {
    font-weight: 800 !important;
    font-size: 16px !important;
    color: #A5A49F !important;
    letter-spacing: 0.5px !important;
    padding: 12px 16px !important;
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-link:hover {
    color: var(--dark) !important;
}

/* Hero Section */
.hero-slider {
    height: 700px;
    overflow: hidden;
    position: relative;
}
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
}
.hero-slider .slider-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
.hero-slider .slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 2;
}
.hero-slider .slider-title {
    color: white;
    font-size: 55px;
    font-family: 'Poppins, sans-serif' !important;
    font-weight: 600;
    line-height: 58px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-slider .slider-eyebrow {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    display: block;
}
.btn-primary-custom {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 12px 30px !important;
    letter-spacing: 0.5px;
    
    transition: all 0.3s ease !important;
    display: inline-block !important;
}
.btn-primary-custom:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11,147,85,0.3);
}

/* Feature Overlay Cards */
.features-overlay {
    margin-top: -100px;
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
}
.feature-card-dark {
    position: relative;
    background: #111111;
    border-radius: 12px;
    overflow: visible;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: none;
    transition: all 0.3s ease;
}
.feature-card-dark .card-bg-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.feature-card-dark .card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.feature-card-dark .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 10, 0.72);
    z-index: 2;
    transition: background 0.3s ease;
    border-radius: 12px;
}
.feature-card-dark:hover .card-bg-img {
    transform: scale(1.12);
}
.feature-card-dark:hover .card-overlay {
    background: rgba(10, 15, 10, 0.62);
}
.feature-card-dark:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.feature-card-dark .card-content-wrap {
    position: relative;
    z-index: 3;
    padding: 30px 20px 50px;
    text-align: center;
}
.feature-card-dark h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    
}
.feature-card-dark p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0;
}
.feature-card-dark .card-badge-yellow {
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    background: #ffd200;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
    border: 3px solid #ffffff;
    z-index: 4;
    transition: all 0.3s ease;
}
.feature-card-dark:hover .card-badge-yellow {
    bottom: -32px;
    transform: translateX(-50%) scale(1.08);
}
.feature-card-dark .card-badge-yellow svg {
    width: 48px;
    height: 48px;
    display: block;
}

/* About Journey circular images & promise list */
.journey-img-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
}
.journey-img-main {
    width: 380px !important;
    height: 380px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    outline: 4px solid var(--secondary);
    outline-offset: 6px;
}
.journey-img-small {
    position: absolute !important;
    bottom: 0px !important;
    left: -10px !important;
    width: 170px !important;
    height: 170px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--secondary) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    background: #ffffff;
}
.promises-row {
    margin-top: 20px;
}
.promise-item {
    min-width: 90px;
}
.promise-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(14,131,67,0.15);
}
.promise-item:hover .promise-icon {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(11,102,52,0.3);
}
.promise-item span {
    font-family: 'Manrope', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

/* What We Do Cards */
.what-we-do-card-new {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}
.what-we-do-card-new .card-img-wrap {
    height: 220px;
}
.what-we-do-card-new .card-body-new {
    padding: 35px 20px 25px;
    border-radius: 0 0 12px 12px;
}

/* Our Range Split section */
.our-range-yellow {
    background-color: var(--secondary) !important;
}
.our-range-yellow h2 {
    font-size: 44px;
    font-weight: 900;
    color: var(--dark);
}
.range-description {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

/* Counter Banner below New Products */
.counters-banner {
    position: relative;
    background-image: url('../sarokhet-bg-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #000;
    border-radius: 0;
    height: 190px;
}
.counters-banner::before {
    display: none;
}
.counters-banner .counter-number {
    font-size: 59px !important;
    font-weight: 900;
    color: #0B9355 !important;
    font-family: 'Covered By Your Grace', cursive !important;

}
.counters-banner .counter-label {
    font-size: 16.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #000 !important;
}

/* Product Cards — override to match reference (sharp 4px corners) */
.product-card {
    border-radius: 4px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    border: 1px solid #eaeded !important;
}
.product-card .badge-discount,
.product-card .badge-new {
    font-size: 10px !important;
    font-weight: 800 !important;
    border-radius: 2px !important;
    padding: 3px 9px !important;
    background: #eed235 !important;
    color: #000 !important;
}
.product-card .product-content h6 a {
    font-weight: 700;
    color: var(--dark);
    font-size: 14.5px;
}
.product-card .product-price span {
    color: #0B9355 !important;
    font-size: 16px;
    font-weight: 800;
}

/* Video Quote Pulse play button */
.video-quote-banner .quote-text {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
}
.video-quote-banner .sub-text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    
    color: var(--secondary);
    display: block;
    margin-top: 8px;
}
.play-btn-pulse {
    width: 72px;
    height: 72px;
    background-color: var(--secondary);
    color: var(--dark) !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 0 0 0 rgba(255,210,0,0.5);
    animation: pulsePlay 1.8s infinite;
    transition: transform 0.3s ease;
}
.play-btn-pulse:hover {
    transform: scale(1.08);
}
@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(255,210,0,0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255,210,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255,210,0,0);
    }
}

/* Recipes Section taller cards */
.recipe-card {
    height: 420px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
}
.recipe-card .recipe-gradient {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, transparent 100%) !important;
}
.recipe-card .recipe-content {
    padding: 30px 20px !important;
}
.recipe-card .recipe-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}
.btn-recipe-action {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--dark) !important;
    font-weight: 800;
    font-size: 11px;
    
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-recipe-action:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* Health Benefits symmetric circular layout */
.health-benefits-dark {
    background-image: url('../behtreen-oil-banner1.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    z-index: 1;
}
.health-benefits-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 28, 20, 0.9);
    z-index: -1;
}
.health-center-bottle {
    width: 300px !important;
    height: 300px !important;
    border-radius: 50% !important;
    
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
}
.health-center-bottle img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}
.health-benefit-item {
    margin-bottom: 35px !important;
}
.health-benefit-item .hb-icon {
    width: 52px !important;
    height: 52px !important;
    background: var(--secondary) !important;
    color: var(--dark) !important;
    font-size: 18px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255,210,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.health-benefit-item .hb-text h5 {
    font-size: 18px !important;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 6px;
}
.health-benefit-item .hb-text p {
    font-size: 14px !important;
    color: rgba(255,255,255,0.72) !important;
    line-height: 1.5;
}

/* Pure Mustard Goodness icons bar */
.goodness-bar {
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.goodness-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto;
    transition: all 0.3s ease;
}
.goodness-icon-item:hover .goodness-icon-wrap {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(11,147,85,0.2);
}
.goodness-icon-item h6 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 10px;
}

/* Testimonial card overrides */
.testimonial-card-new {
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04) !important;
}

/* Tasting Experience Badges */
.tasting-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.tasting-badge-wrap .badge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.tasting-badge-wrap:hover .badge-icon {
    transform: scale(1.08);
}
.tasting-badge-wrap .icon-yellow { background-color: var(--secondary); color: var(--dark); }
.tasting-badge-wrap .icon-red { background-color: #fce4e4; color: #e74c3c; }
.tasting-badge-wrap .icon-green { background-color: var(--primary-light); color: var(--primary); }
.tasting-badge-wrap h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

/* Blog Cards */
.blog-card {
    border-radius: 12px !important;
    border: 1px solid #f0f2f0 !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05) !important;
}
.blog-card .blog-img {
    height: 220px !important;
}
.blog-card .blog-card-title a {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}
.btn-blog-action {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    
    padding: 7px 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-blog-action:hover {
    background-color: var(--primary);
    color: #ffffff !important;
}

/* Bottom Gallery strip */
.gallery-row .gallery-col {
    transition: all 0.3s ease;
}
.gallery-row .gallery-item {
    border: 1px solid #ffffff;
}

/* Footer layout and dark text spacing */
footer {
    background-color: #24231D !important;
    background-image: url('../images/farm-sketch.png') !important;
    background-repeat: no-repeat !important;
    background-position: bottom center !important;
    background-size: cover !important;
    background-blend-mode: overlay !important;
    color: #b0beb5 !important;
    padding: 65px 0 0 !important;
}
footer h5 {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}
footer p, footer span {
    color: #b0beb5 !important;
}
footer a {
    color: #b0beb5 !important;
}
footer a:hover {
    color: var(--secondary) !important;
}

/* ============================================================
   FLOATING SIDEBAR & MINIMIZER STYLE ALIGNMENT OVERRIDES
   ============================================================ */
.mystickyelements-fixed ul.mystickyelements-lists li.mystickyelements-minimize {
    width: 53px !important;
    height: 40px !important;
    position: relative !important;
    display: block !important;
    margin-bottom: 0 !important;
}
.mystickyelements-fixed ul.mystickyelements-lists li.mystickyelements-minimize span {
    background: #000000 !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    font-size: 16px !important;
    color: #ffffff !important;
}
.mystickyelements-fixed.mystickyelements-collapsed ul.mystickyelements-lists li.mystickyelements-minimize {
    position: absolute !important;
    left: -40px !important;
    top: 0 !important;
    width: 40px !important;
    height: 40px !important;
}
.mystickyelements-fixed.mystickyelements-collapsed ul.mystickyelements-lists li.mystickyelements-minimize span {
    border-radius: 6px 0 0 6px !important;
}

/* ============================================================
   WHAT WE DO SECTION BACKROUND IMAGE & CARD OVERLAYS
   ============================================================ */
.what-we-do-section {
    position: relative;
    background-color: #faf8f5 !important;
    z-index: 1;
    overflow: visible !important; /* Ensure overlay cards are visible */
}
.what-we-do-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/farm-sketch.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
}

.what-we-do-card-new {
    position: relative !important;
    background: #fff;
    border-radius: 12px !important;
    overflow: visible !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06) !important;
    transition: all var(--transition);
    margin-bottom: 50px !important; /* Space for overlay box */
    height: 300px !important;
}
.what-we-do-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow) !important;
}
.what-we-do-card-new .card-img-wrap {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: 12px !important;
}
.what-we-do-card-new .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.what-we-do-card-new .card-body-new {
    position: absolute !important;
    bottom: -30px !important;
    left: 15px !important;
    right: 15px !important;
    padding: 35px 20px 20px !important;
    text-align: center;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    z-index: 5 !important;
}
.what-we-do-card-new .card-icon-new {
    position: absolute !important;
    top: -30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 8px !important;
    background-color: #ffd200 !important;
    color: #0b9355 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    z-index: 6 !important;
    transition: all 0.3s ease !important;
}
.what-we-do-card-new:hover .card-icon-new {
    transform: translateX(-50%) scale(1.08) !important;
    background-color: #e0b800 !important;
}
.what-we-do-card-new .card-body-new h4 {
    font-size: 16px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    color: var(--dark);
}

/* ============================================================
   SCROLL-TO-TOP BUTTON STYLE
   ============================================================ */
.scroll-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: #0b9355;
    color: #fff !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}
.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top-btn:hover {
    background-color: #086e3f;
    transform: translateY(-3px);
}

/* ============================================================
   PRELOADER STYLE
   ============================================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.preloader-logo img {
    max-height: 80px;
    width: auto;
    animation: pulse 1.8s ease-in-out infinite;
}
.logo-fallback-spinner {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #0b9355;
    animation: pulse 1.8s ease-in-out infinite;
}
.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(11, 147, 85, 0.1);
    border-radius: 50%;
    border-top-color: #0b9355;
    border-right-color: #EEC044;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

/* ============================================================
   PRODUCT SLIDER STYLE
   ============================================================ */
.product-slider-container {
    position: relative;
    width: 100%;
}
.product-slider-track::-webkit-scrollbar {
    display: none;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eaeded;
    color: #1b221b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.slider-btn:hover {
    background: #0b9355;
    color: #ffffff;
    border-color: #0b9355;
}
.prev-btn {
    left: -20px;
}
.next-btn {
    right: -20px;
}
@media (max-width: 768px) {
    .slider-btn {
        display: none;
    }
}

/* ============================================================
   BRANDING PAGE GRID STYLE
   ============================================================ */
.branding-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
@media (min-width: 768px) {
    .branding-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}
@media (min-width: 992px) {
    .branding-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.branding-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eaeded;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
    position: relative;
    cursor: pointer;
}
.branding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(14,131,67,0.18);
}
.branding-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    display: block;
}
.branding-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

/* ── + icon overlay ── */
.branding-card::after {
    content: '+';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    font-weight: 300;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.6) rotate(-15deg);
    pointer-events: none;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
}
.branding-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* ── green ring on hover ── */
.branding-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 12px;
    z-index: 5;
    transition: border-color 0.3s ease;
    pointer-events: none;
}
.branding-card:hover::before {
    border-color: rgba(14,131,67,0.55);
}

.hover-shadow {
    transition: all 0.3s ease;
}
.hover-shadow:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px);
}
.hover-scale {
    transition: transform 0.5s ease;
}
.hover-scale:hover {
    transform: scale(1.05);
}
.hover-text-success {
    transition: color 0.2s ease;
}
.hover-text-success:hover {
    color: #0b9355 !important;
}

/* ============================================================
   CUSTOM LEAF CIRCLE SPINNER
   ============================================================ */
.leaf-spinner {
    width: 130px;
    height: 130px;
    animation: spin-clockwise 1.8s linear infinite;
}
@keyframes spin-clockwise {
    100% { transform: rotate(360deg); }
}

/* ============================================================
   CUSTOM CIRCULAR PAGINATION
   ============================================================ */
.pagination {
    gap: 6px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.pagination .page-item {
    margin: 0;
}
.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    border: 1px solid #e0e0e0;
    color: #3a3a3a;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
    background: #ffffff;
    box-shadow: none;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}
.pagination .page-item.active .page-link {
    background-color: #0B9355 !important;
    border-color: #0B9355 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(11,147,85,0.3);
}
.pagination .page-item:not(.active) .page-link:hover {
    background-color: #f0f9f4;
    border-color: #0B9355;
    color: #0B9355;
    transform: translateY(-2px);
}
.pagination .page-item.disabled .page-link {
    background-color: #f8f9fa;
    border-color: #e8e8e8;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}
/* Prev / Next arrows in pagination */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-size: 13px;
}

/* ============================================================
   REFERENCE SITE EXACT OVERRIDES (behtreen.in)
   ============================================================ */
body {
    font-family: 'Manrope', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: #3a3a3a !important;
    background: #ffffff !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif !important;
}

/* ── Preloader (larger, prominent) ── */
.leaf-spinner {
    width: 220px !important;
    height: 220px !important;
}

/* ── Page Banner (same image treatment on all pages) ── */
.page-banner-section {
    min-height: 320px !important;
    padding: 88px 0 !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-color: #1b221b !important;
}

.page-banner-section::before {
    background: rgba(0, 0, 0, 0.38) !important;
}

.page-banner-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb-nav {
    font-family: 'Manrope', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    color: rgba(255, 255, 255, 0.92) !important;
}

.breadcrumb-nav .breadcrumb-link {
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
}

.breadcrumb-nav .breadcrumb-link:hover {
    color: #ffd200 !important;
}

.breadcrumb-nav .separator {
    margin: 0 8px;
    opacity: 0.85;
}

.breadcrumb-nav .breadcrumb-current {
    color: rgba(255, 255, 255, 0.95) !important;
}

.page-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
    text-shadow: none !important;
    margin: 0 !important;
}

@media (min-width: 992px) {
    .page-banner-section {
        min-height: 360px !important;
        padding: 96px 0 !important;
    }
    .page-title {
        font-size: 48px !important;
    }
}

/* ── Header / Navbar ── */
.top-header-area {
    padding: 10px 0 !important;
    border-bottom: 1px solid #eaeded !important;
}

.top-header-area .logo-img {
    max-height: 93px !important;
}

.header-social-icons a {
    width: 34px !important;
    height: 34px !important;
    background: #f4f2ec !important;
    color: #555555 !important;
    font-size: 13px !important;
    border-radius: 50% !important;
    margin-right: 0 !important;
}

.header-social-icons a:hover {
    background: #ffd200 !important;
    color: #1b221b !important;
}

.header-info-box .info-icon {
    width: 42px !important;
    height: 42px !important;
    border: 2px solid #0b9355 !important;
    border-radius: 50% !important;
    background: transparent !important;
}

.header-info-box .info-text .label {
    font-size: 12px !important;
    color: #777777 !important;
    font-weight: 400 !important;
    text-transform: none !important;
}

.header-info-box .info-text .value {
    font-size: 15px !important;
    color: #1b221c !important;
    font-weight: 800 !important;
}

.marquee-bar {
    background: #0b9355 !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}

.marquee-bar marquee,
.marquee-bar .marquee-text {
    font-family: 'Manrope', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

#mainNav {
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07) !important;
    border-bottom: 1px solid #eaeded !important;
}

#mainNav .navbar-nav {
    gap: 0 !important;
}

#mainNav .navbar-nav .nav-link {
    font-family: 'Manrope', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #555555 !important;
    padding: 18px 14px !important;
    letter-spacing: 0.1px !important;
    position: relative !important;
}

#mainNav .navbar-nav .nav-link::after {
    display: block !important;
    content: '' !important;
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    bottom: 0 !important;
    height: 3px !important;
    background: #0b9355 !important;
    transform: scaleX(0) !important;
    transition: transform 0.25s ease !important;
}

#mainNav .navbar-nav .nav-item.active .nav-link,
#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: #0b9355 !important;
    font-weight: 700 !important;
}

#mainNav .navbar-nav .nav-item.active .nav-link::after,
#mainNav .navbar-nav .nav-link:hover::after,
#mainNav .navbar-nav .nav-link.active::after {
    transform: scaleX(1) !important;
}

.nav-icons a,
.nav-icons .dropdown-toggle {
    color: #1b221b !important;
}

.nav-icons .badge.cart-count-badge {
    background: #0b9355 !important;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    min-width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: -8px !important;
    right: -8px !important;
}

/* ── Shop Page ── */
.shop-section {
    background: #ffffff;
    padding: 50px 0 70px !important;
}

.shop-search-field {
    position: relative;
    background: #0b9355;
}

.shop-search-field input {
    width: 100%;
    border: none;
    background: #0b9355;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 44px 13px 16px;
    outline: none;
}

.shop-search-field input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.shop-search-field button {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.shop-search-field-light {
    background: #ffffff;
    border: 1px solid #eaeded;
}

.shop-search-field-light input {
    background: #ffffff;
    color: #1b221b;
    padding-right: 42px;
}

.shop-search-field-light input::placeholder {
    color: #999999;
}

.shop-search-field-light button {
    color: #0b9355;
}

.shop-filter-widget {
    margin-bottom: 28px;
}

.shop-filter-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1b221b;
    margin-bottom: 16px;
}

.shop-price-range {
    accent-color: #ffd200;
    height: 6px;
}

.shop-price-range::-webkit-slider-runnable-track {
    background: #ffd200;
    height: 6px;
    border-radius: 3px;
}

.shop-price-range::-webkit-slider-thumb {
    background: #ffffff;
    border: 2px solid #0b9355;
}

.shop-price-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.shop-price-label {
    font-size: 13px;
    color: #777777;
    font-weight: 600;
}

.shop-apply-btn {
    background: #0b9355;
    color: #ffffff;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 7px 16px;
    border-radius: 3px;
    cursor: pointer;
}

.shop-apply-btn:hover {
    background: #097a46;
}

.shop-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-category-list li {
    border-bottom: 1px solid #f0f0f0;
}

.shop-category-list li:last-child {
    border-bottom: none;
}

.shop-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 0;
    color: #3a3a3a;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.shop-category-list a i {
    font-size: 10px;
    color: #aaaaaa;
}

.shop-category-list a:hover,
.shop-category-list a.active {
    color: #0b9355;
    padding-left: 4px;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.shop-results-text {
    margin: 0;
    font-size: 14px;
    color: #777777;
    font-weight: 500;
}

.shop-sort-select {
    width: 200px;
    max-width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3a3a3a;
    padding: 8px 12px;
    background: #ffffff;
}

.shop-product-grid .product-card {
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
}

.shop-product-grid .product-card:hover {
    box-shadow: none;
    transform: none !important;
}

.shop-product-grid .product-actions {
    display: none !important;
}

.shop-product-grid .product-card:hover .product-img-wrapper img {
    transform: none;
}

.shop-product-grid .product-content h6 {
    font-size: 15px;
    font-weight: 700;
}

.shop-product-grid .product-price {
    font-size: 15px;
}

.shop-pagination-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* ── Blog Listing Page ── */
.blog-listing-section {
    background: #ffffff;
    padding: 50px 0 70px !important;
}

.blog-list-card {
    background: #ffffff;
    height: 100%;
}

.blog-list-img {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
}

.blog-list-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-list-card:hover .blog-list-img img {
    transform: scale(1.03);
}

.blog-date-badge {
    position: absolute;
    left: 16px;
    bottom: -1px;
    transform: translateY(50%);
    background: #0b9355;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    line-height: 1;
    z-index: 2;
}

.blog-list-body {
    padding-top: 18px;
}

.blog-list-title {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.45;
    margin: 0;
}

.blog-list-title a {
    color: #1b221b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-list-title a:hover {
    color: #0b9355;
}

.blog-recent-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-recent-sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.blog-recent-sidebar-list li:last-child {
    border-bottom: none;
}

.blog-recent-sidebar-list a {
    display: block;
    color: #1b221b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
    margin-bottom: 4px;
}

.blog-recent-sidebar-list a:hover {
    color: #0b9355;
}

.blog-recent-sidebar-list span {
    font-size: 12px;
    color: #ffd200;
    font-weight: 700;
}

/* ── WooCommerce-style square pagination ── */
.woocommerce-pagination {
    width: 100%;
}

.woocommerce-pagination .page-numbers {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.woocommerce-pagination .page-numbers li {
    margin: 0;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    color: #333333;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    transition: all 0.2s ease;
}

.woocommerce-pagination .page-numbers li span.current {
    background: #0b9355;
    border-color: #0b9355;
    color: #ffffff;
}

.woocommerce-pagination .page-numbers li a:hover {
    border-color: #0b9355;
    color: #0b9355;
}

.woocommerce-pagination .page-numbers li span.disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 991.98px) {
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title {
        font-size: 34px !important;
    }
}

/* ── Cart Page (reference exact) ── */
.cart-page-section {
    padding: 50px 0 70px !important;
}

.cart-card {
    background: #ffffff;
    border: none;
    box-shadow: none;
}

.cart-table th {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #aaaaaa;
    border-bottom: 1px solid #eaeded;
    padding: 14px 0;
    background: transparent;
}

.cart-table td {
    padding: 24px 0;
    border-bottom: 1px solid #eaeded;
    vertical-align: top;
}

.cart-product-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cart-product-thumb {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.cart-product-name {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0b9355;
    text-transform: lowercase;
    margin-bottom: 6px;
}

.cart-product-prices del {
    color: #999999;
    font-size: 14px;
    margin-right: 8px;
}

.cart-product-prices span {
    color: #0b9355;
    font-size: 15px;
    font-weight: 800;
}

.cart-product-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
}

.cart-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    background: #ffffff;
}

.cart-qty-box .qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #555555;
}

.cart-qty-box .qty-input {
    width: 36px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    background: transparent;
}

.cart-remove-btn {
    border: none;
    background: transparent;
    color: #999999;
    font-size: 16px;
    padding: 0;
}

.cart-line-total strong {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #555555;
    display: block;
}

.cart-save-badge {
    display: inline-block;
    margin-top: 6px;
    font-size: 12px;
    color: #777777;
    background: #f5f5f5;
    padding: 3px 8px;
}

.summary-card {
    background: #ffffff;
    border: none;
    padding: 0;
    box-shadow: none;
}

.summary-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1b221b;
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.cart-coupon-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #dcdcdc;
    background: #ffffff;
    padding: 12px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #3a3a3a;
}

.cart-estimated-total {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #1b221b;
    margin: 24px 0;
}

.btn-cart-checkout {
    background: #222222 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: none !important;
    padding: 16px 20px !important;
}

.btn-cart-checkout:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

/* ── Contact Page: script titles + form typography ── */
.contact-card-title {
    font-family: 'Covered By Your Grace', cursive !important;
    font-size: 32px !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    margin-bottom: 12px !important;
    text-transform: none !important;
}

.contact-form-wrap {
    background: #f7f5f0 !important;
    border-color: #eaeded !important;
}

.contact-form-eyebrow {
    display: block;
    font-family: 'Covered By Your Grace', cursive !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    color: #0b9355 !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.contact-form-heading {
    font-family: 'Manrope', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #1b221b !important;
    margin-bottom: 24px !important;
    line-height: 1.2 !important;
}

/* ── Our Range carousel slides (home + contact) ── */
.our-range-banner .section-title {
    margin-bottom: 0;
    padding-top: 50px;
}

.our-range-banner .section-title .cursive-eyebrow {
    font-family: 'Covered By Your Grace', cursive !important;
    font-size: 36px !important;
    color: #0b9355 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
}

.our-range-banner .section-title h2 {
    font-family: 'Manrope', sans-serif !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #1b221b !important;
}

.our-range-slide {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center;
}

.our-range-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.our-range-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.55);
}

.our-range-indicators button.active {
    background-color: #ffffff;
}

.our-range-yellow img {
    max-width: 100%;
    height: auto;
}

/* ── Order Tracking Page ── */
.order-tracking-section {
    background: #ffffff;
    padding: 50px 0 70px !important;
}

.tracking-card {
    background: #ffffff;
    border: 1px solid #eaeded;
    border-radius: 6px;
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    margin-bottom: 28px;
}

.tracking-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1b221b;
    margin-bottom: 10px;
}

.tracking-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #777777;
    margin-bottom: 24px;
}

.tracking-form .form-label {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1b221b;
}

.tracking-form .form-control {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    border-color: #dcdcdc;
    padding: 10px 14px;
    border-radius: 4px;
}

.btn-track {
    background-color: #0b9355;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 4px;
    padding: 12px 20px;
    border: none;
    transition: background 0.2s ease;
}

.btn-track:hover {
    background-color: #097a46;
    color: #ffffff;
}

.track-progressbar {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 40px 0;
    position: relative;
}

.track-progressbar::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    width: 90%;
    height: 4px;
    background-color: #eaeded;
    z-index: 1;
}

.track-progressbar .step-line-active {
    position: absolute;
    top: 25px;
    left: 5%;
    height: 4px;
    background-color: #0b9355;
    z-index: 2;
    transition: width 0.4s ease;
}

.track-step {
    width: 20%;
    text-align: center;
    position: relative;
    z-index: 3;
}

.track-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #eaeded;
    color: #7f8c8d;
    margin: 0 auto 10px auto;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.track-step.active .track-icon {
    border-color: #0b9355;
    background-color: #0b9355;
    color: #ffffff;
    box-shadow: 0 0 0 5px rgba(11, 147, 85, 0.15);
}

.track-step.completed .track-icon {
    border-color: #0b9355;
    background-color: #ffffff;
    color: #0b9355;
}

.track-step-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 2px;
}

.track-step.active .track-step-title,
.track-step.completed .track-step-title {
    color: #1b221b;
}

.track-step-date {
    font-size: 12px;
    color: #bdc3c7;
}

.tracking-shipment-box,
.tracking-address-box {
    background: #f9f9f5;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #eaeded;
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .track-step {
        width: auto;
        flex: 1;
    }

    .track-step-title {
        font-size: 11px;
    }

    .track-icon {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   MODERN FILTER SIDEBAR  (products/index.blade.php)
═══════════════════════════════════════════════════════════════════ */
.shop-filter-aside {
    position: sticky;
    top: 100px;
}

.filter-active-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fff8e1, #fffde7);
    border: 1px solid #ffd200;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
}
.filter-active-label { color: #795548; }
.filter-clear-all-btn {
    color: #e74c3c;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.2s;
}
.filter-clear-all-btn:hover { opacity: 0.7; color: #e74c3c; }

.filter-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #eef0ec;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.filter-card:hover { box-shadow: 0 4px 20px rgba(14,131,67,0.08); }

.filter-card-header {
    background: linear-gradient(135deg, #0e8343 0%, #27ae60 100%);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.filter-card-body {
    padding: 14px;
}

/* Search box */
.filter-search-box {
    display: flex;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    overflow: hidden;
    transition: border-color 0.2s;
}
.filter-search-box:focus-within { border-color: #0e8343; }
.filter-search-box input {
    flex: 1;
    border: none;
    padding: 9px 13px;
    font-size: 13.5px;
    outline: none;
    color: #1b221b;
    font-family: 'Manrope', sans-serif;
    background: transparent;
}
.filter-search-box button {
    background: #0e8343;
    border: none;
    color: #fff;
    padding: 9px 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 13px;
}
.filter-search-box button:hover { background: #097a46; }

/* Category list */
.filter-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.filter-category-list li { border-bottom: 1px solid #f5f5f5; }
.filter-category-list li:last-child { border-bottom: none; }

.filter-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px;
    font-size: 13.5px;
    font-weight: 600;
    color: #3a3a3a;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Manrope', sans-serif;
    border-radius: 6px;
}
.filter-cat-link:hover { color: #0e8343; padding-left: 8px; background: rgba(14,131,67,0.04); }
.filter-cat-link.active { color: #0e8343; font-weight: 800; background: rgba(14,131,67,0.06); padding-left: 8px; border-radius: 6px; }

.filter-cat-arrow { font-size: 10px; color: #bbb; }
.filter-cat-check { font-size: 11px; color: #0e8343; }

/* Price range slider */
.filter-price-display {
    display: flex;
    align-items: center;
    gap: 8px;
}
.filter-price-badge {
    background: #f0f9f4;
    border: 1.5px solid #c8e6c9;
    color: #0e8343;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
}
.filter-price-dash {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.filter-price-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(to right, #0e8343 0%, #0e8343 var(--progress, 100%), #e0e0e0 var(--progress, 100%), #e0e0e0 100%);
    outline: none;
    cursor: pointer;
    accent-color: #0e8343;
}
.filter-price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #0e8343;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(14,131,67,0.25);
    transition: transform 0.15s;
}
.filter-price-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.filter-price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #0e8343;
    cursor: pointer;
}
.filter-price-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #aaa;
    margin-top: 6px;
    font-weight: 600;
}

.filter-apply-btn {
    background: linear-gradient(135deg, #0e8343, #27ae60);
    color: #fff;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.filter-apply-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(14,131,67,0.3); }

/* Sort options */
.filter-sort-options { display: flex; flex-direction: column; gap: 2px; }
.filter-sort-option {
    display: flex;
    align-items: center;
    padding: 9px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.15s;
}
.filter-sort-option:hover { background: rgba(14,131,67,0.07); color: #0e8343; }
.filter-sort-option.active { background: rgba(14,131,67,0.1); color: #0e8343; font-weight: 800; }
.filter-sort-option i:first-child { color: #0e8343; opacity: 0.7; }
.filter-sort-option .ms-auto { font-size: 11px; color: #0e8343; }

/* ── Toolbar v2 ── */
.shop-toolbar-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid #eef0ec;
    border-radius: 10px;
    padding: 12px 18px;
}
.shop-results-info {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
}
.shop-results-info strong { color: #1b221b; }
.shop-clear-btn {
    background: #fce4ec;
    color: #e74c3c;
    border: none;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.shop-clear-btn:hover { background: #e74c3c; color: #fff; }

@media (max-width: 767px) {
    .shop-toolbar-v2 { flex-direction: column; align-items: flex-start; }
    .shop-filter-aside { position: static; }
}


/* ═══════════════════════════════════════════════════════════════════
   MODERN PAGINATION  (behtreen.blade.php)
═══════════════════════════════════════════════════════════════════ */
.behtreen-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}
.pagination-info {
    font-size: 13px;
    color: #888;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.2px;
}
.pagination-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}
.pg-item {}
.pg-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1.5px solid #e8e8e8;
    background: #ffffff;
    color: #444;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1;
    cursor: pointer;
}
.pg-link:hover {
    border-color: #0e8343;
    color: #0e8343;
    background: rgba(14,131,67,0.06);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14,131,67,0.15);
}
.pg-item.active .pg-link {
    background: linear-gradient(135deg, #0e8343, #27ae60);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(14,131,67,0.35);
    transform: translateY(-1px);
}
.pg-item.disabled .pg-link {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
.pg-nav {
    border-radius: 10px;
    background: #f8fdf9;
    border-color: #c8e6c9;
    color: #0e8343;
    font-size: 12px;
}
.pg-nav:hover {
    background: #0e8343;
    border-color: #0e8343;
    color: #fff;
}
.pg-dots .pg-link {
    border: none;
    background: transparent;
    color: #aaa;
    cursor: default;
    pointer-events: none;
    min-width: 28px;
}

@media (max-width: 575px) {
    .pg-link { min-width: 38px; height: 38px; font-size: 13px; }
}
