:root {
    --color-christmas-gold: #D4AF37;
    --color-christmas-gold-light: #F4C430;
    --color-christmas-green: #2F5233; /* Dark elegant green */
    --color-christmas-red-dark: #8B0000;
}

/* --- Snow Effect --- */
.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    color: #FFF;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #000;
    pointer-events: none;
    background-color: #fff;
    border-radius: 50%;
    width: 8px; /* Default width, overridden by JS fontsize mostly */
    height: 8px;
    filter: blur(1px);
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes fall {
    0% { transform: translateY(-10vh) translateX(0px); opacity: 0; }
    10% { opacity: 0.8; }
    100% { transform: translateY(100vh) translateX(20px); opacity: 0.2; }
}

/* --- Christmas Theme Accents --- */

/* Header Update */
.main-header .site-logo {
    position: relative;
}

.main-header .site-logo::after {
    /* Optional: Add a subtle festive touch to header if desired, keeping it clean for now */
    content: ''; 
}

/* Hero Section Subtle Gradient Overlay for Depth */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* CTA Section - Christmas Transformation */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-christmas-red-dark) 100%);
    position: relative;
    border-top: 4px solid var(--color-christmas-gold);
}

.cta-section .section-title {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.blackfriday-header {
    background: none; /* Reset distinct background if any */
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--color-christmas-gold) 0%, #B8860B 100%);
    border-color: #DAA520;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
}

.cta-section .btn-primary:hover {
    background: linear-gradient(135deg, #B8860B 0%, var(--color-christmas-gold) 100%);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.6);
    transform: translateY(-3px);
}

.cta-section .price-new {
    color: var(--color-christmas-gold-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.stock-alert {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--color-christmas-gold);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.trust-badge i {
    color: var(--color-christmas-gold);
}

/* Feature Boxes - Subtle Festive Touch */
.feature-box {
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-bottom-color: var(--color-christmas-gold);
}

.feature-icon {
    background-color: rgba(227, 16, 19, 0.05); /* Lighter red */
}

/* Simple "Festive" border on the top of the body/header */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-christmas-gold), var(--color-primary));
    z-index: 10000;
}
