@import "https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap";

:root {
    --primary: #000000;
    --primary-light: #1a1a1a;
    --accent: #b49164;
    --accent-dark: #8e6f4a;
    --text-dark: #111111;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --white: #ffffff;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

/* Global Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a; /* Dark premium background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999; /* Max priority */
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-dots {
    display: flex;
    gap: 12px;
}

.loader-dots span {
    width: 14px;
    height: 14px;
    background-color: var(--accent, #b49164); /* Using brand accent color */
    border-radius: 50%;
    display: inline-block;
    animation: bounceDots 1.4s infinite ease-in-out both;
    box-shadow: 0 0 15px rgba(180, 145, 100, 0.3); /* Subtle glow */
}

.loader-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounceDots {
    0%, 80%, 100% { 
        transform: scale(0.3);
        opacity: 0.3;
    } 
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent, #b49164);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #000;
    color: var(--accent, #b49164);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.scroll-to-top i, .scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 3px; /* Thicker arrow for better visibility */
}

/* Floating Contact Buttons */
.floating-contact-container {
    position: fixed;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 40px; /* Reduced height */
    width: 110px; /* Adjusted width */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    background: transparent !important;
    box-shadow: none !important;
}



.floating-btn:hover {
    transform: scale(1.05);
}

.f-icon-circle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent !important;
}



.f-icon-circle img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0; /* Remove circular clipping */
}


.whatsapp .f-icon-circle { color: #25D366; }
.call .f-icon-circle { color: #ff3b30; }

.f-label-box {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
}

.f-label-box .main-text {
    font-weight: 800;
    font-size: 13px; /* Reduced from 16px */
    line-height: 1;
}

.f-label-box .sub-text {
    font-size: 9px; /* Reduced from 10px */
    font-weight: 500;
    opacity: 0.9;
    font-style: italic;
}

.call-split-box {
    display: flex;
    align-items: center;
    height: 100%;
}

.call-text {
    padding: 0 8px 0 4px;
    font-weight: 800;
    font-size: 14px; /* Reduced from 20px */
}

.now-text {
    background: #001f3f;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-weight: 800;
    font-size: 14px; /* Reduced from 20px */
}

@media (max-width: 768px) {
    .floating-contact-container {
        bottom: 10px;
        left: 10px;
        gap: 5px;
    }
    .floating-btn {
        height: 32px;
        width: 90px;
    }

    .f-label-box .main-text {
        font-size: 11px;
    }
    .call-text, .now-text {
        font-size: 12px;
    }
}



@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    max-width: 100%;
}

body {
    font-family: 'Instrument Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #000, #222, #000);
    color: var(--white);
    text-align: center;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 20px;
}

.nav-icons span, .nav-icons a {
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    color: inherit;
}

.nav-icons span:hover, .nav-icons a:hover {
    color: var(--accent);
}

.search-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.search-trigger:hover {
    color: var(--accent);
}

/* Professional Search Suite - Integrated Body Search */
.search-overlay {
    position: fixed;
    top: 80px; /* Aligns perfectly below the sticky header */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #ffffff;
    z-index: 2000;
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    border-top: 1px solid #f0f0f0;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    width: 100%;
    max-width: 1000px;
    padding: 100px 20px;
    transform: translateY(-30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-modal {
    transform: translateY(0);
}

.search-header {
    margin-bottom: 60px;
}

.search-box-v2 {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #111;
    padding-bottom: 15px;
}

.search-box-v2 i, .search-box-v2 svg {
    font-size: 28px;
    color: #111;
}

.search-box-v2 input {
    width: 100%;
    border: none;
    background: none;
    font-size: 32px;
    padding: 0 25px;
    color: #111;
    font-weight: 700;
    outline: none;
}

.search-close-v2 {
    background: #f8f9fa;
    border: 1px solid #eee;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close-v2:hover {
    background: #000;
    color: #fff;
    transform: rotate(90deg);
}

.search-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    animation: fadeInUp 0.8s ease backwards;
    animation-delay: 0.2s;
}

.search-section h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 30px;
}

/* Category Grid */
.search-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.search-cat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.search-cat-item:hover {
    background: #fff;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cat-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Product List */
.search-product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-prod-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-prod-item:hover {
    background: #f8f9fa;
}

.prod-thumb {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 8px;
    flex-shrink: 0;
}

.prod-info h5 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #111;
}

.prod-info p {
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .search-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .search-modal {
        padding: 60px 20px;
    }
    .search-box-v2 input {
        font-size: 20px;
    }
    .search-category-grid {
        grid-template-columns: 1fr;
    }
}.user-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 280px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3000;
    transform-origin: top right;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.user-avatar-initials {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8f3f1, #ffffff);
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.user-info-text {
    overflow: hidden;
}

.user-info-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 2px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.user-info-text p {
    font-size: 12px;
    color: #999;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    color: #444;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.dropdown-list li a:hover {
    background: #f8f9fa;
    color: var(--accent);
    transform: translateX(5px);
}

.dropdown-list li a i, .dropdown-list li a svg {
    color: #999;
    transition: all 0.3s ease;
}

.dropdown-list li a:hover i, .dropdown-list li a:hover svg {
    color: var(--accent);
    transform: scale(1.1);
}

.logout-item {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.logout-btn-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    color: #ef4444 !important;
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn-link:hover {
    background: #fff5f5;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .dropdown-menu {
        width: 260px;
        right: -30px;
        top: calc(100% + 10px);
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
}

/* Menu Toggle */
.nav-icon {
    position: relative;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.menu-toggle {
    display: none;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.menu-toggle:active {
    transform: scale(0.95);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #000;
}

/* Background Light Orbs */
.hero-slider::before, .hero-slider::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.hero-slider::before { top: -100px; left: -100px; }
.hero-slider::after { bottom: -100px; right: -100px; background: #666; }

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    background-image: 
        linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
        url('/assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    color: var(--white);
}

.slide-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transform: translateX(-50px);
    transition: transform 1s ease-out, opacity 1s ease-out;
    opacity: 0;
}

.slide.active .slide-content {
    transform: translateX(0);
    opacity: 1;
}

.slide-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.slide-content h1 span {
    background: linear-gradient(to right, var(--accent), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.8;
    max-width: 500px;
    line-height: 1.5;
}

.hero-image {
    perspective: 1000px;
}

.hero-image img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    max-height: 820px;
    transform: scale(0.85) rotateY(-10deg);
    transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .hero-image img {
    transform: scale(1) rotateY(0deg);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    width: 50px;
}


/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 40px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: var(--box-shadow);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.trust-item h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.trust-item p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Categories */
.section-title {
    text-align: center;
    margin: 80px 0 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    height: 150px;
    object-fit: contain;
    margin: 0 auto 15px;
    width: 100%;
}

.category-card h3 {
    font-size: 20px;
}

/* Featured Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(180, 145, 100, 0.2);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.wishlist-btn:hover {
    background: #ff4d4d;
    color: var(--white);
    transform: scale(1.1);
}

.product-image {
    height: 250px;
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 5px;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
    line-height: 1.4;
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #ffc107;
    margin-bottom: 12px;
}

.rating span {
    display: flex;
    align-items: center;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.old-price {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.6;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-cart {
    width: 50px;
    height: 50px;
    background: #f4f4f4;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.btn-cart:hover {
    background: var(--text-dark);
    color: var(--white);
}

.btn-buy {
    flex: 1;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-buy:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(180, 145, 100, 0.3);
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        padding: 10px;
        border-radius: 15px;
    }
    
    .product-image {
        height: 160px;
        border-radius: 10px;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
        min-height: 2.5rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .btn-cart {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    
    .btn-buy {
        height: 40px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    
    .wishlist-btn {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
    }

    .rating {
        margin-bottom: 8px;
    }

    .rating span svg {
        width: 10px !important;
        height: 10px !important;
    }

    .rating span:last-child {
        font-size: 10px !important;
    }
}

/* Toast Notification - Professional Level */
.toast-notif {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    z-index: 9999;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 5px solid var(--accent);
}

.toast-notif.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-notif.success { border-left-color: #10b981; }
.toast-notif.error { border-left-color: #ef4444; }
.toast-notif.info { border-left-color: #3b82f6; }

.toast-notif.success i { color: #10b981; }
.toast-notif.error i { color: #ef4444; }
.toast-notif.info i { color: #3b82f6; }

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-content span {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

/* Loader Spinner */
.loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.1);
    border-top: 2px solid var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Shop by Flavour */
.flavour-section {
    padding-bottom: 80px;
    margin-top: 100px;
}

.flavour-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.flavour-section-title h2 {
    font-size: 2.2rem;
    color: #000;
    font-weight: 700;
}

.flavour-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.flavour-item {
    text-align: center;
    transition: var(--transition);
}

.flavour-item:hover {
    transform: translateY(-5px);
}

.flavour-item img {
    border-radius: 50%;
    width: 100%;
    max-width: 170px;
    margin: 0 auto;
}

.mobile-marquee {
    display: none;
}

@media (max-width: 992px) {
    .flavour-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .mobile-marquee {
        display: block;
    }
    .flavour-grid {
        display: flex;
        gap: 15px;
        flex-wrap: nowrap;
        width: max-content;
        animation: flavour-scroll 20s linear infinite;
    }
    .flavour-grid:hover,
    .flavour-grid:active {
        animation-play-state: paused;
    }
    .flavour-item {
        width: calc(50vw - 20px);
        flex-shrink: 0;
    }
}
@keyframes flavour-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}

/* Shop by Goals */
.goals-section {
    padding-bottom: 80px;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.goal-tile {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.goal-tile.dark {
    background: #0a0a0a;
}

.goal-tile.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.goal-tile.image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 86, 179, 0.4);
}

.goal-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.goal-letter {
    font-size: 7rem;
    font-weight: 900;
    color: #0056b3;
    line-height: 1;
}

.goal-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

@media (max-width: 992px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .goal-letter {
        font-size: 5rem;
    }
}

@media (max-width: 576px) {
    .goal-letter {
        font-size: 3.5rem;
    }
    .goal-label {
        font-size: 0.8rem;
    }
}

/* Quality Section (Nakpro Style) */
.nutra-quality-section {
    background: #f8f8f8; /* Light grey bg from image */
    padding: 90px 0;
    margin-top: -80px;
    text-align: center;
}

.quality-header h2 {
    color: #000; /* Blue color from image */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.quality-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: 0 auto;
}

.quality-item {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.quality-icon i {
    width: 60px;
    height: 60px;
    color: #000;
    stroke-width: 2.5; /* Bold black icons as in image */
}

.quality-item p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000;
}

@media (max-width: 992px) {
    .quality-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 0;
    }
}

@media (max-width: 576px) {
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    .quality-item {
        background: #fff;
        padding: 20px 10px;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.04);
        gap: 12px;
        margin: 0;
        min-width: 0;
    }
    .quality-icon i {
        width: 32px;
        height: 32px;
        stroke-width: 2px;
    }
    .quality-item p {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.3;
        margin: 0;
        font-weight: 600;
    }
    .quality-header h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
}

/* Partners Section */
.partners-section {
    width: 100%;
    background: #f4f4f4; /* Using white for perfect logo blending */
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.flavour-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.flavour-section-title h2 {
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
}

.partners-slider-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 80px;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 0; /* Space between large logos */
    width: max-content;
    animation: partner-scroll 35s linear infinite;
}

/* Pause on hover */
.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
}

.partner-logo img {
    height: 140px; /* Big size */
    width: auto;
    max-width: 350px;
    object-fit: contain;
    mix-blend-mode: multiply; /* Removes white backgrounds */
    transition: var(--transition);
    border-radius: 0 !important; /* Ensure no circles */
}

.partner-logo img:hover {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .partner-logo img {
        height: 90px;
    }
    .partners-track {
        gap: 100px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }
    .partner-logo {
        min-width: 0;
        padding: 0 10px;
    }
    .partner-logo img {
        height: 100px;
    }
    .partners-track {
        gap: 15px;
    }
}

/* Footer */
.footer {
    background: #000;
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-col ul li {
    margin-bottom: 8px;
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

/* Footer Social Icons */
.footer-social-v3 {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon-v3 {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08); /* Solid visible background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-v3:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

.social-icon-v3 svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .slide-content h1 {
        font-size: 3.5rem;
    }
    .slide .container {
        gap: 30px;
    }
}

/* --- Global Desktop State: Hide Drawer Elements --- */
.drawer-header, 
.drawer-footer,
.nav-links li a i,
.nav-links li a svg,
.menu-toggle {
    display: none !important;
}

@media (min-width: 769px) {
    .drawer-header, .drawer-footer, .menu-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
        width: 100%;
    }
    .container {
        padding: 0 10px !important;
    }
    .announcement-bar {
        padding: 10px !important;
    }
    .header {
        padding: 12px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    .logo img {
        height: 35px;
    }
    .drawer-header {
        display: flex !important;
    }
    .drawer-footer {
        display: block !important;
    }
    .nav-links li a i,
    .nav-links li a svg {
        display: inline-block;
    }
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #F8F9FA;
        border: 1px solid #EEE;
        border-radius: 12px;
        color: #000;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        order: 1;
        margin-right: 15px;
        z-index: 2001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%; /* Professional drawer width */
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 0;
        z-index: 2000;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 20px 0 60px rgba(0,0,0,0.15);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    /* Drawer Internal Header */
    .drawer-header {
        width: 100%;
        padding: 30px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #F5F5F5;
        margin-bottom: 15px;
    }

    .drawer-header img {
        height: 40px;
    }

    .drawer-close {
        background: #F5F5F5;
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    /* Drawer Links */
    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0 15px;
        border: none !important;
    }

    .nav-links li a {
        display: flex !important;
        align-items: center;
        gap: 15px;
        padding: 15px 20px;
        color: #222;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.2s ease;
        width: 100%;
    }

    .nav-links li a i {
        width: 20px;
        color: #999;
    }

    /* Drawer Utility Footer */
    .drawer-footer {
        margin-top: auto;
        padding: 40px 25px;
        width: 100%;
        background: #FDFBF7;
        border-top: 1px solid #F0F0F0;
    }

    .drawer-footer p {
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #999;
        margin-bottom: 20px;
    }

    .drawer-footer a {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #333;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 15px;
        text-decoration: none;
    }

    .drawer-socials {
        display: flex;
        gap: 20px;
        margin-top: 25px;
    }

    .drawer-socials a {
        color: #333;
        opacity: 0.6;
    }

    .slide .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 15px;
    }
    .hero-slider {
        height: 600px;
        min-height: auto;
    }
    .slides-container {
        height: 100%;
    }
    .slide {
        padding: 40px 0;
        background-attachment: scroll;
        align-items: center;
    }
    .slide-content {
        transform: translateY(0) !important;
        margin: -40px auto 0;
        padding: 25px 20px;
        width: 100%;
        max-width: 450px;
        backdrop-filter: blur(8px);
        background: rgba(0, 0, 0, 0.4);
    }
    .slide-content h1 {
        font-size: 2.2rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .hero-image {
        display: none; /* Hide image on mobile for cleaner look, or keep it if needed */
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 10px;
        padding: 0;
    }
    .trust-item h4 {
        font-size: 14px;
    }
    .trust-item p {
        font-size: 12px;
    }
    
    .section-title {
        margin: 60px 0 30px;
    }
    .flavour-section-title {
        margin-bottom: 25px;
    }
    .section-title h2,
    .flavour-section-title h2 {
        font-size: 1.6rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0;
    }
    .category-card {
        padding: 15px 10px;
        min-height: 160px;
    }
    .category-card img {
        height: 70px;
        margin-bottom: 10px;
    }
    .category-card h3 {
        font-size: 14px;
        line-height: 1.3;
        margin: 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }
    .product-card {
        padding: 15px;
        border-radius: 12px;
    }
    .product-image {
        height: 200px;
        margin-bottom: 15px;
        background: #f9f9f9;
        border-radius: 10px;
    }
    .product-image img {
        font-size: 10px; /* Shrink broken alt text */
        color: #999;
        max-height: 100%;
        object-fit: contain;
        overflow: hidden;
    }
    .product-info h3 {
        font-size: 16px;
        line-height: 1.4;
        height: auto;
        min-height: 44px; /* Space for 2 lines */
        margin-bottom: 10px;
    }
    .price {
        font-size: 20px;
    }
    .old-price {
        font-size: 14px;
    }
    .rating {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .product-actions {
        flex-direction: row;
        gap: 10px;
        margin-top: 15px;
    }
    .btn-cart, .btn-buy {
        padding: 12px 10px;
        font-size: 13px;
        width: 100%;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px 15px !important;
        margin-bottom: 40px;
        text-align: left !important;
    }

    .footer-col:first-child,
    .footer-col:last-child {
        grid-column: span 2 !important;
    }

    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 700;
        color: #fff;
    }

    .footer-col ul li {
        margin-bottom: 10px;
        text-align: left;
    }

    .footer-col ul li a {
        font-size: 14px;
        opacity: 0.9;
        display: block;
    }

    .newsletter-box {
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 20px;
    }

    .newsletter-box input {
        width: 100% !important;
        padding: 16px 25px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 30px !important;
        color: #fff !important;
        font-size: 14px !important;
        outline: none;
        transition: all 0.3s ease;
    }

    .newsletter-box input:focus {
        border-color: var(--accent) !important;
        background: rgba(255, 255, 255, 0.08) !important;
    }

    .newsletter-box button {
        width: 100% !important;
        padding: 16px !important;
        background: var(--accent) !important;
        color: #000 !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        border-radius: 30px !important;
        border: none !important;
        box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2) !important;
        transition: all 0.3s ease;
    }

    .newsletter-box button:active {
        transform: scale(0.98);
        box-shadow: 0 5px 10px rgba(212, 175, 55, 0.1) !important;
    }

    .newsletter-box input::placeholder {
        color: rgba(255, 255, 255, 0.4) !important;
    }

    .footer-social-v3 {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    .btn {
        padding: 12px 25px;
        font-size: 12px;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .partners-slider-wrapper {
        padding: 0 10px;
    }
}
/* Global Utility Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Watch & Shop Section */
.watch-shop-section {
    margin-bottom: 40px;
    overflow: hidden; 
    position: relative;
}

.watch-shop-section::before,
.watch-shop-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.watch-shop-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light, #ffffff), transparent);
}

.watch-shop-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light, #ffffff), transparent);
}

.video-reels-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.video-reels-container {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: slideReels 40s linear infinite;
}

.video-reels-container:hover {
    animation-play-state: paused;
}

.video-reel-item {
    position: relative;
    width: 280px; /* Increased size */
    aspect-ratio: 9/16;
    background: #f0f0f0;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-shrink: 0;
}

@keyframes slideReels {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-280px * 7 - 25px * 7)); }
}

.video-reel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.video-reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; 
}

.video-overlay i {
    color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.video-reel-item:hover .video-overlay i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .watch-shop-section {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .video-reel-item {
        width: 220px; /* Larger, more attractive size on mobile */
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    
    @keyframes slideReels {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-220px * 7 - 25px * 7)); }
    }

    .video-reels-wrapper {
        padding: 10px 0;
    }

    .watch-shop-section::before,
    .watch-shop-section::after {
        width: 80px; /* Smaller gradient on mobile */
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    padding: 20px;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 90vh;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the card nicely */
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 1000;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

@media (max-width: 480px) {
    .modal-content {
        height: 80vh;
        max-width: 100%;
        border-radius: 24px;
    }
    
    .close-modal {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
}
