:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #f8fafc; /* Cool grey background */
    --accent-green: #0f1d2a; /* ETE Deep Slate Navy */
    --accent-green-light: #1e2d3d;
    --accent-green-dark: #0a111a; /* Darkest Navy */
    --accent-gold: #00a896; /* ETE Teal/Cyan Accent */
    --accent-gold-light: #ccfbf1; /* Soft Teal/Cyan Light */
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 25px -3px rgba(30, 38, 52, 0.05), 0 4px 12px -2px rgba(30, 38, 52, 0.02);
    --shadow-lg: 0 20px 40px -5px rgba(30, 38, 52, 0.08), 0 10px 20px -5px rgba(30, 38, 52, 0.04);
    --font-serif: 'Poppins', sans-serif;
    --font-sans: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--accent-green-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-green);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.btn:hover {
    background: var(--accent-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green) !important;
}

.btn-secondary:hover {
    background: var(--accent-green);
    color: white !important;
}

/* ============================================
   MODERN HERO HEADER
   ============================================ */

/* Announcement Bar */
.announcement-bar {
    background: var(--accent-green-dark);
    color: white;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.announcement-bar-container span {
    display: block;
}

/* Hero Header Wrapper */
.hero-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(74, 14, 23, 0.08);
    background-size: cover !important;
    background-position: center !important;
}

/* Main header row */
.modern-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

/* Header element is just a structural wrapper — styling via .modern-header */
header {
    background: transparent;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 0.9rem 0;
    flex-wrap: nowrap;
}

/* Logo */
.modern-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.modern-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.modern-logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    letter-spacing: 3px;
    line-height: 1;
}

.logo-accent {
    color: var(--accent-gold);
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 480px;
    margin: 0 1rem;
    position: relative;
}

.modern-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.modern-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}

.modern-search-input {
    width: 100%;
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    border: 1.5px solid #e8e0d5;
    border-radius: 50px;
    background: #faf8f5;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: var(--text-dark);
    outline: none;
    transition: all 0.3s ease;
}

.modern-search-input:focus {
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.modern-search-input::placeholder {
    color: #aaa;
}

.header-search input {
    width: 100%;
    padding: 0.8rem 1.5rem 0.8rem 3rem;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    background: #f8f9fa;
    outline: none;
    transition: var(--transition);
}

.header-search i {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-green);
}

/* Nav Icons (account, cart) */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.modern-icon-link {
    font-size: 1.25rem;
    color: var(--accent-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.modern-icon-link:hover {
    background: rgba(197, 168, 128, 0.15);
    color: var(--accent-green);
}

/* Cart Badge */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-green);
    color: white;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--white);
}

/* Support / Contact Info in header */
.header-contact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.support-gold-icon {
    color: var(--accent-gold);
    font-size: 1rem;
}

.support-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.support-label {
    font-size: 0.68rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green-dark);
}

/* ============================================
   SECONDARY NAV (categories + nav links)
   ============================================ */

.secondary-nav {
    background: #fff;
    border-top: 1px solid #f0ece6;
}

.secondary-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 20px;
    gap: 1.5rem;
}

/* Weaves / Categories Dropdown Wrapper */
.categories-dropdown-wrapper {
    position: relative;
}

.categories-dropdown-btn {
    background: var(--accent-green-dark);
    color: white;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
    user-select: none;
    transition: background 0.3s;
    white-space: nowrap;
}

.categories-dropdown-btn:hover {
    background: var(--accent-green);
}

/* Mega-menu: hidden by default, shown on hover */
.mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 520px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(74, 14, 23, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.2);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

/* Bridge the 8px gap between button and dropdown to prevent hover loss */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
    pointer-events: all;
}

.categories-dropdown-wrapper:hover .mega-menu,
.categories-dropdown-wrapper.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.mega-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    width: 90px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s ease;
    border-radius: 10px;
    padding: 0.6rem 0.4rem;
}

.mega-item:hover {
    background: #faf6f2;
    color: var(--accent-green-dark);
    transform: translateY(-2px);
}

.mega-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-gold-light);
}

/* Old categories-menu (keep for compat) */
.categories-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 12px 12px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-top: 1px solid #eee;
}

.categories-dropdown-wrapper:hover .categories-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.categories-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-bottom: 1px solid #f9f9f9;
}

.categories-menu a:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.categories-menu a:hover {
    background: #f8fff8;
    color: var(--accent-green-dark);
    padding-left: 1.8rem;
}

.categories-menu a i {
    color: var(--accent-gold);
    width: 20px;
    text-align: center;
}

/* Track Order Button */
.track-order {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    color: var(--accent-green-dark);
    padding: 0.55rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.track-order:hover {
    background: var(--accent-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 14, 23, 0.2);
}

.track-gold-icon {
    color: inherit;
}

/* ============================================
   MOBILE HAMBURGER & RESPONSIVE HEADER
   ============================================ */

/* Hamburger button — hidden on desktop */
.mobile-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid rgba(74, 14, 23, 0.15);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
    padding: 0;
}

.mobile-hamburger:hover {
    background: rgba(74, 14, 23, 0.06);
}

.mobile-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--accent-green-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-hamburger.open span:nth-child(2) { opacity: 0; }
.mobile-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    /* Show hamburger */
    .mobile-hamburger { display: flex; }

    /* Hide phone/support in header */
    .header-contact { display: none !important; }

    /* Hide secondary nav bar (WEAVES + nav links + Trace Loom) */
    .secondary-nav { display: none !important; }

    /* Hide search bar completely on mobile */
    .header-search { display: none !important; }

    /* Hide account icon on mobile */
    .nav-icons a[href="account.php"] { display: none !important; }

    /* Compact nav-container */
    .nav-container { padding: 0.6rem 0; gap: 0.6rem; }
}

/* ── Mobile side-menu new items ─────────────────── */

/* Trace Loom button inside menu */
.mobile-trace-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.8rem 1rem;
    padding: 0.85rem 1.2rem;
    background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
    color: var(--accent-green-dark) !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.mobile-trace-btn:hover {
    background: var(--accent-green-dark);
    color: white !important;
}

.mobile-trace-btn i { font-size: 1rem; }

/* Phone support block inside menu */
.mobile-support-block {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.4rem 1rem 1.2rem;
    padding: 0.9rem 1.2rem;
    background: #faf6f2;
    border: 1px solid var(--accent-gold-light);
    border-radius: 12px;
}

.mobile-support-block i { font-size: 1.1rem; flex-shrink: 0; }

.mobile-support-label {
    display: block;
    font-size: 0.68rem;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-support-num {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    text-decoration: none;
}

.mobile-support-num:hover { color: var(--accent-gold); }


.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-green-dark);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:hover::after {
    width: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-secondary::after {
    background: var(--accent-green);
}

.btn-secondary:hover {
    color: var(--white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF9800;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.product-image {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1;
    padding: 1.5rem;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.4rem;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.stars-rating {
    color: #FFC107;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars-rating span {
    color: #999;
    margin-left: 4px;
    font-weight: 400;
}

.product-author {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1rem;
}

.price-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid #f5f5f5;
    gap: 10px;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.old-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 0.8rem;
}

.new-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #D4A017;
}

.add-to-cart-btn {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: auto;
}

.add-to-cart-btn:hover {
    background: #2E7D32;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h2 {
        font-size: 2rem;
    }
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--accent-green-dark), var(--accent-green));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    transform: rotate(30deg);
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--accent-gold);
    transition: color 0.3s ease;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* Policy Pages */
.policy-container {
    max-width: 900px;
    margin-bottom: 5rem;
    position: relative;
}

.policy-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
    opacity: 0.08;
    z-index: -1;
    border-radius: 50%;
}

.policy-container::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    opacity: 0.05;
    z-index: -1;
    border-radius: 50%;
}

.policy-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.08), 0 10px 20px rgba(0,0,0,0.05);
}

.policy-card h2 {
    color: var(--accent-green-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.policy-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-gold));
    border-radius: 2px;
}

.policy-card h2:first-child {
    margin-top: 0;
}

.policy-card p, .policy-card ul {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-card ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-card li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style-type: none;
}

.policy-card li::before {
    content: 'â€¢';
    color: var(--accent-green);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 2.5rem 1.5rem;
    }
    .page-banner {
        padding: 3rem 0;
    }
    .page-banner h1 {
        font-size: 2rem;
    }
}

/* --- Premium Desktop Navbar --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    position: relative;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Header tag reset — actual styling via .modern-header & .hero-header */
header {
    padding: 0;
    margin: 0;
    background: transparent;
    position: static;
    box-shadow: none;
    border: none;
}

/* Sticky scroll behaviour lives on the outer wrapper */
.hero-header.sticky,
.hero-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.hero-header.scrolled {
    box-shadow: 0 4px 20px rgba(74, 14, 23, 0.1);
}

/* Modern header top bar */
.modern-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0;
}

/* Hide WhatsApp on Desktop */
.whatsapp-nav-btn {
    display: none !important;
}

/* Desktop Only: add horizontal padding to nav-container */
@media (min-width: 993px) {
    .nav-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.user-name-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--accent-green-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Mobile Side Menu --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    box-shadow: 20px 0 50px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-logo img {
    height: 40px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-menu-links {
    padding: 1.5rem 0;
    overflow-y: auto;
    flex-grow: 1;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.mobile-menu-links a i {
    width: 20px;
    color: var(--accent-green);
    font-size: 1.1rem;
}

.mobile-menu-links a:hover {
    background: #f8f9fa;
    color: var(--accent-green-dark);
    padding-left: 2rem;
}

.mobile-menu-footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.mobile-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.mobile-socials a {
    font-size: 1.5rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.mobile-socials a:hover {
    color: var(--accent-green);
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

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

.search-overlay-header {
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon-inner {
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    color: var(--accent-green);
}

.search-input {
    width: 100%;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    background: transparent;
    outline: none;
    color: var(--text-dark);
}

.close-search {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-search:hover {
    color: #d32f2f;
}

.search-results {
    flex-grow: 1;
    overflow-y: auto;
    padding: 3rem 0;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--accent-green);
}

.result-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.result-info {
    flex-grow: 1;
}

.result-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.result-price {
    color: var(--accent-green);
    font-weight: 700;
}

.search-loading, .no-results {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    padding: 3rem;
}

/* Scroll Lock */
body.no-scroll {
    overflow: hidden;
}

/* Responsive Header & Mobile Optimization */
@media (max-width: 992px) {
    /* Sticky wrapper is .hero-header, not header tag */
    .hero-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(74,14,23,0.08);
    }

    .modern-header {
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 0;
    }

    .nav-links, .user-name-desktop {
        display: none !important;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .hamburger-menu {
        display: flex;
        flex-shrink: 0;
    }

    .logo img {
        height: 30px !important;
        width: auto;
        display: block;
    }

    .nav-icons {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .nav-icons a {
        font-size: 1.15rem !important;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        transition: background 0.3s ease;
    }

    .nav-icons a:active {
        background: #f0f0f0;
    }

    /* Cart Badge Fix */
    .cart-icon {
        position: relative;
    }

    .cart-count {
        position: absolute;
        top: -2px;
        right: -2px;
        background: var(--accent-green);
        color: white;
        font-size: 0.65rem;
        min-width: 17px;
        height: 17px;
        padding: 0 4px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        border: 2px solid var(--white);
        line-height: 1;
        z-index: 1;
    }

    /* Compact WhatsApp Button */
    .whatsapp-nav-btn {
        background: #25d366 !important;
        color: white !important;
        padding: 0 !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        margin-left: 0.2rem !important;
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2) !important;
    }

    .whatsapp-nav-btn span {
        display: none !important;
    }
    
    .whatsapp-nav-btn i {
        margin: 0 !important;
        font-size: 1.2rem;
    }
}

/* Extra Small Screens Adjustments */
@media (max-width: 375px) {
    .header-left {
        gap: 0.5rem;
    }
    .logo img {
        height: 26px !important;
    }
    .nav-icons {
        gap: 0.3rem;
    }
    .nav-icons a {
        width: 30px;
        height: 30px;
        font-size: 1.05rem !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9991;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: bottom 0.35s cubic-bezier(0.34,1.56,0.64,1), all 0.3s ease;
}

/* Push WhatsApp button up when compare bar is visible */
body.compare-bar-open .whatsapp-float {
    bottom: 96px;
}

.whatsapp-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 18px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    white-space: nowrap;
    text-align: right;
}

.whatsapp-float:hover .whatsapp-badge {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-badge .support-status {
    display: block;
    font-size: 0.75rem;
    color: #4caf50;
    margin-top: 2px;
    font-weight: 400;
}

.whatsapp-icon-wrapper {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    position: relative;
    animation: whatsapp-pulse 2s infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 20px;
    }
    .whatsapp-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    .whatsapp-badge {
        display: none; /* Hide badge on mobile to prevent clutter */
    }
}

/* --- Our Partners Section --- */
.partners-section {
    padding: 8rem 0;
    background: #fdfaf5;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.partners-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.partners-section .section-header h2 {
    font-size: 3rem;
    color: var(--accent-green-dark);
    font-family: var(--font-serif);
    margin-bottom: 1.2rem;
}

.partners-section .section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.partner-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.02);
    height: 160px;
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.05);
}

.partner-logo-text {
    font-size: 2.4rem;
    font-weight: 900;
    filter: grayscale(100%);
    opacity: 0.3;
    transition: all 0.5s ease;
    font-family: 'Inter', sans-serif;
}

.partner-card.amazon:hover .partner-logo-text { color: #FF9900; filter: grayscale(0%); opacity: 1; }
.partner-card.flipkart:hover .partner-logo-text { color: #2874F0; filter: grayscale(0%); opacity: 1; }
.partner-card.jiomart:hover .partner-logo-text { color: #008ecc; filter: grayscale(0%); opacity: 1; }
.partner-card.blinkit:hover .partner-logo-text { color: #ffcc00; filter: grayscale(0%); opacity: 1; }

.partner-card.amazon:hover::after { background: #FF9900; }
.partner-card.flipkart:hover::after { background: #2874F0; }
.partner-card.jiomart:hover::after { background: #008ecc; }
.partner-card.blinkit:hover::after { background: #ffcc00; }

@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .partner-card {
        height: 130px;
        padding: 2rem;
    }
    .partner-logo-text {
        font-size: 2rem;
    }
    .partners-section {
        padding: 5rem 0;
    }
}

/* --- Our Story Page Styles --- */
.story-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/story/story_hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 5rem;
}

.story-hero-content h1 {
    font-size: 4rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.story-hero-content p {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.3s forwards;
}

.story-section {
    padding: 8rem 0;
}

.story-flex {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.story-flex:nth-child(even) {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.1);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.5rem;
    color: var(--accent-green-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Section */
.story-gallery {
    padding-bottom: 8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

/* Trust Section */
.trust-section {
    background: #fdfaf5;
    padding: 8rem 0;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.trust-card i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}

.trust-card h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-green-dark);
}

/* CTA Section */
.story-cta {
    background: linear-gradient(135deg, var(--accent-green-dark), var(--accent-green));
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.story-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-family: var(--font-serif);
}

.cta-btn-premium {
    background: white;
    color: var(--accent-green-dark);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #f8f9fa;
    color: var(--accent-green);
}

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

@media (max-width: 992px) {
    .story-flex, .story-flex:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5rem;
    }
    .story-hero-content h1 {
        font-size: 2.5rem;
    }
    .story-section {
        padding: 4rem 0;
    }
}

/* --- Supported By Section --- */
.support-section {
    padding: 8rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.support-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.support-section .section-header h2 {
    font-size: 3rem;
    color: var(--accent-green-dark);
    font-family: var(--font-serif);
    margin-bottom: 1.2rem;
}

.support-section .section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
}

.support-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #faf8f6;
    border-radius: 24px;
    border: 1px solid #ebdccb;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.support-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(107, 31, 56, 0.08);
    border-color: var(--accent-gold);
}

.support-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: rgba(107, 31, 56, 0.06) !important;
    color: var(--accent-gold) !important;
    border: 1px solid var(--accent-gold-light) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.support-card:hover .support-badge {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-green-dark) !important;
    color: #ffffff !important;
    border-color: var(--accent-green-dark) !important;
}

.support-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 15px;
}

.support-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}

.support-card:hover .support-logo-wrapper img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.support-card h3 {
    font-size: 1.4rem;
    color: var(--accent-green-dark);
    margin-bottom: 1.2rem;
    font-family: var(--font-serif);
}

.support-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .support-section {
        padding: 5rem 0;
    }
    .support-grid {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    .support-card {
        padding: 2.5rem 1.5rem;
    }
}

/* --- Contact Us Page Styles --- */
.contact-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero2.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 5rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    animation: fadeInUp 1s forwards;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    animation: fadeInUp 1s 0.3s forwards;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #fdfaf5;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--accent-green);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--accent-green);
    margin-bottom: 1.2rem;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--accent-green-dark);
    margin-bottom: 0.5rem;
}

.contact-card p, .contact-card a {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    text-decoration: none;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--accent-green-dark);
    font-family: var(--font-serif);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fcfcfc;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

/* Map & Hours */
.map-section {
    margin-bottom: 6rem;
}

.map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.hours-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.hours-card h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* WhatsApp Card */
.whatsapp-contact-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
}

.wa-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.wa-btn {
    background: white;
    color: #128C7E;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.wa-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .whatsapp-contact-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* --- About Us Page Specific Styles --- */
.about-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero1.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0;
}

.about-hero-content h1 {
    font-size: 4.5rem;
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s forwards;
}

.about-hero-content p {
    font-size: 1.6rem;
    opacity: 0.9;
    animation: fadeInUp 1s 0.3s forwards;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.mission-section {
    padding: 8rem 0;
    background: #fdfaf5;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s ease;
}

.mission-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    border-color: var(--accent-green);
}

.mission-card i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 2rem;
}

.mission-card h3 {
    font-size: 1.8rem;
    color: var(--accent-green-dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.mission-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.value-item i {
    font-size: 2.2rem;
    color: var(--accent-gold) !important;
    margin-bottom: 1.2rem;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.value-item:hover i {
    transform: scale(1.15);
}

.value-item h4 {
    color: #ffffff !important;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Counters section */
.about-stats {
    padding: 6rem 0;
    background: var(--accent-green-dark);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }
    .about-hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .mission-card {
        padding: 3rem 2rem;
    }
}

/* --- Privacy Policy Page --- */
.policy-container {
    padding-bottom: 8rem;
}

.policy-card {
    background: white;
    padding: 5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.03);
}

.policy-card h2 {
    font-size: 2.2rem;
    color: var(--accent-green-dark);
    margin: 3rem 0 1.5rem;
    font-family: var(--font-serif);
}

.policy-card h2:first-of-type {
    margin-top: 0;
}

.policy-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.policy-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.policy-list li::before {
    content: '\f058'; /* fa-check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-green);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 3rem 2rem;
        border-radius: 20px;
    }
    
    .policy-card h2 {
        font-size: 1.8rem;
    }
}


/* --- Premium Footer --- */
.main-footer {
    background: #0f1a0f; /* Deepest organic green */
    color: white;
    padding: 6rem 0 0;
    margin-top: 8rem;
    position: relative;
    border-top: 4px solid var(--accent-green);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-brand h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.2rem;
    font-family: var(--font-serif);
    letter-spacing: 1px;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-green);
    font-size: 1.1rem;
    display: block;
    margin-top: 1rem;
}

.footer-heading {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 12px;
    font-family: var(--font-serif);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-green);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-green);
    transform: translateX(8px);
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: var(--accent-green);
    margin-top: 4px;
    font-size: 1.1rem;
}

.company-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.social-icon:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    border-color: var(--accent-green);
}

/* Partners Strip */
.footer-strip {
    background: rgba(0,0,0,0.3);
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partners-strip, .payments-strip {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.footer-strip:hover .partners-strip, 
.footer-strip:hover .payments-strip {
    opacity: 0.85;
    filter: grayscale(0%);
}

.partners-strip span, .payments-strip span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: white;
    margin-right: 1rem;
}

.strip-icons {
    display: flex;
    gap: 2rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
}

/* Newsletter Overlay */
.newsletter-wrapper {
    margin-top: -120px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.footer-newsletter {
    background: linear-gradient(135deg, var(--accent-green-dark), var(--accent-green));
    padding: 4rem 5rem;
    border-radius: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.newsletter-text h3 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.8rem;
    font-family: var(--font-serif);
}

.newsletter-text p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.6rem;
    border-radius: 60px;
    width: 480px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 0 1.8rem;
    border-radius: 50px;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    background: #0f1a0f;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: black;
    transform: scale(1.02);
}

.footer-bottom {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: var(--accent-green);
    text-decoration: none;
}

/* --- Global Mobile Optimizations --- */
@media (max-width: 1200px) {
    .footer-newsletter {
        padding: 3.5rem;
    }
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 3rem 2rem;
        margin-top: -100px;
    }
    .newsletter-form {
        width: 100%;
        max-width: 500px;
    }
    .main-footer {
        padding-top: 4rem;
    }
    .section-padding {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .strip-container {
        flex-direction: column;
        gap: 3rem;
    }
    .partners-strip, .payments-strip {
        flex-direction: column;
        gap: 1rem;
        opacity: 0.9;
        filter: grayscale(0%);
    }
    .strip-icons {
        gap: 1.5rem;
        font-size: 1.1rem;
        justify-content: center;
    }
    .hero-slider {
        height: 500px !important;
    }
    .slide h2 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-newsletter {
        padding: 4rem 1.5rem;
        border-radius: 30px;
        background: linear-gradient(165deg, #1a2e1a, #2d4d2d);
    }
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
        background: transparent;
        box-shadow: none;
    }
    .newsletter-form input {
        height: 60px;
        width: 100%;
        border-radius: 15px;
        background: #fff;
        text-align: center;
    }
    .newsletter-form button {
        height: 60px;
        width: 100%;
        border-radius: 15px;
        background: #000;
    }
}

/* --- Homepage Base Optimizations (Desktop Safe) --- */
.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background: #fdfaf5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--accent-green-dark);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
}

.feature-card i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-green-dark);
}

.health-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.health-image, .health-content {
    flex: 1;
}

.health-image img {
    width: 100%;
    border-radius: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-list i {
    color: var(--accent-green);
}

.health-content .btn {
    margin-top: 2rem;
}

/* Health Section Mobile Fixes */
@media (max-width: 768px) {
    .health-section {
        padding: 4rem 0;
    }
    .health-flex {
        flex-direction: column;
        gap: 2.5rem;
    }
    .health-image {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        order: 1; /* Image on top */
    }
    .health-image img {
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
    }
    .health-content {
        width: 100%;
        text-align: left;
        order: 2; /* Content below */
        padding: 0 5px;
    }
    .health-content h2 {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    .health-content p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    .benefit-list {
        margin-bottom: 2.5rem;
    }
    .benefit-list li {
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    .benefit-list i {
        margin-top: 4px;
        font-size: 1.1rem;
    }
    .health-content .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto !important;
        text-align: center;
        padding: 1.1rem 2rem;
    }
}

/* --- Coupon Section Styling --- */
#coupon-code {
    transition: all 0.3s ease;
    border: 2px solid #eee;
}

#coupon-code:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(251, 192, 45, 0.1);
    outline: none;
}

.fa-tag.pulse {
    animation: tag-pulse 2s infinite;
}

@keyframes tag-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.badge-coupon {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* --- Premium Testimonials Section --- */
.testimonials-luxury {
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf5 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(56, 142, 60, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(251, 192, 45, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.testimonial-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.testimonial-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-green-dark);
}

.testimonial-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border-color: var(--accent-green);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 2.5rem;
    color: var(--accent-green);
    opacity: 0.1;
    transition: all 0.5s ease;
}

.testimonial-card-premium:hover .quote-icon {
    opacity: 0.2;
    transform: rotate(-10deg);
}

.stars-rating {
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2.5rem;
    position: relative;
    font-family: var(--font-serif);
}

.customer-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.customer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--accent-green-dark);
    font-family: var(--font-sans);
    font-weight: 700;
}

.customer-location {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.verified-badge {
    background: rgba(56, 142, 60, 0.1);
    color: var(--accent-green);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Layout Grids */
.banner-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vertical-banner-grid-left {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2.5rem;
}

.vertical-banner-grid-right {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .banner-grid-2,
    .vertical-banner-grid-left,
    .vertical-banner-grid-right {
        grid-template-columns: 1fr;
    }
    .vertical-banner {
        height: 300px;
    }
}

.review-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.review-stat:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold) !important;
    box-shadow: var(--shadow-lg);
}

.newsletter-form-responsive {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .review-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .review-stats-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form-responsive {
        flex-direction: column;
    }
}

/* Global Responsive Improvements */
html, body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .nav-container {
        gap: 1rem;
    }
    .header-search {
        order: 3;
        flex: 1 1 100%;
        max-width: none;
    }
    .hero-text h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.5rem 1rem;
    }
    .logo img {
        height: 40px;
    }
    .header-contact {
        display: none;
    }
    .secondary-nav .container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-text h1 {
        font-size: 2.8rem;
    }
    .health-flex {
        flex-direction: column;
    }
    .health-image {
        height: 300px !important;
    }
    .banner-card {
        height: 250px !important;
    }
    .footer-top {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 576px) {
    .new-hero {
        padding: 3rem 0;
    }
    .new-hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-illustration {
        margin-top: 2rem;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .product-card {
        padding: 0.8rem;
    }
    .product-title {
        font-size: 0.85rem;
        height: 2.4rem;
    }
    .price-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .add-to-cart-btn {
        width: 100%;
        font-size: 0.7rem;
        padding: 0.5rem;
        justify-content: center;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .banner-card {
        height: 200px !important;
    }
    .banner-card h3 {
        font-size: 1.5rem !important;
    }
    .footer-top {
        grid-template-columns: 1fr !important;
    }
    .vertical-banner {
        height: 250px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-badge {
        display: none;
    }
}

/* ==========================================
   MODERN PREMIUM GLASSMORPHIC HEADER STYLES
   ========================================== */

/* Announcement Ticker Bar */
.announcement-bar {
    background: var(--accent-green-dark);
    color: var(--white);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    text-transform: uppercase;
}

.announcement-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modern Header Container */
.modern-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.90) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 4px 30px rgba(74, 14, 23, 0.03);
    padding: 0.75rem 0 !important;
    transition: var(--transition);
}

/* Modern Logo styling */
.modern-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.modern-logo-img {
    height: 52px !important;
    width: auto;
    object-fit: contain;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    padding: 2px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.15);
    transition: var(--transition);
}

.modern-logo-link:hover .modern-logo-img {
    transform: rotate(360deg);
}

.modern-logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    letter-spacing: 3px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.logo-accent {
    color: var(--accent-gold);
    font-size: 2rem;
}

/* Modern minimalist search capsule */
.modern-search-form {
    position: relative;
    width: 100%;
}

.modern-search-input {
    width: 100%;
    padding: 0.75rem 1.5rem 0.75rem 3rem !important;
    border: 1px solid rgba(197, 168, 128, 0.25) !important;
    border-radius: 50px !important;
    background: rgba(252, 251, 249, 0.8) !important;
    outline: none !important;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    transition: var(--transition) !important;
    box-shadow: inset 0 2px 4px rgba(74, 14, 23, 0.01);
}

.modern-search-input:focus {
    background: #fff !important;
    border-color: var(--accent-green) !important;
    box-shadow: 0 0 0 3px rgba(107, 31, 56, 0.08) !important;
}

.modern-search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 0.9rem;
    transition: var(--transition);
}

.modern-search-input:focus + .modern-search-icon {
    color: var(--accent-green);
    transform: translateY(-50%) scale(1.1);
}

/* Modern Action Icons */
.modern-icon-link {
    font-size: 1.5rem;
    color: var(--accent-green-dark);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.05);
}

.modern-icon-link:hover {
    color: var(--accent-gold);
    background: rgba(107, 31, 56, 0.05);
    transform: translateY(-2px);
}

.modern-icon-link .cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent-green) !important;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(107, 31, 56, 0.2);
}

/* Modern Support Widget */
.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
    border-left: 1px solid rgba(197, 168, 128, 0.2);
}

.support-gold-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.support-text {
    display: flex;
    flex-direction: column;
}

.support-label {
    color: var(--text-muted);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.support-num {
    color: var(--accent-green-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Modern Secondary Navigation Links & Dropdowns */
.secondary-nav {
    background: transparent !important;
    border-top: 1px solid rgba(197, 168, 128, 0.15) !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15) !important;
    margin-top: 10px !important;
}

.secondary-nav .container {
    padding: 0.4rem 20px !important;
}

.categories-dropdown-btn {
    background: var(--accent-green-dark) !important;
    border: 1px solid rgba(197, 168, 128, 0.3) !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    letter-spacing: 1px !important;
    padding: 0.6rem 1.4rem !important;
    transition: var(--transition) !important;
}

.categories-dropdown-btn:hover {
    background: var(--accent-green) !important;
    box-shadow: 0 4px 15px rgba(107, 31, 56, 0.2) !important;
    transform: translateY(-1px);
}

/* Animated Underline navigation links */
.nav-links {
    gap: 3rem !important;
}

.nav-links a {
    position: relative;
    padding: 6px 0;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-green-dark) !important;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold) !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Modern Track Order button */
.track-order {
    font-size: 0.8rem !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-green-dark) !important;
    font-weight: 700 !important;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(197, 168, 128, 0.08);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.track-order:hover {
    color: var(--white) !important;
    background: var(--accent-green) !important;
    border-color: var(--accent-green) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(107, 31, 56, 0.15);
}

.track-gold-icon {
    color: var(--accent-gold);
    font-size: 0.95rem;
    transition: var(--transition);
}

.track-order:hover .track-gold-icon {
    color: var(--white);
    transform: translateX(3px);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* ============================================
   NCIEM / EDGETECK CUSTOM CLONE STYLES
   ============================================ */

/* Top Utility Bar */
.top-utility-bar {
    background-color: #fafbfc;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 0;
    font-size: 0.82rem;
    color: #475569;
}
.top-utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-utility-bar a {
    color: #475569;
    transition: color 0.2s;
    margin-left: 1.5rem;
}
.top-utility-bar a:hover {
    color: var(--accent-gold);
}

/* Main Header Sticky */
.main-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f1f5f9;
}

/* Search bar nciem style */
.search-bar-nciem {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: #f8fafc;
    flex: 1;
    max-width: 650px;
    overflow: hidden;
}
.search-bar-nciem input {
    border: none;
    background: transparent;
    padding: 0.75rem 1rem;
    flex: 1;
    font-size: 0.88rem;
    outline: none;
}
.search-bar-nciem select {
    border: none;
    border-left: 1px solid #e2e8f0;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: #475569;
    outline: none;
    cursor: pointer;
}
.search-bar-nciem button {
    border: none;
    background: var(--accent-green);
    color: white;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}
.search-bar-nciem button:hover {
    background: var(--accent-green-light);
}

/* Badges icons on right */
.nciem-header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nciem-icon-btn {
    position: relative;
    font-size: 1.35rem;
    color: #334155;
    transition: color 0.2s;
}
.nciem-icon-btn:hover {
    color: var(--accent-green);
}
.nciem-icon-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 9999px;
    border: 2px solid white;
}

/* Navbar */
.nciem-navbar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}
.nciem-navbar .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.all-categories-btn {
    background: var(--accent-green);
    color: white;
    padding: 0.85rem 1.5rem;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}
.all-categories-btn:hover {
    background: var(--accent-green-light);
}
.nciem-nav-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: nowrap;
}
.nciem-nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    text-transform: capitalize;
    transition: color 0.2s;
    white-space: nowrap;
}
.nciem-nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Grid Layout */
.hero-grid-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
}
.hero-sidebar-menu {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}
.hero-sidebar-menu ul {
    list-style: none;
}
.hero-sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s;
}
.hero-sidebar-menu li:last-child a {
    border-bottom: none;
}
.hero-sidebar-menu li a:hover {
    background: #f8fafc;
    color: var(--accent-green);
    padding-left: 1.5rem;
}
.hero-sidebar-menu li a i {
    font-size: 0.95rem;
    color: #94a3b8;
    width: 20px;
    text-align: center;
}

/* Main Hero Slider */
.hero-main-slider {
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    height: 420px;
    position: relative;
}
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Dark gradient overlays — colour coded per slide */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-slide-overlay--blue {
    background: linear-gradient(120deg, rgba(10,20,50,0.88) 0%, rgba(15,50,120,0.55) 60%, rgba(0,0,0,0.2) 100%);
}
.hero-slide-overlay--teal {
    background: linear-gradient(120deg, rgba(5,35,35,0.90) 0%, rgba(10,90,80,0.60) 60%, rgba(0,0,0,0.2) 100%);
}
.hero-slide-overlay--gold {
    background: linear-gradient(120deg, rgba(20,14,4,0.90) 0%, rgba(90,55,10,0.60) 60%, rgba(0,0,0,0.2) 100%);
}

/* Slide content sits above the overlay */
.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 4rem;
    max-width: 62%;
}

/* Category tag above heading */
.hero-slide-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 0.9rem;
}

/* Main heading */
.hero-slide-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 1rem;
    text-shadow: 0 3px 16px rgba(0,0,0,0.45);
}

/* Subtext */
.hero-slide-content p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 480px;
}

/* CTA button row */
.hero-slide-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-green);
    color: #ffffff;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.hero-btn-primary:hover {
    background: var(--accent-green-dark, #15803d);
    gap: 12px;
    transform: translateY(-1px);
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}
.hero-btn-ghost:hover {
    background: rgba(255,255,255,0.22);
}
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 42, 0.5);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s, background 0.2s;
}
.hero-main-slider:hover .hero-slider-prev,
.hero-main-slider:hover .hero-slider-next {
    opacity: 1;
}
.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(15, 23, 42, 0.85);
}
.hero-slider-prev {
    left: 20px;
}
.hero-slider-next {
    right: 20px;
}
.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.hero-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.hero-slider-dots .dot:hover {
    background: rgba(255,255,255,0.65);
}
.hero-slider-dots .dot.active {
    background: #ffffff;
    transform: scale(1.3);
}
/* (legacy rules removed — hero-slide-content now defined above with white text) */

/* Policy Features Bar */
.policy-features-bar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}
.policy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.policy-item i {
    font-size: 2rem;
    color: var(--accent-green);
}
.policy-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}
.policy-item p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Top Categories in Sales - Modernized Premium UI */
.top-cats-section {
    padding: 4.5rem 0;
    background: #f8fafc; /* Sleek light slate background */
    border-radius: 24px;
    margin: 4rem 0;
    border: 1px solid #f1f5f9;
}
.top-cats-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}
.top-cats-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-gold, #f39c12);
    letter-spacing: 2.5px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.top-cats-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}
.top-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 0 2.5rem;
}
@media (max-width: 1200px) {
    .top-cats-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 2rem;
    }
}
@media (max-width: 768px) {
    .top-cats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
        gap: 1.25rem;
    }
    .top-cats-section {
        padding: 3rem 0;
        margin: 2.5rem 0;
    }
    .top-cats-title {
        font-size: 1.75rem;
    }
}
.category-premium-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    position: relative;
    overflow: hidden;
}
.category-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cat-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category-premium-card:hover {
    border-color: rgba(var(--cat-accent-rgb), 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(var(--cat-accent-rgb), 0.18);
}
.category-premium-card:hover::before {
    opacity: 1;
}
.category-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--cat-accent-rgb), 0.08);
    color: var(--cat-accent);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-premium-card:hover .category-icon-box {
    background: var(--cat-accent);
    color: #ffffff;
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 10px 20px -5px rgba(var(--cat-accent-rgb), 0.4);
}
.category-card-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}
.category-card-title {
    font-size: 1.15rem;
    font-weight: 750;
    color: #0f172a;
    margin: 0;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    line-height: 1.25;
}
.category-premium-card:hover .category-card-title {
    color: var(--cat-accent);
}
.category-card-count {
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    display: inline-block;
    transition: all 0.3s ease;
}
.category-premium-card:hover .category-card-count {
    background: rgba(var(--cat-accent-rgb), 0.08);
    color: var(--cat-accent);
}
.category-card-action {
    position: absolute;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8fafc;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.category-premium-card:hover .category-card-action {
    background: var(--cat-accent);
    color: #ffffff;
    transform: translateX(4px) scale(1.1);
    box-shadow: 0 4px 12px -2px rgba(var(--cat-accent-rgb), 0.45);
}

/* Product Cards Grid & Design */
.nciem-product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    transition: all 0.3s;
}
.nciem-product-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}
.nciem-product-image {
    width: 100%;
    aspect-ratio: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: #fafbfc;
    border-radius: 4px;
    overflow: hidden;
}
.nciem-product-image img {
    max-height: 160px;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.3s;
}
.nciem-product-card:hover .nciem-product-image img {
    transform: scale(1.05);
}
.nciem-product-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.75rem;
}
.nciem-product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}
.nciem-product-price {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--accent-green) !important;
    white-space: nowrap !important;
}
.nciem-product-cart-btn {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.nciem-product-cart-btn:hover {
    background: var(--accent-green);
    color: white;
}

/* Tabs & Filter slider */
.tab-navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}
.tab-btn {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s;
}
.tab-btn:hover {
    color: var(--accent-green);
}
.tab-btn.active {
    color: var(--accent-green);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-green);
}

/* Promos layout */
.promo-tri-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}
.promo-banner-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo-banner-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.promo-banner-card p {
    font-size: 0.88rem;
    color: #475569;
    margin-bottom: 1.5rem;
}
.promo-banner-card img {
    position: absolute;
    right: 10px;
    bottom: 10px;
    max-height: 120px;
    object-fit: contain;
    pointer-events: none;
}

/* Footer structure */
.nciem-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2rem;
}
.nciem-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
}
.nciem-footer h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.nciem-footer ul {
    list-style: none;
}
.nciem-footer li {
    margin-bottom: 0.75rem;
}
.nciem-footer a {
    color: #94a3b8;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.nciem-footer a:hover {
    color: white;
}
.nciem-footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

/* Category Round Cards Overrides Removed to Prevent Conflicts */

/* Tab Navigation styles */
.tab-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}
.tab-btn {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.2s;
}
.tab-btn.active {
    color: var(--accent-green);
}
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-green);
}

/* NCIEM Product Page Layout */
.product-breadcrumb {
    padding: 1.5rem 0;
    font-size: 0.85rem;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 2.5rem;
}
.product-breadcrumb a {
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}
.product-breadcrumb a:hover {
    color: var(--accent-gold);
}
.product-breadcrumb span {
    margin: 0 0.5rem;
    color: #cbd5e1;
}

.nciem-product-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media (max-width: 992px) {
    .nciem-product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Image Showcase */
.nciem-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.nciem-main-image-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.nciem-main-image-wrapper img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
}
.nciem-thumbnail-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.nciem-thumbnail-btn {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.nciem-thumbnail-btn:hover,
.nciem-thumbnail-btn.active {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}
.nciem-thumbnail-btn img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Info */
.nciem-product-info-panel {
    display: flex;
    flex-direction: column;
}
.nciem-brand-disclaimer {
    background: #f8fafc;
    border-left: 3px solid #cbd5e1;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    border-radius: 0 4px 4px 0;
}
.nciem-single-product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.nciem-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 1.5rem;
}
.nciem-stock-badge.in-stock {
    background: #e2fbe8;
    color: #15803d;
}
.nciem-stock-badge.out-of-stock {
    background: #fee2e2;
    color: #b91c1c;
}
.nciem-single-product-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 1.5rem;
}
.nciem-single-product-price span.old-price {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 1rem;
    font-weight: 500;
}

/* Service specs list */
.nciem-service-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.nciem-service-specs li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #475569;
}
.nciem-service-specs li i {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

/* SKU categories */
.nciem-meta-details {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.nciem-meta-details strong {
    color: #334155;
}

/* Action forms */
.nciem-purchase-wrapper {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.nciem-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    height: 48px;
    overflow: hidden;
}
.nciem-qty-btn {
    border: none;
    background: #f8fafc;
    width: 38px;
    height: 100%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    transition: background 0.2s;
}
.nciem-qty-btn:hover {
    background: #ebdccb;
}
.nciem-qty-input {
    border: none;
    width: 50px;
    height: 100%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    outline: none;
}
.nciem-add-to-cart-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    border-radius: 4px;
    height: 48px;
    padding: 0 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 140px;
}
.nciem-add-to-cart-btn:hover {
    background: var(--accent-green-light);
}
.nciem-buy-now-btn {
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 4px;
    height: 48px;
    padding: 0 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 140px;
}
.nciem-buy-now-btn:hover {
    background: #d6830c;
}

/* Tabs implementation */
.nciem-product-tabs-wrapper {
    margin-top: 4rem;
    margin-bottom: 4rem;
}
.nciem-tab-content-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2.5rem;
    margin-top: -1px;
}
.nciem-tab-pane {
    display: none;
}
.nciem-tab-pane.active {
    display: block;
}
.nciem-tab-pane h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--accent-green-dark);
}

/* Request a Quotation Sidebar Widget */
.nciem-quotation-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.nciem-quotation-header {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}
.nciem-quotation-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-green-dark);
    margin-bottom: 0.25rem;
}
.nciem-quotation-header p {
    font-size: 0.82rem;
    color: #64748b;
}
.nciem-quotation-method {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.nciem-quotation-icon-box {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.nciem-quotation-method-details {
    flex: 1;
}
.nciem-quotation-method-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.25rem;
}
.nciem-quotation-method-details p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.nciem-quotation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}
.nciem-quotation-btn:hover {
    background: var(--accent-green-dark);
    color: white;
    border-color: var(--accent-green-dark);
}

/* ── Mobile Layout Overhaul ── */

/* Default Hide Mobile Controls on Desktop */
.mobile-hamburger-btn {
    display: none !important;
}
.mobile-search-trigger, .mobile-lang-btn {
    display: none !important;
}

@media (max-width: 768px) {
    /* Hide top bar & secondary desktop navbar */
    .top-utility-bar {
        display: none !important;
    }
    .nciem-navbar {
        display: none !important;
    }

    /* Main sticky header mobile formatting */
    .main-header-sticky .container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0.75rem 15px !important;
        gap: 0.5rem !important;
        max-width: 100% !important;
    }

    /* Left: Mobile hamburger button */
    .mobile-hamburger-btn {
        display: flex !important;
        background: none !important;
        border: none !important;
        font-size: 1.5rem !important;
        color: #334155 !important;
        cursor: pointer !important;
        padding: 0 !important;
        width: 32px !important;
        height: 32px !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* Center: Centered Logo */
    .main-header-sticky .logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex: 1 !important;
    }
    .main-header-sticky .logo img {
        height: 35px !important;
        width: auto !important;
        margin: 0 auto !important;
    }

    /* Hide desktop search */
    .search-wrapper-nciem {
        display: none !important;
    }

    /* Right: Icons Bar with Cart + Search + Language */
    .nciem-header-icons {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 0.9rem !important;
        flex-shrink: 0 !important;
    }
    .nciem-header-icons .desktop-only-icon {
        display: none !important;
    }
    .mobile-search-trigger, .mobile-lang-btn {
        display: inline-flex !important;
        color: #334155 !important;
        font-size: 1.25rem !important;
    }

    /* ── Hero Section & Slider Mobile Overhaul ── */
    .hero-grid-container {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0.5rem 0 !important;
    }
    
    .hero-sidebar-menu {
        display: none !important; /* Hide vertical category list on homepage */
    }

    .hero-main-slider {
        height: 260px !important;
        min-height: 260px !important;
        border-radius: 8px !important;
        position: relative !important;
    }

    /* Hero slide: full-bleed overlay on mobile — no side-by-side image needed */
    .hero-slide {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
    }

    .hero-slide-content {
        max-width: 100% !important;
        width: 100% !important;
        padding: 1.5rem 1.25rem 1.75rem !important;
        justify-content: flex-end !important;
        box-sizing: border-box !important;
    }

    .hero-slide-tag {
        font-size: 0.65rem !important;
        margin-bottom: 0.4rem !important;
    }

    .hero-slide-content h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.2 !important;
        color: #ffffff !important;
        font-weight: 800 !important;
    }

    .hero-slide-content p {
        font-size: 0.8rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
        color: rgba(255,255,255,0.82) !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .hero-slide-actions {
        gap: 0.6rem !important;
        flex-wrap: wrap !important;
    }

    .hero-btn-primary {
        padding: 0.55rem 1.2rem !important;
        font-size: 0.8rem !important;
        border-radius: 50px !important;
    }

    .hero-btn-ghost {
        padding: 0.55rem 1.1rem !important;
        font-size: 0.8rem !important;
        border-radius: 50px !important;
    }

    /* Navigation controls on mobile */
    .hero-slider-prev,
    .hero-slider-next {
        width: 32px !important;
        height: 32px !important;
        background: rgba(255,255,255,0.15) !important;
        opacity: 1 !important;
    }
    .hero-slider-prev {
        left: 8px !important;
    }
    .hero-slider-next {
        right: 8px !important;
    }
    .hero-slider-dots {
        bottom: 8px !important;
    }
    .hero-slider-dots .dot {
        width: 7px !important;
        height: 7px !important;
    }

    /* Policy Features Bar: Horizontal Auto Scroll Slider */
    .policy-features-bar {
        padding: 1rem 0.5rem !important;
        margin-bottom: 1.5rem !important;
        position: relative !important;
        overflow: hidden !important;
    }
    .policy-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        gap: 0 !important;
        scrollbar-width: none !important; /* Firefox */
    }
    .policy-grid::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari */
    }
    .policy-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        scroll-snap-align: center !important;
        border: none !important;
        padding: 0.5rem 1.5rem !important;
    }

    /* Tabbed navigation horizontal scrolling bar */
    .tab-navigation {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 0.75rem !important;
        margin-bottom: 1.5rem !important;
        scrollbar-width: none !important; /* Firefox */
        gap: 0.5rem !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }
    .tab-navigation::-webkit-scrollbar {
        display: none !important; /* Chrome/Safari */
    }
    .tab-btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        font-size: 0.88rem !important;
        padding: 0.5rem 1rem !important;
        border-radius: 9999px !important;
        background: #f1f5f9 !important;
        color: #475569 !important;
        transition: all 0.2s ease !important;
        border: none !important;
    }
    .tab-btn::after {
        display: none !important; /* Remove bottom border accent line on mobile */
    }
    .tab-btn.active {
        background: var(--accent-green) !important;
        color: #ffffff !important;
    }
}

/* ── Responsive Grid Layouts ── */
.nciem-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .nciem-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nciem-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .nciem-product-card {
        padding: 0.75rem !important;
        border-radius: 6px !important;
    }
    
    .nciem-product-image {
        margin-bottom: 0.5rem !important;
        aspect-ratio: 1.05 !important;
    }
    
    .nciem-product-image img {
        max-height: 120px !important;
    }
    
    .nciem-product-title {
        font-size: 0.82rem !important;
        height: 2.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .nciem-product-price-row {
        padding-top: 0.5rem !important;
    }
    
    .nciem-product-price {
        font-size: 0.85rem !important;
    }
    
    .nciem-product-cart-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
        border-radius: 4px !important;
    }
}

@media (max-width: 576px) {
    .milestones-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* ── Product Page Mobile Redesign ── */
.nciem-product-mobile-layout {
    display: none;
}
.nciem-product-desktop-layout {
    display: grid;
}

/* Custom quantity selector with stacked + and - arrows */
.custom-qty-wrapper {
    display: flex;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    height: 48px;
    width: 90px;
    overflow: hidden;
    flex-shrink: 0;
}
.custom-qty-input {
    width: 55px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    background: transparent;
}
.custom-qty-arrows {
    display: flex;
    flex-direction: column;
    width: 35px;
    border-left: 1px solid #cbd5e1;
}
.qty-up, .qty-down {
    flex: 1;
    background: #f8fafc;
    border: none;
    color: #475569;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    outline: none;
}
.qty-up {
    border-bottom: 1px solid #cbd5e1;
}
.qty-up:hover, .qty-down:hover {
    background: #e2e8f0;
}

@media (max-width: 768px) {
    .nciem-product-desktop-layout {
        display: none !important;
    }
    
    .nciem-product-mobile-layout {
        display: block !important;
        padding: 0 15px;
        margin-top: 1rem;
    }

    /* 1. Thumbnails row at top */
    .mobile-thumbnails-list {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0.5rem 0;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 0.75rem;
    }
    .mobile-thumbnails-list::-webkit-scrollbar {
        display: none;
    }
    .mobile-thumbnail-btn {
        width: 75px;
        height: 75px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 0.4rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: border-color 0.2s;
    }
    .mobile-thumbnail-btn.active {
        border: 2px solid var(--accent-gold);
    }
    .mobile-thumbnail-btn img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    /* Mobile Main Image Preview */
    .mobile-main-image-preview {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 1rem;
        margin-bottom: 1.25rem;
        min-height: 250px;
    }
    .mobile-main-image-preview img {
        max-height: 240px;
        max-width: 100%;
        object-fit: contain;
        transition: opacity 0.15s ease-in-out;
    }

    /* 2. Title */
    .mobile-product-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: #0f172a;
        line-height: 1.3;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    /* 3. Disclaimer */
    .mobile-brand-disclaimer {
        font-size: 0.75rem;
        color: #64748b;
        line-height: 1.45;
        margin-bottom: 0.75rem;
    }

    /* 4. Stock Badge */
    .mobile-stock-status {
        font-size: 0.88rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    .mobile-stock-status.in-stock {
        color: var(--accent-green);
    }
    .mobile-stock-status.out-of-stock {
        color: #ef4444;
    }

    /* 5. Description snippet */
    .mobile-desc-snippet {
        font-size: 0.85rem;
        color: #475569;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }

    /* 6. Actions row (wishlist/compare) */
    .mobile-utility-actions {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    .mobile-utility-actions a {
        font-size: 0.88rem;
        font-weight: 600;
        color: #475569;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        text-decoration: none;
    }

    /* 7. Price Display */
    .mobile-price-container {
        font-size: 1.6rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 1rem;
    }
    .mobile-price-container .old-price {
        font-size: 1.1rem;
        text-decoration: line-through;
        color: #94a3b8;
        margin-left: 0.5rem;
        font-weight: 400;
    }

    /* 8. Purchase actions row */
    .mobile-purchase-action-row {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    .mobile-action-btn {
        flex: 1;
        height: 48px;
        border: none;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.88rem;
        line-height: 1.2;
        text-align: center;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }
    .btn-add-cart {
        background: #1e293b;
        color: #ffffff;
    }
    .btn-add-cart:hover {
        background: #0f172a;
    }
    .btn-buy-now {
        background: var(--accent-gold);
        color: #ffffff;
    }
    .btn-buy-now:hover {
        background: #d6830c;
    }

    /* Tabs Section */
    .mobile-product-tabs {
        margin-top: 2rem;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        overflow: hidden;
        background: #ffffff;
        margin-bottom: 2rem;
    }
    .mobile-tabs-nav {
        display: flex;
        background: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
    }
    .mobile-tab-nav-btn {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0.85rem 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: #475569;
        cursor: pointer;
        text-align: center;
        transition: all 0.2s;
        outline: none;
    }
    .mobile-tab-nav-btn.active {
        background: #ffffff;
        color: var(--accent-gold);
        border-bottom: 2px solid var(--accent-gold);
    }
    .mobile-tab-panes {
        padding: 1.25rem;
    }
    .mobile-tab-pane {
        display: none;
    }
    .mobile-tab-pane.active {
        display: block;
    }
    .mobile-specs-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 1rem;
    }
    .mobile-specs-table td {
        padding: 0.65rem 0.75rem;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.85rem;
    }
    .mobile-specs-table tr:last-child td {
        border-bottom: none;
    }
    .mobile-specs-table td:first-child {
        color: #64748b;
        width: 40%;
    }
    .mobile-specs-table td:last-child {
        color: #0f172a;
    }
    .mobile-download-link {
        background: #1e293b;
        color: #ffffff !important;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none !important;
    }
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 9991;
    opacity: 0;
    visibility: hidden;
    transition: bottom 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease, visibility 0.3s ease, background 0.2s ease;
}

/* Push scroll-to-top button above compare bar */
body.compare-bar-open .scroll-to-top-btn {
    bottom: 160px;
}
.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
}

/* Mobile Footer Enhancements */
@media (max-width: 768px) {
    .nciem-footer {
        padding: 3rem 0 1.5rem !important;
    }
    .nciem-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: left !important;
    }
    .nciem-footer-grid > div {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding-bottom: 1.5rem !important;
    }
    .nciem-footer-grid > div:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .nciem-footer-grid .footer-socials {
        justify-content: flex-start !important;
    }
    .nciem-footer-grid .footer-contact-list {
        padding: 0 !important;
    }
    .nciem-footer-grid .footer-contact-list li {
        justify-content: flex-start !important;
        text-align: left !important;
    }
    .nciem-footer-payments {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
}



/* ── Promo Banner Grid ── */
.promo-tri-grid {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.promo-banner-card {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    gap: 1rem;
    text-decoration: none;
}

.promo-banner-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.promo-banner-card--featured {
    flex: 1.5;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.promo-banner-body {
    flex: 1;
    min-width: 0;
}

.promo-banner-label {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.4rem;
}

.promo-banner-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.promo-banner-card--featured .promo-banner-title {
    font-size: 1.3rem;
}

.promo-banner-desc {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.promo-banner-link {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.promo-banner-link:hover {
    gap: 10px;
}

.promo-banner-img-wrap {
    flex-shrink: 0;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-banner-card--featured .promo-banner-img-wrap {
    width: 120px;
}

.promo-banner-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
    transition: transform 0.3s ease;
}

.promo-banner-card:hover .promo-banner-img-wrap img {
    transform: scale(1.06) rotate(-2deg);
}

@media (max-width: 768px) {
    .promo-tri-grid {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .promo-banner-card,
    .promo-banner-card--featured {
        flex: unset !important;
        padding: 1.25rem !important;
    }
    .promo-banner-img-wrap,
    .promo-banner-card--featured .promo-banner-img-wrap {
        width: 80px !important;
    }
    .promo-banner-title,
    .promo-banner-card--featured .promo-banner-title {
        font-size: 1rem !important;
    }
}

/* ── Promo BG Cards (Desktop 3-col + Mobile Slider) ── */
.promo-section {
    overflow: hidden;
}

.promo-track-wrapper {
    position: relative;
}

/* DESKTOP: 3-column flex row */
.promo-track {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.promo-bg-card {
    flex: 1;
    min-height: 280px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-bg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.promo-bg-card--lg {
    flex: 1.5;
    min-height: 280px;
}

/* Gradient overlays */
.promo-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.promo-bg-overlay--blue {
    background: linear-gradient(140deg, rgba(15,23,42,0.82) 0%, rgba(30,58,138,0.55) 100%);
}
.promo-bg-overlay--dark {
    background: linear-gradient(140deg, rgba(0,0,0,0.85) 0%, rgba(15,23,42,0.6) 100%);
}
.promo-bg-overlay--green {
    background: linear-gradient(140deg, rgba(5,46,22,0.85) 0%, rgba(20,83,45,0.55) 100%);
}

/* Hot Deals badge */
.promo-bg-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 3;
    letter-spacing: 0.5px;
}

/* Text content on top of overlay */
.promo-bg-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem 1.5rem;
}

.promo-bg-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7dd3fc;
    margin-bottom: 0.4rem;
}

.promo-bg-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.promo-bg-card--lg .promo-bg-title {
    font-size: 1.6rem;
}

.promo-bg-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 1.1rem;
}

.promo-bg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s;
    width: fit-content;
}

.promo-bg-btn:hover {
    background: rgba(255,255,255,0.28);
    gap: 12px;
}

.promo-bg-btn--gold {
    background: rgba(251,191,36,0.2);
    border-color: rgba(251,191,36,0.5);
    color: #fbbf24;
}

.promo-bg-btn--gold:hover {
    background: rgba(251,191,36,0.35);
}

/* Dot indicators — hidden on desktop */
.promo-dots {
    display: none;
}

/* MOBILE: horizontal scroll slider */
@media (max-width: 768px) {
    .promo-track {
        display: flex;
        flex-direction: row !important;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem !important;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }
    .promo-track::-webkit-scrollbar {
        display: none;
    }
    .promo-bg-card,
    .promo-bg-card--lg {
        flex: 0 0 85vw !important;
        min-height: 240px !important;
        scroll-snap-align: start;
        border-radius: 12px !important;
    }
    .promo-bg-title {
        font-size: 1.2rem !important;
    }
    .promo-bg-card--lg .promo-bg-title {
        font-size: 1.25rem !important;
    }
    .promo-bg-content {
        padding: 1.25rem !important;
    }
    /* Show dots on mobile */
    .promo-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 1rem;
    }
    .promo-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
    }
    .promo-dot.active {
        background: var(--accent-green);
        transform: scale(1.3);
    }
}

/* ── Hero Slider Mobile Overrides (consolidated) ── */
@media (max-width: 768px) {
    .hero-grid-container {
        grid-template-columns: 1fr !important;
    }
    .hero-sidebar-menu {
        display: none !important;
    }
    .hero-main-slider {
        height: 320px !important;
        border-radius: 10px !important;
    }
    .hero-slide-content {
        max-width: 100% !important;
        padding: 1.5rem 1.25rem 1.75rem !important;
        justify-content: flex-end !important;
    }
    .hero-slide-tag {
        font-size: 0.65rem !important;
        margin-bottom: 0.35rem !important;
    }
    .hero-slide-content h2 {
        font-size: 1.35rem !important;
        color: #ffffff !important;
        margin-bottom: 0.4rem !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5) !important;
    }
    .hero-slide-content p {
        font-size: 0.78rem !important;
        color: rgba(255,255,255,0.82) !important;
        margin-bottom: 1rem !important;
        -webkit-line-clamp: 2 !important;
    }
    .hero-slide-actions {
        gap: 0.5rem !important;
    }
    .hero-btn-primary,
    .hero-btn-ghost {
        padding: 0.55rem 1.1rem !important;
        font-size: 0.78rem !important;
    }
}

/* ── Hot Sellers Section Redesign ── */
.hot-sellers-section {
    padding: 3.5rem 0;
    margin-bottom: 2rem;
}
.hot-sellers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1.5px solid #e2e8f0;
    margin-bottom: 2.25rem;
    padding-bottom: 0px;
}
.hot-sellers-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    padding-bottom: 0.75rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}
.hot-sellers-title::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--accent-green, #00875a);
}
.hot-sellers-tabs {
    display: flex;
    gap: 1.5rem;
}
.hot-sellers-tab {
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    padding: 0 0 0.75rem 0;
    position: relative;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}
.hot-sellers-tab:hover {
    color: #0f172a;
}
.hot-sellers-tab.active {
    color: #0f172a;
}
.hot-sellers-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0f172a; /* Dark indicator line as requested */
    border-radius: 3px 3px 0 0;
}
.hot-sellers-tab.active::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: #0f172a;
    border-radius: 50%;
    z-index: 2;
}
.hot-sellers-contents {
    position: relative;
}
.hot-sellers-tab-content {
    display: none;
}
.hot-sellers-tab-content.active {
    display: block;
}
.hot-sellers-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 0.5rem 0.25rem 1rem 0.25rem;
    scrollbar-width: none;
}
.hot-sellers-slider-track::-webkit-scrollbar {
    display: none;
}
.hot-sellers-card {
    flex: 0 0 calc(25% - 1.125rem);
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.hot-sellers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px -5px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}
.hot-sellers-img-wrap {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.hot-sellers-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.hot-sellers-card:hover .hot-sellers-img-wrap img {
    transform: scale(1.05);
}
.hot-sellers-card-title-link {
    text-decoration: none;
}
.hot-sellers-card-title {
    font-size: 0.95rem;
    font-weight: 650;
    color: #1e293b;
    line-height: 1.45;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0 0 1.25rem 0;
    transition: color 0.2s;
    font-family: 'Poppins', sans-serif;
}
.hot-sellers-card:hover .hot-sellers-card-title {
    color: var(--accent-green, #00875a);
}
.hot-sellers-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.hot-sellers-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}
.hot-sellers-cart-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f1f5f9;
    border: none;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.hot-sellers-cart-btn:hover {
    background: var(--accent-green, #00875a);
    color: #ffffff;
    transform: scale(1.05);
}
.hot-sellers-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}
.hot-sellers-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s ease;
}
.hot-sellers-dot.active {
    background: #0f172a;
    transform: scale(1.25);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .hot-sellers-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}
@media (max-width: 768px) {
    .hot-sellers-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 0px;
    }
    .hot-sellers-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }
    .hot-sellers-tabs::-webkit-scrollbar {
        display: none;
    }
    .hot-sellers-card {
        flex: 0 0 calc(50% - 0.75rem);
        padding: 1.25rem;
    }
    .hot-sellers-img-wrap {
        height: 150px;
    }
    .hot-sellers-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 480px) {
    .hot-sellers-card {
        flex: 0 0 85vw;
    }
}

.hot-sellers-play-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.hot-sellers-play-badge:hover {
    background: rgba(15, 23, 42, 0.7);
    transform: scale(1.1);
}

