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

:root {
    /* Soft Pastel Color Scheme */
    --primary-gradient: linear-gradient(135deg, #E77903 0%, #F22C05 100%);
    --secondary-gradient: linear-gradient(135deg, #FAEDFE 0%, #F5EEFC 100%);
    --success-gradient: linear-gradient(135deg, #EAF9F7 0%, #F5EEFC 100%);
    --warm-gradient: linear-gradient(135deg, #FFF9EA 0%, #FAEDFE 100%);
    --purple-gradient: linear-gradient(135deg, #F7F0FF 0%, #F5EEFC 100%);
    --button-gradient: linear-gradient(135deg, #E77903 0%, #F22C05 100%);
    --button-gradient-hover: linear-gradient(135deg, #F22C05 0%, #E77903 100%);

    /* Pastel Background Colors */
    --pastel-pink: #FAEDFE;
    --pastel-purple: #F5EEFC;
    --pastel-cream: #FFF9EA;
    --pastel-lavender: #F7F0FF;
    --pastel-mint: #EAF9F7;

    /* Button Colors */
    --button-orange: #E77903;
    --button-red: #F22C05;

    /* Dark Accent */
    --dark-navy: #17213C;
    --christmas-gold: #E77903;

    /* Background Colors */
    --bg-dark: #17213C;
    --bg-darker: #0d1426;
    --bg-card: rgba(250, 237, 254, 0.1);
    --bg-card-hover: rgba(250, 237, 254, 0.2);

    /* Text Colors */
    --text-primary: #17213C;
    --text-secondary: rgba(23, 33, 60, 0.85);
    --text-muted: rgba(23, 33, 60, 0.6);
    --text-light: #ffffff;

    /* Accent Colors */
    --accent-red: #F22C05;
    --accent-orange: #E77903;
    --accent-gold: #E77903;
    --christmas-red: #F22C05;

    /* Shadows with Soft Pastel Glow */
    --shadow-sm: 0 2px 8px rgba(231, 121, 3, 0.15);
    --shadow-md: 0 4px 20px rgba(231, 121, 3, 0.25);
    --shadow-lg: 0 8px 40px rgba(231, 121, 3, 0.35);
    --shadow-glow: 0 0 50px rgba(242, 44, 5, 0.4);
    --shadow-gold: 0 0 30px rgba(231, 121, 3, 0.5);
    --shadow-cyan: 0 0 20px rgba(234, 249, 247, 0.6);

    /* Border Radius */
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'K2D', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #FAEDFE 0%, #F5EEFC 25%, #FFF9EA 50%, #F7F0FF 75%, #EAF9F7 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Animated Background ===== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, #FAEDFE 0%, #F5EEFC 25%, #FFF9EA 50%, #F7F0FF 75%, #EAF9F7 100%);
    overflow: hidden;
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {

    0%,
    100% {
        background: linear-gradient(180deg, #FAEDFE 0%, #F5EEFC 25%, #FFF9EA 50%, #F7F0FF 75%, #EAF9F7 100%);
    }

    25% {
        background: linear-gradient(180deg, #F5EEFC 0%, #FFF9EA 25%, #F7F0FF 50%, #EAF9F7 75%, #FAEDFE 100%);
    }

    50% {
        background: linear-gradient(180deg, #FFF9EA 0%, #F7F0FF 25%, #EAF9F7 50%, #FAEDFE 75%, #F5EEFC 100%);
    }

    75% {
        background: linear-gradient(180deg, #F7F0FF 0%, #EAF9F7 25%, #FAEDFE 50%, #F5EEFC 75%, #FFF9EA 100%);
    }
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 51, 102, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

/* Enhanced Snowflakes */
.snow {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffffff 0%, rgba(255, 215, 0, 0.8) 100%);
    border-radius: 50%;
    opacity: 0.8;
    animation: snowfall linear infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.snow:nth-child(1) {
    left: 10%;
    animation-duration: 10s;
    animation-delay: 0s;
}

.snow:nth-child(2) {
    left: 30%;
    animation-duration: 12s;
    animation-delay: 2s;
    width: 6px;
    height: 6px;
}

.snow:nth-child(3) {
    left: 50%;
    animation-duration: 8s;
    animation-delay: 1s;
}

.snow:nth-child(4) {
    left: 70%;
    animation-duration: 15s;
    animation-delay: 3s;
    width: 10px;
    height: 10px;
}

.snow:nth-child(5) {
    left: 90%;
    animation-duration: 11s;
    animation-delay: 0.5s;
    width: 7px;
    height: 7px;
}

@keyframes snowfall {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }

    100% {
        top: 110%;
        transform: translateX(100px) rotate(360deg);
    }
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 2px solid rgba(255, 51, 102, 0.3);
    padding: 15px 0;
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'League Spartan', sans-serif;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 5px 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(231, 121, 3, 0.8);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 20px 60px;
    gap: 60px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    border: 2px solid var(--accent-red);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--christmas-gold);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-red);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #ff3366 0%, #ffd700 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 51, 102, 0.5));
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 500;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.timer-box {
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.15) 0%, rgba(255, 215, 0, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 51, 102, 0.4);
    border-radius: var(--border-radius-md);
    padding: 20px;
    min-width: 100px;
    text-align: center;
    box-shadow: var(--shadow-md), inset 0 0 20px rgba(255, 215, 0, 0.1);
    transition: var(--transition-normal);
}

.timer-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-gold);
}

.timer-value {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ff3366 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'League Spartan', sans-serif;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    font-weight: 600;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-normal);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #E77903 0%, #F22C05 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 32px rgba(231, 121, 3, 0.5);
    border: 2px solid transparent;
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(242, 44, 5, 0.7), 0 0 30px rgba(231, 121, 3, 0.6);
    background: linear-gradient(135deg, #F22C05 0%, #E77903 100%);
    animation: gradientShift 1.5s ease infinite, pulseGlow 2s ease-in-out infinite;
}

.btn-secondary {
    background: rgba(250, 237, 254, 0.2);
    color: var(--text-primary);
    border: 2px solid rgba(231, 121, 3, 0.5);
    box-shadow: 0 4px 20px rgba(231, 121, 3, 0.2);
}

.btn-secondary:hover {
    background: rgba(231, 121, 3, 0.15);
    border-color: var(--button-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 121, 3, 0.4);
}

.btn-large {
    padding: 22px 48px;
    font-size: 1.25rem;
}

/* Hero Image */
.hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(255, 51, 102, 0.4));
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2) 0%, rgba(255, 215, 0, 0.2) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: var(--border-radius-md);
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}

.card-emoji {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.card-text {
    font-weight: 700;
    font-size: 1rem;
    font-family: 'League Spartan', sans-serif;
}

.card-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* ===== Stats Section ===== */
/* ===== Video Section ===== */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F7F0FF 0%, #FAEDFE 100%);
}

.video-section .section-title {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.video-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    background: #000;
    transition: var(--transition-normal);
}

.video-wrapper:hover {
    box-shadow: 0 25px 80px rgba(231, 121, 3, 0.3);
    transform: translateY(-5px);
}

.loom-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .video-section .section-title {
        font-size: 2rem;
    }

    .video-section .section-subtitle {
        font-size: 1rem;
    }

    .video-wrapper {
        border-radius: 15px;
    }
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-top: 2px solid rgba(255, 51, 102, 0.2);
    border-bottom: 2px solid rgba(255, 51, 102, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ff3366 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
    font-family: 'League Spartan', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 600;
}

/* ===== Products Section ===== */
.products-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    max-width: 100%;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 51, 102, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff3366 0%, #ffd700 50%, #ff6b35 100%);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 51, 102, 0.4), 0 0 40px rgba(255, 215, 0, 0.3);
    border-color: var(--accent-gold);
}

.product-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #ff3366 0%, #ff6b35 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.5);
    font-family: 'League Spartan', sans-serif;
    z-index: 10;
}

.product-badge.popular {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: var(--border-radius-md);
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition-normal);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.product-card:hover .product-image img {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 25px rgba(255, 215, 0, 0.4));
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    text-align: center;
}

.product-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 500;
}

.product-features {
    list-style: none;
    padding: 15px 0;
    margin: 0;
    flex: 1;
}

.product-features li {
    color: var(--text-secondary);
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.product-features li::before {
    content: '✓';
    color: var(--christmas-gold);
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.product-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 51, 102, 0.2);
    gap: 15px;
    text-align: center;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.discount-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #56ab2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
}

.btn-product {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #E77903 0%, #F22C05 100%);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    transition: var(--transition-fast);
    box-shadow: 0 6px 20px rgba(231, 121, 3, 0.4);
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    border: 2px solid transparent;
    white-space: nowrap;
    width: 100%;
    max-width: 280px;
    animation: gradientShift 3s ease infinite;
}

.btn-product:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(242, 44, 5, 0.6), 0 0 20px rgba(231, 121, 3, 0.5);
    background: linear-gradient(135deg, #F22C05 0%, #E77903 100%);
    animation: gradientShift 1.5s ease infinite;
}

/* ===== Features Section ===== */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.03) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 51, 102, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 51, 102, 0.2);
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    font-family: 'League Spartan', sans-serif;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 300;
    color: var(--accent-red);
    transition: var(--transition-fast);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--button-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.4s ease-in, opacity 0.3s ease-in 0.1s;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-top: 2px solid rgba(255, 51, 102, 0.3);
    border-bottom: 2px solid rgba(255, 51, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 51, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
}

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

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    font-family: 'League Spartan', sans-serif;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 500;
}

/* ===== Disclaimer Notice ===== */
.disclaimer-notice {
    background: rgba(23, 33, 60, 0.3);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-text {
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(23, 33, 60, 0.6);
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.7;
}

.disclaimer-text strong {
    color: rgba(23, 33, 60, 0.8);
    font-weight: 600;
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 51, 102, 0.2);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'League Spartan', sans-serif;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-logo:hover {
    color: #ffffff;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 15px rgba(231, 121, 3, 0.6));
}

.footer-text {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: var(--christmas-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

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

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff3366 0%, #ff6b35 100%);
    border: 2px solid var(--christmas-gold);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 6px 20px rgba(255, 51, 102, 0.5);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.7), 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 5px;
    }

    .hero {
        padding: 90px 15px 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .countdown-timer {
        gap: 10px;
        justify-content: center;
    }

    .timer-box {
        min-width: 85px;
        padding: 15px;
    }

    .timer-value {
        font-size: 1.8rem;
    }

    .timer-label {
        font-size: 0.75rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .btn-large {
        padding: 18px 36px;
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon {
        font-size: 2rem;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .hero {
        padding: 80px 10px 30px;
    }

    .hero-badge {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .timer-box {
        min-width: 70px;
        padding: 12px;
    }

    .timer-value {
        font-size: 1.5rem;
    }

    .timer-label {
        font-size: 0.7rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .product-card {
        padding: 20px;
    }

    .product-badge {
        top: 20px;
        right: 20px;
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .product-title {
        font-size: 1.35rem;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== Button Animations ===== */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(242, 44, 5, 0.6), 0 0 20px rgba(231, 121, 3, 0.5);
    }

    50% {
        box-shadow: 0 10px 40px rgba(242, 44, 5, 0.8), 0 0 30px rgba(231, 121, 3, 0.7);
    }
}

/* ===== Print Styles ===== */
@media print {

    .header,
    .scroll-to-top,
    .animated-bg {
        display: none;
    }
}

/* ===== Policy Pages Styling ===== */
.policy-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #FAEDFE 0%, #F5EEFC 50%, #FFF9EA 100%);
    padding: 80px 20px 40px;
}

.policy-page h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.policy-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.policy-content h2 {
    font-family: 'League Spartan', sans-serif;
    color: var(--button-red);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--button-orange);
    padding-bottom: 10px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-family: 'League Spartan', sans-serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-content ul,
.policy-content ol {
    margin: 15px 0 15px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

.important-notice {
    background: linear-gradient(135deg, rgba(242, 44, 5, 0.1) 0%, rgba(231, 121, 3, 0.1) 100%);
    border-left: 5px solid var(--button-red);
    padding: 25px;
    margin: 30px 0;
    border-radius: 10px;
}

.important-notice h3 {
    color: var(--button-red);
    margin-top: 0;
    font-size: 1.3rem;
}

.important-notice p,
.important-notice ul {
    color: var(--text-primary);
}

.contact-info {
    background: #F7F0FF;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin: 10px 0;
    color: var(--text-primary);
}

.back-link {
    display: inline-block;
    color: var(--button-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--button-red);
    transform: translateX(-5px);
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .policy-page h1 {
        font-size: 2rem;
    }

    .policy-content {
        padding: 25px 20px;
    }

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

    .policy-content h3 {
        font-size: 1.2rem;
    }
}

/* ===== Print Styles ===== */