/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-color: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --primary-gradient: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    
    /* Accent Colors */
    --accent-teal: #14b8a6;
    --accent-purple: #8b5cf6;
    --accent-amber: #f59e0b;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    
    /* Secondary Colors */
    --secondary-color: #64748b;
    --secondary-light: #94a3b8;
    --secondary-dark: #475569;
    
    /* Text Colors */
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    
    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-gray-50: #f9fafb;
    --bg-gray-100: #f3f4f6;
    
    /* Border Colors */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-dark: #cbd5e1;
    
    /* Modern Shadow System - Layered */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.3), 0 0 40px rgba(14, 165, 233, 0.1);
    --shadow-glow-hover: 0 0 30px rgba(14, 165, 233, 0.4), 0 0 60px rgba(14, 165, 233, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Luxury Colors */
    --luxury-gold: #D4AF37;
    --luxury-gold-dark: #B8860B;
    --luxury-gold-light: #F5DEB3;
    --luxury-black: #0A0A0A;
    --luxury-charcoal: #1C1C1C;
    --luxury-platinum: #E5E4E2;
    --luxury-marble: #F8F6F0;
    --luxury-gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #CD853F 100%);
    
    /* Premium Shadows */
    --shadow-luxury: 0 30px 60px -12px rgba(0, 0, 0, 0.35), 0 18px 36px -18px rgba(0, 0, 0, 0.22);
    --shadow-gold-glow: 0 0 30px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1;
    text-rendering: optimizeLegibility;
    background-color: var(--luxury-marble);
}

/* Luxury Typography */
h1, h2, h3, h4, h5, h6,
.section-header h2,
.hero-title,
.about-header h2,
.modal-info h2 {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-title {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    letter-spacing: -1px;
    font-weight: 700;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 65px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: block;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    display: none;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

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

.btn-nav {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.btn-nav:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.btn-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.3;
    animation: backgroundMove 20s linear infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Luxury gold accent overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
}

.bathroom-carousel .hero-content {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}

.bathroom-carousel .hero-content > div {
    pointer-events: auto;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #F5DEB3 0%, #D4AF37 30%, #F5DEB3 60%, #D4AF37 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    text-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    position: relative;
    font-style: italic;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--luxury-gradient-gold);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    line-height: 1.5;
}

.btn-primary {
    background: var(--luxury-gradient-gold);
    color: var(--luxury-black);
    box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9375rem;
}

.btn-primary::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;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
    animation: pulseGlow 2s ease infinite;
    background: linear-gradient(135deg, #E6C866 0%, #D4AF37 50%, #B8860B 100%);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
    }
    50% {
        box-shadow: var(--shadow-premium), 0 0 40px rgba(212, 175, 55, 0.6), 0 0 80px rgba(212, 175, 55, 0.3);
    }
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:active::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== Product Social Share ===== */
.product-social-share {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.share-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.share-facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.share-copy:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Live Activity Section ===== */
.live-activity-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-bottom: 1px solid var(--border-color);
}

.live-activity-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.activity-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.activity-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.activity-text {
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
}

.activity-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.activity-stats strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .live-activity-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .activity-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ===== Trust Badges Section ===== */
.trust-badges-section {
    padding: 60px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-xl);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.trust-badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.trust-badge-item:hover::before {
    left: 100%;
}

.trust-badge-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
    border-color: var(--luxury-gold);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.trust-badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.trust-badge-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.trust-badge-item p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* ===== Product Cards Enhancements ===== */
.product-warranty-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--luxury-gradient-gold);
    color: var(--luxury-black);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    padding: 0.5rem 0;
}

.rating-stars {
    font-size: 0.875rem;
    line-height: 1;
}

.rating-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.rating-count {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.product-card:hover .product-warranty-badge {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

@media (max-width: 768px) {
    .product-warranty-badge {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }
    
    .product-rating {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
}

/* ===== Products Section ===== */
.products-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--luxury-marble) 0%, #ffffff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--luxury-charcoal);
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--luxury-gradient-gold);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Products Layout with Sidebar */
.products-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    margin-top: 2rem;
    align-items: start;
}

.products-content-wrapper {
    width: 100%;
}

.products-sidebar {
    background: var(--bg-white);
    border-radius: 0 10px 10px 0;
    padding: 0.875rem;
    height: fit-content;
    max-height: calc(100vh - 120px);
    position: sticky;
    top: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    border-left: none;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

.products-sidebar::-webkit-scrollbar {
    width: 6px;
}

.products-sidebar::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.products-sidebar::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 3px;
}

.products-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    background: var(--bg-white);
    z-index: 10;
    padding-top: 0;
}

.sidebar-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.3px;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: var(--text-dark);
}

.sidebar-search {
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-search .search-box {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}

.sidebar-search .search-box input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9375rem;
}

.filter-group {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.filter-group:last-of-type {
    margin-bottom: 0.75rem;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-group:has(.price-filter) {
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.filter-group > * {
    max-width: 100%;
    box-sizing: border-box;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-title::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 2px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    padding: 0.5rem 0.375rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.filter-option:hover {
    background: var(--bg-light);
    transform: translateX(2px);
}

.filter-option input[type="checkbox"]:checked + .filter-label {
    color: var(--primary-color);
    font-weight: 600;
}

.filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.filter-label {
    font-size: 0.875rem;
    color: var(--text-dark);
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
}

.filter-count {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-left: 0.25rem;
}

.price-filter {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 0;
}

.price-filter .btn,
#applyPriceFilter {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    box-sizing: border-box;
    white-space: nowrap;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.price-inputs input {
    width: 100%;
    min-width: 0;
    padding: 0.625rem 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.875rem;
    box-sizing: border-box;
}

.price-inputs span {
    color: var(--text-light);
    font-size: 0.8125rem;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 0.25rem;
    font-weight: 500;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1);
}

.price-display {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-align: center;
    padding: 0.5rem;
    background: var(--bg-light);
    border-radius: 6px;
    font-weight: 500;
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.filter-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.filter-actions .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.875rem;
    box-sizing: border-box;
    font-weight: 600;
}

.btn-sm {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.active-filters-sidebar {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    max-height: 150px;
    overflow-y: auto;
}

.active-filters-sidebar::-webkit-scrollbar {
    width: 4px;
}

.active-filters-sidebar .active-filter-tag {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8125rem;
    margin: 0.25rem 0.25rem 0.25rem 0;
    gap: 0.5rem;
}

.filter-remove-btn {
    margin-left: 0.5rem;
    background: rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    cursor: pointer;
    color: white !important;
    font-size: 0.75rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    transition: background 0.2s ease;
}

.filter-remove-btn:hover {
    background: rgba(255, 255, 255, 0.5) !important;
}

.products-main {
    min-width: 0; /* Prevents grid overflow */
    width: 100%;
}

.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.mobile-filter-toggle:hover {
    background: var(--primary-dark);
}

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 200px 1fr;
    }
    
    .products-sidebar {
        padding: 0.875rem;
    }
    
    .price-inputs input {
        width: calc(50% - 0.5rem);
        font-size: 0.875rem;
        padding: 0.5rem;
    }
    
    .price-inputs span {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .products-layout {
        grid-template-columns: 1fr;
        display: block;
        position: relative;
    }
    
    /* Completely remove sidebar from document flow on mobile - hidden by default */
    .products-sidebar {
        display: none; /* Completely removed from layout flow */
        position: fixed;
        top: 65px;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 65px);
        z-index: 2000;
        overflow-y: auto;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 12px 12px 0;
        /* Start off-screen */
        transform: translateX(-100%);
    }
    
    .products-sidebar.active {
        display: block; /* Show when active */
        transform: translateX(0);
    }
    
    /* Products main should take full width and not be affected by sidebar */
    .products-main {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Sidebar overlay backdrop */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    .sidebar-close {
        display: block;
    }
    
    .mobile-filter-toggle {
        display: flex;
    }
    
    /* Products main area takes full width on mobile */
    .products-main {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .price-inputs input {
        width: calc(50% - 0.5rem);
        font-size: 0.875rem;
        padding: 0.5rem;
    }
    
    .price-inputs span {
        font-size: 0.75rem;
    }
}

.filter-btn {
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--bg-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 15px rgba(0, 0, 0, 0.08),
        0 20px 25px rgba(0, 0, 0, 0.06);
    transition: var(--transition-slow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease-out;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transform-style: preserve-3d;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(2deg);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 30px 50px rgba(0, 0, 0, 0.2),
        0 50px 70px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(212, 175, 55, 0.3);
    border-color: var(--luxury-gold);
    animation: cardFloat 3s ease-in-out infinite;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(-12px) scale(1.02) rotateX(1deg);
    }
    50% {
        transform: translateY(-16px) scale(1.025) rotateX(1.5deg);
    }
}

.product-card:hover::before {
    opacity: 1;
}

.product-card > * {
    position: relative;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Ensure container supports HD rendering */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
    /* Ultra HD quality rendering - already covered by global rule but ensure it applies */
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    image-rendering: high-quality !important;
    -ms-interpolation-mode: bicubic !important;
    backface-visibility: hidden !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
}

/* Matt Finish Products - Display as is without any overlay or filters */
.product-image,
.modal-image {
    position: relative;
}

/* Matt finish wrapper - no special styling, just keep structure */
.product-image.matt-finish-wrapper,
.modal-image.matt-finish-wrapper {
    position: relative;
}

/* Matt finish images - no filters, display as original */
.product-image img.matt-finish,
.modal-image img.matt-finish {
    /* No filters applied - display image as is */
    position: relative;
    /* Ensure ultra HD quality rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    /* Prevent compression artifacts and ensure sharp rendering */
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    /* Additional quality settings */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

/* Hide overlay - no grey background */
.matt-finish-overlay {
    display: none;
}

/* ===== Ultra HD Image Rendering for All Images ===== */
.product-image img,
.modal-image img,
.product-card img,
img[src*="images/"] {
    /* Ultra HD image rendering settings - Maximum quality */
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    image-rendering: high-quality !important;
    image-rendering: pixelated !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    /* High quality interpolation */
    -ms-interpolation-mode: bicubic !important;
    /* Prevent image compression artifacts */
    backface-visibility: hidden !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    /* Additional quality settings for sharp rendering */
    -webkit-backface-visibility: hidden !important;
    -moz-backface-visibility: hidden !important;
    /* Ensure images are not compressed by browser */
    -webkit-transform: translateZ(0) !important;
    -moz-transform: translateZ(0) !important;
    /* Force hardware acceleration for better quality */
    -webkit-perspective: 1000 !important;
    perspective: 1000 !important;
    /* Prevent blurring during transforms */
    filter: none !important;
    /* Ensure images load at full quality */
    image-rendering: auto !important;
    /* Use best quality scaling */
    -webkit-image-rendering: -webkit-optimize-contrast !important;
    -moz-image-rendering: crisp-edges !important;
    -o-image-rendering: optimizeQuality !important;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    flex-direction: column;
    gap: 0.75rem;
}

.product-footer .product-price {
    align-self: flex-start;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    width: 100%;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--luxury-gold-dark);
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

.view-details {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.view-details:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
}

.about-main-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-intro p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    text-align: left;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: left;
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.value-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-mission,
.about-vision {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.about-mission h3,
.about-vision h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-mission p,
.about-vision p {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.9;
}

.about-promise {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem 3rem;
    border-radius: 16px;
    color: white;
}

.about-promise h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-align: center;
    color: white;
}

.promise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.promise-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.8;
    font-size: 1rem;
}

.promise-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    color: white;
}

.about-contact-cta {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 16px;
}

.about-contact-cta p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-header h2 {
        font-size: 2rem;
    }

    .about-tagline {
        font-size: 1.125rem;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-mission,
    .about-vision {
        padding: 2rem 1.5rem;
    }

    .about-promise {
        padding: 3rem 2rem;
    }

    .about-promise h3 {
        font-size: 2rem;
    }

    .promise-list {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, #f1f5f9 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23000000" fill-opacity="0.02"><circle cx="30" cy="30" r="2"/></g></svg>');
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl), var(--glass-shadow);
}

.form-group-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
    letter-spacing: 0.2px;
    margin-bottom: 0.25rem;
}

.form-group .required {
    color: #ef4444;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem 1.25rem;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
    width: 100%;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-lighter);
    font-weight: 400;
    opacity: 0.7;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 0 0 4px rgba(14, 165, 233, 0.1), 
        var(--shadow-md),
        var(--shadow-glow);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-form .btn-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: 10px;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.2);
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -1px rgba(14, 165, 233, 0.3);
}

.contact-form .btn-submit:active {
    transform: translateY(0);
}

.contact-form .btn-submit svg {
    transition: transform 0.3s ease;
}

.contact-form .btn-submit:hover svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    .contact-form .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-section h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer-bottom p:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.footer-legal {
    font-size: 0.8125rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 0.75rem !important;
}

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

    .footer-links,
    .footer-contact {
        text-align: center;
    }
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-2xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        0 0 40px rgba(212, 175, 55, 0.1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
}

.modal-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.modal-image {
    width: 100%;
    border-radius: 12px;
    height: 400px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.image-magnifier {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.3s ease;
    /* Ultra HD quality for modal images */
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    image-rendering: high-quality !important;
    -ms-interpolation-mode: bicubic !important;
    /* Prevent compression */
    -webkit-backface-visibility: hidden !important;
    -moz-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
}

.magnifier-lens {
    display: none;
    position: absolute;
    width: 200px;
    height: 200px;
    border: 4px solid rgba(255, 255, 255, 0.98);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 10001;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 
                inset 0 0 30px rgba(255, 255, 255, 0.4),
                0 0 0 1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.5px);
    transform: translate(-50%, -50%) translateZ(0);
    top: 50%;
    left: 50%;
    /* Ensure lens doesn't interfere with image quality */
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, left, top;
    /* Smooth transitions */
    transition: transform 0.05s ease-out;
}

.magnified-image {
    display: none;
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) translateZ(0);
    width: 500px;
    height: 500px;
    background-color: #f8fafc;
    background-repeat: no-repeat;
    border-radius: 12px;
    z-index: 10002;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    border: 1px solid #e2e8f0;
    /* Ultra HD rendering for magnified view - Maximum quality settings */
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    image-rendering: high-quality !important;
    image-rendering: auto !important;
    -ms-interpolation-mode: bicubic !important;
    /* Prevent blurring and ensure sharp rendering */
    -webkit-backface-visibility: hidden !important;
    -moz-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    /* Force hardware acceleration for smooth performance */
    will-change: background-position, background-size, transform !important;
    /* Smooth background positioning */
    background-attachment: scroll !important;
    /* Use best quality scaling algorithms */
    -webkit-image-rendering: -webkit-optimize-contrast !important;
    -moz-image-rendering: crisp-edges !important;
    -o-image-rendering: optimizeQuality !important;
    /* Additional quality enhancements */
    -webkit-perspective: 1000px !important;
    perspective: 1000px !important;
    /* Prevent subpixel rendering issues */
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    /* Optimize for quality over speed */
    -webkit-transform: translateY(-50%) translateZ(0) !important;
    -moz-transform: translateY(-50%) translateZ(0) !important;
    /* Add subtle border for better definition */
    outline: 1px solid rgba(0, 0, 0, 0.05);
    /* Additional HD quality filters - enhanced for maximum sharpness */
    filter: contrast(1.05) brightness(1.02) saturate(1.02) !important;
    /* Ensure no compression artifacts */
    -webkit-filter: contrast(1.05) brightness(1.02) saturate(1.02) !important;
    /* Sharpen the image for ultra HD appearance */
    -webkit-filter: contrast(1.05) brightness(1.02) saturate(1.02) !important;
    /* Additional sharpening for maximum clarity */
    image-rendering: -moz-crisp-edges !important;
    image-rendering: crisp-edges !important;
}

@media (max-width: 968px) {
    .magnified-image {
        display: none !important;
    }
    
    .magnifier-lens {
        display: none !important;
    }
    
    .modal-image {
        cursor: default;
    }
}

@media (max-width: 968px) {
    .magnified-image {
        display: none !important;
    }
    
    .magnifier-lens {
        display: none !important;
    }
    
    .modal-image {
        cursor: default;
    }
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.modal-category {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.modal-description {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.modal-features {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.modal-features li:last-child {
    border-bottom: none;
}

.modal-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
}

.modal-technology {
    background: #f0f9ff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.modal-technology h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-technology h4::before {
    content: '⚡';
    font-size: 1.5rem;
}

.tech-feature {
    margin-bottom: 1.5rem;
}

.tech-feature:last-child {
    margin-bottom: 0;
}

.tech-feature strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tech-feature p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.modal-warranty {
    background: #fef3c7;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #f59e0b;
}

.modal-warranty h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-warranty h4::before {
    content: '🛡️';
    font-size: 1.25rem;
}

.warranty-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.warranty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
}

.warranty-row span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.warranty-row strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.warranty-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* ===== Animations ===== */
/* ===== Scroll Animation Classes ===== */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animated {
    opacity: 1;
}

/* Fade In */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.animated {
    opacity: 1;
}

/* Fade In Up */
.fade-in-up:not(.animated) {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Product cards should NEVER have any animation - always visible */
.product-card,
.product-card.fade-in-up,
.product-card.fade-in,
.product-card.scale-in,
.product-card.blur-in,
.product-card.fade-in-down,
.product-card.fade-in-left,
.product-card.fade-in-right,
.product-card.rotate-in,
.product-card.slide-up,
.product-card.scroll-animate,
.product-card.animated {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    display: flex !important;
}

/* Ensure products section and grid are always visible */
.products-section,
.products-section.fade-in {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.products-grid,
#productsGrid {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.section-header,
.section-header.fade-in-up {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Fade In Down */
.fade-in-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-down.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Rotate In */
.rotate-in {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.rotate-in.animated {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Slide Up */
.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Blur In */
.blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, filter 0.8s ease-out, transform 0.8s ease-out;
}

.blur-in.animated {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Fast Animation */
.fast { transition-duration: 0.4s; }

/* Slow Animation */
.slow { transition-duration: 1.2s; }

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-animate,
    .fade-in,
    .fade-in-up,
    .fade-in-down,
    .fade-in-left,
    .fade-in-right,
    .scale-in,
    .rotate-in,
    .slide-up,
    .blur-in {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    /* Reduce navbar height on mobile */
    .navbar .container {
        padding: 0.75rem 15px;
    }

    .nav-logo {
        height: 38px;
        max-width: 150px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: 1.5rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.75rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    /* Reduce hero section height significantly on mobile */
    .hero {
        height: 60vh;
        min-height: 400px;
        padding-top: 70px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -1px;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    /* Compact trust badges section */
    .trust-badges-section {
        padding: 30px 0;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-badge-item {
        padding: 1rem 0.5rem;
    }

    .trust-badge-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .trust-badge-item h3 {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }

    .trust-badge-item p {
        font-size: 0.75rem;
    }

    /* Compact products section */
    .products-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 0.9375rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        margin-top: 1.5rem;
    }

    .product-card {
        border-radius: var(--radius-lg);
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 0.875rem;
    }

    .product-title {
        font-size: 0.9375rem;
        margin-bottom: 0.375rem;
        line-height: 1.3;
    }

    .product-description {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
    }

    .product-price {
        font-size: 1.125rem;
    }

    .product-footer {
        gap: 0.5rem;
    }

    .product-actions {
        gap: 0.375rem;
    }

    .view-details {
        padding: 0.4rem 0.75rem;
        font-size: 0.8125rem;
    }

    /* Compact live activity */
    .live-activity-section {
        padding: 15px 0;
    }

    .live-activity-banner {
        padding: 0.75rem;
    }

    /* Compact contact section */
    .contact-section {
        padding: 50px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Compact modal */
    .modal-product {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    /* Compact about section */
    .about-section {
        padding: 50px 0;
    }

    .about-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2,
    .about-content h2 {
        font-size: 1.75rem;
    }

    .about-tagline {
        font-size: 1rem;
    }

    /* Compact catalogue section */
    .catalogue-section {
        padding: 40px 0;
    }

    .catalogue-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .catalogue-content h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .catalogue-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Extra compact navbar */
    .navbar .container {
        padding: 0.625rem 12px;
    }

    .nav-logo {
        height: 35px;
        max-width: 120px;
    }

    /* Ensure sidebar overlay works on small screens */
    .products-sidebar {
        width: 90%;
        max-width: 280px;
    }

    /* Even smaller hero on very small screens */
    .hero {
        height: 50vh;
        min-height: 350px;
        padding-top: 60px;
    }

    .hero-content {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.875rem;
        letter-spacing: -0.5px;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    /* Single column trust badges */
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .trust-badges-section {
        padding: 25px 0;
    }

    .trust-badge-item {
        padding: 0.875rem 0.5rem;
    }

    /* Very compact products section */
    .products-section {
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.875rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .product-image {
        height: 160px;
    }

    .product-info {
        padding: 0.75rem;
    }

    .product-title {
        font-size: 0.875rem;
        line-height: 1.3;
    }

    .product-description {
        font-size: 0.6875rem;
        -webkit-line-clamp: 2;
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-footer {
        gap: 0.5rem;
    }

    .view-details {
        padding: 0.375rem 0.625rem;
        font-size: 0.75rem;
    }

    /* Compact filters */
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        white-space: nowrap;
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    /* Compact contact */
    .contact-section {
        padding: 40px 0;
    }

    .contact-form {
        padding: 1.25rem;
    }

    /* Compact about */
    .about-section {
        padding: 40px 0;
    }

    .about-header {
        margin-bottom: 2rem;
    }

    .about-intro h3,
    .about-mission h3,
    .about-vision h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-intro p,
    .about-mission p,
    .about-vision p {
        font-size: 0.9375rem;
        line-height: 1.7;
    }

    /* Compact catalogue */
    .catalogue-section {
        padding: 30px 0;
    }

    .catalogue-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .catalogue-content h2 {
        font-size: 1.5rem;
    }

    .catalogue-content p {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    /* Compact social proof */
    .social-proof-stats {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem 0.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }
}

/* ===== Catalogue Download Section ===== */
.catalogue-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.catalogue-content {
    max-width: 800px;
    margin: 0 auto;
}

.catalogue-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.catalogue-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.catalogue-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(14, 165, 233, 0.3);
}

#catalogueNotAvailable {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    display: inline-block;
}

@media (max-width: 768px) {
    .catalogue-content h2 {
        font-size: 1.75rem;
    }
    
    .catalogue-icon {
        font-size: 2.5rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

/* ===== Social Proof Stats Section ===== */
.social-proof-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-number::after {
    content: '+';
    font-size: 2rem;
    vertical-align: super;
}

.stat-item:nth-child(3) .stat-number::after {
    content: '/5';
    font-size: 1.5rem;
}

.stat-item:nth-child(4) .stat-number::after {
    content: '%';
    font-size: 1.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .social-proof-stats {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem 0.5rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }
}

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

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

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

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ===== Footer Enhancements ===== */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.badge-icon {
    font-size: 1.125rem;
}

.social-media-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.newsletter-note {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-style: italic;
}

.footer-security {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.security-icon {
    font-size: 1.25rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.4);
}

.payment-gateways {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.payment-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

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

.payment-icon {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: help;
}

.payment-icon:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-trust-badges {
        justify-content: center;
    }

    .social-media-links {
        justify-content: center;
    }

    .footer-security {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-legal-links span {
        display: none;
    }
}

/* ===== Skeleton Loading States ===== */
.skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.skeleton-image {
    width: 100%;
    height: 280px;
    margin-bottom: 1rem;
}

.skeleton-title {
    width: 70%;
    height: 24px;
    margin-bottom: 0.75rem;
}

.skeleton-text {
    width: 100%;
    height: 16px;
    margin-bottom: 0.5rem;
}

.skeleton-text:nth-child(3) {
    width: 85%;
}

.skeleton-price {
    width: 40%;
    height: 32px;
    margin-top: 1rem;
}

/* ===== Enhanced Value Cards ===== */
.value-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.value-card:hover::after {
    opacity: 1;
}

.value-card:hover {
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ===== Enhanced Tip Cards ===== */
.tip-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-gradient);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.tip-card:hover::before {
    transform: scaleY(1);
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(14, 165, 233, 0.3);
}

/* ===== Enhanced Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.3;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(14, 165, 233, 0.2);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    animation: fadeInUp 0.8s ease-out;
}

/* ===== Enhanced FAQ Cards ===== */
.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(14, 165, 233, 0.3);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.5);
}

/* ===== Enhanced About Section Cards ===== */
.about-mission,
.about-vision {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.about-promise {
    background: var(--primary-gradient);
    padding: 4rem 3rem;
    border-radius: var(--radius-2xl);
    color: white;
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.promise-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 1.8;
    font-size: 1rem;
    transition: var(--transition);
}

.promise-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary-gradient);
    background-size: 200% 100%;
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5), 0 0 20px rgba(14, 165, 233, 0.3);
    animation: progressShimmer 2s linear infinite;
}

@keyframes progressShimmer {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* ===== Enhanced Contact Items ===== */
.contact-item {
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.3);
}

/* ===== Enhanced Products Sidebar ===== */
.products-sidebar {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    padding: 0.875rem;
    height: fit-content;
    max-height: calc(100vh - 120px);
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-lg);
    border-left: none;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
}

/* ===== Splash Screen / Loading Screen ===== */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #1C1C1C 50%, #0A0A0A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
    animation: fadeOut 0.8s ease-out 3.5s forwards;
}

.splash-screen.hidden {
    display: none;
}

.splash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.splash-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

.splash-content {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: splashFadeIn 1s ease-out;
}

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

.splash-logo-container {
    position: relative;
    margin-bottom: 2rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text-animation {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: 5rem;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, #F5DEB3 0%, #D4AF37 50%, #F5DEB3 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    letter-spacing: 8px;
    line-height: 1.2;
}

.logo-text-animation .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterWrite 0.6s ease-out forwards;
    animation-delay: var(--delay);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

@keyframes letterWrite {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.splash-logo-img {
    max-width: 300px;
    height: auto;
    opacity: 0;
    animation: logoReveal 1.5s ease-out 0.3s forwards;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
        filter: blur(10px);
    }
    50% {
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0) drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    }
}

.logo-shimmer {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transform: translateY(-50%) skewX(-20deg);
    animation: shimmer 2s ease-in-out infinite;
    animation-delay: 1.5s;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

.splash-message {
    margin: 2rem 0;
    min-height: 80px;
}

.message-line {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--luxury-gold-light);
    margin: 0.5rem 0;
    opacity: 0;
    animation: messageFadeIn 0.8s ease-out forwards;
    letter-spacing: 2px;
}

.message-line:nth-child(1) {
    animation-delay: 1.2s;
}

.message-line:nth-child(2) {
    animation-delay: 1.6s;
}

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

.splash-loader {
    margin: 2rem auto;
    width: 60px;
    height: 60px;
    position: relative;
}

.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--luxury-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite, loaderFadeIn 0.5s ease-out 2s forwards;
    opacity: 0;
}

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

@keyframes loaderFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.splash-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 2rem;
    opacity: 0;
    animation: taglineFadeIn 0.8s ease-out 2.2s forwards;
}

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

@keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

body.splash-active {
    overflow: hidden;
}

body.splash-active > *:not(.splash-screen) {
    opacity: 0;
    pointer-events: none;
}

body.splash-complete > *:not(.splash-screen) {
    animation: contentReveal 0.8s ease-out forwards;
}

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

@media (max-width: 768px) {
    .logo-text-animation {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    
    .splash-logo-img {
        max-width: 200px;
    }
    
    .message-line {
        font-size: 1.25rem;
    }
    
    .splash-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .logo-text-animation {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .splash-logo-img {
        max-width: 150px;
    }
    
    .message-line {
        font-size: 1rem;
    }
}

