:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8F9FA;
    --accent-green: #4B0082; /* Indigo/Royal Purple */
    --accent-green-light: #6A5ACD;
    --accent-green-dark: #311B92;
    --premium-maroon: #800000;
    --premium-gold: #D4A017;
    --premium-dark: #1A1C19;
    --accent-gold: #D4A017; /* Sophisticated Gold */
    --accent-gold-light: #EBC05F;
    --text-dark: #1A1C19;
    --text-muted: #5C635A;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 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;
}

/* Header */
header {
    background: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.header-search {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.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);
}

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

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

/* Secondary Nav */
.categories-dropdown-wrapper {
    position: relative;
    height: 100%;
}

.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;
}

.secondary-nav {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-top: 20px;
}

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

.categories-dropdown-btn {
    background: var(--accent-gold);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
}

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

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

/* Swiper Slider Styling */
.home-slider {
    width: 100%;
    height: 75vh;
    min-height: 500px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}

.swiper-slide-active .slider-bg {
    transform: scale(1.1);
}

.slider-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.2) 60%, transparent 100%);
}

.slider-text {
    max-width: 600px;
    padding: 0 20px;
}

.slider-text h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.slider-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slider-text .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.7s;
}

.swiper-slide-active .slider-text h2,
.swiper-slide-active .slider-text p,
.swiper-slide-active .slider-text .btn {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .home-slider {
        height: 350px;
        border-radius: 20px;
        margin: 15px;
        width: calc(100% - 30px);
    }
    .slider-content {
        background: rgba(0,0,0,0.2) !important;
        text-align: center;
        justify-content: center;
        border-radius: 20px;
    }
    .slider-text h2 {
        font-size: 1.8rem;
        color: white !important;
    }
    .slider-text p {
        color: white !important;
        font-size: 0.9rem;
    }
}

/* Premium Card Evenness */
.premium-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--premium-maroon);
}

.p-img {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    background: #fdfdfd;
}

.p-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.p-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--premium-dark);
    margin-bottom: 10px;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.p-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--premium-maroon);
    margin-bottom: 1.5rem;
}

.p-btn {
    margin-top: auto;
    width: 100%;
    background: transparent;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.p-btn:hover {
    background: var(--premium-maroon);
    color: white;
    border-color: var(--premium-maroon);
}

.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;
}

/* Home Sections Styles */
.values-strip-section {
    padding: 3rem 0;
    background: #fff;
}

.values-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 1.5rem;
}

.values-strip .value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #f2f2f2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.values-strip .value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--premium-maroon);
}

.value-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: #fffafa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-maroon);
    font-size: 1.4rem;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--premium-maroon);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.value-info {
    display: flex;
    flex-direction: column;
}

.value-info span {
    font-weight: 800;
    color: var(--premium-dark);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.value-info small {
    color: #888;
    font-size: 0.75rem;
    margin-top: 4px;
}

@media (max-width: 992px) {
    .values-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .values-strip {
        grid-template-columns: 1fr;
    }
    .values-strip .value-item {
        padding: 1.5rem;
    }
}

.shop-cat-icons-section {
    background: #111;
    color: white;
    padding: 5rem 0;
    margin: 4rem 0;
}

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

.cat-icon-item i {
    font-size: 2.5rem;
    color: var(--premium-gold);
    margin-bottom: 1.5rem;
}

.cat-icon-item h4 {
    color: white;
    font-family: var(--font-sans);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.interior-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.interior-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.interior-img img {
    width: 100%;
    display: block;
}

.interior-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.interior-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {

    .cat-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .interior-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .interior-text h2 {
        font-size: 2.2rem;
    }
}

/* Footer Premium Styles */
.footer-premium {
    background: #000;
    color: white;
    padding: 6rem 0 3rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-col h4 {
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #999;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--premium-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.payment-icons img {
    height: 18px;
    width: auto;
    filter: grayscale(1) brightness(1.5);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 2rem !important;
    }
    .hero-text h1 {
        font-size: 2.8rem !important;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 1rem 0;
    }
    .premium-card {
        padding: 1rem !important;
        border-radius: 12px;
    }
    .p-img {
        margin-bottom: 1rem;
    }
    .p-title {
        font-size: 0.95rem !important;
        height: 2.6rem;
    }
    .p-price {
        font-size: 1.15rem !important;
        margin-bottom: 1rem;
    }
    .p-btn {
        padding: 10px !important;
        font-size: 0.75rem !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .hamburger-menu {
        display: flex !important;
    }
    .header-main-grid {
        grid-template-columns: auto 1fr auto !important;
        gap: 1rem !important;
    }
    .premium-search-wrapper {
        display: none !important; /* Hide on small mobile, use overlay search */
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-col {
        grid-column: span 1 !important;
    }
    .footer-col p {
        margin: 0 auto 2rem;
    }
    .category-circles-section .circles-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .premium-card {
        padding: 0.8rem !important;
        border-radius: 10px;
    }
    .p-img {
        margin-bottom: 0.8rem;
    }
    .p-title {
        font-size: 0.85rem !important;
        height: 2.4rem;
        margin-bottom: 5px;
    }
    .p-price {
        font-size: 1.05rem !important;
        margin-bottom: 0.8rem;
    }
    .p-btn {
        padding: 8px 5px !important;
        font-size: 0.7rem !important;
        letter-spacing: 0;
    }
    .premium-section-title h2 {
        font-size: 1.8rem !important;
    }
    .section-padding {
        padding: 3rem 0 !important;
    }
}

.footer-logo {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-socials a {
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--premium-gold);
    transform: translateY(-3px);
}

.footer-col p {
    line-height: 1.8;
    color: #999;
    max-width: 400px;
}

@media (min-width: 769px) {
    .brand-col {
        grid-column: span 2;
    }
}

/* 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 & Sticky State */
/* Optimized Header & Sticky State */
header {
    background: var(--white);
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    transform: translateZ(0); /* Hardware acceleration to prevent jitter */
}

header.sticky {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

.logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
    display: block;
}

header.sticky .logo img {
    height: 45px;
}

/* Nav Icons & Buttons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-icons a {
    font-size: 1.15rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icons a:hover {
    color: var(--accent-green);
    transform: translateY(-2px);
}

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

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

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

/* Desktop Only Improvements */
@media (min-width: 993px) {
    .nav-container {
        padding: 0 40px;
    }
}

.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(--premium-maroon);
    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) {
    header {
        padding: 0.6rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .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;
    }
    .header-main-grid {
        grid-template-columns: auto 1fr auto !important;
        gap: 1rem !important;
    }
    .header-contact, .header-search {
        display: none !important;
    }
    .secondary-nav {
        display: none !important;
    }
    .hero-text h1 {
        font-size: 2.4rem !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: 80px; /* Above bottom nav */
        right: 15px;
    }
    .whatsapp-badge {
        display: none;
    }
}

/* Premium Redesign Styles */
:root {
    --premium-maroon: #701532;
    --premium-maroon-dark: #4d0d21;
    --premium-gold: #D4A017;
    --premium-cream: #fdfdfd;
    --premium-dark: #1e1a34;
    --premium-gray: #f4f4f4;
}

/* Announcement Bar */
.announcement-bar {
    background: var(--premium-maroon);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Header Overhaul */
.header-top {
    padding: 1.5rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.header-main-grid {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    gap: 2rem;
}

.logo img {
    height: 60px;
    width: auto;
}

.premium-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.premium-search-wrapper input {
    width: 100%;
    padding: 12px 25px 12px 45px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 0.95rem;
    transition: 0.3s;
}

.premium-search-wrapper input:focus {
    border-color: var(--premium-maroon);
    background: white;
    outline: none;
}

.premium-search-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.header-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    font-size: 1.3rem;
    color: var(--premium-dark);
}

.header-icons a {
    color: inherit;
    position: relative;
}

.header-icons .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--premium-maroon);
    color: white;
    font-size: 0.65rem;
    padding: 2px 5px;
    border-radius: 50%;
}

/* Header Main (Nutraj Style) */
.header-main {
    background: white;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 36px; /* Below top-bar */
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left, .header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-right {
    justify-content: flex-end;
    gap: 15px;
}

.header-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

.header-center .logo img {
    height: 45px;
    width: auto;
}

/* Announcement Bars */
.announcement-bar {
    text-align: center;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.top-bar {
    background: #000 !important;
    color: white !important;
    overflow: hidden;
    height: 40px !important;
}

.ticker-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: ticker 8s cubic-bezier(1, 0, 0, 1) infinite;
}

.ticker-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
}

@keyframes ticker {
    0%, 45% { transform: translateY(0); }
    50%, 95% { transform: translateY(-40px); }
    100% { transform: translateY(0); }
}

.secondary-bar {
    background: var(--premium-maroon);
    color: white;
}

/* Category Squares */
.category-squares-section {
    padding: 1.5rem 0;
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.squares-container {
    display: flex;
    gap: 12px;
    padding-bottom: 5px;
}

.category-squares-section .container {
    padding-right: 0; /* Allow scroll to edge */
}

.square-item {
    min-width: 85px;
    width: 85px;
    padding: 12px 5px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: white !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s;
}

.square-item:hover {
    transform: translateY(-3px);
}

.square-img-wrapper {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.square-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.square-item span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 9999;
    border-top: 1px solid #333;
}

.bottom-nav a {
    color: #888;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.bottom-nav a i {
    font-size: 1.2rem;
}

.bottom-nav a span {
    font-size: 0.6rem;
    font-weight: 700;
}

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

.bottom-nav a:hover {
    color: #fff;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
}

/* Show bottom nav only on mobile */
@media (min-width: 769px) {
    .bottom-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px; /* Space for bottom nav */
    }
}


/* Mobile Dropdown (Side Menu) */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px !important;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-trigger i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f9f9f9;
}

.mobile-dropdown-content.active {
    max-height: 1000px;
    padding-bottom: 10px;
}

.mobile-dropdown-content a {
    display: block;
    padding: 12px 25px !important;
    font-size: 0.85rem !important;
    border-bottom: 1px solid #eee;
    color: #555 !important;
}

.mobile-dropdown-content a:last-child {
    border-bottom: none;
}


@media (max-width: 768px) {
    /* Announcement Bars */
    .announcement-bar {
        padding: 8px 10px !important;
        font-size: 0.75rem !important;
        height: auto !important;
    }
    .top-bar {
        background: #000000 !important;
        color: #ffffff !important;
        position: relative;
        z-index: 1001;
    }
    .secondary-bar {
        background: #701532 !important; /* Nutraj Maroon */
        color: #ffffff !important;
        margin-top: 0 !important;
    }

    /* Header Main */
    .header-main {
        padding: 12px 0 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    }
    .header-center .logo img {
        height: 40px !important;
    }
    .header-left i, .header-right i {
        font-size: 1.2rem !important;
        color: #333 !important;
    }

    /* Category Squares Section */
    .category-squares-section {
        padding: 20px 0 !important;
        background: #ffffff !important;
    }
    .squares-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 12px !important;
        padding: 0 15px 15px !important;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }
    .squares-container::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
    .square-item {
        flex: 0 0 85px !important;
        width: 85px !important;
        height: 100px !important;
        border-radius: 12px !important;
        padding: 10px 5px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
    }
    .square-img-wrapper {
        width: 45px !important;
        height: 45px !important;
        margin-bottom: 5px !important;
    }
    .square-item span {
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
    }

    /* Bottom Nav Sticky */
    .bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: #000000 !important;
        padding: 10px 0 !important;
        z-index: 10000 !important;
        border-top: 1px solid #222 !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2) !important;
    }
    .bottom-nav a {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px !important;
        color: #999 !important;
        text-decoration: none !important;
    }
    .bottom-nav a i {
        font-size: 1.3rem !important;
    }
    .bottom-nav a span {
        font-size: 0.6rem !important;
        font-weight: 600 !important;
    }
    .bottom-nav a.active {
        color: #ffffff !important;
    }
}


/* Premium Section Titles */
.premium-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.premium-section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--premium-dark);
    margin-bottom: 0.5rem;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--premium-maroon);
    margin: 0.5rem auto 0;
}

.section-padding {
    padding: 6rem 0;
}

.light-bg {
    background: #fdfdfd;
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.promo-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 350px;
    box-shadow: var(--shadow-md);
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.promo-card:hover img {
    transform: scale(1.1);
}

.promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: white;
}

.promo-content a {
    color: var(--premium-gold);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--premium-gold);
    padding-bottom: 2px;
}

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

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .promo-card {
        height: 280px;
    }
    .section-padding {
        padding: 4rem 0;
    }
}

/* Product Card Improvements */
.p-category {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.p-title-link {
    text-decoration: none;
    color: inherit;
}

.p-title-link:hover .p-title {
    color: var(--premium-maroon);
}

/* Circle Grid Responsive Fix */
@media (max-width: 768px) {
    .circles-grid {
        gap: 1rem !important;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        justify-items: center;
    }
    .circle-item {
        width: auto !important;
    }
    .circle-img-wrapper {
        width: 80px !important;
        height: 80px !important;
    }
    .circle-item span {
        font-size: 0.75rem !important;
    }
}

/* Premium Product Cards */
.premium-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: 0.3s;
    border: 1px solid #f0f0f0;
    text-align: center;
    position: relative;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.premium-card .p-img {
    height: 180px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-card .p-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.premium-card .p-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--premium-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6rem;
}

.premium-card .p-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--premium-maroon);
    margin-bottom: 1rem;
}

.premium-card .p-btn {
    background: var(--premium-maroon);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.premium-card .p-btn:hover {
    background: var(--premium-maroon-dark);
}

/* Shop by Category Icons Section */
.shop-cat-icons-section {
    background: #000;
    color: white;
    padding: 4rem 0;
}

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

.cat-icon-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cat-icon-item h4 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}



/* ==========================================================================
   OFFERS & COUPONS PAGE
   ========================================================================== */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.coupon-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.coupon-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.coupon-top {
    background: linear-gradient(135deg, var(--premium-maroon), #a01d3b);
    color: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.coupon-top::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    background: radial-gradient(circle, transparent 70%, #fff 70%);
    background-size: 30px 30px;
    background-position: center;
}

.coupon-value {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
    display: block;
    color: var(--premium-gold);
}

.coupon-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.coupon-body {
    padding: 2.5rem 2rem 2rem;
    flex-grow: 1;
    text-align: center;
}

.coupon-code-wrapper {
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s;
}

.coupon-code-wrapper:hover {
    border-color: var(--premium-maroon);
}

.coupon-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--premium-maroon);
}

.copy-btn {
    background: var(--premium-gold);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.copy-btn:hover {
    background: var(--premium-maroon);
}

.coupon-meta {
    font-size: 0.9rem;
    color: #666;
}

.coupon-meta p {
    margin-bottom: 0.5rem;
}

.coupon-meta strong {
    color: var(--premium-dark);
}

.no-offers {
    text-align: center;
    padding: 5rem 0;
}

.no-offers i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
    .coupon-value {
        font-size: 2.5rem;
    }
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--premium-maroon);
}

/* Footer Premium */
.footer-premium {
    background: #000;
    color: #ccc;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}


/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: #fdfdfd;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--premium-maroon);
}

.testimonial-card .stars {
    color: var(--premium-gold);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testimonial-card .quote {
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--premium-dark);
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Final Mobile Polish --- */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0 !important;
    }
    .interior-section, .shop-cat-icons-section, .testimonials-section {
        padding: 3rem 0 !important;
    }
    .interior-text h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    .interior-text p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
    .cat-icons-grid {
        gap: 1.5rem !important;
    }
    .cat-icon-item i {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    .testimonial-card {
        padding: 1.5rem !important;
    }
    .premium-section-title {
        margin-bottom: 2rem !important;
    }
}

/* --- Product Grid & Card Responsiveness --- */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 1rem 0 !important;
    }
    .premium-card, .product-card {
        padding: 10px !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }
    .p-img, .product-image {
        margin-bottom: 10px !important;
        height: 160px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .p-img img, .product-image img {
        max-height: 100% !important;
        width: auto !important;
        object-fit: contain !important;
    }
    .p-title, .product-title, .product-info h3 {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        height: 2.4rem !important;
        margin-bottom: 8px !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }
    .p-price, .new-price, .price {
        font-size: 1.1rem !important;
        font-weight: 800 !important;
        margin-bottom: 12px !important;
    }
    .p-btn, .add-to-cart-btn {
        margin-top: auto !important;
        padding: 10px 5px !important;
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px !important;
    }
    .products-grid {
        gap: 10px !important;
    }
    .premium-card, .product-card {
        padding: 8px !important;
    }
    .p-img, .product-image {
        height: 140px !important;
    }
    .p-title, .product-title, .product-info h3 {
        font-size: 0.85rem !important;
    }
    .p-price, .new-price, .price {
        font-size: 1rem !important;
    }
}
