:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #FCFBF9; /* Soft Ivory Cream background */
    --accent-green: #6B1F38; /* Royal Crimson Maroon */
    --accent-green-light: #8E3A56;
    --accent-green-dark: #4A0E17; /* Luxury Dark Wine Red */
    --accent-gold: #C5A880; /* Champagne Gold */
    --accent-gold-light: #E5D3B3;
    --text-dark: #2A2A2A;
    --text-muted: #6B6B6B;
    --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(74, 14, 23, 0.05), 0 4px 12px -2px rgba(74, 14, 23, 0.02);
    --shadow-lg: 0 20px 40px -5px rgba(74, 14, 23, 0.08), 0 10px 20px -5px rgba(74, 14, 23, 0.04);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.4s 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;
}

.categories-dropdown-wrapper:hover .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;
}

.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: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.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(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
}

.support-card {
    text-align: center;
    padding: 2rem;
    background: #fdfaf5;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-green);
}

.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(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.value-item {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.4s ease;
}

.value-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.value-item i {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--accent-green-dark);
}

/* 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); }
}

