/* ============================================
   RESET & VARIABLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f0f1e;
    --secondary: #fff;
    --accent: #ff006e;
    --accent-light: #ff4d94;
    --text-dark: #0f0f1e;
    --text-light: #666;
    --border: #e0e0e0;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-1: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    --gradient-2: linear-gradient(135deg, #3a86ff 0%, #8338ec 100%);
    --gradient-dark: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    
    /* Light Theme (Default) */
    --bg-primary: #fff;
    --bg-secondary: #f8f8ff;
    --bg-tertiary: #faf8ff;
    --text-primary: #0f0f1e;
    --text-secondary: #666;
    --card-bg: linear-gradient(135deg, #f8f8ff 0%, #f0f0ff 100%);
    --card-border: rgba(255, 0, 110, 0.08);
}

html.dark-mode {
    --bg-primary: #0f0f1e;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #0f0f1e;
    --text-primary: #fff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --card-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
    --card-border: rgba(255, 0, 110, 0.15);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 0.4s var(--transition), color 0.4s var(--transition);
}

/* Cursor custom (opcjonalnie) */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    animation: slideDown 0.6s var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--transition);
}

html.dark-mode .header {
    background: rgba(15, 15, 30, 0.95);
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav a:hover {
    color: var(--text-primary);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.cta-nav {
    padding: 10px 25px;
    background: var(--gradient-1);
    color: var(--secondary);
    border-radius: 50px;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.cta-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
}

.cta-nav::after {
    display: none;
}

.theme-toggle {
    padding: 10px 15px;
    background: transparent;
    border: 2px solid var(--accent);
    border-radius: 50px;
    color: var(--accent);
    cursor: pointer;
    font-size: 1.2em;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.05);
}

.theme-icon {
    display: inline-block;
    transition: transform 0.4s var(--transition);
}

/* ============================================
   HERO SECTION (PREMIUM)
   ============================================ */
.hero-premium {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f8ff 0%, #f0f0ff 100%);
    padding: 80px 40px;
    overflow: hidden;
    transition: background 0.4s var(--transition);
}

html.dark-mode .hero-premium {
    background: var(--gradient-dark);
}

.hero-premium::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -300px;
    animation: float 12s ease-in-out infinite;
}

.hero-premium::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    animation: float 15s ease-in-out infinite 1s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

html.dark-mode .hero-overlay {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-premium .hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s var(--transition) 0.3s backwards;
}

.hero-premium h1 {
    font-size: 5.5em;
    line-height: 1;
    margin-bottom: 25px;
    color: white;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(255, 0, 110, 0.3));
}

.hero-premium p {
    font-size: 1.6em;
    color: #333;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    transition: color 0.4s var(--transition);
}

html.dark-mode .hero-premium p {
    color: rgba(255, 255, 255, 0.85);
}

.btn-hero {
    display: inline-block;
    padding: 18px 50px;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all var(--transition);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
    border: 2px solid transparent;
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 0, 110, 0.6);
}

@media (max-width: 768px) {
    .hero-premium {
        min-height: 60vh;
        padding: 60px 20px;
    }

    .hero-premium h1 {
        font-size: 3.2em;
    }

    .hero-premium p {
        font-size: 1.2em;
        margin-bottom: 30px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase {
    padding: 120px 40px;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s var(--transition);
}

.showcase::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    right: -400px;
    animation: float 20s ease-in-out infinite;
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.showcase h2 {
    font-size: 3.2em;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
    font-weight: 900;
    animation: fadeInUp 0.8s var(--transition);
    transition: color 0.4s var(--transition);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    padding: 60px;
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--transition);
}

html.dark-mode .showcase-grid {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    animation: fadeInUp 0.8s var(--transition) backwards;
}

.showcase-item:nth-child(1) { animation-delay: 0.1s; }
.showcase-item:nth-child(2) { animation-delay: 0.2s; }
.showcase-item:nth-child(3) { animation-delay: 0.3s; }
.showcase-item:nth-child(4) { animation-delay: 0.4s; }
.showcase-item:nth-child(5) { animation-delay: 0.5s; }
.showcase-item:nth-child(6) { animation-delay: 0.6s; }

.showcase-image {
    width: 100%;
    max-width: 300px;
    height: 350px;
    object-fit: contain;
    transition: all 0.5s var(--transition);
    filter: drop-shadow(0 20px 50px rgba(255, 0, 110, 0.15));
}

.showcase-item:hover .showcase-image {
    transform: scale(1.1) rotateY(5deg);
    filter: drop-shadow(0 30px 70px rgba(255, 0, 110, 0.3));
}

.showcase-info {
    text-align: center;
}

.showcase-name {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.5;
    transition: color 0.4s var(--transition);
}

.showcase-price {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2em;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.3);
}

.showcase-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.showcase-price-old {
    font-size: 0.95em;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

@media (max-width: 768px) {
    .showcase {
        padding: 60px 20px;
    }

    .showcase h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 100px 40px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    transition: background-color 0.4s var(--transition);
}

.features::before {
    content: '';
    position: absolute;
    top: -300px;
    left: -300px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -400px;
    right: -400px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite 2s;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-container h2 {
    font-size: 3.2em;
    margin-bottom: 80px;
    color: var(--text-primary);
    font-weight: 900;
    animation: fadeInUp 0.8s var(--transition);
    transition: color 0.4s var(--transition);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 0;
}

.feature-card {
    padding: 50px 40px;
    background: var(--card-bg);
    border-radius: 25px;
    text-align: center;
    border: 2px solid var(--card-border);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.8s var(--transition) backwards;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.5s var(--transition);
    z-index: 0;
    border-radius: 25px;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s var(--transition);
    z-index: 1;
    border-radius: 25px;
    pointer-events: none;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(255, 0, 110, 0.25);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 5em;
    margin-bottom: 25px;
    display: block;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}

.feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }

.feature-card h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 800;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
    transition: color 0.4s var(--transition);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.98em;
    position: relative;
    z-index: 2;
    font-weight: 500;
    transition: color 0.4s var(--transition);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 120px 40px;
    text-align: center;
    background: var(--bg-primary);
    position: relative;
    transition: background-color 0.4s var(--transition);
}

.pricing::before {
    content: '';
    position: absolute;
    top: -500px;
    right: -500px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 18s ease-in-out infinite;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing h2 {
    font-size: 3.2em;
    margin-bottom: 80px;
    color: var(--text-primary);
    animation: fadeInUp 0.8s var(--transition);
    font-weight: 900;
    transition: color 0.4s var(--transition);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.price-card {
    padding: 60px 40px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 25px;
    transition: all var(--transition);
    animation: fadeInUp 0.8s var(--transition) backwards;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

html.dark-mode .price-card {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.price-card:nth-child(1) { animation-delay: 0.1s; }
.price-card:nth-child(2) { animation-delay: 0.2s; }
.price-card:nth-child(3) { animation-delay: 0.3s; }

.price-card:hover {
    border-color: var(--accent);
    box-shadow: 0 25px 70px rgba(255, 0, 110, 0.2);
    transform: translateY(-15px);
}

.price-card.highlighted {
    background: var(--gradient-1);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 25px 70px rgba(255, 0, 110, 0.35);
    transform: scale(1.05);
}

.price-card.highlighted .price-label,
.price-card.highlighted .price-amount,
.price-card.highlighted .price-per {
    color: white;
}

.price-label {
    font-size: 1em;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.4s var(--transition);
}

.price-old {
    font-size: 1.1em;
    color: #999;
    font-weight: 400;
    text-decoration: line-through;
    margin-bottom: 8px;
    opacity: 0.7;
    transition: color 0.4s var(--transition);
}

.price-amount {
    font-size: 3.5em;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 5px;
}

.price-card.highlighted .price-amount {
    color: white;
}

.price-per {
    font-size: 1em;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.4s var(--transition);
}

.pricing-note {
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-top: 30px;
    font-weight: 500;
    transition: color 0.4s var(--transition);
}

.shipping-info {
    margin-top: 20px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.08) 0%, rgba(131, 56, 236, 0.08) 100%);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    animation: fadeInUp 0.8s var(--transition) 0.3s backwards;
    transition: all 0.4s var(--transition);
}

html.dark-mode .shipping-info {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15) 0%, rgba(131, 56, 236, 0.15) 100%);
}

.shipping-info p {
    font-size: 1.05em;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
    transition: color 0.4s var(--transition);
}

.shipping-info strong {
    color: var(--text-primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 20px;
    }

    .pricing h2 {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.highlighted {
        transform: scale(1);
    }

    .price-amount {
        font-size: 2.5em;
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
    padding: 100px 40px;
    background: white;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    bottom: -500px;
    left: -500px;
    width: 700px;
    height: 700px;
    background: rgba(255, 0, 110, 0.08);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.products h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 70px;
    color: var(--primary);
    animation: fadeInUp 0.8s var(--transition);
    font-weight: 800;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 110, 0.05);
    transition: all var(--transition);
    animation: fadeInUp 0.8s var(--transition) backwards;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }

.product-card:hover {
    border-color: var(--accent);
    box-shadow: 0 30px 80px rgba(255, 0, 110, 0.2);
    transform: translateY(-15px);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: linear-gradient(135deg, #f8f8ff 0%, #f0f0ff 100%);
    padding: 30px;
    transition: transform 0.5s var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 35px;
}

.product-name {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 65px;
    display: flex;
    align-items: center;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid rgba(255, 0, 110, 0.1);
}

.product-price {
    font-size: 1.6em;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
    font-size: 1em;
}

.btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.add-btn {
    padding: 12px 28px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all var(--transition);
    font-size: 0.95em;
    box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
}

.add-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 110, 0.5);
}

/* ============================================
   ORDER SECTION
   ============================================ */
.order-section {
    padding: 120px 40px;
    background: var(--gradient-dark);
    color: var(--secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 14s ease-in-out infinite;
}

.order-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 18s ease-in-out infinite 1s;
}

.order-container {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s var(--transition);
    position: relative;
    z-index: 1;
}

.order-section h2 {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 900;
    letter-spacing: -1px;
}

.order-section > div > p:nth-of-type(1) {
    font-size: 1.3em;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.order-section .btn {
    margin: 50px 0;
    padding: 18px 50px;
    font-size: 1.1em;
}

.btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 700;
    border-radius: 60px;
    transition: all var(--transition);
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 20px 60px rgba(255, 0, 110, 0.5);
    transform: translateY(-5px);
}

.discord-info {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
}

.discord-info p {
    margin: 15px 0;
    opacity: 0.9;
    font-size: 1.1em;
    font-weight: 500;
}

.discord-info strong {
    color: #fff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .order-section {
        padding: 60px 20px;
    }

    .order-section h2 {
        font-size: 2.2em;
    }

    .order-section > div > p:nth-of-type(1) {
        font-size: 1.1em;
        margin-bottom: 30px;
    }

    .btn-primary {
        padding: 14px 35px;
        font-size: 1em;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 40px;
    font-size: 0.95em;
    border-top: 1px solid rgba(255, 0, 110, 0.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        font-size: 1.2em;
    }

    .hero {
        height: auto;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.05em;
    }

    .features {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .features-highlight {
        padding: 30px 20px;
    }

    .features-highlight h2 {
        font-size: 1.6em;
    }

    .pricing {
        padding: 60px 20px;
    }

    .pricing h2,
    .products h2,
    .order-section h2 {
        font-size: 2em;
    }

    .products {
        padding: 60px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .order-section {
        padding: 60px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav {
        gap: 10px;
    }

    .nav a {
        font-size: 0.9em;
    }

    .cta-nav {
        padding: 8px 16px;
        font-size: 0.85em;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .price-amount {
        font-size: 2em;
    }

    .product-name {
        font-size: 0.85em;
        min-height: auto;
    }
}
