@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&display=swap');

header .logo img {
    height: 45px;
    width: auto;
    display: block;
}

/* --- NAV ICONS --- */
.nav-icons { display: flex; gap: 20px; align-items: center; }

.nav-icons i { 
    font-size: 1.2rem; 
    color: #FFF8E1; /* Cream color */
    cursor: pointer; 
    transition: 0.3s; 
}

.nav-icons i:hover { 
    color: #FFECB3; /* Lighter gold on hover */
    transform: scale(1.1);
}

/* Cart Badge */
.cart-icon-wrapper { position: relative; cursor: pointer; }
.cart-badge {
    position: absolute; top: -8px; right: -8px;
    background: #ffffff; 
    color: var(--accent-amber);
    font-size: 0.75rem; width: 18px; height: 18px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* ================= MODAL CLOSE ICONS ================= */
.close-cart, .close-auth { 
    cursor: pointer; 
    font-size: 1.2rem; 
    color: var(--text-main); 
    transition: 0.3s; 
    position: absolute; top: 20px; right: 20px;
}

.close-cart:hover, .close-auth:hover { 
    color: var(--accent-red);
    transform: rotate(90deg);
}

/* ================= BANNER & CINEMATIC HERO ================= */
.banner-section { 
    width: 100%; 
    height: 92vh; 
    position: relative; 
    overflow: hidden; 
    margin-top: 75px; 
}

.carousel-container { width: 100%; height: 100%; position: relative; }

.banner-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: flex-start; /* Aligns content to left */
    opacity: 0; transition: opacity 1s ease-in-out;
}
.banner-slide.active { opacity: 1; z-index: 2; }

/* --- 1. CINEMATIC VIGNETTE OVERLAY --- */
/* Instead of a flat dark screen, we use a radial gradient. 
   The center is clearer, the edges are dark. Focuses eye on honey. */
.banner-slide::before {
    content: ''; 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 60% 50%, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 90%);
    z-index: 1;
}

/* Background Video Styling */
.banner-bg-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
    transform: scale(1.1); /* Slight Zoom for cinematic feel */
}

.luxury-hero {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.luxury-left { 
    max-width: 650px; 
    animation: heroFadeIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* --- 2. LIQUID GOLD TYPOGRAPHY --- */
.luxury-left h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 4.5rem; /* Larger font */
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* The Gradient Text Effect */
.luxury-left h1 span {
    background: linear-gradient(to bottom, #FFD54F, #FFB300, #F57C00); /* Gold Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 179, 0, 0.4)); /* Glow effect */
}

.luxury-left p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
    border-left: 3px solid var(--accent-gold); /* Gold accent line on left */
    padding-left: 20px;
    backdrop-filter: blur(2px); /* Subtle frosted glass behind text */
}

/* --- 3. GLOWING BUTTONS --- */
.luxury-actions { display: flex; gap: 20px; align-items: center; }

.luxury-btn {
    padding: 14px 35px; 
    border-radius: 50px; /* Fully rounded looks more premium */
    font-weight: 700; 
    font-size: 1rem;
    cursor: pointer; 
    transition: all 0.3s ease; 
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.luxury-btn.primary {
    background: linear-gradient(45deg, var(--accent-amber), var(--accent-gold));
    color: white;
    box-shadow: 0 10px 25px rgba(245, 124, 0, 0.4); /* Orange Glow */
}

/* Shine Animation on Hover */
.luxury-btn.primary::after {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.luxury-btn.primary:hover::after { left: 100%; }
.luxury-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(245, 124, 0, 0.6);
}

.luxury-btn.secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    backdrop-filter: blur(5px);
}
.luxury-btn.secondary:hover { 
    background: white; 
    color: var(--text-main);
    border-color: white;
}

/* --- 4. SCROLL INDICATOR (New Feature) --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    animation: bounce 2s infinite;
}
.mouse {
    width: 26px; height: 42px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    position: relative;
}
.wheel {
    width: 4px; height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Animations */
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
    40% {transform: translateX(-50%) translateY(-10px);}
    60% {transform: translateX(-50%) translateY(-5px);}
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .banner-slide { justify-content: center; } /* Center text on mobile */
    .banner-slide::before { background: rgba(0,0,0,0.6); } /* Darker overlay for mobile readability */
    .luxury-hero { padding: 0 20px; text-align: center; }
    .luxury-left h1 { font-size: 3rem; }
    .luxury-left p { border-left: none; padding-left: 0; margin: 0 auto 30px; font-size: 1rem; }
    .luxury-actions { justify-content: center; }
    .scroll-indicator { display: none; } /* Hide scroll on mobile */
}
/* ================= PRODUCT GRID ================= */
.products-section { 
    padding: 60px 50px; min-height: 100vh; 
    position: relative; overflow: hidden; 
}

.section-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
.section-video-bg video { width: 100%; height: 100%; object-fit: cover; }
.section-video-bg .bg-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgb(13 13 13 / 41%); /* Slightly opaque for brown text */
    z-index: 1; backdrop-filter: blur(3px);
}

.section-header, .product-grid { position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--text-main); font-weight: 700; margin-bottom: 10px; font-family: 'Rajdhani', sans-serif; }
.section-header h2 span { color: var(--accent-amber); }
.section-header p { color: var(--text-muted); }

/* ================= PRODUCT GRID (4 Per Row & Centered) ================= */
.product-grid {
    display: flex;             /* Flexbox for centering */
    flex-wrap: wrap;           /* Wraps to next line */
    justify-content: center;   /* Centers the orphan cards in the last row */
    gap: 30px;                 /* Spacing between cards */
    max-width: 1400px;         /* Increased max-width to fit 4 cards comfortably */
    margin: 0 auto;
    padding: 0 20px;           /* Prevents touching edges on smaller screens */
}

.p-card {
    background: #0f0f0fc7; 
    /* This creates a subtle "cut-corner" look at the top-right and bottom-left */
    clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
    border: 1px solid #222;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex; 
    flex-direction: column;
    flex: 0 0 calc(25% - 23px);
    min-width: 250px;
    position: relative;
}

.p-card:hover {
    /* Slightly changes the clip-path on hover for an interactive "unfolding" effect */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 0%);
    transform: translateY(-10px);
    border-color: white;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Laptop/Tablet: 3 Per Row */
@media (max-width: 1200px) {
    .p-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

/* Small Tablet: 2 Per Row */
@media (max-width: 850px) {
    .p-card {
        flex: 0 0 calc(50% - 15px);
    }
}

/* Mobile: 1 Per Row */
@media (max-width: 550px) {
    .p-card {
        flex: 0 0 100%;
        max-width: 380px; /* Limits width on large phones */
    }
}

.p-image { width: 100%; height: 250px; object-fit: cover; background: #f9f9f900; }
.p-details { padding: 20px; display: flex; flex-direction: column; flex: 1; }

@media (max-width: 650px) {
    .p-card {
        /* Reduce the intensity of the cut-corners on mobile for more image space */
        clip-path: polygon(5% 0%, 100% 0%, 100% 95%, 95% 100%, 0% 100%, 0% 5%);
        max-width: 100%;
    }
}
.p-name {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: white;
}
.p-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;}
.p-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.qty-label { font-size: 0.8rem; color: var(--text-muted); }

/* Quantity Controls in Card */
.qty-control-wrapper {
    display: flex; align-items: center;
    border: 1px solid #ddd; border-radius: 6px;
    overflow: hidden; width: fit-content; margin-bottom: 15px;
}
.qty-input-styled {
    width: 40px; text-align: center; border: none; font-weight: 600;
    color: var(--text-main); outline: none;
    -moz-appearance: textfield;
}
.qty-input-styled::-webkit-outer-spin-button,
.qty-input-styled::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.qty-btn-card {
    background: #f9f9f9; border: none; padding: 5px 12px;
    cursor: pointer; color: var(--accent-amber);
    font-weight: bold; font-size: 1.1rem; transition: 0.2s;
}
.qty-btn-card:hover { background: var(--accent-amber); color: white; }
.qty-btn-card:disabled { color: #ccc; cursor: not-allowed; }

/* Product Buttons */
.btn-group { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-card { padding: 10px; font-size: 0.9rem; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; transition: 0.2s; }

.btn-add { background: var(--accent-light); color: var(--accent-amber); }
.btn-add:hover { background: #FFECB3; }

.btn-buy { background: var(--accent-amber); color: white; }
.btn-buy:hover { background: var(--accent-dark); }

/* (removed unused: .features-section, .provenance-section, .reels-section blocks) */

/* ================= FOOTER ================= */
footer { background: #2D1B16; color: white; padding: 60px 50px 20px; margin-top: 0; z-index: 1000;}
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
.footer-col h4 { margin-bottom: 20px; color: var(--accent-gold); font-family: 'Rajdhani', sans-serif;}
.footer-col a { display: block; color: #aaa; margin-bottom: 10px; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: white; padding-left: 5px; }
.copyright { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); color: #9f9f9f; font-size: 0.8rem; }
.copyright a { color: inherit; text-decoration: none; font-weight: bold; transition: 0.3s; }
.copyright a:hover { color: whitesmoke; text-shadow: 0 0 10px var(--accent-amber); }

/* ================= STRUCTURAL (MODALS/CART) ================= */
.cart-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(2px);
    z-index: 1500; opacity: 0; pointer-events: none; transition: 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed; top: 0; right: -450px; width: 400px; height: 100vh;
    background: white; border-left: 1px solid #ddd; z-index: 10000;
    display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.cart-sidebar.open { right: 0; }

.cart-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { margin: 0; font-size: 1.2rem; font-family: 'Rajdhani', sans-serif; text-transform: uppercase;}
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-footer { padding: 20px; border-top: 1px solid #eee; background: #f9f9f9; }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 1.2rem; font-weight: bold; color: var(--accent-amber) !important; }

/* Auth Overlay */
.auth-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px);
    z-index: 2000; display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: 0.3s;
}
.auth-overlay.open { opacity: 1; pointer-events: all; }
.auth-modal {
    background: white; width: 400px; padding: 40px; border-radius: 12px;
    position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.2); max-height: 90vh; overflow-y: auto;
}
.auth-tabs { display: flex; border-bottom: 1px solid #eee; margin-bottom: 25px; }
.auth-tabs .tab { flex: 1; text-align: center; padding: 10px; cursor: pointer; color: #999; font-weight: 600; font-family: 'Rajdhani', sans-serif; text-transform: uppercase;}
.auth-tabs .tab.active { color: var(--accent-amber); border-bottom: 2px solid var(--accent-amber); }

.auth-form { display: none; flex-direction: column; gap: 15px; }
.auth-form.active { display: flex; }
.auth-form h3 { margin-bottom: 5px; color: var(--text-main); font-family: 'Rajdhani', sans-serif; text-transform: uppercase;}
.auth-form input { padding: 12px; background: #f9f9f9; border: 1px solid #ddd; border-radius: 6px; outline: none; width: 100%; }
.auth-form input:focus { border-color: var(--accent-amber); background: white; }

.btn-primary { background: var(--accent-amber); color: white; border: none; padding: 12px; border-radius: 6px; font-weight: bold; cursor: pointer; width: 100%; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: #ffffff00; color: var(--text-main); border: 1px solid #ddd; padding: 12px; border-radius: 6px; font-weight: bold; cursor: pointer; width: 100%; transition: 0.2s;}
.btn-secondary:hover { border-color: var(--accent-amber); color: var(--accent-amber); }
.btn-google { background: white; color: var(--text-main); border: 1px solid #ddd; padding: 12px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: 6px; width: 100%;}
.btn-google:hover { background: #f5f5f5; }

.divider { text-align: center; position: relative; margin: 10px 0; }
.divider::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #eee; z-index: 0; }
.divider span { background: white; padding: 0 10px; position: relative; z-index: 1; color: #999; font-size: 0.8rem; }
.forgot-link { font-size: 0.8rem; color: #666; cursor: pointer; text-align: center; margin-top: 5px; }
.forgot-link:hover { color: var(--accent-amber); text-decoration: underline; }

/* ================= ADDRESS & ORDERS ================= */
.lbl-small { color: #aaa; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }
.address-grid { display: flex; flex-direction: column; gap: 10px; max-height: 200px; overflow-y: auto; }
.addr-card { background: #f9f9f9; padding: 12px; border: 1px solid #eee; border-radius: 6px; position: relative; }
.addr-card h5 { color: var(--text-main); margin-bottom: 3px; font-size: 0.9rem; font-weight: 600;}
.addr-card p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.4; }
.addr-card .del-addr { position: absolute; top: 10px; right: 10px; color: var(--accent-red); cursor: pointer; font-size: 0.8rem; }
.addr-card .edit-addr { position: absolute; top: 10px; right: 35px; color: #777; cursor: pointer; font-size: 0.8rem; }
.addr-card .edit-addr:hover { color: var(--accent-amber); }

.row-2 { display: flex; gap: 10px; }
.row-2 input { flex: 1; }
.radio-group { display: flex; gap: 20px; margin-bottom: 15px; }
.radio-container { display: flex; align-items: center; cursor: pointer; font-size: 0.9rem; color: #555; user-select: none; }
.radio-container input { margin-right: 8px; accent-color: var(--accent-amber); }

.cart-address-section { padding: 15px 20px; background: #282727; border-top: 1px solid #eee; }
.cart-addr-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cart-addr-header h4 { font-size: 0.9rem; color: var(--text-main); text-transform: uppercase; font-family: 'Rajdhani', sans-serif;}
.cart-addr-header span { color: var(--accent-amber); font-size: 0.8rem; cursor: pointer; font-weight: bold; }
.cart-addr-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px; background: #181414; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; transition: 0.2s;
}
.cart-addr-item:hover { border-color: var(--accent-amber); }
.cart-addr-item.selected { border-color: var(--accent-amber); background: var(--accent-light); }
.addr-details { font-size: 0.8rem; color: #666; line-height: 1.3; }
.addr-details strong { color: var(--text-main); display: block; margin-bottom: 2px; }

/* Order History */
.order-card { background: #fff; border: 1px solid #eee; border-radius: 6px; padding: 15px; margin-bottom: 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #eee; }
.order-id { font-size: 0.8rem; color: var(--text-main); font-weight: bold; font-family: 'Rajdhani', sans-serif;}
.order-date { font-size: 0.7rem; color: #999; }

.order-status { font-size: 0.7rem; padding: 2px 8px; border-radius: 10px; text-transform: uppercase; font-weight: bold; }
.status-Paid { background: #FFF9C4; color: var(--accent-amber); border: 1px solid var(--accent-amber); }
.status-Accepted { background: #E8F5E9; color: #2E7D32; border: 1px solid #2E7D32; }
.status-Rejected { background: #FFEBEE; color: #C62828; border: 1px solid #C62828; }

.order-items-list { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.order-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid #eee; font-weight: bold; color: var(--accent-amber); }
.order-card.new-order { border: 1px solid var(--accent-amber); box-shadow: 0 0 10px rgba(245, 124, 0, 0.2); }

/* ================= ALERTS & UTILS ================= */
.alert-btn { min-width: 80px; padding: 8px 16px; margin: 0 5px; }
#customAlertOverlay .auth-modal { width: 350px; text-align: center; }

/* Cart Qty Wrapper in Sidebar */
.cart-qty-wrapper { display: flex; align-items: center; gap: 8px; margin-top: 5px; }
.qty-btn {
    width: 24px; height: 24px; border-radius: 4px;
    border: 1px solid var(--accent-amber); background: white; color: var(--accent-amber);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; font-weight: bold; transition: 0.2s;
}
.qty-btn:hover { background: var(--accent-amber); color: white; }
.qty-display { font-size: 0.9rem; font-weight: 600; width: 20px; text-align: center; }

/* Marquee Bar */
.marquee-bar {
    position: fixed; top: 75px; left: 0; width: 100%;
    background-color: var(--accent-light); color: var(--accent-orange);
    z-index: 999; padding: 8px 0; overflow: hidden; white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); border-bottom: 1px solid #FFE082;
    font-family: 'Rajdhani', sans-serif; font-weight: 600; letter-spacing: 0.5px;
}
.marquee-bar a { color: var(--accent-orange); text-decoration: none; font-weight: 700; }
.marquee-content { display: inline-block; padding-left: 100%; animation: scroll-left 25s linear infinite; }
.marquee-content:hover { animation-play-state: paused; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background-color: #25d366; /* Standard WhatsApp Green */
    color: white; padding: 12px 24px; border-radius: 50px;
    box-shadow: 0 4px 12px rgba(245, 124, 0, 0.2);
    display: flex; align-items: center; gap: 10px; text-decoration: none;
    font-family: 'Poppins', sans-serif; font-weight: 600; z-index: 3000;
    transition: background-color 0.3s ease; animation: quiet-jump 4s ease-in-out infinite;
}
.whatsapp-float:hover { background-color: #128c7e; animation-play-state: paused; }
.whatsapp-float i { font-size: 1.4rem; }
@keyframes quiet-jump { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Bulk Message Box */
.bulk-msg-box {
    position: fixed; bottom: 95px; right: 30px; background: white;
    padding: 12px 15px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    font-size: 0.85rem; color: #333; z-index: 3000;
    display: flex; align-items: center; gap: 12px;
    border: 1px solid var(--accent-light);
    font-family: 'Poppins', sans-serif; font-weight: 500;
    animation: fadeUp 0.5s ease-out 1s backwards;
}
.bulk-msg-box::after {
    content: ''; position: absolute; bottom: -6px; right: 24px;
    width: 12px; height: 12px; background: white; transform: rotate(45deg);
    border-bottom: 1px solid var(--accent-light); border-right: 1px solid var(--accent-light);
}
.close-bulk { cursor: pointer; color: #bbb; font-size: 0.9rem; padding: 2px; transition: 0.2s; }
.close-bulk:hover { color: var(--accent-red); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    header { padding: 15px 20px; }
    .banner-section { height: 90vh; margin-top: 75px; }
    .banner-content h1 { font-size: 2rem; }
    .products-section { padding: 40px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .cart-sidebar { width: 100%; right: -100%; }
    .auth-modal { width: 90%; padding: 25px; }
    .luxury-hero { grid-template-columns: 1fr; padding: 0 20px; margin: auto; text-align: center; }
    .luxury-left { text-align: center; }
    .luxury-left p { margin: auto; }
    .luxury-actions { justify-content: center; }
    .luxury-right img { max-width: 260px; margin-top: 30px; }
    .marquee-bar { font-size: 0.85rem; top: 75px; }
    .whatsapp-float { bottom: 20px; right: 20px; padding: 10px 18px; font-size: 0.9rem; }
    .bulk-msg-box { bottom: 80px; right: 20px; font-size: 0.75rem; padding: 10px; }
    .provenance-container { flex-direction: column; text-align: center; }
    .provenance-image { width: 260px; height: 360px; transform: rotate(0deg); margin-bottom: 30px; }
    .provenance-content p { border-left: none; border-top: 4px solid var(--accent-amber); }
    .provenance-badges { justify-content: center; }
    .reels-container { padding: 20px; gap: 15px; }
    .reel-card { width: 300px; }
}


/* Video styling to act as background cover */
.banner-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video fills screen without stretching */
    z-index: 0;        /* Sits at the very bottom */
}

/* Ensure the dark overlay sits ON TOP of the video */
.banner-slide::before {
    z-index: 1 !important; /* Forces overlay above video */
}

/* Ensure content sits ON TOP of the overlay */
.luxury-hero {
    position: relative;
    z-index: 2; /* Highest priority */
}

/* Container for the image */
.footer-bottom-image {
    width: 100%;
    background: var(--bg-main); /* Uses your site's ultra-dark background */
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1000;
    margin-top: -2px; /* Slight overlap to prevent seam lines */
}

/* The Image itself */
.footer-bottom-image img {
    width: 100%;             
    height: 450px;           
    object-fit: cover;       
    display: block;

    /* BLENDING MASK: Fades the top 30% of the image into the background */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
    
    /* Adds a subtle grayscale to match the Cyber Noir aesthetic */
    filter: brightness(0.7) contrast(1.1);
}

/* Mobile Adjustment: Make it shorter on phones if needed */
@media (max-width: 768px) {
    .footer-bottom-image img {
        height: 200px;
        /* Steeper fade for smaller screens */
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 50%);
    }
}

/* ================= DESKTOP NAVIGATION ================= */
.desktop-nav {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    text-decoration: none;
    color: #828282; /* Creamy yellow color from your theme */
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    padding: 5px 0;
}

/* Hover Effect: Glow */
.nav-link:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 248, 225, 0.6);
}

/* Active State: Animated Underline */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.nav-link.active::after {
    width: 100%;
    left: 0;
}

.nav-link.active {
    color: white;
}

/* Hide on Mobile/Tablet */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }
}


/* ================= MOBILE MENU STYLES ================= */

/* 1. Hamburger Icon */
#mobileMenuBtn {
    display: none; /* Hidden on Desktop */
    font-size: 1.4rem;
    margin-right: 10px;
}

/* 2. The Full Screen Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--accent-amber); /* Honey Theme Background */
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%); /* Hidden above screen */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.mobile-menu-overlay.open {
    transform: translateY(0); /* Slide down */
    opacity: 1;
}

/* 3. Links inside the menu */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-links a {
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--accent-light);
    transform: scale(1.1);
}

/* 4. Close Button */
.mobile-menu-overlay .close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* 5. Footer inside menu */
.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 900px) {
    /* Show Hamburger on Mobile */
    #mobileMenuBtn {
        display: block;
    }
    
    /* Keep Desktop Nav Hidden */
    .desktop-nav {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


/* ================= HONEY DRIP CARD EFFECT ================= */
.p-card {
    position: relative; /* Enables absolute positioning inside the card */
}

/* Adjust padding in details so text doesn't hit the drip */
.p-details {
    padding-top: 25px !important; 
}


/* ================= SCROLL REVEAL ANIMATIONS ================= */
.reveal-up {
    opacity: 0;
    transform: translateY(50px); /* Starts 50px lower */
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for grid items to create a "staggered" effect */
.reveal-delay-100 { transition-delay: 0.1s; }
.reveal-delay-200 { transition-delay: 0.2s; }
.reveal-delay-300 { transition-delay: 0.3s; }

/* ================= PROFESSIONAL CART STYLES ================= */

/* The Item Container */
.cart-item-row {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.cart-item-row:last-child {
    border-bottom: none;
}

/* Image Styling */
.cart-img-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.cart-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Details Section */
.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header (Title & Price) */
.ci-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2px;
}

.ci-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.2;
}

.ci-total {
    font-weight: 700;
    color: var(--accent-amber);
    font-size: 0.95rem;
}

/* Variant Text */
.ci-variant {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
}

/* Actions Row (Qty & Remove) */
.ci-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Pill-shaped Quantity Control */
.qty-pill {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 2px 4px;
    border: 1px solid #eee;
}

.qty-pill button {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
    color: #555;
    transition: color 0.2s;
}

.qty-pill button:hover {
    color: var(--accent-amber);
}

.qty-pill span {
    font-size: 0.85rem;
    font-weight: 600;
    width: 20px;
    text-align: center;
    color: var(--text-main);
}

/* Remove Button */
.btn-remove {
    background: none;
    border: none;
    font-size: 0.75rem;
    color: #aaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    padding: 5px;
}

.btn-remove:hover {
    color: var(--accent-red);
}


/* ================= PRODUCT FILTERS ================= */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px; /* Pill shape */
    border: 2px solid var(--accent-amber);
    background: transparent;
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.filter-btn:hover {
    background: rgba(245, 124, 0, 0.1); /* Light amber tint */
    transform: translateY(-2px);
}

/* Active State (Selected) */
.filter-btn.active {
    background: var(--accent-amber);
    color: white;
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.3); /* Glow effect */
}

/* Mobile Adjustment */
@media (max-width: 480px) {
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* ================= CERTIFIED SECTION ================= */

/* Adjust Partners Section to remove top gap for a better blend */
.partners-section {
    padding-top: 40px; 
}

/* ================= VARIANT BUTTONS (NEW) ================= */
.variant-selector-wrapper {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-variant {
    padding: 6px 14px;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--text-muted);
    border-radius: 50px; /* Pill shape */
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.btn-variant:hover:not(:disabled) {
    border-color: var(--accent-amber);
    color: var(--accent-amber);
    transform: translateY(-2px);
}

/* Selected (Active) State */
.btn-variant.active {
    background: linear-gradient(45deg, var(--accent-amber), var(--accent-gold));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(245, 124, 0, 0.3);
    transform: translateY(-2px);
}

/* Out of Stock State */
.btn-variant:disabled {
    opacity: 0.5;
    background: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: #eee;
}

/* Optional: "Only X left" text styling if you want to show it elsewhere */
.stock-warning-text {
    font-size: 0.75rem;
    color: var(--accent-red);
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
    height: 18px; /* Prevent layout shift */
}

/* --- PRODUCT IMAGE HOVER EFFECTS --- */
.p-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: #1a1a1a;
    overflow: hidden;
    /* Matches the card's inner clip for visual consistency */
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 10%);
}

.p-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: opacity 0.4s ease-in-out; 
}

/* By default, main image is visible */
.main-img {
    opacity: 1;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}

/* Benefits image sits on top but is invisible */
.hover-reveal {
    opacity: 0;
    position: absolute;
    top: 0; left: 0;
    z-index: 2; /* Higher z-index to sit on top */
}

/* On Hover: Hide main image, Show benefits image */
.p-card:hover .hover-reveal {
    opacity: 1;
}

/* ================= SOCIAL ICONS (FIXED ALIGNMENT) ================= */

/* Wrapper */
.card.social-card-footer {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 0;
  gap: 20px;
}

/* Base Container Style */
.socialContainer {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: rgb(44, 44, 44);
  
  /* FORCE CENTERING */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  
  /* RESET GLOBAL LINK STYLES */
  padding: 0 !important;
  border: none !important;
  overflow: hidden;
  transition-duration: 0.3s;
}

/* Instagram Hover */
.containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}

/* Facebook Hover */
.containerTwo:hover {
  background-color: #1877F2;
  transition-duration: 0.3s;
}

.containerThree:hover {
  background-color: #FF0000;
  transition-duration: 0.3s;
}

.socialContainer:active {
  transform: scale(0.9);
}

/* Icon Sizing */
.socialSvg {
  width: 22px !important;  /* Fixed Width */
  height: 22px !important; /* Fixed Height */
  fill: white;             /* Ensure icon is white */
  transition: 0.3s;
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}


/* --- FOOTER ADDRESS STYLE --- */
.footer-address {
    display: flex;             /* Aligns icon and text side-by-side */
    gap: 12px;                 /* Space between icon and text */
    margin-top: 20px;          /* Space between text and address */
    color: #aaa;               /* Standard footer link color */
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    align-items: flex-start;   /* Aligns icon with the top line of text */
}

.footer-address i {
    color: var(--accent-gold); /* Gold Icon */
    font-size: 1.1rem;
    margin-top: 3px;           /* visual adjustment */
}

.footer-address span {
    border-bottom: 1px solid transparent; /* Prepare for hover underline */
}

/* Hover Effect */
.footer-address:hover {
    color: white;              /* Text turns white */
    transform: translateX(5px); /* Slight movement to the right */
}

.footer-address:hover i {
    color: var(--accent-amber); /* Icon glows amber */
}


/* Add to style.css */

/* --- Color Swatches --- */
.swatch-container {
    display: flex;
    gap: 8px;
    margin: 10px 0;
}

.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ddd; /* Default border */
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.active {
    border-color: #000; /* Active selection ring */
    box-shadow: 0 0 0 2px #fff inset; /* Inner whitespace */
}

/* --- Size Selector --- */
.size-selector-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.size-btn {
    padding: 5px 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}

.size-btn:hover {
    border-color: #333;
}

.size-btn.active {
    background: #333;
    color: #fff;
    border-color: #333;
}

.size-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    text-decoration: line-through;
}

/* --- Cart Item Specs --- */
.cart-specs {
    font-size: 0.75rem;
    color: #666;
    margin-top: 2px;
}
.cart-specs span {
    margin-right: 8px;
    background: #0a0a0a;
    padding: 2px 6px;
    border-radius: 4px;
}


/* Add to style.css */
.banner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the screen without stretching */
    z-index: 0;        /* Sits behind the text */
}

/* Optional: If you want a dark tint over the image to make text readable */
.banner-slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust 0.4 to make it darker/lighter */
    z-index: 1;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700;800&display=swap');

/* ================= THEME VARIABLES (CYBER NOIR EDITION) ================= */
:root {
    /* Backgrounds */
    --bg-main: #050505;       /* Ultra Dark Background */
    --bg-card: #0a0a0a;       /* Slightly lighter for cards */
    --bg-glass: rgba(10, 10, 10, 0.8); /* Dark Frost */
    
    /* Monochrome Palette */
    --accent-gold: #ffffff;     /* Replaced Gold with Pure White */
    --accent-amber: #ffffff;    /* Replaced Amber with White */
    --accent-dark: #333333;     /* Dark Grey */
    --accent-light: #1a1a1a;    /* Charcoal */
    
    /* Text Colors */
    --text-main: #ffffff;       
    --text-muted: #888888;      
    
    /* Functional Colors */
    --accent-red: #ff3333;      /* Cyber Red for errors */
    --border-color: #333333;
    
    /* Shadows & Glows */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    --shadow-hover: 0 0 20px rgba(255, 255, 255, 0.2); /* White Glow */
    --glow-text: 0 0 10px rgba(255, 255, 255, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }

body { 
    background-color: var(--bg-main); 
    color: var(--text-main); 
    overflow-x: hidden; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column;
    /* FUTURISTIC GRID BACKGROUND */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ================= HEADER ================= */
header {
    position: fixed; top: 0; width: 100%; padding: 15px 50px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; 
    background: var(--bg-glass); /* Dark Glass */
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(15px);
}

/* --- NAV ICONS --- */
.nav-icons { display: flex; gap: 25px; align-items: center; }

.nav-icons i { 
    font-size: 1.2rem; 
    color: #ffffff; 
    cursor: pointer; 
    transition: 0.3s; 
}

.nav-icons i:hover { 
    text-shadow: 0 0 15px white; /* Glowing Icon Effect */
    transform: scale(1.2);
}

/* Cart Badge */
.cart-icon-wrapper { position: relative; cursor: pointer; }
.cart-badge {
    position: absolute; top: -8px; right: -8px;
    background: #ffffff; 
    color: #000000;
    font-size: 0.75rem; width: 18px; height: 18px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* ================= BANNER & HERO ================= */
.banner-section { 
    width: 100%; height: 92vh; position: relative; overflow: hidden; margin-top: 75px; 
}
.carousel-container { width: 100%; height: 100%; position: relative; }
.banner-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: flex-start;
    opacity: 0; transition: opacity 1s ease-in-out;
}
.banner-slide.active { opacity: 1; z-index: 2; }

/* Futuristic Dark Overlay */
.banner-slide::before {
    content: ''; 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Vignette focuses center */
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, #050505 100%);
    z-index: 1;
}

.luxury-hero {
    position: relative; z-index: 2; max-width: 1300px; width: 100%; margin: 0 auto; padding: 0 50px;
    display: flex; flex-direction: column; justify-content: center; height: 100%;
}

.luxury-left h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 5rem; 
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px white; /* Hollow Text Effect */
    opacity: 0.9;
}

.luxury-left h1 span {
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 30px rgba(255,255,255,0.6); /* Strong Glow */
}

.luxury-left p {
    font-size: 1.2rem; color: #ccc; margin-bottom: 35px; max-width: 500px;
    border-left: 2px solid white; padding-left: 20px;
}

/* --- BUTTONS --- */
.luxury-btn {
    padding: 14px 40px; 
    border-radius: 4px; /* Sharper edges for modern look */
    font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: all 0.3s ease; 
    border: 1px solid white;
    text-transform: uppercase; letter-spacing: 2px;
    font-family: 'Rajdhani', sans-serif;
}

.luxury-btn.primary {
    background: white; color: black;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.luxury-btn.primary:hover {
    background: black; color: white;
    box-shadow: 0 0 30px rgba(255,255,255,0.5);
    border-color: white;
    transform: translateY(-3px);
}
.luxury-btn.secondary {
    background: transparent; color: white;
}
.luxury-btn.secondary:hover {
    background: white; color: black;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0.8; animation: bounce 2s infinite;
}
.mouse { width: 26px; height: 42px; border: 2px solid white; border-radius: 20px; position: relative; }
.wheel { width: 4px; height: 8px; background: white; border-radius: 2px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); animation: scrollWheel 2s infinite; }

@keyframes scrollWheel { 0% { top: 6px; opacity: 1; } 100% { top: 18px; opacity: 0; } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);} 40% {transform: translateX(-50%) translateY(-10px);} 60% {transform: translateX(-50%) translateY(-5px);} }

/* ================= PRODUCT GRID ================= */
.products-section { padding: 60px 50px; min-height: 100vh; position: relative; }
.section-header h2 { color: white; font-family: 'Rajdhani', sans-serif; text-transform: uppercase; font-size: 2.5rem; letter-spacing: 2px; }
.section-header h2 span { color: #555;  } 
.section-header p { color: #888; }

.section-header p1 {
    padding-right: 16cqb;
}

.product-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 30px;
    max-width: 1400px; margin: 0 auto;
}

.p-card {
    background: #0f0f0fc7; /* Matte Black Card */
    border: 1px solid #222;
    border-radius: 8px; 
    overflow: hidden;
    transition: 0.3s;
    display: flex; flex-direction: column;
    flex: 0 0 calc(25% - 23px);
    min-width: 250px;
}

.p-card:hover { 
    transform: translateY(-10px); 
    border-color: white; /* White Border Glow */
    box-shadow: 0 0 25px rgba(255,255,255,0.15); 
}

.p-desc {
    transform-origin: translate(-10px);
}

.p-image-container { position: relative; width: 100%; height: 300px; background: #1a1a1a; overflow: hidden; }
.p-image { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); transition: 0.4s; }
.p-card:hover .p-image { filter: grayscale(0%); }

.p-details { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.p-name { color: white; font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; margin-bottom: 5px; }
.p-desc { color: #888; font-size: 0.85rem; }
.p-price { font-size: 1.3rem; color: white; font-weight: 700; margin-bottom: 15px; text-shadow: 0 0 10px rgba(255,255,255,0.2); }

/* Card Buttons */
.btn-card { padding: 10px; font-size: 0.9rem; font-weight: 600; border: none; border-radius: 4px; cursor: pointer; transition: 0.2s; font-family: 'Rajdhani', sans-serif; text-transform: uppercase; }
.btn-add { background: transparent; border: 1px solid #444; color: #ccc; }
.btn-add:hover { background: white; color: black; border-color: white; box-shadow: 0 0 15px white; }

/* Swatches & Sizes */
.color-swatch { border: 2px solid #444; }
.color-swatch.active { border-color: white; box-shadow: 0 0 10px white; }
.size-btn { background: #000; color: #888; border: 1px solid #333; }
.size-btn:hover { border-color: white; color: white; }
.size-btn.active { background: white; color: black; border-color: white; }

/* ================= CART SIDEBAR ================= */
.cart-sidebar {
    background: #0a0a0a; border-left: 1px solid #333;
}
.cart-header { border-bottom: 1px solid #222; }
.cart-header h2, .close-cart { color: white; }
.cart-footer { background: #0a0a0a; border-top: 1px solid #222; }
.cart-total { color: white !important; }

.cart-item-row { border-bottom: 1px solid #222; }
.ci-title, .ci-total { color: white; }
.qty-pill { background: #111; border: 1px solid #333; }
.qty-pill span, .qty-pill button { color: white; }

/* ================= MODALS & FORMS ================= */
.auth-modal { background: #0a0a0a; border: 1px solid #333; color: white; }
.close-auth { color: white; }
.auth-tabs .tab { color: #666; }
.auth-tabs .tab.active { color: white; border-bottom-color: white; }
.auth-form h3 { color: white; }

/* Inputs (Dark Mode) */
input, select, textarea {
    background: #111 !important; 
    border: 1px solid #333 !important;
    color: white !important;
    border-radius: 4px !important;
}
input:focus { border-color: white !important; outline: none; box-shadow: 0 0 8px rgba(255,255,255,0.2); }

.btn-primary { background: white; color: black; border: none; font-family: 'Rajdhani', sans-serif; text-transform: uppercase; font-weight: 700; transition:0.3s; }
.btn-primary:hover { background: #ccc; box-shadow: 0 0 15px rgba(255,255,255,0.3); }

.btn-google { background: #000; color: white; border: 1px solid #333; }
.btn-google:hover { background: #111; border-color: white; }

/* ================= FOOTER ================= */
footer { background: #000; border-top: 1px solid #222; color: #888; }
.footer-col h4 { color: white; font-family: 'Rajdhani', sans-serif; letter-spacing: 2px; }
.footer-col a { color: #666; }
.footer-col a:hover { color: white; text-shadow: 0 0 8px white; }
.copyright { border-top: 1px solid #222; }

/* ================= UTILS & ANIMATIONS ================= */
.filter-btn { color: #888; border-color: #333; background: transparent; }
.filter-btn:hover { color: white; border-color: white; background: rgba(255,255,255,0.1); }
.filter-btn.active { background: white; color: black; border-color: white; box-shadow: 0 0 15px rgba(255,255,255,0.4); }

.whatsapp-float { background: #25d366; filter: grayscale(100%); transition: 0.3s; }
.whatsapp-float:hover { filter: grayscale(0%); background: #25d366; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #fff; }

/* Mobile Menu */
.mobile-menu-overlay { background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); }
.mobile-nav-links a { color: white; }

/* Responsiveness */
@media (max-width: 768px) {
    .banner-content h1 { font-size: 3rem; }
    .luxury-left h1 { font-size: 3.5rem; }
    .p-card { flex: 0 0 100%; max-width: 100%; }
}


.category-showcase {
    padding: 20px;
    background: var(--bg-main);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.cat-card {
    position: relative;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #222;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cat-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
    transition: 0.6s;
}

.cat-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.9));
    z-index: 1;
}

.cat-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    transition: transform 0.4s;
}

.cat-number {
    font-family: 'Rajdhani';
    font-size: 0.9rem;
    color: #555;
    letter-spacing: 2px;
}

.cat-content h3 {
    font-family: 'Rajdhani';
    font-size: 1.8rem;
    text-transform: uppercase;
    color: white;
    margin: 5px 0;
}

.cat-content p {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover & Active States */
.cat-card:hover .cat-bg {
    filter: grayscale(0%) brightness(0.8);
    transform: scale(1.05);
}

.cat-card:hover {
    border-color: white;
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.cat-card.active {
    border-color: white;
    box-shadow: 0 0 40px rgba(255,255,255,0.2);
}

.cat-card.active .cat-bg {
    filter: grayscale(0%) brightness(0.9);
}

.cat-card.active::after {
    content: 'SELECTED';
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Rajdhani';
    font-size: 0.7rem;
    color: black;
    background: white;
    padding: 2px 8px;
    z-index: 2;
}

@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-card { height: 350px; }
}

@media (max-width: 600px) {
    .category-grid { grid-template-columns: 1fr; }
}


.mockup-showcase {
    padding: 80px 20px;
    background: var(--bg-main);
    text-align: center;
}

.section-title {
    font-family: 'Rajdhani';
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 4px;
}

.mockup-container {
    display: grid;
    /* Forces 4 columns on large screens */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.mockup-blob {
    position: relative;
    /* Reduced width to fit 4 per row comfortably */
    width: 100%; 
    aspect-ratio: 3 / 4; /* Maintains consistent height/width ratio */
    overflow: hidden;
    
    /* Animation & Glassmorphism */
    animation: morphBlob 9s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mockup-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: brightness(0.6) grayscale(100%); Keeps it Monochrome Cyber Noir */
    transition: 0.6s ease;
    z-index: 1;
}

.blob-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rajdhani';
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    opacity: 0;
    transition: 0.4s;
}

/* Morphing Keyframes */
@keyframes morphBlob {
    0% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 40%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%; }
}

.mockup-blob:hover {
    transform: scale(1.05) translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    animation-play-state: paused;
}

.mockup-blob:hover img {
    filter: brightness(1) grayscale(0%); /* Reveals full color on hover */
    /* transform: scale(0.4); */
}

.mockup-blob:hover .blob-caption {
    opacity: 1;
    bottom: 40px;
}

@media (max-width: 768px) {
    .mockup-blob { width: 280px; height: 380px; }
}

.mockup-blob:nth-child(1) { animation-delay: 0s; }
.mockup-blob:nth-child(2) { animation-duration: 11s; animation-delay: -2s; }
.mockup-blob:nth-child(3) { animation-duration: 13s; animation-delay: -4s; }
.mockup-blob:nth-child(4) { animation-duration: 10s; animation-delay: -6s; }

/* ================= FIXED MOCKUP MOBILE STYLES ================= */

/* Tablet & Smaller Screens */
@media (max-width: 1100px) {
    .mockup-container {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
        gap: 15px;
        padding: 0 15px;
    }
}

/* Mobile Devices */
@media (max-width: 650px) {
    .mockup-showcase {
        padding: 60px 15px; /* Reduce padding for mobile */
    }

    .section-title {
        font-size: 1.8rem; /* Smaller title for mobile */
        margin-bottom: 30px;
    }

    .mockup-container {
        grid-template-columns: 1fr; /* 1 per row */
        gap: 25px; /* Spacing between stacked blobs */
        display: flex; /* Using flex for better centering on small screens */
        flex-direction: column;
        align-items: center;
    }

    .mockup-blob {
        width: 100%;
        max-width: 300px; /* Limits width so it doesn't touch screen edges */
        aspect-ratio: 4 / 5; /* Slightly taller for mobile aesthetics */
        margin: 0 auto;
    }

    .blob-caption {
        opacity: 1; /* Always show captions on mobile since there is no 'hover' */
        bottom: 20px;
        font-size: 0.9rem;
    }
}
/* ================= BRAND PILLARS SECTION ================= */
.pillars-section {
    padding: 80px 20px;
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
}

.pillars-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pillar-card {
    text-align: center;
    padding: 20px;
    transition: 0.3s ease;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    transition: 0.4s;
}

.pillar-icon i {
    font-size: 1.8rem;
    color: #666; /* Muted icon */
    transition: 0.4s;
}

.pillar-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: white;
}

.pillar-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Hover Effects */
.pillar-card:hover .pillar-icon {
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    background: white;
}

.pillar-card:hover .pillar-icon i {
    color: black;
}

.pillar-card:hover h3 {
    text-shadow: 0 0 10px white;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .pillars-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .pillars-container { grid-template-columns: 1fr; gap: 40px; }
}

.why-choose-us {
    padding: 100px 50px;
    background: var(--bg-main);
    border-top: 1px solid var(--border-color);
}


/* This class already exists in your script and style files */
/* It ensures consistency across all major sections */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    color: white; /* Cyber Noir Primary */
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 span {
    color: #555; /* Muted contrast as seen in your earlier product section */
    /* Or use 'white' with text-shadow if you want the "Choose" glow effect */
}

.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* ================= MOBILE AUTO-ACTIVATION STYLES ================= */
@media (max-width: 650px) {
    /* Trigger visual reveal when the scrollObserver adds the .active class */
    .mockup-blob.active img {
        filter: brightness(1) grayscale(0%); /* Reveals full color */
        transform: scale(1.1); /* Slight zoom effect */
    }

    .mockup-blob.active .blob-caption {
        opacity: 1; /* Shows caption */
        bottom: 40px; /* Slides caption up into view */
    }
    
    .mockup-blob.active {
        border-color: rgba(255, 255, 255, 0.5); /* Glow border */
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.07);
    }
}


/* --- PREMIUM OVERLAY LOADER --- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505; /* Matches your --bg-main */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* The Animated Geometric Ring */
.premium-spinner {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid #ffffff; /* Pure white accent */
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Internal Pulsing Logo placeholder */
.loader-brand {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: #ffffff;
    text-transform: uppercase;
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Progress bar under the text */
.loader-bar-container {
    width: 150px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    left: -100%;
    animation: slideProgress 2s infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; text-shadow: 0 0 5px rgba(255,255,255,0); }
    50% { opacity: 1; text-shadow: 0 0 15px rgba(255,255,255,0.6); }
}

@keyframes slideProgress {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* Class to fade out the loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* --- UPDATED LOADER WITH LOGO --- */
.spinner-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-logo {
    width: 45px; /* Matches your header logo height for consistency */
    height: auto;
    z-index: 2;
    filter: brightness(1.2); /* Makes the logo pop against the dark background */
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Maintain the existing spin animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- LOADER TRANSITION STYLES --- */

/* The logo inside the loader needs to be fixed to move it freely */
.loader-logo {
    width: 45px;
    height: auto;
    position: fixed; /* Changed from relative to fixed */
    z-index: 10001;
    transition: all 0.8s cubic-bezier(0.7, 0, 0.3, 1);
    filter: brightness(1.2);
}

/* Hide the real header logo initially so it doesn't look like there are two logos */
#header-logo-target {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* State for when the fly-in is done */
.logo-arrived {
    opacity: 1 !important;
}

/* Hide other loader elements during the fly-in */
.loader-content.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease;
}


.p-card.mockup-style {
    background: transparent !important; /* Removes the solid black */
    border: none !important;
    box-shadow: none !important;
    clip-path: none !important; 
    margin-bottom: 30px;
}

.mockup-blob-wrapper {
    padding: 0;
    display: flex;
    justify-content: center;
    background: transparent; /* Ensures grid is visible behind the blob */
}

.p-card.mockup-style .mockup-blob {
    width: 100%;
    aspect-ratio: 3/4;
    /* Semi-transparent white border creates the 'Cyber' definition */
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: morphBlob 9s ease-in-out infinite;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.p-details-box {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none; /* Merges with the image above */
    
    padding: 20px;
    border-radius: 0 0 12px 12px;
    margin-top: -20px; /* Pulls it up to 'attach' to the morphing blob */
    position: relative;
    z-index: 2; /* Keeps it above the image during overlap */
    transition: all 0.4s ease;
}

.p-card.mockup-style:hover .p-details-box {
    background: rgba(255, 255, 255, 0);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.p-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.section-label {
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.btn-add-modern {
    width: 100%;
    background: white;
    color: black;
    border: none;
    padding: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-add-modern:hover {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}