@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0066ff; /* Premium Blue */
    --primary-glow: rgba(0, 102, 255, 0.1);
    --secondary: #0f172a; /* Deep Slate for text */
    --accent: #ff7d00; /* Vibrant Orange */
    --bg-light: #ffffff; /* Theme White */
    --bg-subtle: #f8fafc;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-light: rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --gradient-primary: linear-gradient(135deg, #0066ff, #ff7d00);
    --gradient-text: linear-gradient(135deg, #0f172a, #0066ff);
}

/* Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Background Animations */
.bg-animations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle-1, .particle-2, .particle-3 {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    mix-blend-mode: multiply;
    animation: float 25s infinite alternate ease-in-out;
}

.particle-1 { background: var(--primary); top: -10%; left: -10%; animation-delay: -2s; }
.particle-2 { background: var(--accent); bottom: -10%; right: -10%; animation-delay: -5s; }
.particle-3 { background: #60a5fa; top: 40%; left: 30%; animation-duration: 25s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 10%) scale(1.1); }
    66% { transform: translate(-5%, 5%) scale(0.9); }
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    background: transparent;
}

nav.scrolled {
    background: var(--bg-glass);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

nav .brand, nav .nav-links a {
    color: #ffffff;
}

nav.nav-light-mode:not(.scrolled) .brand, 
nav.nav-light-mode:not(.scrolled) .nav-links a {
    color: var(--secondary) !important;
}

nav.scrolled .brand {
    color: var(--secondary) !important;
}

nav.scrolled .nav-links a {
    color: var(--text-main) !important;
}

h1, h2, h3, h4, h5, h6, .section-title {
    color: var(--secondary);
}

.text-primary, .brand span {
    color: var(--primary) !important;
}

.brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-decoration: none;
}

.glass {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.05);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.brand span { color: var(--primary); }

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

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    opacity: 1 !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-smooth);
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

/* Cinematic Hero V2 */
.hero-v2 {
    background: #0f172a !important;
}

.hero-v2 h1 {
    text-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-v2 .glass-hero-card {
    transition: var(--transition-smooth);
}

.hero-v2:hover .glass-hero-card {
    background: rgba(255,255,255,0.05) !important;
    transform: translateY(-5px);
}

.ticker-content span {
    display: inline-flex;
    align-items: center;
}

/* Pillar Styling */
.pillar {
    padding: 3rem;
    border-radius: 40px;
    background: white;
    border: 1px solid rgba(0,0,0,0.03);
    transition: 0.5s;
    box-shadow: 0 20px 40px rgba(0,0,0,0.01);
}

.pillar:hover {
    transform: translateY(-15px);
    box-shadow: 0 50px 100px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.pillar h3 {
    color: var(--secondary);
}

/* Blurred Image Elements */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-img-el {
    position: absolute;
    width: 270px;
    height: 270px;
    border-radius: 40%;
    object-fit: cover;
    filter: blur(40px);
    opacity: 0.5;
    animation: floatImage 20s infinite alternate ease-in-out;
    box-shadow: 0 35px 60px rgba(0,0,0,0.15);
}

@keyframes floatImage {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-40px) rotate(15deg) scale(1.05); }
    100% { transform: translateY(20px) rotate(-10deg) scale(0.95); }
}

.hero-img-el:nth-child(1) { top: 5%; left: -5%; animation-delay: 0s; animation-duration: 25s; filter: blur(50px); }
.hero-img-el:nth-child(2) { bottom: -5%; right: -5%; animation-delay: -5s; animation-duration: 30s; filter: blur(60px); opacity: 0.6; }
.hero-img-el:nth-child(3) { top: 15%; right: 5%; width: 180px; height: 180px; filter: blur(45px); animation-delay: -10s; }
.hero-img-el:nth-child(4) { bottom: 10%; left: 10%; width: 150px; height: 150px; filter: blur(40px); animation-delay: -15s; opacity: 0.4; }

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
    position: relative;
    padding: 0;
    margin-top: -2rem; /* Minor optical adjustment for unboxed text */
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.1rem;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-inline: auto;
    font-weight: 500;
    line-height: 1.6;
}

.premium-tag {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    display: inline-block;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 15px 28px var(--primary-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: #0052cc;
    box-shadow: 0 16px 32px rgba(0, 102, 255, 0.25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 1rem;
    position: relative;
    z-index: 1;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Scroll Animation Hooks */
.section-scroll {
    opacity: 1; /* Default to visible for reliability */
    transform: translateY(24px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-scroll.active {
    transform: translateY(0);
}

/* Product Section */
.section-header {
    padding: 2.4rem 5% 1.5rem;
    text-align: center;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -2px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}

.filter-btn {
    padding: 0.7rem 1.3rem;
    border-radius: 14px;
    background: white;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.filter-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* Modern Carousel Styles */
.carousel-container {
    position: relative;
    padding: 1.4rem 0;
    overflow: visible;
}

.carousel-track-wrapper {
    overflow: hidden;
    cursor: grab;
    padding: 1.4rem 0 2rem;
}

.carousel-track-wrapper:active { cursor: grabbing; }

.carousel-track {
    display: flex;
    gap: 1.4rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

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

.carousel-item {
    flex: 0 0 280px;
    transition: var(--transition-smooth);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    gap: 1.1rem;
    margin-top: 2rem;
    justify-content: center;
}

.ctrl-btn {
    width: 35px;
    height: 35px;
    border-radius: 14px;
    background: white;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 24px rgba(0,0,0,0.03);
}

.ctrl-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 16px 28px var(--primary-glow);
}

.ctrl-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.carousel-dots {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    transition: 0.4s;
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--primary);
}

/* Product Card Redesign (Elite Modern) */
.product-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.8), transparent);
    z-index: -1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 28px 56px var(--primary-glow);
    border-color: var(--primary);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
}

.product-info {
    padding: 1rem;
    text-align: left;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    display: block;
}

.product-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.3rem;
    color: var(--secondary);
    line-height: 1.3;
}

.whatsapp-btn {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: #25d366;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    margin-top: auto;
    font-size: 1.05rem;
    border: none;
    line-height: 1;
    white-space: nowrap;
}

.whatsapp-btn:hover { background: #20ba59; transform: scale(1.02); }

/* Contact Section */
.contact-section { padding: 4.8rem 5%; background: var(--bg-subtle); }

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.2rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -3px;
}

.contact-item {
    display: flex;
    gap: 1.4rem;
    margin-bottom: 1.4rem;
    padding: 1.3rem;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.contact-item:hover { transform: translateX(10px); color: var(--primary); border-color: var(--primary); }

.contact-item i { color: var(--primary); font-size: 1.4rem; }

.contact-item h4 { color: var(--secondary); font-weight: 800; font-size: 1rem; margin-bottom: 0.5rem; }

/* Shop Specific Product Grid */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
    gap: 1.8rem; /* Increased grid gap for better contrast */
    width: 100%;
}

.shop-card {
    height: 100%;
    transition: 0.4s;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Compact spacing between category buttons */
}

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

.search-box {
    margin-bottom: 1.3rem;
}

/* Carousel Header Redesign */
.carousel-header-hub {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.trending-reveal .section-title {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.trending-reveal .section-desc {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.carousel-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ctrl-btn {
    width: 46px;
    height: 46px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--secondary);
    box-shadow: 0 10px 24px rgba(0,0,0,0.03);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ctrl-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 16px 28px var(--primary-glow);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
    max-width: 1500px;
    margin: 0 auto;
}

.features::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 60px;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

.feat-item {
    padding: 2.4rem 1.6rem;
    border-radius: 28px;
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: 0 15px 28px rgba(0,0,0,0.02);
}

.feat-item:hover {
    transform: translateY(-16px);
    box-shadow: 0 28px 56px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
}

.feat-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-subtle);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    transition: 0.5s;
}

.feat-item:hover .feat-icon {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

/* Premium Redesigned Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 4rem 5% 0;
    border: none;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.footer-main {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.4rem;
    padding-bottom: 3.2rem;
}

.footer-brand .brand {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    max-width: 192px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col h5 {
    color: white;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.3rem;
    letter-spacing: -0px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.social-hub {
    display: flex;
    gap: 1.1rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.05);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 28px var(--primary-glow);
    border-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.copyright-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.elite-status {
    padding: 0.5rem 1.1rem;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 35px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* Shop Sidebar Sticky Logic */
.shop-sidebar {
    position: sticky;
    top: 78px; /* Offset for the sticky navbar */
    align-self: start;
    height: fit-content;
    padding-bottom: 1.4rem;
    z-index: 10;
}

/* Pagination Controls */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3.2rem;
    flex-wrap: wrap;
}

.page-btn {
    width: 39px;
    height: 39px;
    border-radius: 18px;
    background: white;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.page-btn:hover:not(.disabled) {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 24px var(--primary-glow);
    border-color: transparent;
}

.page-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 15px 28px var(--primary-glow);
    border-color: transparent;
}

.page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Elite WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
}

.whatsapp-icon-pulse {
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    position: relative;
    transition: 0.5s;
}

.whatsapp-icon-pulse::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.widget-tooltip {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: var(--secondary);
    font-weight: 850;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(20px);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    white-space: nowrap;
}

.whatsapp-widget:hover .widget-tooltip {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-widget:hover .whatsapp-icon-pulse {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.6);
}

.online-indicator {
    width: 10px;
    height: 10px;
    background: #25d366;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #25d366;
}

/* Elite AI Concierge CSS Overlays */
.elite-chat-hub {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

#chat-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 360px;
    height: 500px;
    border-radius: 30px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    background: #0f172a !important;
    backdrop-filter: blur(40px);
}

@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

#chat-window.active {
    display: flex !important;
}

.chat-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-avatar {
    width: 40px;
    height: 40px;
    background: #0066ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.chat-body {
    padding: 1.2rem;
    flex-grow: 1;
    overflow-y: auto;
}

.msg {
    padding: 0.9rem 1.2rem;
    border-radius: 18px;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 90%;
}

.ai-msg {
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f9;
    border-bottom-left-radius: 4px;
}

.user-msg {
    background: #0066ff;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chat-footer {
    padding: 1.2rem;
    padding-top: 0.8rem;
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qr-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
    padding: 0.8rem 1.4rem;
    border-radius: 18px;
    font-size: 0.88rem;
    transition: 0.4s;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
}

.qr-btn:hover { background: #0066ff; border-color: #0066ff; transform: translateX(5px); }

.qr-btn-primary {
    background: #25d366;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 18px;
    font-size: 0.95rem;
    font-weight: 900;
    width: 100%;
    margin-top: 5px;
    transition: 0.4s;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #ff453a;
    border: 3px solid #0f172a;
    border-radius: 50%;
    animation: pulseNotify 2s infinite;
}

@keyframes pulseNotify {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 58, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 69, 58, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 69, 58, 0); }
}

/* --- Site-Wide Responsiveness Fixes --- */
@media (max-width: 1200px) {
    .container { max-width: 95% !important; }
}

@media (max-width: 992px) {
    .nav-links { display: none !important; }
    .hero-hero { padding: 8rem 5% 4rem !important; }
    .glass-hero-card { border-radius: 40px !important; padding: 3rem 1.5rem !important; }
    .section-title { font-size: 2.8rem !important; }
}

@media (max-width: 768px) {
    .brand { font-size: 1.2rem !important; }
    .category-card { height: 280px !important; }
    .footer-content { grid-template-columns: 1fr !important; gap: 3rem; }
    .elite-chat-hub { right: 1rem; bottom: 1rem; }
    #chat-window { width: 90vw !important; right: 0; }
}

/* Admin Global Responsiveness (When sidebar is required) */
@media (max-width: 992px) {
    .main-content { margin-left: 0 !important; width: 100% !important; padding: 6rem 1.2rem !important; }
}

/* --- Elite V5 Main Menu Upgrades --- */
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-link { 
    text-decoration: none !important; 
    font-weight: 850; 
    color: rgba(255,255,255,0.7); 
    font-size: 0.95rem; 
    letter-spacing: -0.3px; 
    position: relative; 
    padding: 0.5rem 0; 
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    display: block;
}
.nav-light-mode .nav-link { color: rgba(15, 23, 42, 0.65); }

.nav-link::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    width: 0; 
    height: 2px; 
    background: var(--primary); 
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    transform: translateX(-50%); 
}

.nav-link:hover { color: white !important; transform: translateY(-2px); }
.nav-link:hover::after { width: 100%; }

.nav-light-mode .nav-link:hover { color: var(--secondary) !important; }
.nav-light-mode .nav-link::after { background: var(--secondary); }

/* Remove Bullet Point Artifacts */
li.nav-item { list-style: none !important; }

/* --- Main Navbar Responsive Overhaul --- */
.nav-right-hub { display: flex; align-items: center; gap: 1rem; }
.nav-menu-toggle { 
    width: 45px; height: 45px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: white; display: none; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: 0.3s; 
    z-index: 100000; position: relative;
}
.nav-light-mode .nav-menu-toggle { background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.05); color: var(--secondary); }

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

/* Mobile Overlay Styles */
.nav-mobile-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.98); backdrop-filter: blur(20px); z-index: 100000; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
}
.nav-mobile-overlay.active { opacity: 1; pointer-events: all; }
.overlay-brand { position: absolute; top: 2rem; left: 2rem; color: white; font-weight: 900; letter-spacing: -1.5px; font-size: 1.25rem; font-family: 'Plus Jakarta Sans', sans-serif; }
.overlay-brand span { color: var(--primary); }
.mobile-links { display: flex; flex-direction: column; text-align: center; gap: 2.2rem; width: 100%; }
.mobile-link { color: white; text-decoration: none; font-size: 1.8rem; font-weight: 1000; letter-spacing: -1.8px; transition: 0.3s; font-family: 'Plus Jakarta Sans', sans-serif; }
.mobile-link:hover { color: var(--primary); transform: scale(1.08); }
.overlay-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; font-size: 3.5rem; color: white; cursor: pointer; line-height: 1; }

/* --- Elite Footer Response System --- */
@media (max-width: 1200px) {
    .container { max-width: 95% !important; }
}

@media (max-width: 992px) {
    .footer-main { grid-template-columns: 1fr 1fr !important; gap: 3.5rem; }
}

@media (max-width: 768px) {
    .footer-main { grid-template-columns: 1fr !important; gap: 3rem; text-align: center; }
    .footer-brand p { max-width: 100% !important; }
    .social-hub { justify-content: center; }
    .footer-bottom { flex-direction: column !important; text-align: center; gap: 2rem; }
    .elite-status { width: fit-content; margin: 0 auto; }
}

@media (max-width: 480px) {
    .brand { font-size: 1.1rem !important; }
    footer { padding-top: 3.5rem; }
}

/* --- Elite Shop Drawer Overhaul --- */
.filter-drawer-toggle {
    width: 42px; height: 42px; border-radius: 12px; background: var(--secondary); color: white; border: none; display: none; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: 0.3s;
    box-shadow: 0 10px 25px rgba(15,23,42,0.1);
}
.filter-drawer-toggle:hover { transform: scale(1.05); background: var(--primary); }

@media (max-width: 992px) {
    .filter-drawer-toggle { display: flex !important; }
    .shop-main .container { grid-template-columns: 1fr !important; }
    .shop-sidebar {
        position: fixed !important; top: 0 !important; left: -100% !important; width: 320px !important; height: 100% !important; z-index: 1000000 !important; 
        border-radius: 0 !important; transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important; background: #0f172a !important; padding-top: 6rem !important; opacity: 1 !important; visibility: visible !important;
    }
    .shop-sidebar.active { left: 0 !important; }
}


/* --- Engineering Pillars Infrastructure --- */
.pillars { padding: 8rem 5%; }
.pillars-grid { 
    max-width: 1400px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem; 
}

/* --- Adaptive Elite Home Recalibration --- */
@media (max-width: 992px) {
    .pillars-grid { grid-template-columns: 1fr !important; gap: 3.5rem !important; }
    .departments .d-flex { flex-direction: column !important; align-items: flex-start !important; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .pillars { padding: 5rem 5% !important; }
    .hero-btns, .cta-elite .d-flex { flex-direction: column !important; width: 100%; gap: 1rem !important; }
    .hero-btns .btn, .cta-elite .btn { width: 100% !important; margin: 0 !important; }
    .cat-v3-grid { grid-template-columns: 1fr !important; }
    .section-title { font-size: 2.5rem !important; line-height: 1.1 !important; }
}

/* --- Elite Multi-Channel Product Hub --- */
.card-multi-cta { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.card-multi-cta .whatsapp-btn { flex: 1; padding: 0.85rem 1.2rem; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 14px; white-space: nowrap; font-weight: 800; font-size: 0.9rem; }
.call-btn-card { width: 45px; height: 45px; border-radius: 14px; background: var(--secondary); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: 0.3s; border: none; flex-shrink: 0; box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.call-btn-card:hover { background: var(--primary); transform: translateY(-3px); box-shadow: 0 12px 30px var(--primary-glow); color: white; }

