/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Dancing+Script:wght@700&display=swap');

/* Base Styles and CSS Variables */
:root {
    --primary: #f8e5e5;
    --secondary: #fff5f5;
    --accent: #ff8ba7;
    --accent-dark: #ff6b8b;
    --accent-glow: rgba(255, 139, 167, 0.3);
    --neon-pink: #ff1f8f;
    --neon-blue: #18b6f6;
    --text: #2c2c2c;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
    --gradient: linear-gradient(135deg, #f8e5e5 0%, #fff5f5 100%);
    --card-gradient: linear-gradient(to bottom, #ffffff 0%, #fff8f8 100%);
    --neon-gradient: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-blue) 100%);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --section-spacing: 6rem;
    --mobile-padding: 1rem;
    --desktop-padding: 2rem;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--secondary);
    overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid rgba(255, 107, 139, 0.9);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(255, 139, 167, 0.18);
}

/* Typography */
h1, h2, h3 {
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin: 2rem 0;
}

/* Desktop Navigation - Valentine Theme */
.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(255, 245, 250, 0.95) 0%, 
        rgba(255, 240, 245, 0.95) 50%,
        rgba(255, 235, 240, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 182, 193, 0.2),
                0 0 40px rgba(255, 192, 203, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: block;
    border-bottom: 1px solid rgba(255, 182, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.desktop-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: navShimmer 3s infinite;
}

@keyframes navShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, 
        #4A90E2 0%, 
        #5BA3F5 25%,
        #6BB6FF 50%,
        #87CEEB 75%,
        #B0E0E6 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(135, 206, 250, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.logo-mark {
    width: 2.7rem;
    height: 2.7rem;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(255, 139, 167, 0.18));
    flex-shrink: 0;
}

.logo-wordmark {
    display: inline-block;
    line-height: 1;
}

.logo::after {
    content: '❄️';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.7;
    animation: snowflakeSpin 3s linear infinite;
}

@keyframes snowflakeSpin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.logo:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 30px rgba(135, 206, 250, 0.6);
}

.logo:hover .logo-mark {
    transform: translateY(-1px) scale(1.02);
}

.logo::after {
    content: '';
    right: -18px;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: rgba(255, 139, 167, 0.9);
    box-shadow: 0 0 0 6px rgba(255, 139, 167, 0.12);
    font-size: 0;
    opacity: 0.9;
    animation: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #4A5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(135, 206, 250, 0.1) 0%,
        rgba(176, 224, 230, 0.1) 100%
    );
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        #4A90E2 0%,
        #5BA3F5 50%,
        #87CEEB 100%
    );
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(135, 206, 250, 0.5),
                0 0 20px rgba(176, 224, 230, 0.3);
    border-radius: 2px;
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2D3748;
    text-shadow: 0 0 10px rgba(135, 206, 250, 0.3);
}

.nav-links a.active {
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, 
            #fff0f5 0%, 
            #ffe4e9 20%,
            #fff5f8 40%,
            #ffeef2 60%,
            #ffe0e6 80%,
            #fff0f5 100%
        );
    padding: 6rem 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 182, 193, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 192, 203, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 156, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(255, 182, 193, 0.3) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 30%, rgba(255, 192, 203, 0.3) 0%, transparent 45%),
        linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100,160 C70,160 45,140 45,110 C45,80 70,60 100,60 C130,60 155,80 155,110 C155,140 130,160 100,160 M100,110 C100,110 100,80 100,80 M100,140 C100,140 100,110 100,110' fill='none' stroke='%23ff8ba7' stroke-width='2' opacity='0.08'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='75' cy='75' r='8' fill='%23ff6b9c' opacity='0.1'/%3E%3Ccircle cx='30' cy='30' r='5' fill='%23ff8ba7' opacity='0.12'/%3E%3Ccircle cx='120' cy='30' r='6' fill='%23ffb6c1' opacity='0.1'/%3E%3Ccircle cx='30' cy='120' r='5' fill='%23ff6b9c' opacity='0.12'/%3E%3Ccircle cx='120' cy='120' r='6' fill='%23ff8ba7' opacity='0.1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60,30 L65,50 L85,50 L70,62 L75,82 L60,70 L45,82 L50,62 L35,50 L55,50 Z' fill='%23ffb6c1' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 400px 400px, 300px 300px, 240px 240px;
    background-position: 0 0, 150px 150px, 80px 80px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    padding: 2rem;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--accent-glow);
    color: white;
}

.hero p {
    font-size: 1.2rem;
    color: #ff0000;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* New Shop Now Button Style */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--neon-pink);
    color: white !important;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 31, 143, 0.3);
}

.cta-button:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--neon-pink);
}

.cta-button i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Enhanced Hero Elements */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 12px 24px;
    margin-bottom: 2rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: float 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--neon-pink);
    font-size: 1.1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #c2185b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 2px 8px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5),
        0 1px 3px rgba(255, 255, 255, 0.6);
}

.title-highlight {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    color: #c2185b;
    -webkit-text-fill-color: #c2185b;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    text-shadow: 
        0 3px 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5),
        0 2px 4px rgba(255, 255, 255, 0.6);
    font-weight: 800;
    letter-spacing: -0.02em;
    filter: none;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ff0000;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 
        0 3px 10px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 64, 129, 0.45);
}

.hero-fomo {
    margin-top: -1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 64, 129, 0.35);
    box-shadow:
        0 8px 22px rgba(255, 64, 129, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.95);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 12px 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    color: var(--neon-pink);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

/* New Collection Indicator - Premium Design */
.new-collection-indicator {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    animation: slideInUp 1.2s ease-out 0.8s both;
}

.indicator-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 182, 193, 0.3);
    border-radius: 25px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.indicator-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.indicator-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff6b9c 0%, #ff8ba7 50%, #ff6b9c 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(255, 107, 156, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
    animation: badgePulse 2.5s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: iconSpin 3s linear infinite;
}

.badge-icon i {
    font-size: 0.9rem;
    color: white;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShine 2s ease-in-out infinite;
}

.indicator-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.indicator-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #c2185b;
    margin-bottom: 0.8rem;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.9),
        0 0 12px rgba(255, 255, 255, 0.6);
}

.indicator-description {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.5);
}

.indicator-features {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.95);
    color: #2c2c2c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 182, 193, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-tag i {
    color: #ff6b9c;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 156, 0.3);
    border-color: rgba(255, 107, 156, 0.5);
}

.indicator-arrow {
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.cta-button.primary {
    background: var(--neon-pink);
    box-shadow: 0 0 25px rgba(255, 31, 143, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink) !important;
    box-shadow: 0 0 20px rgba(255, 31, 143, 0.2);
}

.cta-button.secondary:hover {
    background: var(--neon-pink);
    color: white !important;
    box-shadow: 0 0 30px var(--neon-pink);
}

/* Animated Neon Button */
.cta-button.neon-glow {
    position: relative;
    overflow: hidden;
    background: var(--neon-pink);
    border: 2px solid var(--neon-pink);
    animation: neonPulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.cta-button.neon-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-pink), var(--neon-blue));
    border-radius: 50px;
    z-index: 1;
    animation: neonRotate 4s linear infinite;
    opacity: 0.3;
}

.cta-button.neon-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 31, 143, 0.6) 0%, transparent 70%);
    border-radius: 50px;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite;
    opacity: 0.5;
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(24, 182, 246, 0.3), transparent);
    border-radius: 50px;
    z-index: 1;
    animation: shimmer 2s ease-in-out infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-heart,
.floating-star,
.floating-sparkle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

.floating-heart {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-star {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.floating-sparkle {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 9s;
}

/* Neon Animations */
@keyframes neonPulse {
    0%, 100% { 
        box-shadow: 
            0 0 10px var(--neon-pink),
            0 0 20px var(--neon-pink),
            0 0 30px var(--neon-pink),
            inset 0 0 15px rgba(255, 31, 143, 0.4);
    }
    50% { 
        box-shadow: 
            0 0 15px var(--neon-pink),
            0 0 30px var(--neon-pink),
            0 0 45px var(--neon-pink),
            inset 0 0 25px rgba(255, 31, 143, 0.6);
    }
}

@keyframes neonRotate {
    0% { 
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg);
        opacity: 0.6;
    }
    100% { 
        transform: rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.1);
    }
}

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

/* Quiz Modal Styles */
.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quiz-modal.active {
    display: flex;
    opacity: 1;
}

.quiz-content {
    background: linear-gradient(135deg, #2d1f3d 0%, #1a1a2e 100%);
    border-radius: 25px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 2px solid rgba(255, 31, 143, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.quiz-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quiz-close-btn:hover {
    background: rgba(255, 31, 143, 0.8);
    transform: scale(1.1);
}

.quiz-screen {
    text-align: center;
}

.quiz-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quiz-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quiz-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.quiz-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.quiz-features .feature i {
    color: var(--neon-pink);
    font-size: 1.5rem;
}

.quiz-features .feature span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.start-quiz-btn {
    background: var(--neon-pink);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 20px rgba(255, 31, 143, 0.3);
}

.start-quiz-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--neon-pink);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--neon-gradient);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}

.question-container h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

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

.option-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.option-btn:hover {
    background: rgba(255, 31, 143, 0.2);
    border-color: var(--neon-pink);
    transform: translateY(-2px);
}

.result-container {
    color: white;
}

.result-header h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.result-content {
    margin-bottom: 2rem;
}

.result-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 3px solid rgba(255, 31, 143, 0.3);
}

.result-name {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.result-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.result-traits {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.trait {
    background: rgba(255, 31, 143, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 31, 143, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trait i {
    color: var(--neon-pink);
}

.result-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-item:last-child {
    margin-bottom: 0;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-now-btn, .retry-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.shop-now-btn {
    background: var(--neon-pink);
    color: white;
    box-shadow: 0 0 20px rgba(255, 31, 143, 0.3);
}

.shop-now-btn:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--neon-pink);
}

.retry-btn {
    background: transparent;
    color: var(--neon-pink);
    border: 2px solid var(--neon-pink);
}

.retry-btn:hover {
    background: var(--neon-pink);
    color: white;
}

.result-price {
    background: rgba(255, 31, 143, 0.2);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 31, 143, 0.3);
    text-align: center;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .quiz-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .quiz-features {
        gap: 1rem;
    }
    
    .quiz-features .feature {
        min-width: 100px;
        padding: 0.8rem;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .shop-now-btn, .retry-btn {
        width: 100%;
        justify-content: center;
    }
}

.collection-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.preview-header h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.5rem;
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.preview-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-card i {
    font-size: 2rem;
    color: var(--neon-pink);
    margin-bottom: 1rem;
    display: block;
}

.category-card span {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .hero {
        padding-top: 4rem;
    }

    .hero-content {
        padding: 1rem;
    }
    
    .new-collection-indicator {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .indicator-container {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .indicator-title {
        font-size: 1.2rem;
    }
    
    .indicator-description {
        font-size: 0.9rem;
    }
    
    .indicator-features {
        gap: 0.5rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .indicator-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 16px;
    }

    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .collection-preview {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .preview-categories {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .category-card {
        padding: 1.2rem;
    }

    .category-card i {
        font-size: 1.5rem;
    }

    .category-card span {
        font-size: 1rem;
    }

    .category-card small {
        font-size: 0.8rem;
    }
}

.floating-elements .float {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.6;
    filter: blur(0.5px);
    text-shadow: 0 0 20px var(--neon-pink),
                 0 0 40px var(--accent-glow);
}

.float-1 { top: 20%; left: 10%; animation-delay: 0s; font-size: 2.5rem; }
.float-2 { top: 30%; right: 15%; animation-delay: -2s; font-size: 1.8rem; }
.float-3 { bottom: 25%; left: 20%; animation-delay: -4s; font-size: 2.2rem; }

/* Enhanced Section Styles */
.about-story,
.plushie-match,
.testimonials,
.story-highlights {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

/* Section Background Effects */
.about-story::before,
.plushie-match::before,
.testimonials::before,
.story-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-glow),
        transparent
    );
}

.about-story::after,
.plushie-match::after,
.testimonials::after,
.story-highlights::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-glow),
        transparent
    );
}

/* Enhanced About Story Section */
.about-story {
    background: linear-gradient(135deg, var(--secondary) 0%, #ffffff 100%);
    padding: 8rem 0;
}

.story-intro {
    max-width: 800px;
    margin: 0 auto 6rem;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.story-intro::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: var(--accent-glow);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    z-index: -1;
}

.founder-message {
    background: white;
    border-radius: var(--border-radius);
    padding: 3.5rem;
    box-shadow: 0 20px 40px var(--shadow);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin: 0 2rem;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.founder-message:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow);
}

.quote {
    font-size: 1.5rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 2rem;
}

.quote::before,
.quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.quote::before {
    top: -1.5rem;
    left: -1rem;
}

.quote::after {
    bottom: -2.5rem;
    right: -1rem;
}

.founder {
    font-weight: 600;
    color: var(--accent-dark);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.founder i {
    color: var(--accent);
    font-size: 1.4rem;
}

/* Enhanced Story Container */
.story-container {
    display: grid;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.story-step {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    box-shadow: 0 15px 30px var(--shadow);
}

.story-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px var(--shadow);
}

.story-step:hover::before {
    opacity: 1;
}

.story-step h3 {
    color: var(--text);
    margin: 1.5rem 0;
    font-size: 1.6rem;
    position: relative;
    display: inline-block;
}

.story-step h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--neon-gradient);
    transition: width 0.4s ease;
}

.story-step:hover h3::after {
    width: 80%;
}

.story-step p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
}

.story-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.story-icon::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-glow);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
    transition: all 0.4s ease;
}

.story-step:hover .story-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--neon-pink);
}

.story-step:hover .story-icon::after {
    width: 70px;
    height: 70px;
    opacity: 0.8;
}

/* Enhanced Plushie Match Section */
.plushie-match {
    background: linear-gradient(135deg, #fff5f5 0%, #fff9f9 100%);
    padding: 8rem 0;
}

.match-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
    margin: 0 2rem;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.match-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--shadow);
}

.match-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,139,167,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.match-button {
    background: var(--neon-gradient);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px var(--accent-glow);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.match-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--neon-gradient);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
    transform: translateX(-100%);
}

.match-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px var(--accent-glow),
                0 0 30px var(--neon-pink),
                0 0 60px var(--accent-glow);
}

.match-button:hover::before {
    transform: translateX(0);
    opacity: 1;
}

/* Enhanced Testimonials Section */
.testimonials {
    background: var(--gradient);
    padding: 8rem 0;
}

.testimonial-bubble {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 3.5rem 3rem;
    margin: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    box-shadow: 0 15px 30px var(--shadow);
}

.testimonial-bubble:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow);
}

.testimonial-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-bubble:hover::before {
    opacity: 1;
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    color: var(--accent);
    opacity: 0.2;
    font-size: 3rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .about-story,
    .plushie-match,
    .testimonials,
    .story-highlights {
        padding: 5rem 0;
    }

    .story-intro {
        margin-bottom: 4rem;
        padding: 0 1rem;
    }

    .founder-message {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }

    .quote {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .story-container {
        gap: 2rem;
        padding: 0 1rem;
    }

    .story-step {
        padding: 2.5rem 2rem;
    }

    .match-card {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }

    .match-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .testimonial-bubble {
        padding: 2.5rem 2rem;
        margin: 1.5rem 1rem;
    }
}

@media (min-width: 768px) {
    .story-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.95) 0%,
        rgba(91, 163, 245, 0.95) 25%,
        rgba(107, 182, 255, 0.95) 50%,
        rgba(135, 206, 235, 0.95) 75%,
        rgba(176, 224, 230, 0.95) 100%
    );
    display: none;
    justify-content: space-around;
    padding: 10px 15px;
    box-shadow: 0 8px 32px rgba(135, 206, 250, 0.4),
                0 0 60px rgba(176, 224, 230, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    width: 90%;
    max-width: 380px;
    border-radius: 25px;
    animation: float-nav 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.mobile-nav::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: navGlowRotate 8s linear infinite;
}

@keyframes navGlowRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.mobile-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px 12px;
    border-radius: 15px;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    min-width: 50px;
    min-height: 45px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav .nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-nav .nav-item:hover::before,
.mobile-nav .nav-item.active::before {
    opacity: 1;
}

.mobile-nav .nav-item:hover,
.mobile-nav .nav-item.active {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3),
                0 0 20px rgba(135, 206, 250, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-nav .nav-item.active {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4),
                0 0 30px rgba(135, 206, 250, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.mobile-nav .nav-item i {
    font-size: 1.2rem;
    margin-bottom: 3px;
    transition: all 0.3s ease;
}

.mobile-nav .nav-item.active i {
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                 0 0 25px rgba(135, 206, 250, 0.6);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.mobile-nav .nav-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Add a subtle glow animation to the active item - Winter Theme */
@keyframes navGlow {
    0% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4),
                    0 0 30px rgba(135, 206, 250, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 255, 255, 0.5),
                    0 0 40px rgba(135, 206, 250, 0.7),
                    inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.4),
                    0 0 30px rgba(135, 206, 250, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

.mobile-nav .nav-item.active {
    animation: navGlow 2s infinite;
}

/* Add a subtle hover effect - Winter Theme */
.mobile-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Make the navigation bar more visible on light backgrounds - Winter Theme */
.mobile-nav::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.5),
        rgba(135, 206, 250, 0.6),
        rgba(255, 255, 255, 0.5),
        transparent
    );
    z-index: 0;
}

/* Improve touch targets for mobile - Winter Theme */
.mobile-nav .nav-item {
    min-width: 60px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add subtle snowflake decoration to active nav items */
.mobile-nav .nav-item.active::after {
    content: '❄';
    position: absolute;
    top: -8px;
    right: -5px;
    font-size: 0.6rem;
    opacity: 0.8;
    animation: snowflakeFloat 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes snowflakeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-5px) rotate(180deg);
        opacity: 1;
    }
}

/* Improve text readability - Winter Theme */
.mobile-nav .nav-label {
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2),
                 0 0 8px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mobile-nav .nav-item:hover .nav-label,
.mobile-nav .nav-item.active .nav-label {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2),
                 0 0 12px rgba(255, 255, 255, 0.5),
                 0 0 20px rgba(135, 206, 250, 0.4);
}

/* Add a subtle pulse animation to the active icon - Winter Theme */
@keyframes iconPulse {
    0% {
        transform: scale(1.15);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                     0 0 25px rgba(135, 206, 250, 0.6);
    }
    50% {
        transform: scale(1.2);
        text-shadow: 0 0 20px rgba(255, 255, 255, 1),
                     0 0 35px rgba(135, 206, 250, 0.8);
    }
    100% {
        transform: scale(1.15);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8),
                     0 0 25px rgba(135, 206, 250, 0.6);
    }
}

.mobile-nav .nav-item.active i {
    animation: iconPulse 2s infinite;
}

/* Falling Petals Animation */
.falling-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    background: var(--accent);
    width: 15px;
    height: 15px;
    border-radius: 150% 0 150% 0;
    opacity: 0.7;
    animation: falling linear infinite;
}

@keyframes falling {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Media Queries for Navigation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .logo {
        gap: 0.65rem;
    }

    .logo-mark {
        width: 2.35rem;
        height: 2.35rem;
    }

    .logo-wordmark {
        font-size: 1.35rem;
    }
    
    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 380px;
        margin: 0 auto;
    }

    .mobile-nav .nav-item {
        flex: 1;
        min-width: 0;
        padding: 6px 8px;
    }

    .mobile-nav .nav-item i {
        font-size: 1.1rem;
    }

    .mobile-nav .nav-label {
        font-size: 0.65rem;
    }
    
    /* Adjust floating buttons position for mobile */
    .floating-buttons {
        bottom: 7rem;
    }

    /* Ensure proper z-index stacking */
    .mobile-nav {
        z-index: 1001;
    }
    
    .floating-buttons {
        z-index: 1002;
    }
}

/* Add padding to the bottom of the page to prevent content from being hidden behind the nav */
@media (max-width: 768px) {
    body {
        padding-bottom: 100px;
    }
    
    .footer {
        padding-bottom: 100px;
    }

    /* Specific fix for customer stories page */
    .customer-stories {
        padding-bottom: 120px;
    }
}

@media (min-width: 769px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-nav {
        display: none;
    }
}

/* Footer */
.footer {
    background: white;
    padding: 4rem 1rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--accent-glow),
        transparent
    );
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--text-light);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.social-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-glow);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
    z-index: -1;
}

.social-icon:hover {
    color: var(--neon-pink);
    transform: scale(1.2);
}

.social-icon:hover::after {
    opacity: 0.2;
    transform: scale(1.5);
}

.footer-message {
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.footer-message i {
    color: var(--accent);
    animation: heart-beat 1.5s ease-in-out infinite;
}

@keyframes heart-beat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Media Queries */
@media (min-width: 768px) {
    .story-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .hero-content {
        padding: 0 2rem;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0); 
        filter: blur(0.5px);
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
        filter: blur(1px);
    }
}

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

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Neon Text Effect */
.neon-text {
    background: var(--neon-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 8px var(--accent-glow);
    position: relative;
    display: inline-block;
}

.neon-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 25%;
    width: 50%;
    height: 2px;
    background: var(--neon-gradient);
    filter: blur(2px);
    opacity: 0.7;
}

/* Quiz Modal Styles */
.quiz-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quiz-modal.active {
    display: flex;
    opacity: 1;
}

.quiz-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.quiz-modal.active .quiz-content {
    transform: translateY(0);
}

.close-quiz {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ff6b6b;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-quiz:hover {
    background: #fff5f5;
    transform: rotate(90deg);
}

/* Quiz Screens */
.quiz-screen {
    text-align: center;
    padding: 1rem;
}

.quiz-screen h2 {
    color: #ff6b6b;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.quiz-screen p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Progress Bar */
.progress-bar {
    background: #f0f0f0;
    height: 8px;
    border-radius: 4px;
    margin: 2rem 0;
    overflow: hidden;
}

.progress {
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
    border-radius: 4px;
}

/* Question Container */
.question-container {
    margin: 2rem 0;
}

.question-container h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.options {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.option-btn {
    background: white;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-btn:hover {
    background: #fff5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.1);
}

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

/* Result Screen */
.result-container {
    text-align: center;
    padding: 1rem;
}

.result-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.result-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.result-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.trait {
    background: #fff5f5;
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-price {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    color: #333;
}

/* Buttons */
.match-button {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0;
}

.match-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.match-button:active {
    transform: translateY(0);
}

.retry-button {
    background: white;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0;
}

.retry-button:hover {
    background: #fff5f5;
    transform: translateY(-2px);
}

.retry-button:active {
    transform: translateY(0);
}

/* Neon Text Effect */
.neon-text {
    color: #ff6b6b;
    text-shadow: 0 0 5px rgba(255, 107, 107, 0.3),
                 0 0 10px rgba(255, 107, 107, 0.2),
                 0 0 15px rgba(255, 107, 107, 0.1);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 107, 107, 0.3),
                     0 0 10px rgba(255, 107, 107, 0.2),
                     0 0 15px rgba(255, 107, 107, 0.1);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 107, 107, 0.4),
                     0 0 20px rgba(255, 107, 107, 0.3),
                     0 0 30px rgba(255, 107, 107, 0.2);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .quiz-content {
        width: 95%;
        padding: 1.5rem;
    }

    .quiz-screen h2 {
        font-size: 1.5rem;
    }

    .quiz-screen p {
        font-size: 1rem;
    }

    .option-btn {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }

    .result-image {
        width: 150px;
        height: 150px;
    }

    .result-description {
        font-size: 1rem;
    }

    .trait {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .match-button, .retry-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Adoption Certificate Section */
.adoption-certificate {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

/* Quiz Refresh */
.quiz-modal {
    padding: 1rem;
    background: rgba(30, 22, 29, 0.58);
    backdrop-filter: blur(12px);
}

.quiz-content {
    width: min(720px, 100%);
    max-width: 720px;
    max-height: min(88vh, 920px);
    padding: 2.2rem;
    border-radius: 30px;
    border: 1px solid rgba(246, 215, 226, 0.92);
    background: linear-gradient(180deg, rgba(255, 252, 253, 0.98), rgba(255, 245, 248, 0.98));
    box-shadow: 0 26px 70px rgba(209, 136, 165, 0.24);
    overflow-y: auto;
}

.quiz-close-btn,
.close-quiz {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid rgba(242, 204, 218, 0.92);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #bb587c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(228, 180, 197, 0.2);
    z-index: 5;
}

.quiz-close-btn:hover,
.close-quiz:hover {
    background: #fff;
    transform: translateY(-1px);
}

.quiz-screen {
    text-align: left;
    padding: 0.4rem;
}

.quiz-header h2,
.quiz-screen h2 {
    color: #2f2430;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 0.9rem;
    max-width: 12ch;
}

.quiz-header p,
.quiz-screen p {
    color: #746a75;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.4rem;
    max-width: 56ch;
}

.quiz-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 1.2rem 0 1.8rem;
}

.quiz-features .feature {
    min-height: 96px;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(243, 209, 221, 0.94);
    box-shadow: 0 14px 28px rgba(236, 193, 208, 0.14);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
}

.quiz-features .feature i {
    color: #ce698f;
}

.quiz-features .feature span {
    color: #584c59;
    font-size: 0.92rem;
    line-height: 1.5;
}

.start-quiz-btn,
.shop-now-btn,
.retry-btn {
    min-height: 3.3rem;
    border-radius: 999px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.9rem 1.4rem;
    font-weight: 700;
    cursor: pointer;
}

.start-quiz-btn,
.shop-now-btn {
    background: linear-gradient(135deg, #ff90b0 0%, #ef6d95 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(239, 109, 149, 0.22);
}

.retry-btn {
    background: rgba(255, 255, 255, 0.94);
    color: #5a4c5a;
    border: 1px solid rgba(241, 208, 221, 0.94);
}

.question-container {
    margin-top: 1.25rem;
}

.question-container h3 {
    color: #2f2430;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.progress-bar {
    margin: 1.25rem 0 0;
    height: 10px;
    border-radius: 999px;
    background: rgba(239, 226, 232, 0.96);
}

.progress {
    background: linear-gradient(135deg, #ff95b4 0%, #ee7098 100%);
}

.options {
    gap: 0.9rem;
}

.option-btn {
    width: 100%;
    padding: 1.05rem 1.15rem;
    border-radius: 20px;
    border: 1px solid rgba(241, 208, 221, 0.92);
    background: rgba(255, 255, 255, 0.96);
    color: #3d313d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 12px 26px rgba(236, 193, 208, 0.12);
}

.option-btn:hover {
    background: #fff8fb;
    border-color: rgba(231, 167, 191, 0.94);
    box-shadow: 0 16px 30px rgba(236, 193, 208, 0.18);
}

.option-btn i {
    color: #cd678d;
    flex-shrink: 0;
}

.result-container {
    padding: 0.25rem;
}

.result-header h2 {
    max-width: none;
}

.quiz-results-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.quiz-result-card {
    position: relative;
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(242, 208, 221, 0.94);
    box-shadow: 0 16px 32px rgba(236, 193, 208, 0.14);
}

.quiz-result-card.is-featured {
    border-color: rgba(233, 163, 189, 0.98);
    box-shadow: 0 22px 40px rgba(232, 176, 198, 0.18);
}

.quiz-result-badge {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 239, 245, 0.95);
    color: #bb597c;
    border: 1px solid rgba(242, 208, 221, 0.94);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.quiz-result-card .result-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
    animation: none;
}

.quiz-result-card .result-name {
    color: #2f2430;
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
}

.quiz-result-card .result-description {
    margin-bottom: 1rem;
}

.quiz-result-card .result-traits {
    justify-content: flex-start;
    margin: 0 0 1rem;
}

.quiz-result-card .trait {
    background: #fff5f8;
    color: #b45177;
    border: 1px solid rgba(242, 208, 221, 0.92);
}

.quiz-result-card .result-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
    background: rgba(255, 243, 247, 0.96);
    color: #bc577c;
    border: 1px solid rgba(242, 208, 221, 0.92);
}

.quiz-result-card .result-info {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: #6f6470;
    font-size: 0.94rem;
}

.quiz-result-card-actions {
    display: flex;
}

.quiz-result-card-actions .shop-now-btn {
    width: 100%;
}

.result-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

@media (max-width: 768px) {
    .quiz-content {
        padding: 1.2rem;
        border-radius: 24px;
    }

    .quiz-features {
        grid-template-columns: 1fr;
    }

    .quiz-header h2,
    .quiz-screen h2 {
        font-size: 2rem;
        max-width: none;
    }

    .question-container h3 {
        font-size: 1.28rem;
    }

    .quiz-result-card .result-image {
        height: 210px;
    }

    .result-actions {
        flex-direction: column;
    }

    .result-actions .shop-now-btn,
    .result-actions .retry-btn,
    .start-quiz-btn {
        width: 100%;
    }
}

.certificate-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.certificate-preview {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.certificate-frame {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
}

.certificate-frame:hover {
  transform: rotate(0deg);
}

.certificate-inner {
  border: 2px solid gold;
  padding: 30px;
  text-align: center;
  position: relative;
  background: linear-gradient(45deg, #fff8f3 0%, #fff 100%);
}

.certificate-header {
  margin-bottom: 20px;
}

.certificate-icon {
  font-size: 2em;
  color: #ff6b6b;
  margin-bottom: 10px;
}

.certificate-header h3 {
  font-size: 24px;
  color: #2d3436;
  font-family: 'Playfair Display', serif;
  margin: 0;
}

.certificate-sample {
  color: #2d3436;
  line-height: 1.8;
}

.cert-line {
  margin: 5px 0;
  font-size: 16px;
}

.cert-name, .cert-plushie {
  font-size: 20px;
  color: #ff6b6b;
  font-family: 'Dancing Script', cursive;
  margin: 10px 0;
}

.cert-date {
  font-style: italic;
  margin-top: 15px;
}

.cert-seal {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 40px;
  color: #ff6b6b;
  opacity: 0.8;
  transform: rotate(-15deg);
}

.certificate-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.sparkle-1, .sparkle-2, .sparkle-3 {
  position: absolute;
  color: #ffd700;
  animation: sparkle 2s infinite;
}

.sparkle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 40%; right: 10%; animation-delay: 0.4s; }
.sparkle-3 { bottom: 20%; left: 50%; animation-delay: 0.8s; }

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

.certificate-info {
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.certificate-info h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.certificate-features {
  display: grid;
  gap: 30px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.feature i {
  font-size: 24px;
  color: #ff6b6b;
}

.feature h4 {
  font-size: 20px;
  margin: 0;
  color: #ff6b6b;
}

.feature p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .certificate-content {
    flex-direction: column;
    text-align: center;
  }

  .certificate-preview {
    margin: 0 auto;
    max-width: 400px;
  }

  .feature {
    align-items: center;
    text-align: center;
  }
}

/* Enhanced Story Highlights Section */
.story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    position: relative;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
}

.highlight-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.highlight-box:hover::before {
    opacity: 1;
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
}

.highlight-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--accent-glow);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
    transition: all 0.4s ease;
}

.highlight-box:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--neon-pink);
}

.highlight-box:hover .highlight-icon::after {
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

.highlight-box h4 {
    font-size: 1.4rem;
    color: var(--text);
    margin: 1rem 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight-box h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-gradient);
    transition: all 0.4s ease;
}

.highlight-box:hover h4::after {
    width: 100%;
}

.highlight-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 1rem 0 0;
    font-size: 1rem;
    transition: all 0.4s ease;
}

.highlight-box:hover p {
    color: var(--text);
}

/* Add decorative elements */
.story-highlights::before,
.story-highlights::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--neon-gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.story-highlights::before {
    top: -100px;
    left: -100px;
}

.story-highlights::after {
    bottom: -100px;
    right: -100px;
}

@media (max-width: 768px) {
    .story-highlights {
        padding: 1rem;
        gap: 1.5rem;
    }

    .highlight-box {
        padding: 2rem;
    }

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

    .highlight-box h4 {
        font-size: 1.2rem;
    }
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-fab {
    background: linear-gradient(45deg, #25D366, #128C7E);
    animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-fab::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.whatsapp-fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-fab:hover::after {
    opacity: 0.7;
}

.fab-tooltip {
    position: absolute;
    right: calc(100% + 1rem);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 500;
}

.floating-button:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-10px);
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.05);
    }
    75% {
        transform: translateY(-5px) scale(1.02);
    }
}

/* Media Queries for Navigation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    /* Adjust floating buttons position for mobile */
    .floating-buttons {
        bottom: 8rem;
    }
}

@media (min-width: 769px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-nav {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .product-card:hover .product-overlay {
        opacity: 0;
    }
    
    .mobile-action-btn {
        display: flex;
    }
    
    .product-overlay {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-elements,
    .falling-container,
    .shape {
        display: none;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    :root {
        --section-spacing: 4rem;
    }
    
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--mobile-padding);
    }
    
    /* Optimize animations for mobile */
    .product-card {
        transform: none !important;
        transition: opacity var(--transition-fast);
    }
    
    .product-card:hover {
        transform: none !important;
    }
    
    /* Improve touch targets */
    button, 
    .nav-item,
    .mobile-action-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* High DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-image img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {
    .desktop-nav,
    .mobile-nav,
    .floating-buttons,
    .product-overlay,
    .quick-view-btn,
    .size-guide-btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .product-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Snow Animation */
.magical-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.magical-element {
    position: absolute;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Floating glow elements */
.magical-element.glow-dot,
.magical-element.glow-ring,
.magical-element.glow-spark {
    display: grid;
    place-items: center;
    filter: drop-shadow(0 6px 14px rgba(255, 184, 208, 0.22));
}

.magical-element.glow-dot svg,
.magical-element.glow-ring svg,
.magical-element.glow-spark svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Animation Keyframes */
@keyframes falling {
    0% {
        transform: translateY(-10%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(240deg);
        opacity: 0;
    }
}

@keyframes falling-left {
    0% {
        transform: translateY(-10%) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(-70px) rotate(220deg);
        opacity: 0;
    }
}

@keyframes falling-right {
    0% {
        transform: translateY(-10%) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(70px) rotate(-220deg);
        opacity: 0;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .magical-element {
        opacity: 0.6;
    }
    
    .magical-element.glow-dot,
    .magical-element.glow-ring,
    .magical-element.glow-spark {
        filter: drop-shadow(0 4px 8px rgba(255, 184, 208, 0.18));
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .magical-particles {
        display: none;
    }
}

/* Rose Petals Animation */
.rose-petal {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 150% 0 150% 0;
    animation: float 10s linear infinite;
    opacity: 0.4;
    filter: blur(0.5px);
    z-index: 1;
}

.rose-petal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(45deg);
}

.rose-petal-1 { top: 20%; left: 20%; animation-delay: 0s; }
.rose-petal-2 { top: 60%; left: 60%; animation-delay: -5s; }

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translate(20px, 20px) rotate(360deg);
        opacity: 0;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .rose-petal {
        width: 8px;
        height: 8px;
        opacity: 0.3;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .rose-petal {
        width: 9px;
        height: 9px;
        opacity: 0.35;
    }
}

/* Palestine Support Section */
.palestine-support {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.palestine-support::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 31, 143, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(24, 182, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.support-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.support-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 139, 167, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
  z-index: 0;
}

.support-image {
  flex: 0 0 300px;
  position: relative;
  z-index: 1;
}

.palestine-bunny {
  width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.support-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

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

.support-header i {
  font-size: 2rem;
  color: #e74c3c;
  animation: pulse 2s ease-in-out infinite;
}

.support-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-message {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.support-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat {
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat:hover {
  transform: translateY(-5px);
}

.stat i {
  font-size: 1.8rem;
  color: #e74c3c;
  margin-bottom: 0.5rem;
}

.stat span {
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.9rem;
}

.support-ribbon {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.support-ribbon i {
  font-size: 1.2rem;
}

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

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

@media (max-width: 768px) {
  .support-wrapper {
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }

  .support-image {
    flex: 0 0 auto;
    width: 200px;
  }

  .support-header h2 {
    font-size: 2rem;
  }

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

  .support-ribbon {
    width: 100%;
    justify-content: center;
  }
}

/* Coming Soon Countdown Styles */
.coming-soon-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.coming-soon-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 31, 143, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.launch-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    min-width: 100px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 31, 143, 0.2);
}

.countdown-item span:first-child {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 31, 143, 0.5);
    margin-bottom: 0.5rem;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.pre-order-btn {
    background: linear-gradient(135deg, #ff1f8f 0%, #ff6b8b 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 31, 143, 0.3);
    margin-top: 1rem;
}

.pre-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 31, 143, 0.5);
    background: linear-gradient(135deg, #ff6b8b 0%, #ff1f8f 100%);
}

.pre-order-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.pre-order-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 0.8rem;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 1.5rem;
    }
    
    .launch-message {
        font-size: 1rem;
    }
    
    .pre-order-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.6rem;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .coming-soon-title {
        font-size: 1.3rem;
    }
    
    .launch-message {
        font-size: 0.9rem;
    }
}

/* Launch Celebration Styles */
.launch-celebration {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid rgba(255, 31, 143, 0.3);
    box-shadow: 0 0 30px rgba(255, 31, 143, 0.2),
                inset 0 0 20px rgba(255, 31, 143, 0.1);
    animation: glowPulse 2s ease-in-out infinite;
}

.celebration-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 31, 143, 0.8),
                 0 0 20px rgba(255, 31, 143, 0.6),
                 0 0 30px rgba(255, 31, 143, 0.4);
    animation: titleFloat 3s ease-in-out infinite;
}

.celebration-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px rgba(255, 31, 143, 0.5);
}

.celebration-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.timer-item {
    background: rgba(255, 31, 143, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
    text-align: center;
    border: 1px solid rgba(255, 31, 143, 0.4);
    transition: transform 0.3s ease;
    animation: timerPulse 2s ease-in-out infinite;
}

.timer-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 31, 143, 0.3);
}

.timer-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 31, 143, 0.8),
                 0 0 20px rgba(255, 31, 143, 0.6);
    margin-bottom: 0.5rem;
}

.timer-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(255, 31, 143, 0.5);
}

.celebration-button {
    background: linear-gradient(135deg, #ff1f8f 0%, #ff6b8b 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 31, 143, 0.4);
    margin-top: 1rem;
    animation: buttonGlow 2s ease-in-out infinite;
}

.celebration-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 31, 143, 0.6);
    background: linear-gradient(135deg, #ff6b8b 0%, #ff1f8f 100%);
}

.celebration-button i {
    margin-left: 0.5rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 31, 143, 0.2),
                    inset 0 0 20px rgba(255, 31, 143, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 31, 143, 0.3),
                    inset 0 0 30px rgba(255, 31, 143, 0.2);
    }
}

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

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

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 31, 143, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 31, 143, 0.6);
    }
}

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

@media (max-width: 768px) {
    .celebration-title {
        font-size: 2rem;
    }
    
    .celebration-message {
        font-size: 1.1rem;
    }
    
    .celebration-timer {
        gap: 1rem;
    }
    
    .timer-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .timer-value {
        font-size: 2.5rem;
    }
    
    .timer-label {
        font-size: 1rem;
    }
    
    .celebration-button {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .celebration-title {
        font-size: 1.8rem;
    }
    
    .celebration-message {
        font-size: 1rem;
    }
    
    .timer-item {
        min-width: 90px;
        padding: 0.8rem;
    }
    
    .timer-value {
        font-size: 2rem;
    }
    
    .timer-label {
        font-size: 0.9rem;
    }
}

/* Summer Drop Announcement Styles */
.summer-drop-announcement {
    background: linear-gradient(135deg, #ff6b9c 0%, #ff8fab 100%);
    border-radius: 25px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 156, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.summer-drop-announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.announcement-badge i {
    color: #fff;
    font-size: 1rem;
    animation: firePulse 2s ease-in-out infinite;
}

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

.announcement-badge span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcement-title {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 0 2px 20px rgba(255, 255, 255, 0.5); }
}

.announcement-message {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.drop-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
    color: #fff;
    font-size: 1.1rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

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

.highlight-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.announcement-button {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    color: #ff6b9c;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.announcement-button:hover::before {
    left: 100%;
}

.announcement-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #ff6b9c;
}

.announcement-button i {
    margin-left: 0.5rem;
    animation: fireGlow 2s ease-in-out infinite;
}

@keyframes fireGlow {
    0%, 100% { color: #ff6b9c; }
    50% { color: #ff8fab; }
}

@media (max-width: 768px) {
    .summer-drop-announcement {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .announcement-title {
        font-size: 1.5rem;
    }
    
    .announcement-message {
        font-size: 1rem;
    }
    
    .drop-highlights {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .highlight-item {
        padding: 0.5rem 1rem;
    }
    
    .announcement-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .summer-drop-announcement {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .announcement-title {
        font-size: 1.3rem;
    }
    
    .announcement-message {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        padding: 0.4rem 0.8rem;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
    
    .announcement-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   WINTER THEME ENHANCEMENTS FOR MAIN HERO
   ============================================ */

/* Cute Hero Background Enhancement */
.cute-hero-main {
    background: 
        linear-gradient(135deg, 
            rgba(255, 245, 250, 0.98) 0%, 
            rgba(255, 250, 255, 0.95) 25%,
            rgba(250, 245, 255, 0.95) 50%,
            rgba(255, 248, 250, 0.95) 75%,
            rgba(255, 245, 252, 0.98) 100%
        );
    position: relative;
}

.cute-hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 182, 193, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(221, 160, 221, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 218, 185, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 192, 203, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 70% 30%, rgba(230, 230, 250, 0.15) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.cute-hero-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='90' cy='90' r='40' fill='none' stroke='%23ffb6c1' stroke-width='1.5' opacity='0.05'/%3E%3Ccircle cx='45' cy='45' r='20' fill='%23dda0dd' opacity='0.06'/%3E%3Ccircle cx='135' cy='45' r='25' fill='%23ffb6c1' opacity='0.05'/%3E%3Ccircle cx='45' cy='135' r='20' fill='%23ffdab9' opacity='0.06'/%3E%3Ccircle cx='135' cy='135' r='25' fill='%23e6e6fa' opacity='0.05'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60,30 L65,50 L85,50 L70,62 L75,82 L60,70 L45,82 L50,62 L35,50 L55,50 Z' fill='%23ffb6c1' opacity='0.06'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='8' fill='%23dda0dd' opacity='0.05'/%3E%3Ccircle cx='25' cy='25' r='5' fill='%23ffb6c1' opacity='0.06'/%3E%3Ccircle cx='75' cy='25' r='6' fill='%23ffdab9' opacity='0.05'/%3E%3Ccircle cx='25' cy='75' r='5' fill='%23e6e6fa' opacity='0.06'/%3E%3Ccircle cx='75' cy='75' r='6' fill='%23ffb6c1' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 360px 360px, 240px 240px, 200px 200px;
    background-position: 0 0, 120px 120px, 60px 60px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}


/* Floating Cute Elements for Main Hero */
.hero-cute-container,
.cute-elements-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-cute-container .cute-emoji,
.hero-cute-container .cute-sparkle,
.cute-elements-container .cute-emoji,
.cute-elements-container .cute-sparkle {
    position: absolute;
    top: -50px;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
    animation: cuteElementFall linear infinite;
    opacity: 0.6;
}

.hero-cute-container .cute-emoji,
.cute-elements-container .cute-emoji {
    text-shadow: 0 0 8px rgba(255, 182, 193, 0.5), 0 0 15px rgba(221, 160, 221, 0.3);
    filter: drop-shadow(0 2px 4px rgba(255, 192, 203, 0.4));
}

.hero-cute-container .cute-sparkle,
.cute-elements-container .cute-sparkle {
    color: rgba(255, 218, 185, 0.9);
    text-shadow: 0 0 6px rgba(255, 192, 203, 0.6), 0 0 12px rgba(230, 230, 250, 0.4);
}

.hero-cute-container .cute-emoji:nth-child(1), .hero-cute-container .cute-sparkle:nth-child(1),
.cute-elements-container .cute-emoji:nth-child(1), .cute-elements-container .cute-sparkle:nth-child(1) { left: 3%; animation-duration: 14s; animation-delay: 0s; font-size: 1.1rem; }
.hero-cute-container .cute-emoji:nth-child(2), .hero-cute-container .cute-sparkle:nth-child(2),
.cute-elements-container .cute-emoji:nth-child(2), .cute-elements-container .cute-sparkle:nth-child(2) { left: 8%; animation-duration: 16s; animation-delay: 1.2s; font-size: 1.3rem; }
.hero-cute-container .cute-emoji:nth-child(3), .hero-cute-container .cute-sparkle:nth-child(3),
.cute-elements-container .cute-emoji:nth-child(3), .cute-elements-container .cute-sparkle:nth-child(3) { left: 13%; animation-duration: 13s; animation-delay: 2.5s; font-size: 1rem; }
.hero-cute-container .cute-emoji:nth-child(4), .hero-cute-container .cute-sparkle:nth-child(4),
.cute-elements-container .cute-emoji:nth-child(4), .cute-elements-container .cute-sparkle:nth-child(4) { left: 18%; animation-duration: 17s; animation-delay: 0.5s; font-size: 1.2rem; }
.hero-cute-container .cute-emoji:nth-child(5), .hero-cute-container .cute-sparkle:nth-child(5),
.cute-elements-container .cute-emoji:nth-child(5), .cute-elements-container .cute-sparkle:nth-child(5) { left: 23%; animation-duration: 14s; animation-delay: 1.8s; font-size: 1.1rem; }
.hero-cute-container .cute-emoji:nth-child(6), .hero-cute-container .cute-sparkle:nth-child(6),
.cute-elements-container .cute-emoji:nth-child(6), .cute-elements-container .cute-sparkle:nth-child(6) { left: 28%; animation-duration: 15s; animation-delay: 3s; font-size: 1.3rem; }
.hero-cute-container .cute-emoji:nth-child(7), .hero-cute-container .cute-sparkle:nth-child(7),
.cute-elements-container .cute-emoji:nth-child(7), .cute-elements-container .cute-sparkle:nth-child(7) { left: 33%; animation-duration: 13s; animation-delay: 0.8s; font-size: 1rem; }
.hero-cute-container .cute-emoji:nth-child(8), .hero-cute-container .cute-sparkle:nth-child(8),
.cute-elements-container .cute-emoji:nth-child(8), .cute-elements-container .cute-sparkle:nth-child(8) { left: 38%; animation-duration: 16s; animation-delay: 2.2s; font-size: 1.2rem; }
.hero-cute-container .cute-emoji:nth-child(9), .hero-cute-container .cute-sparkle:nth-child(9),
.cute-elements-container .cute-emoji:nth-child(9), .cute-elements-container .cute-sparkle:nth-child(9) { left: 43%; animation-duration: 14s; animation-delay: 0.3s; font-size: 1.1rem; }
.hero-cute-container .cute-emoji:nth-child(10), .hero-cute-container .cute-sparkle:nth-child(10),
.cute-elements-container .cute-emoji:nth-child(10), .cute-elements-container .cute-sparkle:nth-child(10) { left: 48%; animation-duration: 15s; animation-delay: 1.5s; font-size: 1.3rem; }
.hero-cute-container .cute-emoji:nth-child(11), .hero-cute-container .cute-sparkle:nth-child(11),
.cute-elements-container .cute-emoji:nth-child(11), .cute-elements-container .cute-sparkle:nth-child(11) { left: 53%; animation-duration: 13s; animation-delay: 2.8s; font-size: 1rem; }
.hero-cute-container .cute-emoji:nth-child(12), .hero-cute-container .cute-sparkle:nth-child(12),
.cute-elements-container .cute-emoji:nth-child(12), .cute-elements-container .cute-sparkle:nth-child(12) { left: 58%; animation-duration: 17s; animation-delay: 0.7s; font-size: 1.2rem; }
.hero-cute-container .cute-emoji:nth-child(13), .hero-cute-container .cute-sparkle:nth-child(13),
.cute-elements-container .cute-emoji:nth-child(13), .cute-elements-container .cute-sparkle:nth-child(13) { left: 63%; animation-duration: 14s; animation-delay: 1.9s; font-size: 1.1rem; }
.hero-cute-container .cute-emoji:nth-child(14), .hero-cute-container .cute-sparkle:nth-child(14),
.cute-elements-container .cute-emoji:nth-child(14), .cute-elements-container .cute-sparkle:nth-child(14) { left: 68%; animation-duration: 16s; animation-delay: 0.4s; font-size: 1.2rem; }
.hero-cute-container .cute-emoji:nth-child(15), .hero-cute-container .cute-sparkle:nth-child(15),
.cute-elements-container .cute-emoji:nth-child(15), .cute-elements-container .cute-sparkle:nth-child(15) { left: 73%; animation-duration: 13s; animation-delay: 2.6s; font-size: 1.3rem; }
.hero-cute-container .cute-emoji:nth-child(16), .hero-cute-container .cute-sparkle:nth-child(16),
.cute-elements-container .cute-emoji:nth-child(16), .cute-elements-container .cute-sparkle:nth-child(16) { left: 78%; animation-duration: 15s; animation-delay: 1.1s; font-size: 1rem; }
.hero-cute-container .cute-emoji:nth-child(17), .hero-cute-container .cute-sparkle:nth-child(17),
.cute-elements-container .cute-emoji:nth-child(17), .cute-elements-container .cute-sparkle:nth-child(17) { left: 83%; animation-duration: 14s; animation-delay: 3.2s; font-size: 1.1rem; }
.hero-cute-container .cute-emoji:nth-child(18), .hero-cute-container .cute-sparkle:nth-child(18),
.cute-elements-container .cute-emoji:nth-child(18), .cute-elements-container .cute-sparkle:nth-child(18) { left: 88%; animation-duration: 16s; animation-delay: 0.9s; font-size: 1.2rem; }
.hero-cute-container .cute-emoji:nth-child(19), .hero-cute-container .cute-sparkle:nth-child(19),
.cute-elements-container .cute-emoji:nth-child(19), .cute-elements-container .cute-sparkle:nth-child(19) { left: 93%; animation-duration: 13s; animation-delay: 2.3s; font-size: 1rem; }
.hero-cute-container .cute-emoji:nth-child(20), .hero-cute-container .cute-sparkle:nth-child(20),
.cute-elements-container .cute-emoji:nth-child(20), .cute-elements-container .cute-sparkle:nth-child(20) { left: 6%; animation-duration: 15s; animation-delay: 1.6s; font-size: 1.3rem; }
.hero-cute-container .cute-emoji:nth-child(21), .hero-cute-container .cute-sparkle:nth-child(21),
.cute-elements-container .cute-emoji:nth-child(21), .cute-elements-container .cute-sparkle:nth-child(21) { left: 16%; animation-duration: 14s; animation-delay: 0.2s; font-size: 1.1rem; }
.hero-cute-container .cute-emoji:nth-child(22), .hero-cute-container .cute-sparkle:nth-child(22),
.cute-elements-container .cute-emoji:nth-child(22), .cute-elements-container .cute-sparkle:nth-child(22) { left: 26%; animation-duration: 16s; animation-delay: 2.9s; font-size: 1.2rem; }
.hero-cute-container .cute-emoji:nth-child(23), .hero-cute-container .cute-sparkle:nth-child(23),
.cute-elements-container .cute-emoji:nth-child(23), .cute-elements-container .cute-sparkle:nth-child(23) { left: 36%; animation-duration: 13s; animation-delay: 1.4s; font-size: 1rem; }
.hero-cute-container .cute-emoji:nth-child(24), .hero-cute-container .cute-sparkle:nth-child(24),
.cute-elements-container .cute-emoji:nth-child(24), .cute-elements-container .cute-sparkle:nth-child(24) { left: 46%; animation-duration: 17s; animation-delay: 0.6s; font-size: 1.3rem; }
.hero-cute-container .cute-emoji:nth-child(25), .hero-cute-container .cute-sparkle:nth-child(25),
.cute-elements-container .cute-emoji:nth-child(25), .cute-elements-container .cute-sparkle:nth-child(25) { left: 56%; animation-duration: 14s; animation-delay: 2.1s; font-size: 1.1rem; }
.hero-cute-container .cute-emoji:nth-child(26), .hero-cute-container .cute-sparkle:nth-child(26),
.cute-elements-container .cute-emoji:nth-child(26), .cute-elements-container .cute-sparkle:nth-child(26) { left: 66%; animation-duration: 15s; animation-delay: 0.8s; font-size: 1.2rem; }
.hero-cute-container .cute-emoji:nth-child(27), .hero-cute-container .cute-sparkle:nth-child(27),
.cute-elements-container .cute-emoji:nth-child(27), .cute-elements-container .cute-sparkle:nth-child(27) { left: 76%; animation-duration: 13s; animation-delay: 2.4s; font-size: 1.3rem; }
.hero-cute-container .cute-emoji:nth-child(28), .hero-cute-container .cute-sparkle:nth-child(28),
.cute-elements-container .cute-emoji:nth-child(28), .cute-elements-container .cute-sparkle:nth-child(28) { left: 86%; animation-duration: 16s; animation-delay: 1.7s; font-size: 1rem; }
.hero-cute-container .cute-emoji:nth-child(29), .hero-cute-container .cute-sparkle:nth-child(29),
.cute-elements-container .cute-emoji:nth-child(29), .cute-elements-container .cute-sparkle:nth-child(29) { left: 96%; animation-duration: 14s; animation-delay: 0.1s; font-size: 1.1rem; }
.hero-cute-container .cute-emoji:nth-child(30), .hero-cute-container .cute-sparkle:nth-child(30),
.cute-elements-container .cute-emoji:nth-child(30), .cute-elements-container .cute-sparkle:nth-child(30) { left: 11%; animation-duration: 15s; animation-delay: 2.7s; font-size: 1.2rem; }

@keyframes cuteElementFall {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(50vh) translateX(20px) scale(1.1) rotate(180deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) translateX(-20px) scale(0.9) rotate(360deg);
        opacity: 0.2;
    }
}

/* Cute CTA Button */
.cute-cta-button {
    background: linear-gradient(135deg, #ffb6c1 0%, #dda0dd 50%, #ffdab9 100%);
    color: white !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 0 25px rgba(255, 182, 193, 0.4),
        0 4px 15px rgba(221, 160, 221, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.cute-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cute-cta-button:hover::before {
    left: 100%;
}

.cute-cta-button:hover {
    background: linear-gradient(135deg, #dda0dd 0%, #ffb6c1 50%, #ffdab9 100%);
    box-shadow: 
        0 0 35px rgba(255, 182, 193, 0.6),
        0 6px 20px rgba(221, 160, 221, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.cute-cta-button i {
    animation: cutePulse 2s ease-in-out infinite;
}

@keyframes cutePulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(5deg); }
}

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

.cute-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.4) 0%, rgba(221, 160, 221, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    animation: cuteGlow 2s ease-in-out infinite;
    pointer-events: none;
}

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

/* Enhanced Cute Drop Indicator */
.cute-hero-main .indicator-badge {
    background: linear-gradient(135deg, #ffb6c1 0%, #dda0dd 50%, #ffdab9 100%);
    box-shadow: 
        0 8px 25px rgba(255, 182, 193, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: cuteBadgePulse 2.5s ease-in-out infinite;
}

@keyframes cuteBadgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 8px 25px rgba(255, 182, 193, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 12px 35px rgba(255, 182, 193, 0.6),
            0 0 0 2px rgba(255, 255, 255, 0.4);
    }
}

.cute-hero-main .badge-icon {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.3);
}

.cute-hero-main .indicator-container {
    background: linear-gradient(135deg, 
        rgba(255, 182, 193, 0.12) 0%, 
        rgba(221, 160, 221, 0.1) 50%,
        rgba(255, 218, 185, 0.12) 100%);
    border: 2px solid rgba(255, 192, 203, 0.4);
    box-shadow: 
        0 20px 40px rgba(255, 182, 193, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 192, 203, 0.2);
}

.cute-hero-main .indicator-container::before {
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
}

.cute-hero-main .feature-tag {
    background: linear-gradient(135deg, 
        rgba(255, 245, 250, 0.4) 0%, 
        rgba(255, 250, 255, 0.4) 100%);
    border: 1px solid rgba(255, 182, 193, 0.5);
    color: #dda0dd;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(255, 182, 193, 0.25);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
}

.cute-hero-main .feature-tag i {
    font-size: 0.9rem;
    color: #ffb6c1;
    animation: cutePulse 2s ease-in-out infinite;
}

.cute-hero-main .feature-tag span {
    font-weight: 600;
}

.cute-hero-main .feature-tag:hover {
    background: linear-gradient(135deg, 
        rgba(255, 245, 250, 0.6) 0%, 
        rgba(255, 250, 255, 0.6) 100%);
    box-shadow: 0 4px 12px rgba(255, 182, 193, 0.4);
    transform: translateY(-3px) scale(1.05);
}

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

.cute-hero-main .indicator-title {
    color: #dda0dd !important;
    -webkit-text-fill-color: #dda0dd !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.9),
        0 0 12px rgba(255, 255, 255, 0.6) !important;
    font-weight: 700;
}

.cute-hero-main .indicator-description {
    color: #2a2a2a !important;
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* Floating Valentine Elements */
.valentine-hero-main .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.valentine-hero-main .floating-heart,
.valentine-hero-main .floating-star,
.valentine-hero-main .floating-sparkle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: floatValentine 6s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 182, 193, 0.6);
}

.cute-hero-main .floating-cute {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    filter: drop-shadow(0 2px 4px rgba(255, 182, 193, 0.4));
}

.cute-hero-main .floating-star {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    color: #ffdab9;
    text-shadow: 0 0 8px rgba(255, 218, 185, 0.6);
}

.cute-hero-main .floating-sparkle {
    top: 40%;
    right: 25%;
    animation-delay: 4s;
    color: #dda0dd;
    text-shadow: 0 0 8px rgba(221, 160, 221, 0.6);
}

@keyframes floatCute {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1.1);
        opacity: 1;
    }
}

/* Responsive Cute Hero */
@media (max-width: 768px) {
    .cute-cta-button {
        padding: 14px 24px;
        font-size: 16px;
    }

    .cute-hero-main .indicator-container {
        padding: 1.5rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .cute-cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }

    .cute-hero-main .indicator-container {
        padding: 1rem;
    }

    .cute-hero-main .feature-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Global Cursor Particle Effects */
.cursor-heart {
    position: fixed;
    pointer-events: none;
    width: 20px;
    height: 20px;
    z-index: 9999;
    opacity: 0.8;
    animation: cursorHeartFloat 1.5s ease-out forwards;
}

.cursor-heart svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes cursorHeartFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-60px) scale(0.5);
        opacity: 0;
    }
}

/* Disable cursor effects on mobile for performance */
@media (max-width: 768px) {
    .cursor-heart {
        display: none;
    }
}

/* Mobile Nav Refresh */
@media (max-width: 768px) {
    .mobile-nav {
        display: flex;
        position: fixed;
        left: 50%;
        bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        transform: translateX(-50%);
        align-items: stretch;
        justify-content: space-between;
        gap: 0.35rem;
        width: min(92%, 430px);
        max-width: 430px;
        margin: 0;
        padding: 0.55rem;
        border-radius: 999px;
        background: rgba(255, 250, 252, 0.92);
        border: 1px solid rgba(226, 197, 209, 0.9);
        box-shadow: 0 16px 36px rgba(166, 120, 141, 0.18);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        animation: none;
        overflow: visible;
        z-index: 1001;
    }

    .mobile-nav::before,
    .mobile-nav::after,
    .mobile-nav .nav-item::before,
    .mobile-nav .nav-item.active::after {
        content: none;
        animation: none;
    }

    .mobile-nav .nav-item {
        flex: 1;
        min-width: 0;
        min-height: 56px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        padding: 0.45rem 0.35rem;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: #7f5f6d;
        text-decoration: none;
        box-shadow: none;
        transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
        -webkit-tap-highlight-color: transparent;
        will-change: transform;
    }

    .mobile-nav .nav-item:hover,
    .mobile-nav .nav-item:focus-visible {
        color: #8f506a;
        background: rgba(255, 242, 247, 0.85);
        transform: translateY(-1px);
    }

    .mobile-nav .nav-item.active,
    .mobile-nav .nav-item[aria-current="page"] {
        color: #8b3d61;
        background: linear-gradient(180deg, rgba(255, 240, 246, 0.98) 0%, rgba(248, 222, 233, 0.98) 100%);
        box-shadow: 0 10px 22px rgba(190, 131, 155, 0.18);
        animation: none;
    }

    .mobile-nav .nav-item i {
        font-size: 1rem;
        margin-bottom: 0.1rem;
        text-shadow: none;
        filter: none;
        transition: transform 0.22s ease;
    }

    .mobile-nav .nav-item.active i,
    .mobile-nav .nav-item[aria-current="page"] i,
    .mobile-nav .nav-item:focus-visible i {
        transform: translateY(-1px) scale(1.03);
        animation: none;
    }

    .mobile-nav .nav-label {
        font-size: 0.64rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1;
        white-space: nowrap;
        opacity: 1;
        text-shadow: none;
        transition: none;
    }

    body {
        padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
    }

    .footer {
        padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
    }
}
