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

:root {
    --primary: #000;
    --secondary: #666;
    --accent: #007AFF;
    --background: #fff;
    --surface: #f8f9fa;
    --border: #e1e5e9;
    --text: #1a1a1a;
    --text-light: #666;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.2s ease;
    
    /* Bright colorful theme for high school kids */
    --sky-blue: #87CEEB;
    --bright-pink: #FF69B4;
    --electric-purple: #8A2BE2;
    --neon-green: #39FF14;
    --sunset-orange: #FF6B35;
    --cyber-yellow: #FFD700;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Discount Banner */
.discount-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #FF4500 0%, #FF6B35 25%, #FF8C00 50%, #FF4500 75%, #DC143C 100%);
    color: white;
    z-index: 10001;
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
    animation: bannerPulse 3s ease-in-out infinite;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.fire-icon {
    font-size: 24px;
    animation: fireFlicker 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.banner-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.banner-main {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.banner-sub {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.3;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.copy-code-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.copy-code-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0.8;
    flex-shrink: 0;
}

.close-banner:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: scale(1.1);
}

/* Header */
.header {
    position: fixed;
    top: 72px; /* Adjusted for banner */
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent);
}

.cart-icon {
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.cart-icon:hover {
    background: var(--surface);
}

/* Hero Section - WHITE to LIGHT PINK GRADIENT */
.hero {
    padding: 216px 0 80px; /* Adjusted for banner */
    background: linear-gradient(180deg, 
        #ffffff 0%, 
        #fefefe 25%, 
        #fdf8fd 50%, 
        #fcf0fc 75%, 
        #fae8fa 100%
    );
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #000 0%, #333 50%, #FF69B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 50%, #8A2BE2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FF1493 0%, #8A2BE2 50%, #4B0082 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.4);
}

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

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(135, 206, 235, 0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.15) 0%, rgba(138, 43, 226, 0.1) 100%);
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 105, 180, 0.1) 100%);
}

.floating-smoke {
    position: absolute;
    width: 4px;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 105, 180, 0.4), transparent);
    border-radius: 2px;
    animation: smoke 4s ease-in-out infinite;
}

.smoke-1 {
    top: 40%;
    left: 20%;
    animation-delay: 0s;
}

.smoke-2 {
    top: 50%;
    right: 25%;
    animation-delay: 1.5s;
    background: linear-gradient(to top, rgba(135, 206, 235, 0.4), transparent);
}

.smoke-3 {
    top: 35%;
    left: 70%;
    animation-delay: 3s;
    background: linear-gradient(to top, rgba(255, 215, 0, 0.4), transparent);
}

/* Products Section - PINK to WHITE GRADIENT */
.products {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        #fae8fa 0%, 
        #fcf0fc 25%, 
        #fdf8fd 50%, 
        #fefefe 75%, 
        #ffffff 100%
    );
}

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

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FF69B4 0%, #000 50%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    justify-items: center;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(255, 105, 180, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(255, 105, 180, 0.1);
    width: 100%;
    max-width: 350px;
}

.product-card.main-product {
    max-width: 400px;
    transform: scale(1.05);
    border: 2px solid rgba(255, 105, 180, 0.3);
    box-shadow: 
        0 12px 40px rgba(255, 105, 180, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(255, 105, 180, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 105, 180, 0.3);
}

.product-card.main-product:hover {
    transform: scale(1.05) translateY(-8px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-rating {
    margin-bottom: 16px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.stars span:first-child {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-count {
    color: var(--text-light);
    font-size: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.product-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF69B4 0%, #8A2BE2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.product-btn:hover {
    background: linear-gradient(135deg, #FF1493 0%, #4B0082 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 105, 180, 0.4);
}

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

.collection-modal.active {
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 1200px;
    overflow: hidden;
    position: relative;
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.collection-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #fdf8fd 0%, #ffffff 100%);
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, #FF69B4 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-btn:hover {
    background: var(--surface);
    color: var(--primary);
}

.modal-body {
    padding: 30px 40px 40px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.collection-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
}

.products-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.collection-product {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 105, 180, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.collection-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 105, 180, 0.15);
    border-color: rgba(255, 105, 180, 0.3);
}

.collection-product img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.collection-product h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.flavor-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--bright-pink);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collection-product .product-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.4;
}

.buy-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF69B4 0%, #8A2BE2 100%);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

.buy-btn:hover {
    background: linear-gradient(135deg, #FF1493 0%, #4B0082 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

/* Features Section - WHITE to PINK to BLACK GRADIENT */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        #ffffff 0%, 
        #fdf8fd 15%, 
        #fae8fa 30%, 
        #f5d0f5 45%, 
        #f0b8f0 60%, 
        #d8a0d8 75%, 
        #c088c0 85%, 
        #a070a0 92%, 
        #805880 96%, 
        #604060 98%, 
        #402840 99%, 
        #201020 100%
    );
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(135, 206, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.feature-1 {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(135, 206, 235, 0.1) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
}

.feature-1:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(135, 206, 235, 0.2) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
}

.feature-2 {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 105, 180, 0.1) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
}

.feature-2:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 105, 180, 0.2) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
}

.feature-3 {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(138, 43, 226, 0.1) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
}

.feature-3:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(138, 43, 226, 0.2) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
}

.feature-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.feature-1 .feature-icon {
    color: var(--sky-blue);
    filter: drop-shadow(0 4px 8px rgba(135, 206, 235, 0.3));
}

.feature-2 .feature-icon {
    color: var(--bright-pink);
    filter: drop-shadow(0 4px 8px rgba(255, 105, 180, 0.3));
}

.feature-3 .feature-icon {
    color: var(--electric-purple);
    filter: drop-shadow(0 4px 8px rgba(138, 43, 226, 0.3));
}

.feature h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
    position: relative;
    z-index: 3;
}

.feature p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

.feature-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-1 .feature-bg {
    background: radial-gradient(circle, rgba(135, 206, 235, 0.2) 0%, transparent 70%);
}

.feature-2 .feature-bg {
    background: radial-gradient(circle, rgba(255, 105, 180, 0.2) 0%, transparent 70%);
}

.feature-3 .feature-bg {
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
}

.feature:hover .feature-bg {
    opacity: 1;
}

/* Newsletter - BLACK with GRADIENT ACCENTS */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a0a1a 50%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #FF69B4 50%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 16px;
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    border-color: var(--bright-pink);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.subscribe-btn {
    background: linear-gradient(135deg, #FF69B4 0%, #8A2BE2 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 105, 180, 0.3);
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #FF1493 0%, #4B0082 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

/* Footer - BLACK with GRADIENT ELEMENTS */
.footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    padding: 64px 0 32px;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 105, 180, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(135, 206, 235, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.footer-brand .logo-text {
    background: linear-gradient(135deg, #ffffff 0%, #FF69B4 50%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--bright-pink);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--bright-pink) 0%, var(--electric-purple) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 105, 180, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes smoke {
    0% {
        transform: translateY(0px) scaleY(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scaleY(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-40px) scaleY(2);
        opacity: 0;
    }
}

@keyframes bannerPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 69, 0, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(255, 69, 0, 0.6);
    }
}

@keyframes fireFlicker {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-2deg);
    }
    50% {
        transform: scale(0.95) rotate(1deg);
    }
    75% {
        transform: scale(1.05) rotate(-1deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Banner Optimization */
    .discount-banner {
        padding: 20px 0;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
        text-align: center;
    }
    
    .banner-left {
        justify-content: center;
        gap: 16px;
    }
    
    .banner-text {
        align-items: center;
    }
    
    .banner-main {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .banner-sub {
        font-size: 15px;
    }
    
    .banner-actions {
        justify-content: center;
        width: 100%;
    }
    
    .copy-code-btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .close-banner {
        position: absolute;
        top: 8px;
        right: 16px;
        font-size: 24px;
    }
    
    .header {
        top: 100px; /* Adjusted for mobile banner height */
    }
    
    .hero {
        padding: 240px 0 60px; /* Adjusted for mobile banner height */
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-link {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .modal-header {
        padding: 20px 24px 16px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .modal-body {
        padding: 20px 24px 30px;
    }

    .products-collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }

    .collection-product {
        padding: 16px;
    }

    .collection-product img {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-collection-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ultra-mobile banner optimization */
    .banner-main {
        font-size: 16px;
    }
    
    .banner-sub {
        font-size: 13px;
    }
    
    .copy-code-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}