/* ==================== THEME VARIABLES ==================== */
:root {
    /* Dark Mode (Default) */
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #1a1a1a;
    --bg-card: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #c0c0c0;
    --text-tertiary: #808080;
    --text-on-card: #1a1a1a;
    --text-on-card-secondary: #444444;
    --border-color: #333333;
    --accent-silver: #c0c0c0;
    --shadow-color: rgba(0, 0, 0, 0.3);
    
    /* Button colors */
    --button-bg: #1a1a1a;
    --button-text: #ffffff;
    --button-hover-bg: #2a2a2a;
    
    /* Hero/Section colors */
    --hero-gradient-start: #0a0a0a;
    --hero-gradient-end: #1a1a1a;
    --stat-bg: #f0f0f0;
    --stat-text: #1a1a1a;
}

:root.light-mode {
    /* Light Mode */
    --bg-primary: #f5f5f5;
    --bg-secondary: #ffffff;
    --bg-tertiary: #e8e8e8;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #444444;
    --text-tertiary: #666666;
    --text-on-card: #1a1a1a;
    --text-on-card-secondary: #444444;
    --border-color: #d0d0d0;
    --accent-silver: #808080;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Button colors - Light mode */
    --button-bg: #2a2a2a;
    --button-text: #ffffff;
    --button-hover-bg: #1a1a1a;
    
    /* Hero/Section colors - Light mode */
    --hero-gradient-start: #e8e8e8;
    --hero-gradient-end: #f5f5f5;
    --stat-bg: #2a2a2a;
    --stat-text: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100% !important;
    height: auto !important;
    overflow-x: hidden;
    overflow-y: visible;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Allow cart/modal to lock scroll - lock BOTH html and body */
html.cart-open,
html.modal-open {
    overflow: hidden !important;
}

body.cart-open,
body.modal-open {
    overflow: hidden !important;
}

/* Premium Logo Animations - Subtle, Exclusive, Rare */
.premium-logo {
    position: relative;
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Subtle light play - Always present but barely noticeable */
.premium-logo::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(
        circle at 50% 50%,
        transparent 40%,
        rgba(192, 192, 192, 0.08) 50%,
        rgba(255, 255, 255, 0.12) 60%,
        transparent 70%
    );
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    animation: subtleLightPlay 8s ease-in-out infinite;
    pointer-events: none;
}

/* Secret shimmer particles - Rare, refined movement */
.premium-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

@keyframes subtleLightPlay {
    0%, 100% { 
        opacity: 0;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.4;
        transform: scale(1.05) rotate(180deg);
    }
}

/* Hover - The "secret" animation that feels exclusive */
.premium-logo:hover::before {
    opacity: 0.8;
    animation-duration: 4s;
}

.premium-logo:hover::after {
    opacity: 1;
    transform: translateX(100%);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.3))
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.15));
}

.premium-logo img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.premium-logo:hover img {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25))
            drop-shadow(0 0 15px rgba(192, 192, 192, 0.2));
}

/* Click - Subtle acknowledgment, not overdone */
.premium-logo:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.premium-logo:active img {
    filter: brightness(1.1) drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
}

/* Navigation - SIMPLE & WORKING */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* Remove excessive spacing */
.container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-32 {
    padding-top: 4rem;
    padding-bottom: 1rem;
}

.py-20 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-16 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Fix scrolling issues - SINGLE scrollbar only on html */
html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    height: 100% !important;
}

.page-section {
    min-height: auto;
    padding-bottom: 2rem;
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
}

.nav-link:hover {
    background: rgba(192, 192, 192, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: var(--bg-tertiary);
    color: var(--accent-silver);
    font-weight: 600;
}

/* Premium Cards */
.premium-stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.95) 100%);
    border: 1px solid rgba(192, 192, 192, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 1rem;
}

.premium-stat-card:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-tertiary);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Product Cards - Clean White Cards */
.product-showcase-card {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.product-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Simple button styling for product cards */
.product-showcase-card button,
.product-showcase-card .cta-button-premium {
    background: var(--button-bg);
    border: none;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-showcase-card button:hover,
.product-showcase-card .cta-button-premium:hover {
    background: var(--button-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-hero-section {
    height: 300px;
    background: var(--stat-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid rgba(192, 192, 192, 0.2);
}

.product-hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(192, 192, 192, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.product-icon-professional {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

/* Backgrounds */
.hero-premium-bg {
    background: radial-gradient(ellipse at top center, rgba(192, 192, 192, 0.08) 0%, transparent 70%),
                linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(32, 32, 32, 0.95) 30%, rgba(0, 0, 0, 0.99) 70%);
    position: relative;
    overflow: hidden;
}

/* Products Page - Simple Clean Background */
#products-page {
    background: #f5f5f5;
    min-height: auto;
}

.products-premium-bg {
    background: transparent;
}

/* Product Grid Responsive */
@media (max-width: 1024px) {
    #products-page .grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    #products-page .grid {
        gap: 1.5rem;
    }
    
    .products-title {
        font-size: 2.5rem !important;
    }
    
    .products-subtitle {
        font-size: 1rem !important;
    }
    
    .product-showcase-card {
        margin: 0;
    }
    
    .product-hero-section {
        height: 220px;
    }
    
    .cta-button-premium {
        font-size: 0.8rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Product cards are always visible - no animation needed */

/* NEW PRODUCT CARD STYLING - Static HTML Version */
.new-product-card {
    display: block;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.new-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #c0c0c0;
}

.new-product-card .product-category {
    display: inline-block;
    background: #2d2d2d;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.new-product-card h3 {
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0.75rem 0;
    line-height: 1.4;
}

.new-product-card .product-price {
    color: #2d2d2d;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0.75rem 0;
}

.new-product-card .product-note {
    color: #666666;
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.product-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    margin-top: 0.5rem;
}

.product-btn-quote {
    background: #2d2d2d;
    color: #ffffff;
}

.product-btn-quote:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.products-title {
    color: #1a1a1a;
}

.products-subtitle {
    color: var(--text-tertiary);
}

/* Buttons */
.cta-button-premium {
    background: linear-gradient(135deg, var(--button-bg) 0%, var(--button-hover-bg) 100%);
    border: 2px solid rgba(192, 192, 192, 0.4);
    color: var(--button-text);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(192, 192, 192, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button-premium:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-premium:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-color: rgba(192, 192, 192, 0.7);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(192, 192, 192, 0.3),
        0 0 30px rgba(192, 192, 192, 0.2);
    color: var(--text-primary);
}

/* Enhanced CTA Buttons */
.cta-button-premium-enhanced {
    background: linear-gradient(135deg, var(--button-bg) 0%, var(--button-hover-bg) 50%, var(--button-bg) 100%);
    border: 3px solid rgba(192, 192, 192, 0.4);
    color: var(--button-text);
    padding: 2rem 3rem;
    border-radius: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(20px);
    min-width: 320px;
}

.cta-button-premium-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.cta-button-premium-enhanced:hover::before {
    left: 100%;
}

.cta-button-premium-enhanced:hover {
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.98) 0%, rgba(64, 64, 64, 1) 50%, rgba(32, 32, 32, 0.98) 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.cta-button-premium-enhanced:hover .cta-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(192, 192, 192, 0.2) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(360deg) scale(1.1);
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: rgba(192, 192, 192, 0.8);
    font-weight: 500;
}

.cta-arrow {
    font-size: 2rem;
    font-weight: 900;
    transition: all 0.4s ease;
    color: rgba(192, 192, 192, 0.7);
}

.cta-button-premium-enhanced:hover .cta-arrow {
    transform: translateX(10px);
    color: rgba(255, 255, 255, 1);
}

/* Estimator */
.estimator-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(32, 32, 32, 0.98) 30%, rgba(16, 16, 16, 0.96) 70%);
    border: 2px solid rgba(192, 192, 192, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border-radius: 1.5rem;
    padding: 2rem;
}

.estimator-dropdown {
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.9) 0%, rgba(48, 48, 48, 0.95) 50%);
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
}

.estimator-dropdown option {
    background: var(--button-hover-bg);
    color: var(--text-primary);
    padding: 0.5rem;
}

.estimator-dropdown option:hover {
    background: #3a3a3a;
}

.estimator-dropdown:focus {
    border-color: rgba(192, 192, 192, 0.6);
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.2);
}

.price-display {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Override form label color on dark backgrounds (products page, estimator, etc) */
#products-page .form-label,
.bg-black .form-label,
.delivery-calculator .form-label,
.smart-estimator .form-label {
    color: #ffffff !important;
}

/* Dark labels for white form cards */
.bg-white .form-label,
#quoteModal .form-label {
    color: #1f2937 !important;
    font-weight: 600;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 100%);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 2000;
}

.toast.show {
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .premium-stat-card {
        padding: 1.5rem;
    }

    .product-hero-section {
        height: 200px;
    }

    .product-icon-professional {
        width: 80px;
        height: 80px;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer Styles */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-link {
    color: #d1d5db;
    transition: all 0.3s ease;
    background: none;
    border: none;
    text-align: left;
    padding: 0;
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Enhanced Chatbot Styles */
.chatbot-toggle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000 0%, #333 50%, #000 100%);
    border: 3px solid rgba(192, 192, 192, 0.4);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: chatbotPulse 3s ease-in-out infinite;
}

@keyframes chatbotPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(192, 192, 192, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(192, 192, 192, 0.1);
    }
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #c0c0c0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: chatbotDot 2s ease-in-out infinite;
}

@keyframes chatbotDot {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

.chatbot-toggle:hover {
    background: linear-gradient(135deg, #333 0%, #555 50%, #333 100%);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(192, 192, 192, 0.6);
    animation: none;
}

.chatbot-toggle:hover::before {
    animation: none;
    opacity: 1;
    transform: translate(-50%, -50%) scale(2);
}

.chatbot-window {
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 380px;
    height: 550px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.95) 100%);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 25px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chatbot-window.show {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.chatbot-header {
    background: linear-gradient(135deg, #000 0%, #333 50%, #000 100%);
    padding: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.chatbot-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.5), transparent);
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.bot-message .message-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.03) 100%);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 15px 15px 15px 5px;
    padding: 1rem 1.25rem;
    max-width: 85%;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.user-message {
    justify-content: flex-end;
}

.user-message .message-content {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 15px 15px 5px 15px;
    padding: 1rem 1.25rem;
    max-width: 85%;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.chatbot-quick-questions {
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.quick-question-btn {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 25px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    transition: all 0.3s ease;
}

.quick-question-btn:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chatbot-input {
    padding: 1.5rem;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    color: #1f2937;
}

.chat-input:focus {
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 1);
}

.send-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.send-btn:hover {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Professional Success Stories Section */
.success-story-card {
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.95) 0%, rgba(16, 16, 16, 0.98) 100%);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.success-story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(192, 192, 192, 0.4);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.cta-section {
    background: linear-gradient(135deg, rgba(32, 32, 32, 0.98) 0%, rgba(16, 16, 16, 0.95) 100%);
    border: 2px solid rgba(192, 192, 192, 0.25);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(15px);
}

.cta-section h3 {
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   PREMIUM CURSOR SYSTEM - DESKTOP ONLY
   ======================================== */

/* Elegant metallic cursor - single element, stable, premium */
.lux-cursor {
    position: fixed !important;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 999999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.3s ease;
    will-change: transform;
    
    /* Subtle metallic gradient */
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.25),
        rgba(192, 192, 192, 0.2) 40%,
        rgba(128, 128, 128, 0.15) 70%,
        transparent
    );
    
    /* Premium border with subtle shine */
    border: 1.5px solid rgba(192, 192, 192, 0.4);
    box-shadow: 
        0 0 12px rgba(192, 192, 192, 0.15),
        inset 0 0 8px rgba(255, 255, 255, 0.1);
}

/* Hover state - subtle premium growth (scale handled in JS) */
.lux-cursor.hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: radial-gradient(
        circle at 30% 30%,
        rgba(255, 255, 255, 0.3),
        rgba(192, 192, 192, 0.25) 40%,
        rgba(160, 160, 160, 0.2) 70%,
        transparent
    );
    box-shadow: 
        0 0 16px rgba(255, 255, 255, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.15);
}

/* Click state - elegant press effect (scale handled in JS) */
.lux-cursor.click {
    /* Scale is composed in JavaScript with position */
}

/* Show cursor by default on desktop, hide only on true mobile/touch */
/* Custom cursor DISABLED - show native cursor instead */
.lux-cursor {
    display: none !important;
    visibility: hidden !important;
}

/* Hide ONLY on small screens (true mobile) */
@media (max-width: 768px) {
    .lux-cursor {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Additional hide for touch-only devices */
@media (hover: none) {
    .lux-cursor {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Mobile chatbot positioning and responsive design */
@media (max-width: 768px) {
    #chatbot {
        position: fixed !important;
        bottom: 80px !important;
        left: 16px !important;
        z-index: 9998 !important;
    }

    .chatbot-toggle {
        width: 56px;
        height: 56px;
        z-index: 9999;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        pointer-events: auto !important;
    }
    
    .chatbot-window {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 75vh !important;
        max-height: 75vh !important;
        border-radius: 20px 20px 0 0 !important;
        transform: translateY(100%) !important;
        opacity: 0;
        z-index: 10000 !important;
    }
    
    .chatbot-window.show {
        transform: translateY(0) !important;
        opacity: 1;
    }
    
    .chatbot-messages {
        max-height: calc(75vh - 200px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@view-transition { navigation: auto; }

/* Intersection Observer Fade-in Animation */
.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ========================================
   PREMIUM MASTER UPGRADE - NOV 4, 2025
   ======================================== */

/* Fix Form Input Visibility - CRITICAL */
.form-input {
    color: #1f2937 !important;
    background-color: #ffffff !important;
    font-weight: 500;
}

.form-input::placeholder {
    color: #9ca3af;
}

.estimator-dropdown {
    font-weight: 500;
}

/* Premium Metallic Shine Effect for Headings */
.metallic-shine {
    background: linear-gradient(
        135deg,
        #000000 0%,
        #c0c0c0 25%,
        #ffffff 50%,
        #c0c0c0 75%,
        #000000 100%
    );
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: metallicFlow 4s ease-in-out infinite;
}

@keyframes metallicFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Section Premium Animations */
.hero-text-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: heroReveal 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-text-reveal:nth-child(1) { animation-delay: 0.2s; }
.hero-text-reveal:nth-child(2) { animation-delay: 0.4s; }
.hero-text-reveal:nth-child(3) { animation-delay: 0.6s; }

/* Premium Button Glow Effect */
.cta-button-premium-enhanced {
    position: relative;
    overflow: hidden;
}

.cta-button-premium-enhanced::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(192,192,192,0.4) 0%, transparent 70%);
    animation: buttonPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes buttonPulse {
    0%, 100% { transform: translate(0%, 0%) scale(1); opacity: 0.3; }
    50% { transform: translate(10%, 10%) scale(1.2); opacity: 0.6; }
}

.cta-button-premium-enhanced:hover::before {
    animation-duration: 1s;
}

/* WhatsApp Quick Chat Button */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 25px;
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    color: var(--text-primary);
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.6);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(192, 192, 192, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 8px 30px rgba(192, 192, 192, 0.9); }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 35px rgba(192, 192, 192, 1);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

/* Mobile Bottom CTA Bar */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.98), rgba(0,0,0,0.95));
    backdrop-filter: blur(20px);
    padding: 12px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    z-index: 999;
    border-top: 2px solid rgba(192,192,192,0.3);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-cta-bar.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.mobile-cta-close {
    position: absolute;
    top: -20px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: rgba(192,192,192,0.2);
    border: 1px solid rgba(192,192,192,0.3);
    border-radius: 50%;
    color: #c0c0c0;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.mobile-cta-close:hover {
    background: rgba(192,192,192,0.3);
    border-color: #c0c0c0;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }
}

.mobile-cta-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.mobile-cta-primary {
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(192,192,192,0.5);
}

.mobile-cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid #c0c0c0;
}

.mobile-cta-btn:active {
    transform: scale(0.95);
}

/* Enhanced Chatbot with Sales Psychology */
.chatbot-enhanced {
    animation: chatbotEntrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes chatbotEntrance {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #c0c0c0, #fff, #c0c0c0);
    border-radius: 50%;
    animation: chatbotGlow 2s linear infinite;
    z-index: -1;
    opacity: 0.7;
}

@keyframes chatbotGlow {
    0%, 100% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Conversion Elements - Urgency Badge */
.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #808080 0%, #606060 100%);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(128, 128, 128, 0.4);
    animation: urgencyPulse 1.5s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(128, 128, 128, 0.6); }
}

/* Social Proof Badge */
.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(192, 192, 192, 0.1);
    border: 2px solid #c0c0c0;
    color: #c0c0c0;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
}

.social-proof-badge::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 100%);
    color: var(--text-primary);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

/* Product Card Premium Hover */
.product-card-premium {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.product-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s;
}

.product-card-premium:hover::before {
    animation: productShine 1.5s ease-in-out;
}

@keyframes productShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.product-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(192,192,192,0.3);
}

/* Brand Stats Counter Animation */
.stat-counter {
    font-variant-numeric: tabular-nums;
    animation: statReveal 1s ease-out forwards;
}

@keyframes statReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Emotional Storytelling Section */
.story-section {
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(192,192,192,0.2), transparent);
    animation: storyLight 3s ease-in-out infinite;
}

@keyframes storyLight {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Metallic Background Effect */
.metallic-bg {
    background: linear-gradient(135deg, 
        #0a0a0a 0%,
        #1a1a1a 25%,
        #2a2a2a 50%,
        #1a1a1a 75%,
        #0a0a0a 100%
    );
    background-size: 400% 400%;
    animation: metallicWave 8s ease infinite;
}

@keyframes metallicWave {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Light Sparkle Effect */
.sparkle-effect {
    position: relative;
}

.sparkle-effect::after {
    content: '✦';
    position: absolute;
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}


/* Mobile Layout Optimization - Fix Overlap */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 140px; /* Move above mobile CTA bar */
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
    
    /* Reduce animation intensity on mobile for performance */
    .metallic-shine {
        animation: none; /* Static gradient on mobile */
    }
    
    @keyframes whatsappPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
}

/* Performance Optimization - Reduce heavy animations on lower-end devices */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Ensure all animations use GPU acceleration */
.metallic-shine,
.hero-text-reveal,
.whatsapp-float,
.urgency-badge,
.product-card-premium {
    will-change: auto;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* Metallic Brand Badges */
.metallic-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #c0c0c0 100%);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.4);
    animation: metallicPulse 3s ease-in-out infinite;
}

.metallic-badge-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #2a2a2a 0%, #4a4a4a 50%, #1a1a1a 100%);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes metallicPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(192, 192, 192, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(255, 255, 255, 0.6);
    }
}

/* Product Image Metallic Style */
.product-image-metallic {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease !important;
    filter: brightness(0.9) contrast(1.1);
}

.product-showcase-card:hover .product-image-metallic {
    transform: scale(1.08) !important;
    filter: brightness(1.1) contrast(1.2) drop-shadow(0 15px 40px rgba(192, 192, 192, 0.4)) !important;
}

.product-hero-section {
    overflow: hidden !important;
    border-radius: 1.5rem 1.5rem 0 0 !important;
    position: relative;
}

.product-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(192, 192, 192, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-showcase-card:hover .product-hero-section::after {
    opacity: 1;
}

/* Product Card Text - Clean Black/Gray - FORCE OVERRIDE TAILWIND */
.product-showcase-card h3 {
    color: #1a1a1a !important;
}

.product-showcase-card p,
.product-showcase-card div,
.product-showcase-card span,
.product-showcase-card li {
    color: #444 !important;
}

.product-showcase-card .font-bold,
.product-showcase-card .font-semibold {
    color: #1a1a1a !important;
}

.product-showcase-card .p-8 {
    padding: 2rem !important;
}

/* Ensure product card content has breathing room on mobile */
@media (max-width: 768px) {
    .product-showcase-card .p-8 {
        padding: 1.5rem !important;
    }
    
    .product-showcase-card h3 {
        font-size: 1.25rem !important;
    }
    
    .products-title {
        font-size: 2.5rem !important;
    }
}

/* Stock Badges - Simple */
.stock-badge {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stock-high {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

/* Ensure all form inputs on products page have proper visibility */
#products-page input,
#products-page select,
#products-page textarea,
#products-page .form-control {
    background: rgba(26, 26, 26, 0.8) !important;
    border: 2px solid rgba(192, 192, 192, 0.3) !important;
    color: #ffffff !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.5rem !important;
    transition: all 0.3s ease !important;
}

#products-page input:focus,
#products-page select:focus,
#products-page textarea:focus {
    outline: none !important;
    border-color: rgba(192, 192, 192, 0.6) !important;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2) !important;
    background: rgba(26, 26, 26, 0.95) !important;
}

#products-page input::placeholder,
#products-page textarea::placeholder {
    color: rgba(192, 192, 192, 0.5) !important;
}

/* Remove old urgency badge styles */
.urgency-badge,
.social-proof-badge,
.whatsapp-float {
    display: none !important;
}

/* County Delivery Calculator */
.delivery-calculator {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 900px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.delivery-calculator h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.calc-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calc-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.calc-result {
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #c0c0c0 100%);
    color: #000;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.4);
}

/* Testimonials Section */
.testimonial-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(192, 192, 192, 0.1);
    font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 50px rgba(192, 192, 192, 0.3);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #000;
}

/* FAQ Section */
.faq-item {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #c0c0c0;
    padding: 0 2rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.active {
    transform: rotate(180deg);
}

/* Business Hours Indicator */
.hours-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-weight: 600;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.open {
    background: #c0c0c0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.6);
}

.status-dot.closed {
    background: #808080;
    box-shadow: 0 0 20px rgba(128, 128, 128, 0.6);
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Stock Level Indicators */
.stock-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-high {
    background: rgba(192, 192, 192, 0.2);
    color: #c0c0c0;
    border: 1px solid #c0c0c0;
}

.stock-medium {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid #fbbf24;
}

.stock-low {
    background: rgba(128, 128, 128, 0.2);
    color: #c0c0c0;
    border: 1px solid #808080;
}

/* Bulk Order Form */
.bulk-order-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    padding: 5rem 0;
    margin-top: 4rem;
}

.bulk-pricing-tier {
    background: rgba(192, 192, 192, 0.05);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bulk-pricing-tier:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(192, 192, 192, 0.1);
    transform: translateY(-5px);
}

.tier-discount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Comparison Tool */
.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 2rem;
}

.comparison-header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: rgba(192, 192, 192, 0.1);
}

.comparison-cell {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: #c0c0c0;
    text-align: center;
}

/* WhatsApp Share Button */
.whatsapp-share-btn {
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 50%, #e0e0e0 100%);
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.whatsapp-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

/* Order Tracking */
.tracking-input {
    width: 100%;
    max-width: 500px;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: center;
}

.tracking-result {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 2rem;
    text-align: center;
}

.tracking-status {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 50%, #e0e0e0 100%);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

/* Recent Orders Ticker */
.orders-ticker {
    background: linear-gradient(90deg, #000 0%, #1a1a1a 50%, #000 100%);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    gap: 4rem;
}

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

.ticker-item {
    white-space: nowrap;
    color: #c0c0c0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticker-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #c0c0c0 0%, #ffffff 100%);
    border-radius: 50%;
}

/* Responsive Optimizations */
@media (max-width: 768px) {
    .delivery-calculator,
    .testimonial-card,
    .bulk-pricing-tier {
        padding: 1.5rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .metallic-badge,
    .metallic-badge-secondary {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Logo Spinning Coin Animation */
@keyframes coinSpin {
    0% { transform: rotateY(0deg) scale(1); }
    25% { transform: rotateY(90deg) scale(1.1); }
    50% { transform: rotateY(180deg) scale(1.2); }
    75% { transform: rotateY(270deg) scale(1.1); }
    100% { transform: rotateY(360deg) scale(1); }
}

.premium-logo img {
    transition: all 0.3s ease;
}

.premium-logo img:hover {
    filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.8));
}

.premium-logo img.spinning {
    animation: coinSpin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Logo subtle shine during activity */
@keyframes logoShine {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.4)); }
    50% { filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)); }
}

.premium-logo.active img {
    animation: logoShine 2s ease-in-out infinite;
}

/* ==================== THEME TOGGLE BUTTON ==================== */
.theme-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--accent-silver);
    box-shadow: 0 0 20px var(--shadow-color);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    fill: var(--text-primary);
}

.theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(180deg) scale(0);
    position: absolute;
}

.theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    position: absolute;
}

:root.light-mode .theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

:root.light-mode .theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
}

/* ==================== THEME-AWARE UPDATES ==================== */
nav {
    background: var(--bg-primary) !important;
    border-bottom-color: var(--border-color) !important;
}

.hero-premium-bg,
.metallic-bg {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%) !important;
}

.page-section {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

/* Orders ticker */
.orders-ticker {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ticker-item {
    color: var(--text-secondary);
}

/* Hours indicator */
.hours-indicator {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

/* Mobile menu button */
#mobileMenuBtn div {
    background: var(--text-primary) !important;
}

/* WhatsApp button - adjust for light mode */
.whatsapp-button {
    background: #25D366 !important;
    box-shadow: 0 4px 15px var(--shadow-color);
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top-color: var(--border-color);
    color: var(--text-primary);
}

footer h3 {
    color: var(--text-primary);
}

footer p, footer a {
    color: var(--text-secondary);
}

footer a:hover {
    color: var(--accent-silver);
}

/* Metallic badges */
.metallic-badge,
.metallic-badge-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

/* Form inputs */
input, select, textarea {
    background: var(--bg-card);
    color: var(--text-on-card);
    border-color: var(--border-color);
}

input::placeholder,
select::placeholder,
textarea::placeholder {
    color: var(--text-tertiary);
}

/* About section cards */
.about-card {
    background: var(--bg-card);
    color: var(--text-on-card);
    box-shadow: 0 4px 12px var(--shadow-color);
}

/* Chat widget */
.chatbot-widget {
    background: var(--bg-card);
    box-shadow: 0 8px 32px var(--shadow-color);
}

.chatbot-header {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.chat-message {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.chat-message.user {
    background: var(--accent-silver);
    color: var(--text-primary);
}

/* Navigation additional styling */
nav {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

/* Ensure proper navigation z-index */
nav.fixed {
    z-index: 50;
}

/* =====================================================
   NEW PRODUCTS PAGE - REBUILT FROM SCRATCH
   Fixed light background with dark text for guaranteed visibility
   ===================================================== */

.products-page-container {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: auto;
}

/* Product Cards - Clean, Simple, Visible */
.new-product-card {
    background: #ffffff;
    border: 2px solid #d0d0d0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.new-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #999;
}

.new-product-card h3 {
    color: #1a1a1a !important;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.new-product-card .product-category {
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    display: inline-block;
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.new-product-card .product-price {
    color: #2c2c2c;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.new-product-card .product-note {
    color: #777;
    font-size: 0.75rem;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Product Card Buttons */
.product-btn {
    width: 100%;
    padding: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
}

.product-btn-estimate {
    background: linear-gradient(135deg, #4a4a4a, #2c2c2c);
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.product-btn-estimate:hover {
    background: linear-gradient(135deg, #5a5a5a, #3c3c3c);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-btn-quote {
    background: #ffffff;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.product-btn-quote:hover {
    background: #2c2c2c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Category Filter */
#categoryFilter {
    background: #ffffff;
    color: #2c2c2c;
    font-weight: 600;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .new-product-card h3 {
        font-size: 1rem !important;
    }
    
    .new-product-card {
        padding: 1rem;
    }
}


/* Smart Estimator Animations */
.flash-animation {
    animation: flashBorder 1s ease-out;
}

@keyframes flashBorder {
    0%, 100% {
        border-color: #374151;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    50% {
        border-color: #ffffff;
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.8),
                    0 0 80px rgba(192, 192, 192, 0.6),
                    0 25px 50px -12px rgba(255, 255, 255, 0.4);
    }
}

.animate-slideIn {
    animation: slideInRight 0.4s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-pulse-slow {
    animation: pulseSlow 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseSlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Product Card Animations */
.product-showcase-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-showcase-card:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.product-showcase-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.product-hero-section {
    transition: all 0.4s ease;
}

.product-showcase-card:hover .product-hero-section {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
}

.cta-button-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button-premium:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(192, 192, 192, 0.4);
}

.cta-button-premium:active {
    transform: translateY(0);
}

/* ==================== SHOPPING CART SYSTEM ==================== */

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff4444, #ff0000);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    max-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 2px solid #333;
}

.cart-drawer.active {
    transform: translateX(0);
}

/* Cart Header */
.cart-header {
    padding: 24px;
    border-bottom: 2px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.cart-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.cart-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Cart Items Container */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Cart Empty State */
.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.cart-empty-icon {
    width: 80px;
    height: 80px;
    stroke: #666;
    stroke-width: 1.5px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-empty-text {
    font-size: 18px;
    color: #999;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.cart-empty-subtext {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Cart Item Card */
.cart-item {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    animation: slide-in-up 0.3s ease;
}

.cart-item:hover {
    border-color: #555;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cart-item-info h4 {
    font-size: 16px;
    color: #ffffff;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.cart-item-info p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.cart-item-remove {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    color: #ff4444;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: scale(1.05);
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
}

.cart-item-quantity button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-quantity button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-item-quantity span {
    color: #ffffff;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-price {
    font-size: 14px;
    color: #c0c0c0;
    font-weight: 600;
}

/* Cart Footer */
.cart-footer {
    border-top: 2px solid #333;
    padding: 20px 24px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
}

.cart-summary {
    margin-bottom: 16px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 16px;
    color: #ffffff;
}

.cart-summary-row span:first-child {
    color: #999;
}

.cart-summary-row span:last-child {
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
}

.cart-summary-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Checkout Button */
.checkout-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ffffff, #c0c0c0);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #666, #555);
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-drawer {
        max-width: 100%;
    }
    
    .cart-header {
        padding: 16px;
    }
    
    .cart-title {
        font-size: 20px;
    }
    
    .cart-items {
        padding: 12px;
    }
    
    .cart-item {
        padding: 12px;
    }
}

/* Light Mode Overrides */
:root.light-mode .cart-drawer {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

:root.light-mode .cart-header {
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    border-bottom-color: #d0d0d0;
}

:root.light-mode .cart-title {
    color: #1a1a1a;
}

:root.light-mode .cart-close-btn {
    background: rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
}

:root.light-mode .cart-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

:root.light-mode .cart-item {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-color: #d0d0d0;
}

:root.light-mode .cart-item-info h4 {
    color: #1a1a1a;
}

:root.light-mode .cart-item-quantity {
    background: rgba(0, 0, 0, 0.03);
}

:root.light-mode .cart-item-quantity button {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

:root.light-mode .cart-item-quantity span {
    color: #1a1a1a;
}

:root.light-mode .cart-footer {
    background: linear-gradient(135deg, #e8e8e8, #f5f5f5);
    border-top-color: #d0d0d0;
}

:root.light-mode .cart-summary-row {
    color: #1a1a1a;
}
