/* ============================================
   CHRISTMAS PAGE - VINTAGE VINYL STUDIO
   Premium Agency-Level Design
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Vintage Vinyl Studio Palette */
    --vinyl-black: #1a1410;
    --espresso: #2d241c;
    --walnut: #4a3728;
    --caramel: #8b6914;
    --amber: #d4a056;
    --cream: #f5efe6;
    --aged-paper: #ede4d3;
    --warm-white: #faf8f4;

    /* Warm Accents */
    --burnt-orange: #c75b12;
    --rust: #a13d2d;
    --mustard: #d4a32a;
    --terracotta: #c4784a;
    --olive-gold: #9c8a3c;

    /* Premium Shadows */
    --shadow-vinyl-sm: 0 4px 16px rgba(26, 20, 16, 0.15);
    --shadow-vinyl-md: 0 8px 32px rgba(26, 20, 16, 0.25);
    --shadow-vinyl-lg: 0 16px 48px rgba(26, 20, 16, 0.35);
    --shadow-vinyl-xl: 0 24px 64px rgba(26, 20, 16, 0.45);

    /* Wood Texture Gradient */
    --wood-gradient: linear-gradient(180deg, #4a3728 0%, #3d2e22 50%, #2d241c 100%);
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   CINEMATIC HERO SECTION
   ============================================ */
.christmas-hero-cinematic {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--vinyl-black) 0%, var(--espresso) 60%, var(--walnut) 100%);
}

/* Real Studio Background */
.hero-studio-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.studio-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: sepia(40%) contrast(1.15) brightness(0.8);
}

.studio-warm-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(26, 20, 16, 0.7) 0%,
        rgba(26, 20, 16, 0.85) 60%,
        rgba(26, 20, 16, 0.95) 100%
    );
}

.studio-grain-texture {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><filter id="grain"><feTurbulence baseFrequency="0.9" numOctaves="5"/></filter><rect width="400" height="400" filter="url(%23grain)" opacity="0.08"/></svg>');
    opacity: 0.7;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* Massive Spinning Vinyl Record */
.hero-vinyl-massive {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
    animation: massive-vinyl-spin 45s linear infinite;
}

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

.vinyl-disc-large {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        var(--vinyl-black) 0%,
        var(--vinyl-black) 18%,
        var(--espresso) 19%,
        var(--espresso) 40%,
        var(--walnut) 41%,
        var(--walnut) 100%
    );
    box-shadow:
        inset 0 0 120px rgba(0, 0, 0, 0.8),
        0 30px 100px rgba(0, 0, 0, 0.7);
}

.vinyl-grooves-realistic {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at center,
        transparent 0px,
        transparent 2.5px,
        rgba(212, 160, 86, 0.08) 2.5px,
        rgba(212, 160, 86, 0.08) 3px
    );
}

.vinyl-center-realistic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 35% 35%,
        var(--caramel) 0%,
        var(--caramel) 30%,
        var(--amber) 31%,
        var(--amber) 35%,
        var(--mustard) 36%,
        var(--mustard) 100%
    );
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
}

.label-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--vinyl-black);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.label-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: var(--espresso);
    letter-spacing: 0.5px;
}

.label-year {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: var(--walnut);
    font-weight: 600;
}

/* Hero Content */
.hero-content-cinematic {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Urgency Badge */
.urgency-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust) 100%);
    border-radius: 100px;
    box-shadow:
        0 8px 32px rgba(199, 91, 18, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(212, 160, 86, 0.3);
}

.urgency-badge-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: badge-shimmer 3s infinite;
}

@keyframes badge-shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.badge-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--mustard);
    box-shadow: 0 0 16px var(--mustard);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.badge-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* Hero Title */
.hero-title-massive {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.05;
    margin: 0;
    text-shadow:
        0 6px 30px rgba(0, 0, 0, 0.8),
        0 3px 12px rgba(199, 91, 18, 0.4);
    letter-spacing: -0.02em;
}

.hero-subtitle-warm {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    color: var(--aged-paper);
    max-width: 750px;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

/* Price Tag Retro */
.hero-price-vinyl {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-tag-retro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 3rem 2.5rem 3rem;
    background: linear-gradient(145deg, rgba(212, 160, 86, 0.15) 0%, rgba(199, 91, 18, 0.1) 100%);
    border: 3px solid rgba(212, 160, 86, 0.3);
    border-radius: 24px;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 2px 8px rgba(212, 160, 86, 0.2);
    backdrop-filter: blur(12px);
    overflow: visible;
}

.price-was {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--aged-paper);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--mustard) 0%, var(--amber) 60%, var(--burnt-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 6px 20px rgba(212, 163, 42, 0.6));
    line-height: 1.1;
    padding: 0.25rem 0;
}

.price-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--cream);
    font-weight: 700;
    text-align: center;
    max-width: 300px;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust) 100%);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

/* CTA Vinyl Button */
.cta-vinyl-button {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem 3.5rem;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust) 100%);
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 100px;
    box-shadow:
        0 12px 48px rgba(199, 91, 18, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.25),
        inset 0 -3px 0 rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(212, 160, 86, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.7s ease;
}

.cta-vinyl-button:hover .btn-shine {
    left: 120%;
}

.cta-vinyl-button:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 16px 64px rgba(199, 91, 18, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 160, 86, 0.6);
}

.btn-text-main {
    font-size: 1.1rem;
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.proof-stars {
    font-size: 1.5rem;
    color: var(--mustard);
    letter-spacing: 2px;
}

.proof-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--aged-paper);
    opacity: 0.9;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 5rem 2rem;
    background: var(--cream);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 24px;
    border: 2px solid rgba(74, 55, 40, 0.1);
    box-shadow: 0 8px 32px rgba(26, 20, 16, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 20, 16, 0.18);
    border-color: var(--burnt-orange);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--espresso);
    margin: 0 0 1rem 0;
}

.benefit-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--walnut);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   ORDER SECTION - VINYL ALBUM PACKAGE
   ============================================ */
.order-section-redesigned {
    padding: 8rem 2rem;
    position: relative;
    min-height: 100vh;
}

/* Studio Floor Background */
.studio-floor-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.floor-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: sepia(40%) brightness(0.85) contrast(1.1);
}

.floor-warm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(237, 228, 211, 0.96) 0%,
        rgba(237, 228, 211, 0.92) 100%
    );
}

.order-container-premium {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Vinyl Album Package (Grid Layout) */
.vinyl-album-package {
    display: grid;
    grid-template-columns: 380px 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

/* ============================================
   ALBUM COVER FRONT (Left Panel)
   ============================================ */
.album-cover-front {
    position: sticky;
    top: 120px;
    background: var(--walnut);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 24px 64px rgba(26, 20, 16, 0.5),
        0 8px 24px rgba(26, 20, 16, 0.3);
    border: 6px solid var(--espresso);
    min-height: 600px;
}

.album-art {
    width: 100%;
    height: 420px;
    object-fit: cover;
    opacity: 0.4;
    filter: sepia(50%);
}

.album-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(74, 55, 40, 0.7) 0%,
        rgba(45, 36, 28, 0.85) 60%,
        rgba(26, 20, 16, 0.95) 100%
    );
}

.album-cover-content {
    position: absolute;
    inset: 0;
    padding: 3rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    gap: 1.5rem;
}

/* Album Badge */
.album-badge-vintage {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-vinyl-icon {
    position: relative;
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        var(--vinyl-black) 0%,
        var(--vinyl-black) 30%,
        var(--caramel) 31%,
        var(--caramel) 35%,
        var(--amber) 36%,
        var(--amber) 100%
    );
    box-shadow:
        0 8px 20px rgba(199, 91, 18, 0.5),
        inset 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: badge-float 4s ease-in-out infinite;
}

.badge-vinyl-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--vinyl-black);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.8);
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(360deg); }
}

.badge-stamp-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px dashed rgba(212, 160, 86, 0.4);
    animation: stamp-spin 25s linear infinite;
}

@keyframes stamp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Album Title */
.album-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--cream);
    text-align: center;
    margin: 1.5rem 0 0.5rem 0;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

.album-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: var(--amber);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1.5rem 0;
}

/* Album Details List */
.album-details-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
    margin-top: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.25rem;
    background: rgba(212, 160, 86, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 86, 0.2);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--aged-paper);
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.detail-item.special {
    background: linear-gradient(135deg, rgba(199, 91, 18, 0.15) 0%, rgba(212, 160, 86, 0.1) 100%);
    border-color: rgba(199, 91, 18, 0.3);
    color: var(--mustard);
    font-weight: 700;
}

.detail-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--amber) 100%);
    box-shadow: 0 2px 6px rgba(199, 91, 18, 0.4);
    flex-shrink: 0;
}

/* Vinyl Record Peek */
.vinyl-record-peek {
    position: absolute;
    bottom: -10px;
    right: 15px;
    width: 80px;
    height: 100px;
    z-index: 5;
}

.record-edge {
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        var(--vinyl-black) 0%,
        var(--vinyl-black) 40%,
        var(--espresso) 41%,
        var(--espresso) 100%
    );
    border-radius: 40px 40px 0 0;
    box-shadow:
        -4px 0 12px rgba(0, 0, 0, 0.6),
        inset -2px 0 8px rgba(0, 0, 0, 0.5);
    transform: rotate(-3deg);
}

/* ============================================
   RECORDING CONSOLE (Center Panel - Form)
   ============================================ */
.recording-console {
    background: linear-gradient(145deg, #ffffff 0%, #faf8f4 100%);
    border-radius: 32px;
    box-shadow:
        0 32px 80px rgba(26, 20, 16, 0.3),
        0 12px 32px rgba(26, 20, 16, 0.2);
    overflow: hidden;
    border: none;
}

/* Console Header - VU Meters */
.console-header {
    padding: 3rem 3rem 2rem 3rem;
    background: var(--wood-gradient);
    position: relative;
    border-bottom: 6px solid var(--burnt-orange);
}

.console-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px
        );
    pointer-events: none;
}

/* VU Meters Display */
.vu-meter-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vu-meter {
    position: relative;
    height: 60px;
    background: linear-gradient(180deg, #1a1410 0%, #0d0906 100%);
    border-radius: 12px;
    padding: 1rem;
    box-shadow:
        inset 0 4px 12px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 160, 86, 0.3);
}

.vu-needle {
    position: absolute;
    bottom: 10px;
    left: 15%;
    width: 2px;
    height: 30px;
    background: var(--burnt-orange);
    transform-origin: bottom center;
    transform: rotate(-25deg);
    animation: vu-needle-move 3s ease-in-out infinite;
    box-shadow: 0 0 8px var(--burnt-orange);
}

@keyframes vu-needle-move {
    0%, 100% { transform: rotate(-25deg); }
    50% { transform: rotate(15deg); }
}

.vu-scale {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    color: var(--cream);
    padding: 0 0.5rem;
}

.vu-scale .red {
    color: var(--rust);
    font-weight: 700;
}

/* Console Title Section */
.console-title-section {
    text-align: center;
}

.console-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--cream);
    margin: 0 0 0.5rem 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.console-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--aged-paper);
    margin: 0;
    opacity: 0.9;
}

/* Console Body - Form Fields */
.console-body {
    padding: 3rem;
    background: linear-gradient(180deg, #ffffff 0%, #fefdfb 100%);
}

/* Channel Strips (Form Groups) */
.channel-strip {
    margin-bottom: 2.25rem;
}

.channel-strip-wide {
    margin-bottom: 2.5rem;
}

.channel-label-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.875rem;
}

.channel-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, var(--burnt-orange) 0%, var(--rust) 100%);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    box-shadow:
        0 4px 12px rgba(199, 91, 18, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.channel-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--walnut);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.hint-text {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    color: var(--caramel);
    margin: 0.5rem 0;
    font-style: italic;
}

/* Console Inputs (Analog Style) */
.console-input,
.console-textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(74, 55, 40, 0.2);
    border-radius: 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    color: var(--espresso);
    background: linear-gradient(145deg, #fefdfb 0%, #ffffff 100%);
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        inset 0 2px 6px rgba(26, 20, 16, 0.08),
        0 1px 2px rgba(26, 20, 16, 0.05);
}

.console-input::placeholder,
.console-textarea::placeholder {
    color: rgba(74, 55, 40, 0.45);
}

.console-input:hover,
.console-textarea:hover {
    border-color: rgba(199, 91, 18, 0.4);
    box-shadow:
        inset 0 2px 6px rgba(26, 20, 16, 0.1),
        0 2px 8px rgba(199, 91, 18, 0.15);
}

.console-input:focus,
.console-textarea:focus {
    outline: none;
    border-color: var(--burnt-orange);
    background: #ffffff;
    box-shadow:
        inset 0 2px 8px rgba(199, 91, 18, 0.1),
        0 0 0 4px rgba(199, 91, 18, 0.15),
        0 4px 16px rgba(199, 91, 18, 0.2);
    transform: translateY(-2px);
}

.console-input.error,
.console-textarea.error {
    border-color: var(--rust);
    box-shadow:
        inset 0 3px 8px rgba(161, 61, 45, 0.15),
        0 0 0 4px rgba(161, 61, 45, 0.2);
}

.console-textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.7;
}

/* Tape Counter */
.tape-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.875rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(145deg, rgba(74, 55, 40, 0.04) 0%, rgba(74, 55, 40, 0.06) 100%);
    border-radius: 10px;
    border: 1px solid rgba(74, 55, 40, 0.1);
}

.counter-display {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.375rem 0.875rem;
    background: var(--vinyl-black);
    color: var(--amber);
    border-radius: 6px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* Price Summary Box */
.price-summary-box {
    background: linear-gradient(145deg, rgba(212, 160, 86, 0.08) 0%, rgba(212, 160, 86, 0.04) 100%);
    border: 2px solid rgba(212, 160, 86, 0.25);
    border-radius: 16px;
    padding: 1.75rem;
    margin-top: 2.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--walnut);
    border-bottom: 1px solid rgba(74, 55, 40, 0.1);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .price-original {
    text-decoration: line-through;
    opacity: 0.6;
}

.price-row.discount {
    color: var(--olive-gold);
    font-weight: 600;
}

.price-row.total {
    padding-top: 1.25rem;
    margin-top: 0.5rem;
    border-top: 2px solid rgba(199, 91, 18, 0.3);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--burnt-orange);
}

/* ============================================
   MASTER RECORD BUTTON (Submit)
   ============================================ */
.master-fader-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 3px solid rgba(199, 91, 18, 0.2);
}

.master-record-button {
    width: 100%;
    position: relative;
    padding: 2rem 2.5rem;
    background: linear-gradient(145deg, var(--burnt-orange) 0%, var(--rust) 100%);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow:
        0 12px 40px rgba(199, 91, 18, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(212, 160, 86, 0.4);
    overflow: hidden;
}

.master-record-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: button-shimmer 3s infinite;
}

@keyframes button-shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.master-record-button:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow:
        0 16px 56px rgba(199, 91, 18, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.35),
        inset 0 -3px 0 rgba(0, 0, 0, 0.35);
}

.master-record-button:active {
    transform: translateY(-2px) scale(0.99);
    box-shadow:
        0 8px 24px rgba(199, 91, 18, 0.4),
        inset 0 3px 8px rgba(0, 0, 0, 0.4);
}

.master-record-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.button-led-ring {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.led-pulse {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--mustard);
    box-shadow:
        0 0 20px var(--mustard),
        0 0 40px rgba(212, 163, 42, 0.6);
    animation: led-pulse-glow 1.5s ease-in-out infinite;
}

@keyframes led-pulse-glow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.8; }
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.btn-main {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.spinner-vinyl {
    display: none;
    width: 32px;
    height: 32px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin-loading 0.8s linear infinite;
    position: absolute;
}

.master-record-button.loading .spinner-vinyl {
    display: block;
}

.master-record-button.loading .button-text,
.master-record-button.loading .button-led-ring {
    opacity: 0;
}

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

/* Console Footer - Guarantee Seal */
.console-footer {
    padding: 2.5rem 3rem;
    background: linear-gradient(180deg, rgba(212, 160, 86, 0.04) 0%, rgba(212, 160, 86, 0.08) 100%);
    border-top: 2px solid rgba(74, 55, 40, 0.1);
}

.guarantee-seal {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
    background: linear-gradient(145deg, #ffffff 0%, #fefdfb 100%);
    border-radius: 20px;
    border: 2px solid rgba(199, 91, 18, 0.2);
    box-shadow:
        0 8px 24px rgba(26, 20, 16, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.seal-badge {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.seal-vinyl-icon {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        var(--vinyl-black) 0%,
        var(--vinyl-black) 30%,
        var(--caramel) 31%,
        var(--caramel) 35%,
        var(--amber) 36%,
        var(--amber) 100%
    );
    box-shadow:
        0 4px 12px rgba(212, 160, 86, 0.5),
        inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.seal-vinyl-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--vinyl-black);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.8);
}

.seal-rings {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(212, 160, 86, 0.3);
    animation: seal-pulse 3s ease-in-out infinite;
}

.seal-rings::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(212, 160, 86, 0.2);
}

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

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--walnut);
    margin: 0 0 0.375rem 0;
}

.guarantee-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--caramel);
    margin: 0;
    font-style: italic;
}

/* ============================================
   TRUST PANEL SIDEBAR (Right Panel)
   ============================================ */
.trust-panel-sidebar {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 32px rgba(26, 20, 16, 0.15);
    overflow: hidden;
    border: 2px solid rgba(74, 55, 40, 0.1);
}

.trust-panel-header {
    position: relative;
    padding: 2.5rem 2rem;
    overflow: hidden;
}

.trust-header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: sepia(35%);
}

.trust-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 239, 230, 0.92) 0%, rgba(237, 228, 211, 0.96) 100%);
}

.trust-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.payment-logo {
    height: 50px;
    width: auto;
    filter: sepia(10%) saturate(95%);
}

.payment-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--espresso);
    text-align: center;
}

.trust-panel-body {
    padding: 2rem;
    background: white;
}

.trust-list-vintage {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-list-vintage li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.875rem;
    background: rgba(212, 160, 86, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(212, 160, 86, 0.15);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--walnut);
    line-height: 1.5;
}

.trust-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive-gold) 0%, var(--caramel) 100%);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(156, 138, 60, 0.3);
    position: relative;
}

.trust-check::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 6px;
    height: 3px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
}

/* Testimonial Box */
.testimonial-box {
    background: linear-gradient(145deg, rgba(199, 91, 18, 0.06) 0%, rgba(212, 160, 86, 0.04) 100%);
    border: 2px solid rgba(199, 91, 18, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.testimonial-stars {
    font-size: 1.25rem;
    color: var(--mustard);
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--walnut);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 1rem 0;
}

.testimonial-author {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: var(--caramel);
    font-weight: 700;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section-vinyl {
    padding: 8rem 2rem;
    background: var(--aged-paper);
}

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

.section-title-vinyl {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--espresso);
    text-align: center;
    margin: 0 0 4rem 0;
    text-shadow: 0 4px 12px rgba(26, 20, 16, 0.1);
}

.faq-grid-aged {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.faq-card-aged {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 3px solid var(--walnut);
    box-shadow: 0 8px 24px rgba(26, 20, 16, 0.12);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-card-aged:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 20, 16, 0.2);
    border-color: var(--burnt-orange);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--espresso);
    margin: 0 0 1.25rem 0;
}

.faq-answer {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--walnut);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--vinyl-black) 0%, var(--espresso) 50%, var(--walnut) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(199, 91, 18, 0.15) 0%, transparent 70%);
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--cream);
    margin: 0 0 1.5rem 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.final-cta-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--aged-paper);
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 4rem;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust) 100%);
    color: white;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    border-radius: 100px;
    box-shadow:
        0 12px 48px rgba(199, 91, 18, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(212, 160, 86, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-cta-button:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow:
        0 16px 64px rgba(199, 91, 18, 0.7),
        inset 0 2px 0 rgba(255, 255, 255, 0.35);
}

.final-cta-subtext {
    display: block;
    margin-top: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--aged-paper);
    opacity: 0.8;
}

/* Error Messages */
.error-message {
    display: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rust);
    margin-top: 0.625rem;
}

.error-message.visible {
    display: block;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .vinyl-album-package {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .album-cover-front,
    .trust-panel-sidebar {
        position: relative;
        top: 0;
    }

    .album-cover-front {
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .christmas-hero-cinematic {
        min-height: auto;
        padding: 5rem 1.5rem 4rem 1.5rem;
    }

    .hero-vinyl-massive {
        width: 400px;
        height: 400px;
    }

    .hero-title-massive {
        font-size: 2.5rem;
    }

    .price-tag-retro {
        padding: 1.5rem 2rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .cta-vinyl-button {
        padding: 1.5rem 2.5rem;
        font-size: 1.05rem;
    }

    .console-header,
    .console-body,
    .console-footer {
        padding: 2rem 1.5rem;
    }

    .vu-meter-display {
        gap: 1rem;
    }

    .benefits-section {
        padding: 4rem 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .faq-section-vinyl {
        padding: 5rem 1.5rem;
    }

    .final-cta-section {
        padding: 5rem 1.5rem;
    }

    .final-cta-button {
        padding: 1.5rem 2.5rem;
        font-size: 1.15rem;
    }
}

@media (max-width: 500px) {
    .hero-vinyl-massive {
        width: 300px;
        height: 300px;
    }

    .vinyl-center-realistic {
        width: 120px;
        height: 120px;
    }

    .label-brand {
        font-size: 1.1rem;
    }

    .urgency-badge-premium {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .console-title {
        font-size: 1.5rem;
    }

    .guarantee-seal {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   CHRISTMAS FESTIVE ELEMENTS
   ============================================ */

/* Additional Christmas Colors */
:root {
    --christmas-red: #c41e3a;
    --christmas-green: #228b22;
    --christmas-gold: #ffd700;
    --christmas-dark-green: #0f5132;
    --christmas-pine: #1d4d2c;
}

/* Falling Snowflakes */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: snowfall linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 15s; animation-delay: 0s; font-size: 1.2rem; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 2s; font-size: 1.8rem; }
.snowflake:nth-child(3) { left: 25%; animation-duration: 18s; animation-delay: 4s; font-size: 1rem; }
.snowflake:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 1s; font-size: 1.5rem; }
.snowflake:nth-child(5) { left: 45%; animation-duration: 16s; animation-delay: 3s; font-size: 1.3rem; }
.snowflake:nth-child(6) { left: 55%; animation-duration: 13s; animation-delay: 5s; font-size: 1.6rem; }
.snowflake:nth-child(7) { left: 65%; animation-duration: 17s; animation-delay: 0.5s; font-size: 1.1rem; }
.snowflake:nth-child(8) { left: 75%; animation-duration: 11s; animation-delay: 2.5s; font-size: 1.7rem; }
.snowflake:nth-child(9) { left: 85%; animation-duration: 19s; animation-delay: 4.5s; font-size: 1.4rem; }
.snowflake:nth-child(10) { left: 92%; animation-duration: 14s; animation-delay: 1.5s; font-size: 1.2rem; }
.snowflake:nth-child(11) { left: 10%; animation-duration: 16s; animation-delay: 3.5s; font-size: 1rem; }
.snowflake:nth-child(12) { left: 50%; animation-duration: 20s; animation-delay: 6s; font-size: 1.9rem; }

@keyframes snowfall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0.3;
    }
}

/* Christmas Lights String */
.christmas-lights-string {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 5;
    padding: 0 2rem;
}

.christmas-lights-string .light {
    width: 12px;
    height: 18px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: twinkle 1.5s ease-in-out infinite;
}

.christmas-lights-string .light::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 2px;
}

.christmas-lights-string .light.red {
    background: radial-gradient(circle at 30% 30%, #ff6b6b, #c41e3a);
    box-shadow: 0 0 15px #c41e3a, 0 0 30px rgba(196, 30, 58, 0.5);
    animation-delay: 0s;
}

.christmas-lights-string .light.gold {
    background: radial-gradient(circle at 30% 30%, #ffe066, #ffd700);
    box-shadow: 0 0 15px #ffd700, 0 0 30px rgba(255, 215, 0, 0.5);
    animation-delay: 0.3s;
}

.christmas-lights-string .light.green {
    background: radial-gradient(circle at 30% 30%, #6bcb77, #228b22);
    box-shadow: 0 0 15px #228b22, 0 0 30px rgba(34, 139, 34, 0.5);
    animation-delay: 0.6s;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.95); }
}

/* Christmas Overlay */
.christmas-overlay {
    background: radial-gradient(
        ellipse at center,
        rgba(26, 20, 16, 0.65) 0%,
        rgba(26, 20, 16, 0.8) 50%,
        rgba(15, 81, 50, 0.15) 100%
    ) !important;
}

/* Vinyl Wreath */
.christmas-vinyl {
    position: relative;
}

.vinyl-wreath {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 20px solid transparent;
    background:
        radial-gradient(circle, transparent 60%, rgba(34, 139, 34, 0.15) 70%, rgba(15, 81, 50, 0.2) 100%);
    pointer-events: none;
}

.vinyl-wreath::before {
    content: '🎀';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Christmas Center Label */
.christmas-center {
    background: radial-gradient(
        circle at 35% 35%,
        var(--christmas-red) 0%,
        var(--christmas-red) 30%,
        var(--christmas-gold) 31%,
        var(--christmas-gold) 35%,
        var(--christmas-dark-green) 36%,
        var(--christmas-dark-green) 100%
    ) !important;
}

.label-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Corner Ornaments */
.corner-ornament {
    position: absolute;
    font-size: 3rem;
    z-index: 5;
    opacity: 0.7;
    animation: gentle-float 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.corner-ornament.top-left {
    top: 100px;
    left: 30px;
    animation-delay: 0s;
}

.corner-ornament.top-right {
    top: 100px;
    right: 30px;
    animation-delay: 2s;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Christmas Badge */
.christmas-badge {
    background: linear-gradient(135deg, var(--christmas-red) 0%, #8b0000 100%) !important;
    border-color: var(--christmas-gold) !important;
}

.badge-icon {
    font-size: 1.2rem;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

/* Title Icons */
.title-icon {
    display: inline-block;
    animation: gentle-bounce 2s ease-in-out infinite;
}

.title-icon:last-child {
    animation-delay: 1s;
}

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

/* Christmas CTA Button */
.christmas-cta {
    background: linear-gradient(135deg, var(--christmas-red) 0%, #8b0000 100%) !important;
    border-color: var(--christmas-gold) !important;
}

.christmas-cta:hover {
    box-shadow:
        0 16px 64px rgba(196, 30, 58, 0.6),
        0 0 30px rgba(255, 215, 0, 0.3) !important;
}

.cta-icon {
    font-size: 1.3rem;
    animation: gentle-bounce 2s ease-in-out infinite;
}

/* Christmas Benefits Section */
.christmas-benefits {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(34, 139, 34, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.deco-star {
    color: var(--christmas-gold);
    font-size: 1.5rem;
    animation: star-sparkle 2s ease-in-out infinite;
}

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

.deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--christmas-gold), transparent);
}

.deco-holly {
    font-size: 2rem;
    animation: gentle-float 3s ease-in-out infinite;
}

/* Christmas Benefit Cards */
.christmas-card {
    position: relative;
    border-color: rgba(34, 139, 34, 0.2) !important;
    overflow: hidden;
}

.christmas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--christmas-red), var(--christmas-gold), var(--christmas-green));
}

.christmas-card:hover {
    border-color: var(--christmas-red) !important;
}

.card-ornament {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff6b6b, var(--christmas-red));
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.card-ornament::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--christmas-gold);
    border-radius: 2px;
}

/* Console Christmas Icon */
.console-christmas-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: gentle-bounce 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Christmas Final CTA Section */
.christmas-final-cta {
    background: linear-gradient(135deg, var(--vinyl-black) 0%, var(--christmas-pine) 50%, var(--vinyl-black) 100%) !important;
    position: relative;
    overflow: hidden;
}

.christmas-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
}

.cta-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-ornament {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float-around 8s ease-in-out infinite;
}

.ornament-1 { top: 10%; left: 10%; animation-delay: 0s; }
.ornament-2 { top: 20%; right: 15%; animation-delay: 1s; }
.ornament-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.ornament-4 { bottom: 10%; right: 10%; animation-delay: 3s; }
.ornament-5 { top: 50%; left: 5%; animation-delay: 4s; }

@keyframes float-around {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -20px) rotate(10deg); }
    50% { transform: translate(-10px, 10px) rotate(-5deg); }
    75% { transform: translate(15px, 15px) rotate(5deg); }
}

.cta-christmas-star {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: star-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

@keyframes star-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(10deg); opacity: 0.8; }
}

.christmas-final-btn {
    background: linear-gradient(135deg, var(--christmas-red) 0%, #8b0000 100%) !important;
    border-color: var(--christmas-gold) !important;
}

.christmas-final-btn:hover {
    box-shadow:
        0 16px 64px rgba(196, 30, 58, 0.6),
        0 0 40px rgba(255, 215, 0, 0.4) !important;
}

.btn-gift-icon,
.btn-tree-icon {
    font-size: 1.5rem;
    animation: wiggle 2s ease-in-out infinite;
}

.btn-tree-icon {
    animation-delay: 1s;
}

/* Hide snowflakes on mobile for performance */
@media (max-width: 768px) {
    .snowflakes .snowflake:nth-child(n+7) {
        display: none;
    }

    .snowflake {
        font-size: 1rem;
    }

    .christmas-lights-string {
        gap: 1rem;
    }

    .christmas-lights-string .light {
        width: 8px;
        height: 12px;
    }

    .corner-ornament {
        font-size: 2rem;
        opacity: 0.5;
    }

    .floating-ornament {
        display: none;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .snowflakes {
        display: none;
    }
}
