/* ========================================
   INFINITE LABS - LUXURY PREMIUM DESIGN
   Sophisticated Dark Theme with Gold Accents
   Color Psychology: Trust, Luxury, Science
======================================== */

:root {
    /* Primary Luxury Palette */
    --luxury-gold: #d4af37;
    --rich-gold: #c9a227;
    --deep-gold: #b8960f;
    --champagne: #f7e7ce;
    
    /* Premium Blues */
    --midnight-blue: #0a1628;
    --deep-navy: #0f1f47;
    --royal-blue: #1e3a8a;
    --azure: #2563eb;
    --sky-glow: #60a5fa;
    
    /* Accent Colors */
    --emerald: #10b981;
    --jade: #34d399;
    --platinum: #e5e7eb;
    --pearl: #f9fafb;
    
    /* Background Layers */
    --bg-primary: #030712;
    --bg-secondary: #0a0e1a;
    --bg-card: #111827;
    --bg-elevated: #1f2937;
    
    /* Text Hierarchy */
    --text-primary: #f9fafb;
    --text-secondary: #e5e7eb;
    --text-muted: #9ca3af;
    
    /* Effects */
    --glow-gold: 0 0 30px rgba(212, 175, 55, 0.5);
    --glow-blue: 0 0 40px rgba(37, 99, 235, 0.4);
    --shadow-luxury: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ========================================
   GLOBAL STYLES & RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-secondary);
    background: radial-gradient(ellipse at top, var(--deep-navy) 0%, var(--midnight-blue) 40%, var(--bg-primary) 100%);
    background-attachment: fixed;
    font-size: 16px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Holographic Network Canvas */
#holographic-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

main {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

h4 {
    font-size: 1.5rem;
}

/* ========================================
   ALERTS & NOTIFICATIONS - ENHANCED
======================================== */

.alert-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 9999;
    max-width: 420px;
    width: 100%;
}

.alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 16px;
    border: 1px solid;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    animation: slideInRight 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.alert::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: currentColor;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

.alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
    font-weight: bold;
}

.alert-content {
    flex: 1;
}

.alert-message {
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-close {
    background: none;
    border: none;
    color: currentColor;
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    opacity: 0.6;
    flex-shrink: 0;
}

.alert-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.15) 100%);
    color: var(--jade);
    border-color: var(--emerald);
}

.alert-success .alert-icon {
    background: rgba(16, 185, 129, 0.2);
    color: var(--emerald);
}

.alert-info {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(96, 165, 250, 0.15) 100%);
    color: var(--sky-glow);
    border-color: var(--azure);
}

.alert-info .alert-icon {
    background: rgba(37, 99, 235, 0.2);
    color: var(--azure);
}

.alert-warning {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(201, 162, 39, 0.15) 100%);
    color: var(--champagne);
    border-color: var(--luxury-gold);
}

.alert-warning .alert-icon {
    background: rgba(212, 175, 55, 0.2);
    color: var(--luxury-gold);
}

.alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(248, 113, 113, 0.15) 100%);
    color: #fca5a5;
    border-color: #ef4444;
}

.alert-error .alert-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

@media (max-width: 768px) {
    .alert-container {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

/* ========================================
/* ========================================
   ANNOUNCEMENT BAR
======================================== */
.announcement-bar {
    background: linear-gradient(90deg, #0a1628 0%, #0f1f47 50%, #0a1628 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.55rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(250, 249, 245, 0.75);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1001;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
}

.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.announcement-item svg {
    stroke: var(--luxury-gold);
    flex-shrink: 0;
    opacity: 0.85;
}

.announcement-item strong {
    color: var(--luxury-gold);
    font-weight: 600;
}

.announcement-dot {
    color: rgba(212, 175, 55, 0.35);
    font-size: 1.1rem;
    line-height: 1;
}

/* ========================================
/* ========================================
   SHIPPING TRUST STRIP
======================================== */
.shipping-trust-strip {
    background: linear-gradient(135deg,
        rgba(10, 22, 40, 0.85) 0%,
        rgba(15, 35, 70, 0.9) 50%,
        rgba(10, 22, 40, 0.85) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding: 2rem 1rem;
    margin-bottom: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.shipping-trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.st-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.6rem 2.5rem;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.st-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.st-icon svg {
    stroke: var(--luxury-gold);
}

.st-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.st-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Poppins', 'Inter', sans-serif;
}

.st-text span {
    font-size: 0.78rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.st-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.15);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .announcement-dot { display: none; }
    .announcement-inner { flex-direction: column; gap: 0.3rem; }
    .st-divider { display: none; }
    .st-item { min-width: 160px; padding: 0.5rem 1rem; }
}

/* ========================================
/* ========================================
   NAVIGATION - ENHANCED PREMIUM DESIGN
======================================== */

nav {
    background: linear-gradient(135deg, 
        rgba(10, 22, 40, 0.2) 0%, 
        rgba(15, 31, 71, 0.15) 50%,
        rgba(10, 22, 40, 0.2) 100%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    backdrop-filter: blur(20px) saturate(150%);
    color: var(--text-primary);
    padding: 1rem 0;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(212, 175, 55, 0.2) inset,
        0 -1px 0 rgba(212, 175, 55, 0.05) inset;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

nav::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--luxury-gold) 50%, 
        transparent 100%);
    opacity: 0.3;
    filter: blur(2px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: transparent;
}

.brand-content {
    display: flex;
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-text > span {
    background: linear-gradient(
        90deg,
        var(--text-primary) 0%,
        var(--text-primary) 30%,
        var(--luxury-gold) 50%,
        var(--text-primary) 70%,
        var(--text-primary) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 8s linear infinite;
}

.nav-brand a {
    text-decoration: none;
    background: transparent !important;
    padding: 0;
}

.logo-image {
    height: 90px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    background: none;
    display: block;
}

.logo-image:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.nav-brand h1 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-brand h1 a:hover {
    color: var(--luxury-gold);
    text-shadow: var(--glow-gold);
    transform: translateY(-2px);
}

.nav-brand h1 a:hover .logo-image {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.nav-brand h1 a:hover {
    color: var(--luxury-gold);
    text-shadow: var(--glow-gold);
    margin-top: 0;
    transform: translateY(-2px);
}

.nav-tagline {
    font-size: 0.7rem;
    color: #b0b5bf;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-left: 0;
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--luxury-gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
}

.nav-menu li a span {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.15) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.nav-menu li a:hover::before {
    left: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.nav-menu li a:hover span {
    transform: scale(1.2);
}

.nav-menu li a.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Cart Link Special Styling */
.cart-link {
    position: relative;
    padding-right: 2.5rem !important;
}

.cart-icon {
    font-size: 1.2rem !important;
}

.cart-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--rich-gold) 100%);
    color: var(--midnight-blue);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Navigation */
@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        flex-direction: column;
        background: linear-gradient(180deg, 
            rgba(10, 22, 40, 0.98) 0%, 
            rgba(15, 31, 71, 0.98) 100%);
        -webkit-backdrop-filter: blur(25px);
        backdrop-filter: blur(25px);
        padding: 6rem 2rem 2rem;
        gap: 0.5rem;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-left: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.5rem;
    }
    
    .nav-tagline {
        font-size: 0.65rem;
        padding-left: 2.75rem;
    }
    
    .nav-brand h1 a {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 a {
        font-size: 1.25rem;
    }
    
    .nav-tagline {
        display: none;
    }
}

/* ========================================
   HERO SECTION - LUXURY GRADIENT
======================================== */

.hero {
    background: linear-gradient(135deg, 
        var(--deep-navy) 0%,
        var(--royal-blue) 35%,
        var(--midnight-blue) 65%,
        var(--bg-secondary) 100%);
    position: relative;
    color: var(--text-primary);
    text-align: center;
    padding: 8rem 3rem;
    border-radius: 24px;
    margin-bottom: 5rem;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    animation: heroPulse 12s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: var(--platinum);
    font-weight: 400;
}

.btn-hero {
    position: relative;
    z-index: 10;
}

/* Pulsing animation for hero section */
@keyframes heroPulse {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 60px rgba(212, 175, 55, 0.1),
            inset 0 0 100px rgba(255, 255, 255, 0.03);
    }
    50% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 100px rgba(212, 175, 55, 0.3),
            inset 0 0 150px rgba(255, 255, 255, 0.08);
    }
}

/* Sunray 1 - Center */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 55%;
    width: 15%;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.5) 3%,
        rgba(255, 250, 205, 0.4) 8%,
        rgba(255, 245, 180, 0.3) 15%,
        rgba(255, 235, 150, 0.2) 25%,
        rgba(255, 220, 120, 0.12) 40%,
        rgba(240, 200, 100, 0.08) 60%,
        rgba(220, 180, 80, 0.04) 80%,
        transparent 100%
    );
    transform: translateX(-50%) rotate(-15deg);
    transform-origin: top center;
    filter: blur(25px);
    animation: sunRayFlicker 10s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

/* Sunray 2 - Left */
.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 15%;
    width: 12%;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 250, 210, 0.4) 5%,
        rgba(255, 240, 180, 0.3) 15%,
        rgba(255, 225, 140, 0.2) 30%,
        rgba(240, 200, 100, 0.1) 50%,
        rgba(220, 180, 80, 0.05) 70%,
        transparent 100%
    );
    transform: rotate(-20deg);
    transform-origin: top right;
    filter: blur(45px);
        transparent 100%
    );
    transform: translateX(-50%) rotate(-25deg);
    transform-origin: top center;
    filter: blur(30px);
    animation: sunRayFlicker 11s ease-in-out infinite 2s;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

/* Animation for sunrays - Enhanced Blinking */
@keyframes sunRayFlicker {
    0% {
        opacity: 0.3;
        filter: blur(35px) brightness(1.1);
    }
    15% {
        opacity: 0.95;
        filter: blur(18px) brightness(1.3);
    }
    30% {
        opacity: 0.5;
        filter: blur(30px) brightness(1.15);
    }
    45% {
        opacity: 1;
        filter: blur(15px) brightness(1.4);
    }
    60% {
        opacity: 0.65;
        filter: blur(28px) brightness(1.2);
    }
    75% {
        opacity: 0.9;
        filter: blur(20px) brightness(1.35);
    }
    90% {
        opacity: 0.55;
        filter: blur(32px) brightness(1.1);
    }
    100% {
        opacity: 0.3;
        filter: blur(35px) brightness(1.1);
    }
}

/* Additional Sunrays using Box Shadow Technique */
.hero h2::before {
    display: none;
}

.hero h2::after {
    display: none;
}

.hero h2 span::before {
    display: none;
}

.hero h2 span::after {
    display: none;
}

.hero p {
    display: none;
}

/* Additional Sunrays - Right Side */
.hero p::before {
    display: none;
}

/* Additional Sunrays - Far Right */
.hero p::after {
    display: none;
}

/* Floating Light Particles Effect */
.hero .btn-primary {
    position: relative;
    z-index: 10;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 100px;
    height: 800px;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 2%) 20% 90%,
        radial-gradient(circle, rgba(255, 248, 200, 0.9) 0%, transparent 2%) 80% 70%,
        radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, transparent 2%) 45% 85%,
        radial-gradient(circle, rgba(255, 245, 180, 0.8) 0%, transparent 2%) 65% 95%,
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 2%) 35% 75%,
        radial-gradient(circle, rgba(255, 250, 200, 0.9) 0%, transparent 2%) 55% 80%,
        radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, transparent 2%) 75% 92%;
    background-size: 100% 100%;
    animation: particlesFloat 15s ease-in-out infinite;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes particlesFloat {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-800px);
    }
}

/* ========================================
   BUTTONS - PREMIUM INTERACTIONS
======================================== */

/* ========================================
   BUTTONS - PREMIUM INTERACTIONS
======================================== */

.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    overflow: hidden;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn::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:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--rich-gold) 100%);
    color: var(--midnight-blue);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--champagne) 0%, var(--luxury-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--luxury-gold);
    border: 2px solid var(--luxury-gold);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover {
    background: var(--luxury-gold);
    color: var(--midnight-blue);
    border-color: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-large {
    padding: 1.5rem 4rem;
    font-size: 1.15rem;
}

/* ========================================
   PRODUCT SECTIONS
======================================== */

.featured-products {
    display: none;
}

.featured-section {
    margin: 6rem 0;
}

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

.featured-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.featured-footer {
    text-align: center;
    margin-top: 4rem;
}

.featured-products h3,
h2 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.02em;
}

.featured-products h3::after,
h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--luxury-gold) 50%, 
        transparent 100%);
    margin: 1.5rem auto 0;
    box-shadow: var(--glow-gold);
}

/* ========================================
   PRODUCTS PAGE - ENHANCED LAYOUT
======================================== */

.products-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.products-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3.5rem;
    margin: 4rem 0;
}

.product-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--azure) 0%, 
        var(--luxury-gold) 50%, 
        var(--emerald) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

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

.product-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 28px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.3);
    border-color: var(--luxury-gold);
}

.product-image-wrapper {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: transparent;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.product-image-link:hover .placeholder-image-enhanced {
    opacity: 0.85;
}
.product-image-link:hover .product-image {
    transform: none;
}

.product-image {
    width: auto;
    height: 113%;
    max-width: 100%;
    object-fit: scale-down;
    object-position: center;
    padding: 0;
    display: block;
    margin: 0 auto;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: none;
}

.placeholder-image-enhanced {
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-image-enhanced::before {
    content: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    height: 85%;
    border: 2px solid var(--luxury-gold);
    border-radius: 15%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    animation: float-rotate 30s linear infinite;
}

@keyframes float-rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    color: var(--luxury-gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    position: relative;
    z-index: 2;
    animation: bounce-icon 3s ease-in-out infinite;
}

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

.placeholder-text {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--luxury-gold);
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
    position: relative;
    z-index: 2;
}

.product-content {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.product-name-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--luxury-gold);
    line-height: 1.35;
    margin: 0;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.04em;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
}

.product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
}

.product-price-section {
    flex: 1;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--luxury-gold) 0%, 
        var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
    font-variant-numeric: tabular-nums;
}

.product-stock-section {
    display: flex;
    align-items: center;
}

.stock-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    white-space: nowrap;
}

.stock-badge.in-stock {
    color: var(--jade);
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.stock-badge.out-of-stock {
    color: #f87171;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.stock-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.stock-badge.in-stock .stock-dot {
    background: var(--jade);
}

.stock-badge.out-of-stock .stock-dot {
    background: #f87171;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.product-actions {
    margin-top: auto;
}

.add-cart-form {
    margin: 0;
}

.btn-add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-add-cart:not(:disabled):hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.btn-add-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-added {
    background: linear-gradient(135deg, #2d7a4f, #3a9e64) !important;
    border-color: #3a9e64 !important;
    box-shadow: 0 0 20px rgba(58, 158, 100, 0.35) !important;
}

/* Spin animation for loading state */
@keyframes spin {
    to { transform: rotate(360deg); }
}
.spin { animation: spin 0.7s linear infinite; }

/* ── Mini Cart Popup ──────────────────────────────────────── */
.mcp-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
}
.mcp-overlay.open {
    display: block;
}

.mcp-panel {
    position: fixed;
    z-index: 9999;
    width: 280px;
    pointer-events: all;
    background: linear-gradient(145deg, rgba(10, 22, 45, 0.97), rgba(6, 14, 30, 0.97));
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.08), 0 0 40px rgba(212, 175, 55, 0.04);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: scale(0.92) translateY(-6px);
    transition: opacity 0.25s ease, transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.mcp-overlay.visible .mcp-panel {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Arrow pointer */
.mcp-arrow {
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
}
.mcp-arrow.arrow-bottom {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid rgba(212, 175, 55, 0.35);
}
.mcp-arrow.arrow-bottom::after {
    content: '';
    position: absolute;
    left: -8px; top: -11px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(6, 14, 30, 0.97);
}
.mcp-arrow.arrow-top {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid rgba(212, 175, 55, 0.35);
}
.mcp-arrow.arrow-top::after {
    content: '';
    position: absolute;
    left: -8px; top: 2px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(10, 22, 45, 0.97);
}

/* Header */
.mcp-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem 0.7rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.mcp-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    background: rgba(58, 158, 100, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(58, 158, 100, 0.4);
    flex-shrink: 0;
}
.mcp-header-icon svg { stroke: #3a9e64; }
.mcp-header-text {
    flex: 1;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--luxury-gold);
    text-transform: uppercase;
}
.mcp-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px;
    display: flex;
    align-items: center;
    color: rgba(250, 249, 245, 0.45);
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
}
.mcp-close:hover { color: rgba(250, 249, 245, 0.9); background: rgba(255,255,255,0.05); }

/* Product name */
.mcp-product {
    padding: 0.75rem 1rem 0;
}
.mcp-product-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(250, 249, 245, 0.85);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Quantity row */
.mcp-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1rem 0.5rem;
}
.mcp-qty-label {
    font-size: 0.78rem;
    color: rgba(250, 249, 245, 0.5);
    letter-spacing: 0.02em;
}
.mcp-qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 8px;
    overflow: hidden;
}
.mcp-qty-btn {
    background: rgba(212, 175, 55, 0.07);
    border: none;
    color: var(--luxury-gold);
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.18s;
}
.mcp-qty-btn:hover { background: rgba(212, 175, 55, 0.18); }
.mcp-qty-display {
    min-width: 32px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    line-height: 30px;
    transition: opacity 0.15s;
}
.mcp-qty-spin { opacity: 0.35; }

/* Actions */
.mcp-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.65rem 1rem 1rem;
}
.mcp-btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
    background: linear-gradient(135deg, var(--luxury-gold), #b8940a);
    color: #0a0a12;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: filter 0.2s, transform 0.15s;
}
.mcp-btn-checkout:hover { filter: brightness(1.1); transform: translateY(-1px); }
.mcp-btn-continue {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: rgba(250, 249, 245, 0.6);
    font-size: 0.78rem;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.mcp-btn-continue:hover { color: rgba(250, 249, 245, 0.9); border-color: rgba(212, 175, 55, 0.5); }

.btn-icon {
    width: 20px;
    height: 20px;
}

.no-products-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.no-products-message p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* ========================================
   PRODUCT DETAIL PAGE - ENHANCED
======================================== */

.product-detail-container {
    position: relative;
    z-index: 1;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.4s ease;
}

.back-link:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.back-link svg {
    width: 18px;
    height: 18px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

.product-detail-media {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
    position: sticky;
    top: 120px;
}

.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.product-detail-media:hover .product-detail-image {
    transform: none;
}

.placeholder-detail-image {
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-detail-image::before {
    content: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 70%;
    border: 3px solid var(--luxury-gold);
    border-radius: 20%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation: float-rotate 30s linear infinite;
}

.placeholder-detail-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    color: var(--luxury-gold);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    position: relative;
    z-index: 2;
    animation: bounce-icon 3s ease-in-out infinite;
}

.placeholder-detail-text {
    font-size: 5rem;
    font-weight: 900;
    color: var(--luxury-gold);
    font-family: 'Cinzel', serif;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
    position: relative;
    z-index: 2;
}

.product-detail-info {
    padding: 2rem;
}

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

.detail-header h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    line-height: 1.2;
}

.detail-category {
    display: inline-block;
    background: linear-gradient(135deg, 
        var(--luxury-gold) 0%, 
        var(--rich-gold) 100%);
    color: var(--midnight-blue);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.detail-pricing {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.price-label-detail {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    font-weight: 700;
    min-width: 80px;
}

.product-price-detail {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        var(--luxury-gold) 0%, 
        var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin: 0;
    font-variant-numeric: tabular-nums;
}

.detail-stock {
    margin-bottom: 2rem;
}

.stock-badge-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 50px;
}

.stock-badge-detail.in-stock {
    color: var(--jade);
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.stock-badge-detail.out-of-stock {
    color: #f87171;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
}

.detail-description {
    margin-bottom: 3rem;
}

.detail-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.detail-description p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: none;
}

.detail-coa {
    margin-bottom: 3rem;
}

.detail-coa h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.coa-link {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(10, 22, 40, 0.5);
    transition: border-color 0.3s ease;
}

.coa-link:hover {
    border-color: var(--luxury-gold);
}

.coa-image {
    width: 100%;
    height: auto;
    display: block;
}

.coa-file-name {
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    word-break: break-word;
}

.detail-add-to-cart {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quantity-selector label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.quantity-input {
    width: 80px;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s ease;
}

.quantity-input:hover,
.quantity-input:focus {
    border-color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.1);
    outline: none;
}

.btn-detail-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 0.05em;
    height: 56px;
}

.btn-detail-cart:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

.out-of-stock-detail {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-detail-media {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .detail-header h1 {
        font-size: 2rem;
    }

    .product-price-detail {
        font-size: 2.5rem;
    }

    .detail-add-to-cart {
        flex-direction: column;
    }

    .btn-detail-cart {
        width: 100%;
    }
}

/* ========================================
   INFO CARDS & FEATURES
======================================== */

.info-section {
    margin: 8rem 0;
}

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

.info-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

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

.info-card {
    background: linear-gradient(145deg, 
        var(--bg-card) 0%, 
        var(--bg-elevated) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--luxury-gold);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
    animation: bounce-icon 3s ease-in-out infinite;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--azure) 0%, 
        var(--luxury-gold) 50%, 
        var(--emerald) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.info-card:hover::before {
    transform: translateX(0);
}

.info-card:hover {
    transform: translateY(-12px);
    border-color: var(--luxury-gold);
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.3);
}

.info-card h4 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ========================================
   CART PAGE ENHANCED - UNIFIED LAYOUT
======================================== */

.cart-container-unified {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.cart-page-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.cart-page-header .header-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(37, 99, 235, 0.15));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.cart-page-header .header-icon svg {
    stroke: var(--luxury-gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

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

.cart-page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--glow-gold);
    margin-bottom: 0.5rem;
}

.cart-page-header .page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.cart-table-wrapper {
    margin-bottom: 2rem;
    max-height: 65vh;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-luxury);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
}

.cart-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--luxury-gold));
    animation: shimmer 3s infinite;
    z-index: 11;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(37, 99, 235, 0.05));
    position: sticky;
    top: 0;
    z-index: 10;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.cart-table thead tr {
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.cart-table th {
    padding: 1.5rem 1.5rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.cart-table th:last-child {
    width: 50px;
}

.cart-table tbody tr {
    transition: all 0.3s ease;
    position: relative;
}

.cart-table tbody tr::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
}

.cart-table tbody tr:last-child::after {
    display: none;
}

.cart-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.03), rgba(37, 99, 235, 0.02), rgba(212, 175, 55, 0.03));
    transform: scale(1.005);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.cart-row td {
    padding: 1.5rem 1.5rem;
    vertical-align: middle;
    border: none;
}

.cart-cell-product {
    width: 45%;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Custom scrollbar for cart items */
.cart-table-wrapper::-webkit-scrollbar {
    width: 8px;
}

.cart-table-wrapper::-webkit-scrollbar-track {
    background: rgba(17, 24, 39, 0.3);
    border-radius: 10px;
}

.cart-table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    border-radius: 10px;
}

.cart-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--luxury-gold);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(37, 99, 235, 0.08));
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.cart-table tbody tr:hover .cart-item-image {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image svg {
    stroke: var(--luxury-gold);
    opacity: 0.3;
}

.product-name {
    flex: 1;
}

.product-name a {
    color: var(--luxury-gold);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    line-height: 1.3;
}

.product-name a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--champagne));
    transition: width 0.3s ease;
}

.product-name a:hover {
    color: var(--luxury-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.product-name a:hover::after {
    width: 100%;
}

.cart-cell-description {
    display: none;
}

.cart-product-category {
    display: inline-block;
    margin-top: 0.3rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.6;
}

.cart-cell-price {
    color: var(--luxury-gold);
    font-size: 1.05rem;
    font-weight: 700;
    width: 12%;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.cart-table tbody tr:hover .cart-cell-price {
    color: var(--champagne);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.cart-cell-quantity {
    width: 8%;
}

.quantity-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.85rem;
    background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--luxury-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cart-table tbody tr:hover .quantity-badge {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.cart-cell-subtotal {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 15%;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.cart-table tbody tr:hover .cart-cell-subtotal {
    font-size: 1.35rem;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
}

.cart-cell-remove {
    text-align: center;
}

.remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.remove-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.remove-btn:hover::before {
    width: 100px;
    height: 100px;
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.remove-btn svg {
    position: relative;
    z-index: 1;
}

.cart-summary-bottom {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(212, 175, 55, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cart-summary-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--luxury-gold));
    animation: shimmer 3s infinite;
}

.summary-details {
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.summary-row:hover {
    color: var(--text-primary);
    padding-left: 0.5rem;
}

.shipping-free {
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: inline-block;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.summary-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.5) 50%, transparent 100%);
    margin: 1.5rem 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.summary-total span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-total {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--luxury-gold);
    font-family: 'Inter', sans-serif;
}

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

.cart-actions {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 18px 32px;
    position: relative;
    overflow: hidden;
}

.btn-checkout svg {
    transition: transform 0.3s ease;
}

.btn-checkout:hover svg {
    transform: translateX(5px);
}

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

.btn-checkout:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 24px;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--luxury-gold);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.payment-methods {
    padding-top: 2rem;
    margin-top: 1.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.payment-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(250, 249, 245, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.payment-icons svg {
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    opacity: 0.85;
}

.payment-icons svg:hover {
    transform: translateY(-2px);
    opacity: 1;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.25));
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    color: rgba(250, 249, 245, 0.45);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.security-badge svg {
    stroke: #3a9e64;
    flex-shrink: 0;
    opacity: 0.85;
}

.footer-payment {
    width: min(900px, 100%);
    margin: 0 auto 2rem;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(15, 31, 71, 0.35) 0%, rgba(17, 24, 39, 0.6) 100%);
    box-shadow: var(--shadow-card);
}

.footer-payment-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.footer-payment-title {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    color: var(--luxury-gold);
    font-weight: 600;
}

.footer-payment-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.payment-card {
    position: relative;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.payment-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--luxury-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.payment-card-icon svg {
    width: 22px;
    height: 22px;
}

.payment-card-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.payment-card-note {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.payment-security {
    margin-top: 1.25rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.payment-security svg {
    width: 18px;
    height: 18px;
    stroke: var(--luxury-gold);
    flex-shrink: 0;
}

.empty-cart {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-luxury);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 3rem auto;
    position: relative;
    overflow: hidden;
}

.empty-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--luxury-gold));
    animation: shimmer 3s infinite;
}

.empty-cart-icon {
    margin-bottom: 2rem;
    display: inline-block;
}

.empty-cart-icon svg {
    stroke: var(--luxury-gold);
    opacity: 0.8;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    animation: float 3s ease-in-out infinite;
}

.empty-cart h2 {
    margin: 0 0 1rem 0;
    color: var(--luxury-gold);
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.empty-cart p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .cart-page-header .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .cart-page-header .header-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .cart-page-header h1 {
        font-size: 2rem;
    }
    
    .cart-table-wrapper {
        border-radius: 16px;
        max-height: 50vh;
    }
    
    .cart-table th {
        padding: 1rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .cart-row td {
        padding: 1rem 0.75rem;
    }
    
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    .product-info {
        gap: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-name a {
        font-size: 0.9rem;
    }
    
    .cart-cell-description {
        font-size: 0.75rem;
    }
    
    .cart-cell-price {
        font-size: 0.95rem;
    }
    
    .quantity-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .cart-cell-subtotal {
        font-size: 1.1rem;
    }
    
    .remove-btn {
        width: 32px;
        height: 32px;
    }
    
    .remove-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .cart-summary-bottom {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .summary-total span:first-child {
        font-size: 1.3rem;
    }
    
    .cart-total {
        font-size: 1.5rem;
    }
    
    .cart-actions {
        grid-template-columns: 1fr;
    }
    
    .empty-cart {
        padding: 3rem 1.5rem;
    }
    
    .empty-cart h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   CART PAGE OLD STYLES
======================================== */

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.cart-items-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cart-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.cart-item:hover::before {
    opacity: 1;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(37, 99, 235, 0.1));
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.05);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.cart-item-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-name a:hover {
    color: var(--luxury-gold);
}

.cart-item-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.cart-item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--luxury-gold);
}

.cart-item-separator {
    color: var(--text-muted);
    font-size: 1.2rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-elevated);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--luxury-gold);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: scale(1.1);
}

.quantity-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-item-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.subtotal-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subtotal-amount {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-remove {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    transform: scale(1.05);
}

.cart-summary {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.shipping-free {
    color: #10b981;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    margin: 1rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.summary-total span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-total {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--luxury-gold);
    font-family: 'Inter', sans-serif;
}

.btn-checkout {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.05rem;
    padding: 16px 32px;
}

.btn-checkout svg {
    transition: transform 0.3s ease;
}

.btn-checkout:hover svg {
    transform: translateX(5px);
}

.payment-methods {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.payment-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    opacity: 0.6;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    max-width: 500px;
    margin: 3rem auto;
}

.empty-cart-icon {
    margin-bottom: 1.5rem;
}

.empty-cart-icon svg {
    stroke: var(--luxury-gold);
    opacity: 0.5;
}

.empty-cart h2 {
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.empty-cart p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-subtotal {
        grid-column: 2;
        align-items: flex-start;
        margin-top: 1rem;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

/* ========================================
   TABLES & CART (OLD - KEEPING FOR REFERENCE)
======================================== */

.cart-table {
    width: 100%;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    margin-bottom: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-collapse: collapse;
}

.cart-table th {
    /* background removed - using unified header styling above */
    color: var(--text-primary);
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    border: none;
}

.cart-table td {
    padding: 1.5rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-table tr:hover {
    background-color: rgba(37, 99, 235, 0.05);
}

.cart-summary {
    background: linear-gradient(145deg, 
        var(--bg-card) 0%, 
        var(--bg-elevated) 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: right;
}

.cart-total {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--luxury-gold);
    font-family: 'Inter', sans-serif;
}

/* ========================================
   FORMS
======================================== */

.checkout-form {
    background: linear-gradient(145deg, 
        var(--bg-card) 0%, 
        var(--bg-elevated) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Checkout Page Header */
.checkout-page {
    animation: fadeInPage 0.6s ease-out;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.checkout-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Form Sections */
.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    animation: slideUpForm 0.5s ease-out backwards;
}

.form-section:nth-child(1) {
    animation-delay: 0.1s;
}

.form-section:nth-child(2) {
    animation-delay: 0.2s;
}

.form-section:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.25);
}

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

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

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--deep-gold) 100%);
    color: var(--bg-primary);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.section-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--luxury-gold);
    letter-spacing: 0.03em;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: capitalize;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    background-color: var(--bg-elevated);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15), inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

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

.form-row.three-col {
    grid-template-columns: 1fr 0.8fr 0.8fr;
}

/* Payment Notice */
.payment-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(106, 155, 204, 0.1) 0%, rgba(106, 155, 204, 0.05) 100%);
    border: 1px solid rgba(106, 155, 204, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.payment-notice svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-notice p {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* PayPal Payment Container */
#paypal-button-container {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Payment Footer */
.payment-footer {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.payment-footer .powered-by {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.payment-footer .powered-by strong {
    color: #0070ba;
    font-weight: 600;
}

/* Order Summary Sidebar */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
}

.order-summary {
    background: var(--bg-card);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.order-summary h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--luxury-gold);
    letter-spacing: 0.03em;
    margin: 0 0 1.5rem 0;
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.summary-row.total {
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-row.total span:last-child {
    color: var(--luxury-gold);
}

/* Order Summary Cart Items */
.summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.summary-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.summary-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.summary-item-qty {
    font-size: 0.78rem;
    color: var(--text-secondary);
    opacity: 0.75;
}

.summary-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.summary-divider {
    height: 1px;
    background: rgba(212, 175, 55, 0.15);
    margin: 0.25rem 0;
}

/* ── Free Shipping Progress Bar (shared: cart + checkout) ──────────────── */
.free-shipping-banner {
    background: rgba(106, 155, 204, 0.07);
    border: 1px solid rgba(106, 155, 204, 0.18);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.free-shipping-achieved {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #a8c97a;
    font-weight: 500;
}

.free-shipping-achieved .fs-icon,
.free-shipping-progress-wrap .fs-icon {
    font-size: 1.2rem;
}

.free-shipping-progress-wrap .fs-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.fs-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.fs-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6a9bcc, #d97757);
    border-radius: 999px;
    transition: width 0.4s ease;
    min-width: 4px;
}

.fs-bar-ends {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.65;
    margin-top: 0.3rem;
}

/* Checkout sidebar variant */
.checkout-fs-banner {
    margin-bottom: 1.25rem;
}

.checkout-fs-achieved {
    font-size: 0.88rem;
    color: #a8c97a;
    font-weight: 500;
    background: rgba(168, 201, 122, 0.08);
    border: 1px solid rgba(168, 201, 122, 0.2);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    text-align: center;
}

.checkout-fs-progress {
    background: rgba(106, 155, 204, 0.07);
    border: 1px solid rgba(106, 155, 204, 0.15);
    border-radius: 10px;
    padding: 0.85rem 1rem;
}

.checkout-fs-label {
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin: 0 0 0.55rem;
}

.shipping-cost {
    color: #f0a070;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .form-actions .btn {
        min-width: 100%;
    }
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0 2rem 0;
}

.form-actions .btn {
    min-width: 320px;
    text-align: center;
}

.btn-text {
    display: inline;
}

.btn-icon {
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* Form Footer */
.form-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.back-link {
    font-family: 'Lora', Georgia, serif;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-link:hover {
    color: var(--luxury-gold);
    transform: translateX(-4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-header h2 {
        font-size: 2rem;
    }
    
    .checkout-form {
        padding: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        gap: 0.75rem;
    }
    
    .section-header h3 {
        font-size: 1.25rem;
    }
    
    .form-actions .btn {
        min-width: 100%;
    }
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   PRIVACY POLICY
======================================== */

.policy-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.policy-section {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border-radius: 18px;
    padding: 2.5rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-card);
}

.policy-section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.policy-list {
    margin-top: 1rem;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    display: grid;
    gap: 0.85rem;
}

.policy-list li {
    line-height: 1.7;
}

/* ========================================
   FAQ
======================================== */

.faq-container {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border-radius: 18px;
    padding: 2rem 2.25rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-luxury);
}

.faq-card h2 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.faq-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ========================================
   RESEARCH REFERENCES
======================================== */

.research-section {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.research-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.research-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.research-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    margin: 1rem auto 0;
}

.research-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.research-list {
    display: grid;
    gap: 1.5rem;
}

.research-item {
    background: linear-gradient(145deg, rgba(15, 31, 71, 0.4) 0%, rgba(17, 24, 39, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.research-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.research-item:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.research-item:hover::before {
    opacity: 1;
}

.research-meta {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.research-item h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.research-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.research-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.4rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.research-link::after {
    content: '→';
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.research-link:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

.research-link:hover::after {
    transform: translateX(4px);
}

footer {
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        var(--midnight-blue) 50%,
        var(--bg-primary) 100%);
    color: var(--text-muted);
    text-align: left;
    padding: 3.5rem 0 2.5rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--luxury-gold) 50%, 
        transparent 100%);
    opacity: 0.5;
}

.footer-shell {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) repeat(3, minmax(140px, 1fr));
    gap: 1.5rem;
    align-items: start;
    position: relative;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-brand-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 0;
    margin-top: 0;
    line-height: 1.2;
}

.footer-brand-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    margin-top: 0;
    line-height: 1.2;
}

.footer-logo {
    width: 168px;
    height: 55px;
    margin-bottom: 0.2rem;
    object-fit: fill;
    filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.2));
    display: block;
}

.footer-payments-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--sky-glow);
    margin-bottom: 0.3rem;
    margin-top: 0.2rem;
}

.footer-payment-icons {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.payment-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.65rem;
    border-radius: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(15, 23, 42, 0.6);
    color: var(--text-secondary);
    white-space: nowrap;
}

.payment-pill svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
}

.payment-visa {
    background: #1434cb;
    color: #ffffff;
    border-color: rgba(20, 52, 203, 0.8);
}

.payment-mastercard {
    background: #111827;
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.4);
}

.payment-paypal {
    background: #f9fafb;
    color: #1e3a8a;
    border-color: rgba(30, 58, 138, 0.4);
}

.payment-lock {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
    margin-left: 8rem;
}

.footer-col-title {
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--luxury-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    padding-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@keyframes goldShimmer {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 968px) {
    nav .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero {
        padding: 5rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero {
        padding: 3.5rem 1.5rem;
        border-radius: 16px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1.25rem 2.5rem;
    }
    
    nav h1 a {
        font-size: 1.5rem;
    }
    
    .featured-header h2 {
        font-size: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-top: 1.25rem;
        gap: 1.25rem;
    }

    .footer-payment-icons {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   ANIMATIONS & UTILITIES
======================================== */

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

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

/* Smooth scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        var(--luxury-gold) 0%, 
        var(--rich-gold) 100%);
    border-radius: 6px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        var(--champagne) 0%, 
        var(--luxury-gold) 100%);
}
/* ========================================
   AUTHENTICATION PAGES (LOGIN & SIGNUP)
======================================== */

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
}

.auth-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-luxury);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.auth-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--luxury-gold));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 10px;
    text-shadow: var(--glow-gold);
}

.auth-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    background: var(--bg-card);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.auth-footer p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-footer a:hover {
    color: var(--champagne);
    text-shadow: var(--glow-gold);
}

/* User greeting in nav */
.user-greeting {
    color: var(--text-secondary);
    padding: 0 15px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.btn-logout {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 8px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.btn-signup {
    background: transparent;
    color: var(--luxury-gold);
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid var(--luxury-gold);
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: var(--luxury-gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Responsive Auth Pages */
@media (max-width: 768px) {
    .auth-box {
        padding: 40px 30px;
    }
    
    .auth-header h2 {
        font-size: 2rem;
    }
    
    .user-greeting {
        display: none;
    }
}
/* ========================================
   ENHANCED SIGNUP PAGE STYLES
======================================== */

.signup-enhanced {
    max-width: 600px;
}

.auth-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.auth-icon svg {
    color: var(--luxury-gold);
    filter: drop-shadow(var(--glow-gold));
    animation: float 3s ease-in-out infinite;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label svg {
    color: var(--luxury-gold);
    opacity: 0.8;
}

.password-strength {
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

.password-strength.weak {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.password-strength.medium {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.password-strength.strong {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.password-requirements {
    background: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 15px 20px;
    margin: -10px 0 10px 0;
}

.password-requirements p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.btn-signup-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 16px 32px;
    position: relative;
    overflow: hidden;
}

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

.btn-signup-submit:hover svg {
    transform: translateX(5px);
}

.btn-signup-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-signup-submit:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsive adjustments for enhanced signup */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   LOGIN PAGE - ORGANIZATION FIXES
======================================== */

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form .form-group {
    margin-bottom: 0;
}

.alerts-wrapper {
    margin-bottom: 20px;
}

.input-hint-wrapper {
    margin: -15px 0 5px 0;
}

.input-hint {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--luxury-gold);
    border-radius: 8px;
}

.input-hint svg {
    color: var(--luxury-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.input-hint span {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.password-input-wrapper {
    position: relative;
    width: 100%;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border-radius: 6px;
}

.toggle-password:hover {
    color: var(--luxury-gold);
    background: rgba(212, 175, 55, 0.1);
}

.toggle-password:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -5px 0 5px 0;
    padding: 0 2px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.9rem;
    -webkit-user-select: none;
    user-select: none;
}

.remember-me:hover {
    color: var(--text-primary);
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--luxury-gold);
    border-radius: 4px;
}

.forgot-password {
    color: var(--luxury-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.forgot-password:hover {
    color: var(--champagne);
    background: rgba(212, 175, 55, 0.1);
    text-shadow: var(--glow-gold);
}

.btn-login-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 16px 32px;
    position: relative;
    overflow: hidden;
}

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

.btn-login-submit:hover svg {
    transform: translateX(5px);
}

.btn-login-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-login-submit:hover::before {
    width: 300px;
    height: 300px;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 30px 0 25px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 50%, 
        transparent 100%);
}

.auth-divider span {
    position: relative;
    background: var(--bg-card);
    padding: 0 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Fix alert positioning */
.alert {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.alert-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .input-hint {
        font-size: 0.75rem;
    }
}


/* ========================================
   AUTH LOGO - PROPER SIZING
======================================== */

.auth-logo {
    height: 90px;
    width: auto;
    filter: drop-shadow(var(--glow-gold));
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.auth-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .auth-logo {
        height: 70px;
    }
}
/* ========================================
   CONTACT PAGE
======================================== */

.contact-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-page-header .header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.contact-page-header .header-icon svg {
    stroke: var(--luxury-gold);
}

.contact-page-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-page-header .page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--luxury-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--luxury-gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

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

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(37, 99, 235, 0.05));
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(37, 99, 235, 0.1));
    border-color: var(--luxury-gold);
    transform: scale(1.05);
}

.contact-card-icon svg {
    stroke: var(--luxury-gold);
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.contact-detail {
    font-size: 1.1rem;
    color: var(--luxury-gold);
    font-weight: 600;
    margin: 0.5rem 0;
}

.contact-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-section {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--luxury-gold));
    animation: shimmer 3s infinite;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-form-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--bg-elevated);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--luxury-gold);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

/* ── Contact Success Panel ── */
.contact-success-panel {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease forwards;
}

.contact-success-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), #4ade80, var(--luxury-gold));
    animation: shimmer 3s infinite;
}

.contact-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.12), rgba(212, 175, 55, 0.08));
    border: 2px solid rgba(74, 222, 128, 0.4);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: popIn 0.4s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.contact-success-icon svg {
    stroke: #4ade80;
    filter: drop-shadow(0 0 8px rgba(74, 222, 128, 0.5));
}

.contact-success-panel h2 {
    font-size: 2.2rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.contact-success-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.contact-success-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 2.5rem;
}

.contact-success-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

@keyframes popIn {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

@media (max-width: 768px) {
    .contact-page-header h1 {
        font-size: 2rem;
    }
    
    .contact-page-header .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-page-header .header-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-header h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   ABOUT PAGE
======================================== */

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

.about-page-header .header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(37, 99, 235, 0.1));
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.about-page-header .header-icon svg {
    stroke: var(--luxury-gold);
}

.about-page-header h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

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

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.about-intro h2 {
    font-size: 2rem;
    color: var(--azure);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--azure), transparent);
}

.about-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 2rem auto 0;
}

.about-features {
    margin-top: 4rem;
}

.about-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--azure);
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-features h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--azure), transparent);
}

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

.feature-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--luxury-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--luxury-gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(37, 99, 235, 0.05));
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(37, 99, 235, 0.1));
    border-color: var(--luxury-gold);
    transform: scale(1.05);
}

.feature-icon svg {
    stroke: var(--luxury-gold);
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .about-page-header h1 {
        font-size: 2rem;
    }
    
    .about-page-header .header-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-page-header .header-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .about-intro {
        padding: 0 1rem;
    }
    
    .about-intro h2 {
        font-size: 1.5rem;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .about-features h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
}

/* ========================================
   ABOUT PAGE - ENHANCED WITH SKILLS
   Applies Frontend-Design, Brand-Guidelines, 
   Theme-Factory principles for distinctive,
   production-grade experience
======================================== */

.about-hero {
    background: linear-gradient(135deg, 
        var(--deep-navy) 0%,
        var(--royal-blue) 35%,
        var(--midnight-blue) 65%,
        var(--bg-secondary) 100%);
    padding: 8rem 4rem;
    border-radius: 24px;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-luxury);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 55%;
    width: 12%;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 250, 205, 0.4) 8%,
        rgba(255, 235, 150, 0.2) 25%,
        transparent 100%
    );
    transform: translateX(-50%) rotate(-15deg);
    filter: blur(25px);
    animation: sunRayFlicker 10s ease-in-out infinite;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 15%;
    width: 10%;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 240, 180, 0.3) 15%,
        transparent 100%
    );
    transform: rotate(-20deg);
    filter: blur(45px);
    animation: sunRayFlicker 11s ease-in-out infinite 2s;
    z-index: 0;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-text {
    max-width: 600px;
}

.about-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.about-hero-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-shape-1, .hero-shape-2, .hero-shape-3 {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
    bottom: 15%;
    right: 20%;
    animation-delay: 1s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 70%);
    top: 40%;
    right: 30%;
    animation-delay: 2s;
}

.about-mission {
    margin-bottom: 6rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mission-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-primary {
    background: linear-gradient(145deg, 
        var(--bg-card) 0%, 
        var(--bg-elevated) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.mission-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--luxury-gold));
    animation: shimmer 3s infinite;
}

.mission-primary h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.mission-primary p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.mission-accent {
    position: relative;
}

.mission-accent h3 {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
}

.difference-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1.2rem;
}

.difference-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
}

.difference-bullet {
    color: var(--luxury-gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.about-values {
    background: linear-gradient(145deg, 
        rgba(15, 31, 71, 0.3) 0%, 
        rgba(17, 24, 39, 0.5) 100%);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.about-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.about-values h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3.5rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.value-item {
    background: rgba(17, 24, 39, 0.6);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.value-item:hover {
    background: rgba(17, 24, 39, 0.8);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.15);
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.value-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--luxury-gold), transparent);
    transition: width 0.3s ease;
}

.value-item:hover .value-line {
    width: 100%;
}

.value-item-1 { animation: fadeInUp 0.6s ease-out 0.1s backwards; }
.value-item-2 { animation: fadeInUp 0.6s ease-out 0.2s backwards; }
.value-item-3 { animation: fadeInUp 0.6s ease-out 0.3s backwards; }
.value-item-4 { animation: fadeInUp 0.6s ease-out 0.4s backwards; }

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

.about-features {
    margin-bottom: 6rem;
}

.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.features-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    padding: 2.5rem;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--emerald));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.2);
}

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

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

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(37, 99, 235, 0.08));
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--luxury-gold);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(37, 99, 235, 0.15));
    border-color: var(--luxury-gold);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

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

.about-cta {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, 
        rgba(15, 31, 71, 0.4) 0%,
        rgba(17, 24, 39, 0.6) 100%);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--azure), var(--luxury-gold));
    animation: shimmer 3s infinite;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--champagne) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    font-size: 1rem;
    padding: 1.25rem 2.5rem;
}

@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .values-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 2rem;
        margin-bottom: 4rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-mission {
        margin-bottom: 4rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-cta {
        padding: 2.5rem;
    }
    
    .about-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

