/* ============================================
   PARADISE — STYLE VITRINE
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #161620;
    --border-color: #2a2a3a;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0b0;
    --accent: #6c5ce7;
    --accent-hover: #5a4bd1;
    --accent-glow: rgba(108, 92, 231, 0.3);
    --success: #00d4aa;
    --radius: 12px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.logo i {
    color: var(--accent);
    margin-right: 10px;
}

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

nav ul li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.btn-outline {
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    background: radial-gradient(ellipse at 50% 20%, #1a1030 0%, var(--bg-primary) 70%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hero-sub {
    font-size: 16px !important;
    color: var(--text-secondary);
    margin-bottom: 32px !important;
}

.hero-sub i {
    color: var(--accent);
    margin: 0 6px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(108, 92, 231, 0.1);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== FEATURES ========== */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 48px;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.08);
}

.feature-card i {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== SHOP ========== */
.shop {
    padding: 80px 0;
    text-align: center;
}

.shop h2 {
    font-size: 36px;
    margin-bottom: 48px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.product-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.product-price {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.product-price strong {
    color: #fff;
    font-size: 22px;
}

.product-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ========== GIVEAWAYS ========== */
.giveaways {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.giveaways h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.giveaway-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.giveaway-info p {
    font-size: 16px;
    color: var(--text-secondary);
}

.giveaway-info i {
    color: var(--accent);
    width: 24px;
}

.giveaway-progress {
    max-width: 500px;
    margin: 0 auto;
}

.giveaway-progress h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #a29bfe);
    border-radius: 10px;
    transition: width 0.8s ease;
}

.progress-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 80px 0;
    text-align: center;
}

.reviews h2 {
    font-size: 36px;
    margin-bottom: 48px;
}

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

.review-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: left;
}

.review-stars {
    color: #fdcb6e;
    font-size: 18px;
    margin-bottom: 8px;
}

.review-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* ========== FAQ ========== */
.faq {
    padding: 80px 0;
    text-align: center;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    text-align: left;
}

.faq-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.faq-item h4 i {
    color: var(--accent);
    margin-right: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== FOOTER ========== */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
}

.footer-brand i {
    color: var(--accent);
    margin-right: 8px;
}

.footer-brand p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 22px;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        gap: 16px;
        background: var(--bg-primary);
        padding: 20px;
        border-radius: var(--radius);
        border: 1px solid var(--border-color);
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 24px;
    }

    .features-grid,
    .shop-grid,
    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
/* ============================================
   DECORATIONS
   ============================================ */
.decorations {
    padding: 80px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.decorations h2 {
    font-size: 36px;
    margin-bottom: 8px;
}

.decorations .section-sub {
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 18px;
}

.decorations .section-sub strong {
    color: var(--accent);
}

.decorations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.deco-card {
    background: var(--bg-card);
    padding: 24px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    position: relative;
    text-align: center;
}

.deco-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.1);
}

.deco-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.08);
}

.deco-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.deco-icon {
    font-size: 28px;
    color: var(--accent);
}

.deco-badge {
    background: var(--accent);
    color: #fff;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.deco-badge.promo {
    background: #fdcb6e;
    color: #000;
}

.deco-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 12px 0 16px;
    font-size: 18px;
}

.price-original {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 16px;
}

.price-paradise {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
}

.deco-prices i {
    color: var(--accent);
    font-size: 14px;
}

.btn-deco {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-deco:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.deco-footer {
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}

.deco-footer i {
    color: var(--success);
    margin-right: 8px;
}
/* ============================================
   PARADISE — STYLE PREMIUM
   ============================================ */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: rgba(22, 22, 32, 0.7);
    --border-color: rgba(42, 42, 58, 0.3);
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0b0;
    --accent: #6c5ce7;
    --accent-hover: #5a4bd1;
    --accent-glow: rgba(108, 92, 231, 0.3);
    --success: #00d4aa;
    --radius: 16px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 20%, #1a1030 0%, var(--bg-primary) 70%);
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}

/* ========== GLASSMORPHISM CARDS ========== */
.deco-card,
.product-card,
.review-card,
.faq-item {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: all var(--transition);
    will-change: transform;
}

.deco-card:hover,
.product-card:hover,
.review-card:hover,
.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.12);
}

/* ========== HEADER ========== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.logo i {
    color: var(--accent);
    margin-right: 10px;
}

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

nav ul li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.btn-outline {
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hero-sub {
    font-size: 16px !important;
    color: var(--text-secondary);
    margin-bottom: 32px !important;
}

.hero-sub i {
    color: var(--accent);
    margin: 0 6px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(108, 92, 231, 0.1);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== DECORATIONS 3D ========== */
.decorations {
    padding: 80px 0;
    text-align: center;
}

.decorations h2 {
    font-size: 36px;
    margin-bottom: 8px;
}

.decorations .section-sub {
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-size: 18px;
}

.decorations .section-sub strong {
    color: var(--accent);
}

.decorations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.deco-card {
    padding: 28px 20px;
    text-align: center;
}

.deco-card.popular {
    border-color: var(--accent);
}

.deco-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.deco-icon {
    font-size: 28px;
    color: var(--accent);
}

.deco-badge {
    background: var(--accent);
    color: #fff;
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.deco-badge.promo {
    background: #fdcb6e;
    color: #000;
}

.deco-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 12px 0 16px;
    font-size: 18px;
}

.price-original {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 16px;
}

.price-paradise {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
}

.deco-prices i {
    color: var(--accent);
    font-size: 14px;
}

.btn-deco {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-deco:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.deco-footer {
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}

.deco-footer i {
    color: var(--success);
    margin-right: 8px;
}

/* ========== SHOP ========== */
.shop {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-secondary);
}

.shop h2 {
    font-size: 36px;
    margin-bottom: 48px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.product-card {
    padding: 32px 24px;
    text-align: center;
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.product-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.product-price {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.product-price strong {
    color: #fff;
    font-size: 22px;
}

.product-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ========== GIVEAWAYS ========== */
.giveaways {
    padding: 80px 0;
    text-align: center;
}

.giveaways h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.giveaway-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.giveaway-info p {
    font-size: 16px;
    color: var(--text-secondary);
}

.giveaway-info i {
    color: var(--accent);
    width: 24px;
}

.giveaway-progress {
    max-width: 500px;
    margin: 0 auto;
}

.giveaway-progress h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #a29bfe);
    border-radius: 10px;
    transition: width 0.8s ease;
}

.progress-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 80px 0;
    text-align: center;
    background: var(--bg-secondary);
}

.reviews h2 {
    font-size: 36px;
    margin-bottom: 48px;
}

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

.review-card {
    padding: 24px;
    text-align: left;
}

.review-stars {
    color: #fdcb6e;
    font-size: 18px;
    margin-bottom: 8px;
}

.review-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* ========== FAQ ========== */
.faq {
    padding: 80px 0;
    text-align: center;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    text-align: left;
}

.faq-item {
    padding: 24px;
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.faq-item h4 i {
    color: var(--accent);
    margin-right: 10px;
}

.faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== FOOTER ========== */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    background: var(--bg-primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
}

.footer-brand i {
    color: var(--accent);
    margin-right: 8px;
}

.footer-brand p {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 22px;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        gap: 16px;
        background: var(--bg-primary);
        padding: 20px;
        border-radius: var(--radius);
        border: 1px solid var(--border-color);
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 44px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-number {
        font-size: 24px;
    }
    .features-grid,
    .shop-grid,
    .reviews-grid,
    .faq-grid,
    .decorations-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}