@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --bg-color: #f0f4f3;
    --dark-teal: #1F6F5F;
    --jade-green: #2FA084;
    --mint-green: #6FCF97;
    --white: #ffffff;
    --text-dark: #1a2e2a;
    --text-muted: #64748b;
    --border-color: rgba(47, 160, 132, 0.12);
    --shadow-sm: 0 2px 8px rgba(31, 111, 95, 0.06);
    --shadow-md: 0 4px 20px rgba(31, 111, 95, 0.1);
    --shadow-hover: 0 12px 32px rgba(31, 111, 95, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 10px;
    --font-body: 'Cabin', sans-serif;
    --font-heading: 'Cabin', sans-serif;
    --font-subheading: 'Cabin', sans-serif;
    --font-product-name: 'Cabin', sans-serif;
    --font-brand: 'Cabin', sans-serif;

    /* Toast Notification Colors */
    --toast-success: #22c55e;
    --toast-warning: #f59e0b;
    --toast-error: #ef4444;
    --toast-info: #3b82f6;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body)
}

/* ===== TOAST NOTIFICATION ===== */
.toast-container {
    position: fixed;
    top: 40px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 450px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
}

.toast.visible {
    transform: translateX(0);
}

.toast-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 14px;
}

.toast-message {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Types */
.toast.success .toast-icon { background: var(--toast-success); }
.toast.warning .toast-icon { background: var(--toast-warning); }
.toast.error   .toast-icon { background: var(--toast-error); }
.toast.info    .toast-icon { background: var(--toast-info); }

/* ===== GLOBAL SKELETON LOADER ===== */
.global-page-skeleton {
    position: fixed;
    inset: 0;
    z-index: 10020;
    background: #f3f7f6;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 18px;
    overflow: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.global-page-skeleton.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.skeleton-shell {
    width: min(1280px, 100%);
    margin-top: 52px;
}

.skeleton-layout {
    display: none;
}

body.home-page .sk-home,
body.products-page .sk-products,
body.best-seller-page .sk-products,
body.product-page .sk-product-detail,
body.checkout-page .sk-form-page,
body.cart-page .sk-form-page,
body.search-page .sk-products {
    display: block;
}

body:not(.home-page):not(.products-page):not(.best-seller-page):not(.product-page):not(.checkout-page):not(.cart-page):not(.search-page) .sk-home {
    display: block;
}

.skeleton-line,
.skeleton-hero,
.skeleton-card {
    position: relative;
    overflow: hidden;
    background: #e7efed;
    border-radius: 12px;
}

.skeleton-line::before,
.skeleton-hero::before,
.skeleton-card::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.62), transparent);
    animation: skeleton-shimmer 1.25s infinite;
}

.skeleton-line {
    height: 18px;
    margin-bottom: 10px;
}

.skeleton-line.w-40 { width: 40%; }
.skeleton-line.w-70 { width: 70%; margin-bottom: 16px; }

.skeleton-hero {
    height: 210px;
    margin-bottom: 16px;
}

.skeleton-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.skeleton-card {
    height: 168px;
}

.skeleton-card.tiny {
    height: 58px;
}

.skeleton-hero.medium {
    height: 300px;
}

.skeleton-toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.skeleton-chip {
    height: 38px;
    width: 170px;
    border-radius: 999px;
    background: #e7efed;
    position: relative;
    overflow: hidden;
}

.skeleton-chip.short {
    width: 120px;
}

.skeleton-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.62), transparent);
    animation: skeleton-shimmer 1.25s infinite;
}

.skeleton-products-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px;
}

.skeleton-side-list {
    background: #edf4f2;
    border-radius: 12px;
    padding: 12px;
}

.skeleton-product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 16px;
}

.small-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.skeleton-form-box {
    background: #edf4f2;
    border-radius: 12px;
    padding: 14px;
    margin-top: 10px;
}

.skeleton-btn {
    height: 42px;
    border-radius: 10px;
    background: #e7efed;
    position: relative;
    overflow: hidden;
}

.skeleton-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.62), transparent);
    animation: skeleton-shimmer 1.25s infinite;
}

@keyframes skeleton-shimmer {
    100% { transform: translateX(100%); }
}

/* Reusable inline spinner for normal loading states */
.btn-inline-spinner {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    vertical-align: -2px;
    animation: spin 0.7s linear infinite;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    letter-spacing: 0.1px;
}

h4, h5, h6,
.section-label,
.footer-title,
.categories-sidebar-head,
.mobile-filter-group > label,
.badge-rank,
.res-count,
.btn,
.btn-hero,
.btn-cart,
.view-all-btn,
.mobile-bottom-nav a {
    font-family: var(--font-subheading);
}

p, span, a, li, label, input, textarea, select, button {
    font-family: var(--font-body);
}

/* ===== COMPLIANCE BAR ===== */
.compliance-bar {
    background: linear-gradient(90deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #e5e7eb;
    padding: 4px 20px;
    text-align: center;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ===== NAVBAR ===== */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dark-teal);
    box-shadow: 0 2px 20px rgba(31,111,95,0.25);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.navbar-wrapper.scrolled {
    background: rgba(31, 111, 95, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(16, 54, 46, 0.28);
}

/* When full search overlay is open, disable parent blur so overlay can render correctly */
body.search-overlay-open .navbar-wrapper,
body.search-overlay-open .navbar-wrapper.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    margin: 0 auto;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: var(--mint-green);
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.logo a span { color: var(--white); }

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(111, 207, 151, 0.95), rgba(47, 160, 132, 0.95));
    box-shadow: 0 8px 18px rgba(111, 207, 151, 0.28);
    color: #0f3a31;
    flex-shrink: 0;
}

.logo-icon-wrap i {
    font-size: 16px;
}

.logo-text {
    font-family: var(--font-brand);
    letter-spacing: 0.7px;
    display: inline-block;
    transform: translateY(0.5px);
}

.brand-mark:hover .logo-icon-wrap {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 10px 22px rgba(111, 207, 151, 0.35);
}

.search-bar {
    flex-grow: 1;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 50px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    pointer-events: none;
    z-index: 5;
    font-size: 14px;
}

.search-bar input {
    width: 100%;
    padding: 10px 18px 10px 44px;
    border-radius: 50px;
    border: 2px solid transparent;
    outline: none;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.search-bar input::placeholder { color: rgba(255,255,255,0.6); }
.search-bar input:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--mint-green);
}

/* Keep desktop search crisp even when navbar is blurred on scroll */
.navbar-wrapper.scrolled .search-bar input {
    background: transparent;
    color: #ffffff;
    border-color: transparent;
}

.navbar-wrapper.scrolled .search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.68);
}

.navbar-wrapper.scrolled .search-icon {
    color: rgba(255, 255, 255, 0.78);
}

.navbar-wrapper.scrolled .search-bar {
    background: rgba(15, 58, 49, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-wrapper.scrolled .search-bar input:focus {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.navbar-wrapper.scrolled .search-bar:focus-within {
    background: rgba(15, 58, 49, 0.9);
    border-color: var(--jade-green);
    box-shadow: 0 0 0 3px rgba(47, 160, 132, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.search-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 26, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Desktop View: Keep search bar visible and part of flow */
@media (min-width: 993px) {
    .search-overlay {
        position: static;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        display: flex;
        padding: 0;
        flex-grow: 1;
        max-width: 420px;
        margin: 0 30px;
        z-index:9999;
    }
    .search-overlay .search-container {
        width: 100%;
        max-width: none;
        transform: none !important;
    }
    .search-close-btn {
        display: none;
    }
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay .search-container {
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(111,207,151,0.15);
    color: var(--mint-green);
}

/* ===== CONTAINER ===== */
.container {
    /* margin: 0 auto; */
    padding: 0 4%;
}

/* ===== HERO SWIPER ===== */
.hero-swiper {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 78px);
    width: 100%;
    background: #0a1f1a;
}

.hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-swiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transform: scale(1);
    transition: transform 6s ease-in-out;
    backface-visibility: hidden;
    will-change: transform;
}

.hero-swiper .swiper-slide-active img {
    transform: scale(1.06);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15,50,40,0.92) 0%, rgba(31,111,95,0.5) 50%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 8%;
    z-index: 2;
}

.hero-text { 
    max-width: 580px; 
    color: var(--white); 
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.swiper-slide-active .hero-text {
    opacity: 1;
    transform: translateY(0);
}

.hero-text h1 {
    font-size: 48px;
    margin: 0 0 16px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-text h1 span { color: var(--mint-green); }

.hero-text p {
    font-size: 17px;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-hero-primary {
    background: var(--mint-green);
    color: var(--dark-teal);
    border-color: var(--mint-green);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--mint-green);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.swiper-button-next, .swiper-button-prev {
    background: rgba(255,255,255,0.15);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(255,255,255,0.28);
}

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

.swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; }
.swiper-pagination-bullet-active { background: var(--mint-green) !important; opacity: 1; }

/* ===== TRUST STRIP (Premium Marquee) ===== */
.trust-strip {
    background: linear-gradient(90deg, #0a1f1a 0%, #1a2e2a 50%, #0a1f1a 100%);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
}

/* Side fades for that premium "vanishing" effect */
.trust-strip::before, .trust-strip::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.trust-strip::before {
    left: 0;
    background: linear-gradient(to right, #0a1f1a 0%, transparent 100%);
}
.trust-strip::after {
    right: 0;
    background: linear-gradient(to left, #0a1f1a 0%, transparent 100%);
}

.trust-marquee {
    display: flex;
    white-space: nowrap;
    animation: trust-marquee-scroll 40s linear infinite;
    width: max-content;
}

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

.trust-items {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: default;
}

.trust-item:hover {
    color: var(--mint-green);
    transform: translateY(-1px);
}

.trust-item i {
    color: var(--mint-green);
    font-size: 16px;
    filter: drop-shadow(0 0 8px rgba(111, 207, 151, 0.3));
}

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

/* ===== SECTION WRAPPER ===== */
.section-wrapper {
    padding: 40px 0;
}

.section-wrapper + .section-wrapper {
    padding-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-label {
    display: inline-block;
    background: rgba(47, 160, 132, 0.1);
    color: var(--jade-green);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-swiper {
    overflow: visible;
}

.category-swiper .swiper-slide {
    height: auto;
}

.category-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,50,40,0.92) 0%, rgba(15,50,40,0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    color: var(--white);
    transition: var(--transition);
}

.category-card:hover {  box-shadow: var(--shadow-hover); }
.category-card:hover img { transform: scale(1.08); }

.category-overlay h3 {
    font-size: 22px;
    margin: 0 0 6px;
    font-weight: 700;
}

.category-overlay p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0 0 14px;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: var(--mint-green);
    color: var(--dark-teal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 12px;
    width: fit-content;
    transition: var(--transition);
}

.category-card:hover .category-btn {
    background: var(--white);
}

/* ===== OLD PRODUCT CARD STYLES REMOVED TO PREVENT CONFLICTS WITH STANDARDIZED PRODUCT CARDS SECTION ===== */

/* ===== BUTTONS ===== */
.btn {
    background: var(--jade-green);
    color: var(--white);
    padding: 10px 20px;
    border: 2px solid var(--jade-green);
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
    flex-grow: 1;
    font-family: var(--font-body);
}

.btn:hover {
    background: var(--dark-teal);
    border-color: var(--dark-teal);
    transform: translateY(-1px);
}

.view-btn {
    background: #f1f5f9;
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
}

.view-btn:hover {
    background: transparent;
    border-color: var(--jade-green);
    color: var(--jade-green);
}

/* ===== VIEW ALL ===== */
.view-all-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.mobile-view-all {
    display: none;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 36px;
    background: transparent;
    border: 2px solid var(--jade-green);
    color: var(--jade-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.view-all-btn:hover {
    background: var(--jade-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47,160,132,0.3);
}

/* ===== SEO CONTENT — MODERN DARK ===== */
.seo-content {
    background:
        linear-gradient(120deg, rgba(6, 24, 20, 0.82) 0%, rgba(12, 44, 36, 0.72) 52%, rgba(6, 24, 20, 0.84) 100%),
        url('images/banner4.png') center center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 34px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.seo-fullwidth {
    width: 100%;
}

.seo-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.22) 0%, rgba(15, 23, 42, 0.56) 100%);
    pointer-events: none;
}

.seo-copy {
    position: relative;
    z-index: 2;
    max-width: 920px;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--dark-teal);
    line-height: 1;
}

.cart-count-badge.is-empty {
    display: none;
}

.mobile-bottom-nav a {
    position: relative;
}

.cart-count-badge.mobile {
    top: 7px;
    right: 16%;
    border-color: #fff;
}

.seo-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #9ae6b4;
    background: rgba(111, 207, 151, 0.12);
    border: 1px solid rgba(111, 207, 151, 0.28);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
}

.seo-content h2 {
    color: var(--white);
    font-size: 32px;
    margin: 0 0 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.18;
}

.seo-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.8;
    max-width: 680px;
    margin: 0;
}

.seo-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.seo-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #d1fae5;
    border: 1px solid rgba(209, 250, 229, 0.22);
    background: rgba(15, 23, 42, 0.35);
    border-radius: 999px;
    padding: 6px 10px;
}

/* legacy seo visual block removed in full-width variant */

/* ===== DELIVERY LOCATIONS ===== */
.locations-wrapper {
    background:
        linear-gradient(130deg, rgba(15, 23, 42, 0.78) 0%, rgba(31, 111, 95, 0.68) 55%, rgba(15, 59, 50, 0.78) 100%),
        url('images/banner5.png') center center / cover no-repeat;
    border-radius: 24px;
    padding: 34px 28px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(255,255,255,0.14);
    position: relative;
    overflow: hidden;
}

.map-factory-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #e2e8f0;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.26);
    background: rgba(15,23,42,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.locations-wrapper::before {
    content: '';
    position: absolute;
    top: -70px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47,160,132,0.18) 0%, rgba(47,160,132,0.02) 68%, transparent 100%);
    pointer-events: none;
}

.locations-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(31,111,95,0.06) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.25;
    pointer-events: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 10px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.locations-map-wrap {
    position: relative;
    height: 280px;
    margin: 16px 0 20px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.18);
    overflow: hidden;
}

.map-vertical {
    display: none;
}

.locations-map-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-link {
    stroke: rgba(255, 255, 255, 0.62);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-dasharray: 7 7;
    fill: none;
}

.map-node {
    fill: transparent;
    stroke: rgba(255,255,255,0.8);
    stroke-width: 2;
    filter: none;
}

.map-factory-node {
    fill: rgba(255,255,255,0.1);
    stroke: rgba(255,255,255,0.92);
    stroke-width: 2;
}

.map-factory-text {
    fill: rgba(255,255,255,0.95);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.map-package rect {
    fill: rgba(255,255,255,0.95);
    stroke: rgba(15,23,42,0.25);
    stroke-width: 1;
}

.map-package-line {
    stroke: rgba(15,23,42,0.45);
    stroke-width: 1;
    fill: none;
}

.locations-map-labels {
    position: absolute;
    inset: 0;
}

.map-location-label {
    position: absolute;
    transform: translate(-50%, -50%);
    padding: 5px 9px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #f8fafc;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.map-location-label i {
    color: inherit;
    font-size: 10px;
}

.locations-wrapper .section-title,
.locations-wrapper .section-sub {
    color: #f8fafc;
}

.locations-wrapper .section-label {
    background: rgba(255,255,255,0.16);
    color: #d1fae5;
    border: 1px solid rgba(255,255,255,0.22);
}

.location-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(240,253,248,0.9));
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    border: 1px solid rgba(255,255,255,0.82);
    transition: var(--transition);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12), inset 0 0 0 1px rgba(47,160,132,0.08);
    letter-spacing: 0.15px;
}

.location-item:hover {
    background: linear-gradient(145deg, #ffffff, #ecfdf5);
    border-color: rgba(47,160,132,0.45);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 22px rgba(47,160,132,0.22), inset 0 0 0 1px rgba(47,160,132,0.2);
}

.location-item i {
    color: var(--jade-green);
    font-size: 11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(47,160,132,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(47,160,132,0.16);
}

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 50%, #25D366 100%);
    color: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.whatsapp-cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -20px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.whatsapp-cta h2 {
    font-size: 32px;
    margin: 0 0 12px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.whatsapp-cta p {
    font-size: 16px;
    margin: 0 0 28px;
    opacity: 0.9;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: #075E54;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 28px 22px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    border-bottom: 3px solid var(--jade-green);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(47,160,132,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.feature-card h3 {
    color: var(--dark-teal);
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* ===== NEWSLETTER — MODERN MINIMALIST ===== */
.newsletter-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 18px 0 10px;
    text-align: center;
    color: var(--dark-teal);
    position: relative;
    overflow: visible;
    box-shadow: none;
}

.newsletter-wrapper h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin: 0 0 8px;
    color: #0f172a;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.newsletter-wrapper h2 i {
    color: #2fa084;
    font-size: 0.9em;
}

.newsletter-wrapper p {
    font-size: 15px;
    opacity: 1;
    color: #64748b;
    margin: 0 0 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 540px;
    margin: 0 auto;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: var(--transition);
    align-items: center;
}

.newsletter-form:focus-within {
    background: transparent;
}

.newsletter-input-wrap {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 48px;
}

.newsletter-input-wrap i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #8ea1b4;
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}

.newsletter-form input {
    flex-grow: 1;
    width: 100%;
    padding: 0 126px 0 36px;
    border: 1px solid #d5dee9;
    border-radius: 10px;
    height: 48px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    background: #fff;
    color: #0f172a;
    min-width: 0; /* Prevents overflow */
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form input:focus {
    border-color: #2fa084;
    box-shadow: 0 0 0 3px rgba(47, 160, 132, 0.12);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0 16px;
    min-width: 112px;
    height: 38px;
    background: #2fa084;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    overflow: hidden;
}

.newsletter-form button i {
    font-size: 12px;
    line-height: 1;
    flex-shrink: 0;
    color: #fff;
}

.newsletter-form button:hover {
    background: #25856e;
    transform: translateY(-1px);
}

.newsletter-message {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.newsletter-message.success::before,
.newsletter-message.error::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.newsletter-message.success::before {
    content: "\f058";
}

.newsletter-message.error::before {
    content: "\f06a";
}

.newsletter-message.success { color: #15803d; }
.newsletter-message.error { color: #b91c1c; }

/* ===== SITE FOOTER — PREMIUM REDESIGN ===== */
.site-footer {
    background: #0a1f1a;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    margin: 0 auto;
    padding: 0 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo a {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.footer-logo span { color: var(--mint-green); }

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
}

.title-underline {
    width: 35px;
    height: 2px;
    background: var(--mint-green);
    margin: 12px 0 20px;
}

.footer-about {
    margin: 20px 0 40px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 360px;
}

/* Management Section */
.management-title-wrapper {
    margin-top: 40px;
}

.management-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mgmt-icon {
    width: 38px;
    height: 38px;
    background: rgba(111, 207, 151, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint-green);
    font-size: 16px;
    flex-shrink: 0;
}

.mgmt-text { display: flex; flex-direction: column; }
.mgmt-name { font-size: 15px; font-weight: 700; color: var(--white); }
.mgmt-role { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin-top: 2px; }

/* Links Section */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a i {
    font-size: 11px;
    color: var(--mint-green);
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.55);
}

.contact-item i {
    color: var(--mint-green);
    font-size: 16px;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}

.contact-text {
    font-size: 14.5px;
    line-height: 1.5;
}

/* Social Links */
.follow-us-wrapper {
    margin-top: 40px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.social-links a:hover {
    background: var(--mint-green);
    color: var(--dark-teal);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-tagline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.15);
}

/* ===== STORE BREADCRUMBS ===== */
.store-breadcrumbs {
    padding: 16px 0 12px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.4;
}

.store-breadcrumbs a {
    color: var(--jade-green);
    text-decoration: none;
    font-weight: 500;
}

.store-breadcrumbs a:hover { text-decoration: underline; }

/* ===== ANNOUNCEMENT BAR (hidden, kept for reference) ===== */
.announcement-bar { display: none; }

/* ===== SCROLL FADE ANIMATION ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-text h1 { font-size: 40px; }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 12px;
        padding: 8px 4%;
    }
    
    .logo { order: 1; }
    /* removed nav-links 768 */
    /* removed search-bar 768 */

    /* removed nav-links a 768 */
    
    .hero-swiper { height: 520px; }
    .hero-text h1 { font-size: 28px; }
    .hero-text p { font-size: 14px; }
    .hero-overlay { padding: 0 5%; }
    .hero-badges { display: none; }
    .btn-hero { padding: 11px 22px; font-size: 13px; }
    
    .trust-strip-inner { gap: 20px; }
    .trust-item { font-size: 12px; }
    
    .category-grid { grid-template-columns: 1fr; gap: 16px; }
    .category-swiper { padding-right: 22%; }
    .category-card { height: 260px; }
    
    .products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    
    .seo-content { 
        padding: 22px 16px;
        display: block;
    }
    .seo-kicker { font-size: 10px; }
    .seo-content h2 { font-size: 20px; }
    .seo-content p { font-size: 14px; }
    
    .locations-wrapper { padding: 24px 16px; border-radius: 18px; }
    .map-factory-badge { top: 8px; left: 8px; font-size: 9px; padding: 5px 8px; }
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
    .location-item { font-size: 12px; padding: 8px 11px; }
    .locations-map-wrap { height: 220px; }
    .map-location-label { font-size: 9px; padding: 4px 7px; }
    .map-horizontal { display: none; }
    .map-vertical { display: block; height: 360px; }
    
    .whatsapp-cta { padding: 36px 24px; }
    .whatsapp-cta h2 { font-size: 24px; }
    .whatsapp-cta p { font-size: 14px; }
    .whatsapp-btn { font-size: 14px; padding: 12px 26px; }
    
    .newsletter-wrapper { 
        padding: 12px 0 8px; 
        border-radius: 0;
        margin-top: 20px;
    }
    .newsletter-wrapper h2 { 
        font-size: 22px; 
        margin-bottom: 10px;
    }
    .newsletter-wrapper p { 
        font-size: 14px; 
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .newsletter-form { 
        flex-direction: row; 
        gap: 0;
        background: transparent;
        border: none;
        padding: 0;
        max-width: 100%;
    }
    .newsletter-input-wrap {
        width: 100%;
    }
    .newsletter-form:focus-within {
        background: transparent;
    }
    .newsletter-form input { 
        background: #fff;
        border: 1px solid #d5dee9;
        border-radius: 12px !important; 
        height: 48px;
        padding: 0 116px 0 34px;
        font-size: 15px;
    }
    .newsletter-form input:focus {
        border-color: #2fa084;
        background: #fff;
    }
    .newsletter-form button { 
        border-radius: 10px !important; 
        height: 38px;
        width: auto;
        min-width: 100px;
        font-size: 13px;
        gap: 6px;
    }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    
    .section-title { font-size: 24px; }
    .section-wrapper { padding: 40px 0; }
    .container { padding: 0 20px; }

    .mobile-view-all {
        display: inline-flex;
        margin-top: 12px;
        font-size: 13px;
        padding: 10px 18px;
    }

    .desktop-view-all {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about { margin-bottom: 25px; }
    .management-title-wrapper { margin-top: 25px; }
    .management-item { margin-bottom: 15px; }
    .contact-info-list { margin-bottom: 25px; }
    .follow-us-wrapper { margin-top: 40px; }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 50px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand-section {
        text-align: left;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--jade-green) 0%, var(--mint-green) 100%);
    color: #fff;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(47, 160, 132, 0.4);
    z-index: 9998;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(47, 160, 132, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(47, 160, 132, 0); }
    100% { box-shadow: 0 0 0 0 rgba(47, 160, 132, 0); }
}

.whatsapp-float i {
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.whatsapp-float span {
    position: absolute;
    right: 40px;
    background: var(--dark-teal);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateX(10px);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(47, 160, 132, 0.5);
    animation: none;
}

.whatsapp-float:hover span {
    opacity: 1;
    visibility: visible;
    right: 75px;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    .whatsapp-float span { display: none; }

    .skeleton-shell {
        margin-top: 38px;
    }

    .skeleton-hero {
        height: 150px;
    }

    .skeleton-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .skeleton-card {
        height: 132px;
    }

    .hide-sm {
        display: none;
    }

    .skeleton-products-layout,
    .skeleton-product-detail {
        grid-template-columns: 1fr;
    }

    .skeleton-chip {
        height: 34px;
        width: 40%;
        min-width: 110px;
    }

    .skeleton-hero.medium {
        height: 210px;
    }

    .small-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ===== ADMIN STYLES (kept separate) ===== */
/* Button Loading Spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== SLIDING SIDE CART ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-cart.active {
    transform: translateX(0);
}

.side-cart-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
}

.side-cart-header h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
}

.side-cart-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.clear-cart-btn {
    border: 1px solid rgba(239, 68, 68, 0.25);
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.clear-cart-btn:hover {
    background: rgba(239, 68, 68, 0.14);
    border-color: rgba(239, 68, 68, 0.35);
}

/* Confirm Modal */
.confirm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    opacity: 0;
    visibility: hidden;
    transition: all 0.22s ease;
    z-index: 10080;
}

.confirm-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.confirm-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -48%) scale(0.96);
    width: min(92vw, 390px);
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.22s ease;
    z-index: 10090;
}

.confirm-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.confirm-modal-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.confirm-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.confirm-modal h3 {
    margin: 0;
    font-size: 18px;
    color: #0f172a;
}

.confirm-modal p {
    margin: 0 0 14px;
    color: #64748b;
    font-size: 14px;
}

.confirm-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.confirm-cancel-btn,
.confirm-danger-btn {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
}

.confirm-cancel-btn {
    background: #f8fafc;
    color: #334155;
    border-color: #e2e8f0;
}

.confirm-danger-btn {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.confirm-danger-btn:hover {
    background: #b91c1c;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.close-btn:hover { color: var(--text-dark); }

.side-cart-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
    animation: slideInSidebar 0.4s ease-out backwards;
}

@keyframes slideInSidebar {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.side-item-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: #f8fafc;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.side-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.side-item-info {
    flex-grow: 1;
}

.side-item-info h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    transition: var(--transition);
}

.side-item-link {
    text-decoration: none;
    display: block;
}

.side-item-link:hover h4 {
    color: var(--jade-green);
}

.side-item-img:hover {
    opacity: 0.9;
}

.side-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--jade-green);
    margin-bottom: 10px;
}

.side-item-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.side-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.side-qty {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 2px 8px;
}

.side-qty button {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: bold;
}

.side-qty input {
    width: 40px;
    border: none;
    background: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
}

.side-remove {
    color: #ef4444;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.side-remove:hover { opacity: 0.7; }

.side-cart-footer {
    padding: 24px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.footer-row span:first-child {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.total-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

.footer-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn-checkout {
    display: flex;
    width: 100%;
    background: var(--dark-teal);
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    justify-content: center;
    transition: var(--transition);
}

.btn-checkout:hover {
    background: var(--jade-green);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .side-cart { width: 100%; }
}

/* ===== STANDARDIZED PRODUCT CARDS ===== */
.products-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    /* background: #fff; */
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    height: 100%;
    /* border: 10px solid grey */
    
}

.product-card:hover {
    box-shadow: 0 12px 30px rgba(31,111,95,0.13);
}

.product-card .card-image {
    width: 100%;
    aspect-ratio: 2/2.2;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    line-height: 0;
    font-size: 0;
    padding: 0.6rem;

}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.22s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
    border-radius: 5px;
}

.product-card .card-image img.is-fading {
    opacity: 0.22;
}

.product-card:hover .card-image img {
    transform: scale(1.04);
}

.product-card .card-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-top: -1px;
    position: relative;
    z-index: 2;
}

.product-card .card-name {
    font-family: var(--font-product-name);
    letter-spacing: 0.2px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    cursor: pointer;
}

.product-card .card-name:hover { color: var(--jade-green);text-decoration: underline; }

.product-card .card-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.product-card .card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    margin-top: auto;
}

.product-card .p-mrp {
    font-size: 12px;
    color: #a0aec0;
    text-decoration: line-through;
    font-weight: 500;
}

.product-card .p-sale {
    font-size: 17px;
    font-weight: 800;
    color: var(--jade-green);
}

/* Standardized Badges */
.card-badge {
    position: absolute;
    top: 8px;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
    letter-spacing: .45px;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 5px 12px rgba(0,0,0,0.13);
    white-space: nowrap;
}

.badge-sale {
    left: 8px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 52%, #f59e0b 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.34);
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.35);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.badge-new {
    right: 8px;
    background: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.badge-sold {
    left: 8px;
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 18px rgba(51, 65, 85, 0.32);
}

.badge-sold-out {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 8px;
    letter-spacing: .45px;
    text-transform: uppercase;
    white-space: nowrap;
    background: linear-gradient(135deg, #64748b 0%, #334155 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 8px 18px rgba(30, 41, 59, 0.34);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Card Controls */


.product-card .qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7faf9;
    border: 1px solid #e8edf2;
    border-radius: 8px;
    padding: 5px 10px;
    margin-bottom: 10px;
}

.product-card .qty-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.product-card .qty-ctrl { display: flex; align-items: center; }

.product-card .qty-ctrl button {
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    color: var(--jade-green);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.product-card .qty-ctrl input {
    width: 36px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    outline: none;
    color: var(--text-dark);
}

.product-card .btn-cart {
    width: 100%;
    padding: 11px 0;
    background: linear-gradient(135deg, #2FA084 0%, #1F6F5F 100%);
    border: 1.5px solid #1F6F5F;
    color: #ffffff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .2s ease;
}

.product-card .btn-cart:hover {
    background: linear-gradient(135deg, #35b190 0%, #215f53 100%);
    color: #fff;
    box-shadow: 0 10px 18px rgba(31, 111, 95, 0.24);
    transform: translateY(-1px);
}

.product-card .btn-cart:active {
    transform: translateY(0);
    box-shadow: 0 5px 12px rgba(31, 111, 95, 0.22);
}

/* Home page product cards aligned with products page look */
.home-page .products-wrapper,
.best-seller-page .products-wrapper,
.product-page .products-wrapper {
    grid-template-columns: repeat(4, minmax(270px, 230px));
    gap: 14px;
    justify-content: center;
}

/* Keep homepage products in a single 4-card row on desktop */
/* .home-page .products-wrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
} */

/* Homepage products: centered grid with fixed 4 columns on desktop */
.home-page .home-products-section .products-wrapper {
    margin: 0 auto;
}

.home-page .product-card,
.best-seller-page .product-card,
.product-page .product-card {
    background: #FFFFFF;
    border: 1px solid rgba(6, 51, 40, 0.503);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.home-page .product-card .card-image,
.best-seller-page .product-card .card-image,
.product-page .product-card .card-image {
    position: relative;
}


.home-page .product-card .card-body,
.best-seller-page .product-card .card-body,
.product-page .product-card .card-body {
    padding: 11px;
}

.home-page .product-card .card-name,
.best-seller-page .product-card .card-name,
.product-page .product-card .card-name {
    font-size: 1rem;
    margin-bottom: 6px;
}

.home-page .product-card .card-desc,
.best-seller-page .product-card .card-desc,
.product-page .product-card .card-desc {
    font-size: 11px;
    margin-bottom: 8px;
}

.home-page .product-card .card-price,
.best-seller-page .product-card .card-price,
.product-page .product-card .card-price {
    gap: 6px;
    margin-bottom: 8px;
}

.home-page .product-card .p-sale,
.best-seller-page .product-card .p-sale,
.product-page .product-card .p-sale {
    font-size:1.2rem;
}

.home-page .product-card .p-mrp,
.best-seller-page .product-card .p-mrp,
.product-page .product-card .p-mrp {
    font-size: 1rem;
}

.home-page .product-card .qty-row,
.best-seller-page .product-card .qty-row,
.product-page .product-card .qty-row {
    padding: 4px 8px;
    margin-bottom: 8px;
}

.home-page .product-card .qty-ctrl button,
.best-seller-page .product-card .qty-ctrl button,
.product-page .product-card .qty-ctrl button {
    width: 24px;
    height: 24px;
}

.home-page .product-card .qty-ctrl input,
.best-seller-page .product-card .qty-ctrl input,
.product-page .product-card .qty-ctrl input {
    width: 32px;
    font-size: 13px;
}

.home-page .product-card .btn-cart,
.best-seller-page .product-card .btn-cart,
.product-page .product-card .btn-cart {
    padding: 9px 0;
    font-size: 12px;
}

@media (max-width: 768px) {
    .products-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .products-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-card .card-body { padding: 10px 10px 12px; }
    .product-card .card-name { font-size: 13px !important;}
    .product-card .card-price .p-mrp{ font-size: 0.9rem !important;}
    .product-card .card-price .p-sale{ font-size: 1rem !important;}
    .product-card .btn-cart  { font-size: 12px; padding: 9px 0; }
}

@media (max-width: 360px) {
    .products-wrapper { grid-template-columns: 1fr; }
}

@media (max-width:1200px) {
    .best-seller-page .products-wrapper,
    .product-page .products-wrapper {
        grid-template-columns: repeat(4, minmax(240px, 220px));
    }

    .home-page .products-wrapper {
        grid-template-columns: repeat(4, minmax(240px, 220px));
        justify-content: center;
    }
}
@media (max-width:1026px) {
    .best-seller-page .products-wrapper,
    .product-page .products-wrapper {
        grid-template-columns: repeat(3, minmax(240px, 220px));
    }

    .home-page .products-wrapper {
        grid-template-columns: repeat(3, minmax(240px, 220px));
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .best-seller-page .products-wrapper,
    .product-page .products-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-page .products-wrapper {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        justify-content: center;
        gap: 10px;
    }
}


.vedio-section
{
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: #0a1f1a;
}

.mobile-vedio-section {
    display: none;
}
.vedio-section video
{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

.vedio-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(6, 26, 21, 0.378) 0%, rgba(6, 26, 21, 0.4) 100%);
    pointer-events: none;
}

.vedio-overlay {
    position: absolute;
    z-index: 2;
    left: 6%;
    bottom: 40%;
    width: min(640px, 88%);
    color: #fff;
}

.vedio-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 14px;
}

.vedio-overlay h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 2.8vw, 2.9rem);
    line-height: 1.16;
    color: #fff;
}

.vedio-overlay p {
    margin: 0 0 22px;
    font-size: clamp(0.95rem, 1.2vw, 1.12rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    max-width: 58ch;
}

.vedio-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 11px 24px;
    background: var(--mint-green);
    color: #0f3a31;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.vedio-cta:hover {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.home-page {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .desktop-vedio-section {
        display: none;
    }

    .mobile-vedio-section {
        display: block;
    }

    .mobile-vedio-section {
        height: 80vh;
        min-height: 80vh;
    }

    .mobile-vedio-section .vedio-overlay {
        left: 5%;
        right: 5%;
        width: auto;
        bottom: 14%;
    }
}
/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}


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

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 26, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-overlay,
    .nav-links {
        display: none !important;
    }

    .navbar {
        flex-wrap: wrap;
        padding: 10px 5%;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        z-index: 2100;
        cursor: pointer;
        padding: 0;
        margin-right: 15px;
    }
    
    .mobile-menu-btn.active {
        position: fixed;
        top: 15px;
        left: 5%;
        background: var(--white);
        border-color: rgba(0,0,0,0.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .mobile-menu-btn:active {
        transform: scale(0.9);
    }

    .hamburger-icon {
        width: 22px;
        height: 16px;
        position: relative;
    }

    .hamburger-icon span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--white);
        border-radius: 2px;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        left: 0;
    }

    .hamburger-icon span:nth-child(1) { top: 0; }
    .hamburger-icon span:nth-child(2) { top: 7px; }
    .hamburger-icon span:nth-child(3) { top: 14px; }

    /* Morphing into X */
    .mobile-menu-btn.active .hamburger-icon span {
        background-color: var(--dark-teal);
    }

    .mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
        transform: translateY(7px) rotate(135deg);
    }

    .mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
        transform: translateY(-7px) rotate(-135deg);
    }

    .logo {
        order: 2;
        flex-grow: 1;
    }

    .search-toggle-btn {
        display: block;
        order: 3;
        padding: 8px;
    }

    .search-bar {
        display: none; /* Hide standard bar on mobile */
    }
    
    .search-overlay .search-bar {
        display: flex;
        width: 100%;
        margin: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        max-width: 80vw;
        height: 100vh;
        background: #ffffff;
        z-index: 2050;
        display: flex;
        flex-direction: column;
        padding: 90px 20px 40px; /* Adjusted padding */
        transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border-right: 1px solid rgba(0,0,0,0.05);
        box-shadow: 20px 0 60px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }



    .nav-links > a {
        color: var(--text-dark);
        width: 100%;
        padding: 12px 18px;
        font-size: 15.5px;
        border-radius: 12px;
        margin-bottom: 6px;
        font-weight: 600;
        display: flex;
        align-items: center;
        border: 1px solid transparent;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
    }

    /* Stagger animation when menu is active */
    .nav-links.active > a:nth-child(1) { transition-delay: 0.10s; opacity: 1; transform: translateX(0); }
    .nav-links.active > a:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateX(0); }
    .nav-links.active > a:nth-child(3) { transition-delay: 0.20s; opacity: 1; transform: translateX(0); }
    .nav-links.active > a:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: translateX(0); }

    .nav-links > a i {
        width: 24px;
        text-align: center;
        margin-right: 14px;
        color: var(--jade-green);
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .nav-links > a:hover, .nav-links > a.active {
        background: rgba(47, 160, 132, 0.08);
        color: var(--dark-teal);
        border-color: rgba(47, 160, 132, 0.15);
        transform: translateX(6px) !important;
        box-shadow: 0 4px 15px rgba(47, 160, 132, 0.05);
        position: relative;
    }

    .nav-links > a.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 25%;
        height: 50%;
        width: 4px;
        background: var(--mint-green);
        border-radius: 0 4px 4px 0;
    }

    .nav-links > a:hover i {
        transform: scale(1.15);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 4%;
    }

    .compliance-bar {
        font-size: 8.5px;
        letter-spacing: 0.8px;
        padding: 3px 10px;
        line-height: 1.25;
    }

    .logo-icon-wrap {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    .logo-icon-wrap i {
        font-size: 14px;
    }

    .logo a {
        font-size: 20px;
    }
}

/* Hide WhatsApp when mobile menu is open */
body.mobile-menu-active .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 992px) {
    body {
        padding-bottom: 74px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0%;
        height: 64px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        align-items: center;
        background: linear-gradient(135deg, rgba(10, 35, 29, 0.96) 0%, rgba(20, 78, 66, 0.96) 100%);
        border-top: 1px solid rgba(111, 207, 151, 0.35);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 9997;
    }

    .mobile-bottom-nav a {
        text-decoration: none;
        color: rgba(226, 232, 240, 0.82);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        font-size: 10px;
        font-weight: 700;
        height: 100%;
    }

    .mobile-bottom-nav a i {
        font-size: 16px;
    }

    .mobile-bottom-nav a.active {
        color: #ffffff;
    }

    .mobile-bottom-nav a.active i {
        color: #6FCF97;
    }

    .mobile-bottom-nav a:active {
        transform: scale(0.96);
    }

    .whatsapp-float {
        bottom: 88px;
    }
}



