/* ========== WELCOME / SPLASH SCREEN ========== */
.welcome-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}

.welcome-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.welcome-glow-1 {
    width: 340px;
    height: 340px;
    top: -120px;
    left: -100px;
    background: rgba(139, 92, 246, 0.35);
    animation: welcomeGlowPulse 4.2s ease-in-out infinite;
}

.welcome-glow-2 {
    width: 280px;
    height: 280px;
    bottom: -100px;
    right: -80px;
    background: rgba(236, 72, 153, 0.28);
    animation: welcomeGlowPulse 5s ease-in-out infinite 0.8s;
}

.welcome-glow-3 {
    width: 240px;
    height: 240px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(96, 165, 250, 0.2);
    animation: welcomeCenterPulse 5.6s ease-in-out infinite;
}

@keyframes welcomeGlowPulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.18); }
}

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

.welcome-floating-emojis {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.w-float-emoji {
    position: absolute;
    font-size: 30px;
    opacity: 0.32;
    animation: welcomeEmojiFloat 6s ease-in-out infinite;
}

.w-emoji-1 { top: 11%; left: 10%; animation-delay: 0s; }
.w-emoji-2 { top: 16%; right: 11%; animation-delay: 1s; }
.w-emoji-3 { bottom: 17%; left: 8%; animation-delay: 2s; }
.w-emoji-4 { bottom: 14%; right: 10%; animation-delay: 3s; }

@keyframes welcomeEmojiFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-18px) rotate(5deg); }
    75% { transform: translateY(10px) rotate(-4deg); }
}

.welcome-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    animation: welcomeFadeIn 1s ease both;
}

.welcome-logo-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-logo-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    opacity: 0.18;
    animation: welcomeLogoPulse 3s ease-in-out infinite;
}

.welcome-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.45));
    animation: welcomeLogoFloat 3s ease-in-out infinite;
}

.welcome-title {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #f8fafc;
    letter-spacing: -0.4px;
}

.welcome-highlight {
    background: linear-gradient(135deg, #a855f7, #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-tagline {
    font-size: 18px;
    color: #c4b5fd;
    font-weight: 600;
}

.welcome-mood-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 380px;
    margin: 6px 0 10px;
    animation: welcomeFadeIn 1s ease both;
    animation-delay: 0.6s;
    opacity: 0;
}

.w-pill {
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.w-pill:hover {
    transform: scale(1.1);
}

.w-pill-happy {
    background: rgba(251, 191, 36, 0.14);
    border-color: rgba(251, 191, 36, 0.45);
    color: #fef3c7;
}

.w-pill-happy:hover {
    box-shadow: 0 0 14px rgba(251, 191, 36, 0.3);
}

.w-pill-comfort {
    background: rgba(96, 165, 250, 0.14);
    border-color: rgba(96, 165, 250, 0.45);
    color: #dbeafe;
}

.w-pill-comfort:hover {
    box-shadow: 0 0 14px rgba(96, 165, 250, 0.3);
}

.w-pill-adventure {
    background: rgba(52, 211, 153, 0.14);
    border-color: rgba(52, 211, 153, 0.45);
    color: #d1fae5;
}

.w-pill-adventure:hover {
    box-shadow: 0 0 14px rgba(52, 211, 153, 0.3);
}

.w-pill-romantic {
    background: rgba(244, 114, 182, 0.14);
    border-color: rgba(244, 114, 182, 0.45);
    color: #fce7f3;
}

.w-pill-romantic:hover {
    box-shadow: 0 0 14px rgba(244, 114, 182, 0.3);
}

.welcome-enter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.48);
    position: relative;
    overflow: hidden;
    animation: welcomeBtnGlow 2.5s ease-in-out infinite 2s;
}

.welcome-enter-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.12) 50%,
        transparent 60%
    );
    animation: welcomeBtnShimmer 3s ease-in-out infinite 2s;
}

.welcome-enter-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 24px rgba(167, 139, 250, 0.6), 0 12px 30px rgba(109, 40, 217, 0.5);
}

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

@keyframes welcomeBtnGlow {
    0%, 100% {
        box-shadow: 0 8px 28px rgba(124, 58, 237, 0.48),
                    0 0 0 0 rgba(167, 139, 250, 0.35);
    }
    50% {
        box-shadow: 0 8px 28px rgba(124, 58, 237, 0.48),
                    0 0 0 14px rgba(167, 139, 250, 0);
    }
}

.welcome-loader {
    width: 160px;
    height: 3px;
    background: rgba(30, 41, 59, 0.9);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 6px;
}

.welcome-loader-bar {
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #ec4899, #60a5fa);
    border-radius: 10px;
    animation: welcomeLoad 2.6s ease-in-out infinite;
}

@keyframes welcomeLoad {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes welcomeFadeIn {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes welcomeLogoPulse {
    0%, 100% { opacity: 0.15; transform: scale(1); }
    50% { opacity: 0.26; transform: scale(1.22); }
}

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

@media (max-width: 640px) {
    .welcome-title {
        font-size: 36px;
    }

    .welcome-tagline {
        font-size: 15px;
        max-width: 280px;
    }

    .welcome-logo-wrapper {
        width: 72px;
        height: 72px;
    }

    .welcome-logo-img {
        width: 44px;
        height: 44px;
    }

    .welcome-enter-btn {
        padding: 13px 30px;
        font-size: 15px;
    }

    .w-pill {
        font-size: 11px;
        padding: 4px 11px;
    }

    .welcome-mood-pills {
        max-width: 280px;
    }

    .w-float-emoji {
        font-size: 24px;
        opacity: 0.24;
    }
}

@media (max-width: 992px) and (min-width: 641px) {
    .welcome-title {
        font-size: 42px;
    }

    .welcome-mood-pills {
        max-width: 340px;
    }
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-base: #0f172a;
    --bg-deep: #020617;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-happy: #f59e0b;
    --accent-sad: #3b82f6;
    --accent-adventure: #10b981;
    --accent-romantic: #ec4899;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    animation: fadeIn 0.6s ease;
    background: radial-gradient(circle at 15% 0%, rgba(79, 70, 229, 0.16), transparent 30%), radial-gradient(circle at 85% 10%, rgba(236, 72, 153, 0.12), transparent 26%), var(--bg-base);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

img {
    max-width: 100%;
    display: block;
}

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

/* ========== HEADER ========== */
.header {
    background: rgba(8, 13, 30, 0.72);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.42);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.38)) drop-shadow(0 0 14px rgba(244, 114, 182, 0.22));
    transform-origin: center;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.logo:hover .logo-image {
    transform: scale(1.08) rotate(-6deg);
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.45)) drop-shadow(0 0 18px rgba(244, 114, 182, 0.35));
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #f8fafc;
}

.logo-highlight {
    color: #a78bfa;
}

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

.nav-links a {
    font-weight: 600;
    color: #cbd5e1;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: #c4b5fd;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.65);
    color: #e2e8f0;
    font-size: 17px;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px) scale(1.04);
    background: rgba(51, 65, 85, 0.75);
    border-color: rgba(196, 181, 253, 0.7);
}

.cart-chip {
    min-width: 56px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.65);
    font-size: 14px;
    font-weight: 700;
}

.menu-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    background: rgba(8, 13, 30, 0.97);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-top: 1px solid transparent;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 999;
    visibility: hidden;
}

.mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    font-weight: 600;
    color: #cbd5e1;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #c4b5fd;
}

/* ========== HERO SECTION ========== */
.hero {
    background: radial-gradient(circle at top, #1e1b4b 0%, #0b1228 45%, #020617 100%);
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    top: -220px;
    left: -120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    bottom: -220px;
    right: -80px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.24), transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-subtitle {
    font-size: 16px;
    color: #c4b5fd;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.2px;
}

.hero-title {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #f8fafc;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-human-line {
    font-size: 16px;
    color: #dbe5ff;
    font-weight: 600;
    margin-bottom: 14px;
}

.highlight-text {
    background: linear-gradient(135deg, #6c5ce7, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 500px;
}

.local-trust {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #dbe5ff;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(52, 211, 153, 0.34);
    border-radius: 999px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #6c5ce7;
}

.stat-label {
    font-size: 13px;
    color: #a8b2c7;
    font-weight: 600;
}

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

/* Hero Illustration */
.hero-illustration {
    position: relative;
    width: 350px;
    height: 350px;
}

.illustration-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #a855f7);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    animation: pulse 3s ease-in-out infinite;
}

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

.illustration-box {
    position: absolute;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(2, 6, 23, 0.5);
    text-align: center;
    transition: transform 0.3s;
}

.illustration-box:hover {
    transform: scale(1.1);
}

.illustration-box span {
    font-size: 36px;
    display: block;
    margin-bottom: 5px;
}

.illustration-box p {
    font-weight: 700;
    font-size: 14px;
    color: #e2e8f0;
}

.box-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #fdcb6e;
}

.box-1:hover {
    transform: translateX(-50%) scale(1.1);
}

.box-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #74b9ff;
}

.box-2:hover {
    transform: translateX(-50%) scale(1.1);
}

.box-3 {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    border: 2px solid #00b894;
}

.box-3:hover {
    transform: translateY(-50%) scale(1.1);
}

.box-3 .adventure-hero-emoji {
    filter: saturate(1.2) brightness(1.15);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.35), 0 0 18px rgba(16, 185, 129, 0.22);
}

.box-4 {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border: 2px solid #fd79a8;
}

.box-4:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Floating Emojis */
.mood-emoji-float {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-emoji {
    position: absolute;
    font-size: 30px;
    animation: float 4s ease-in-out infinite;
    opacity: 0.4;
}

.emoji-1 { top: -20px; left: 20px; animation-delay: 0s; }
.emoji-2 { top: 30px; right: 0; animation-delay: 1s; }
.emoji-3 { bottom: 30px; left: 0; animation-delay: 2s; }
.emoji-4 { bottom: -10px; right: 30px; animation-delay: 3s; }

.emoji-3 {
    filter: saturate(1.2) brightness(1.1);
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

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

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px) scale(1.02);
    filter: saturate(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    box-shadow: 0 8px 26px rgba(139, 92, 246, 0.45);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 22px rgba(167, 139, 250, 0.55), 0 12px 32px rgba(109, 40, 217, 0.45);
}

.btn-happy {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    width: 100%;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.btn-happy:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 18px rgba(251, 191, 36, 0.45), 0 10px 24px rgba(245, 158, 11, 0.35);
}

.btn-sad {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: white;
    width: 100%;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-sad:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 18px rgba(96, 165, 250, 0.45), 0 10px 24px rgba(37, 99, 235, 0.35);
}

.btn-adventure {
    background: linear-gradient(135deg, #34d399, #059669);
    color: white;
    width: 100%;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.34);
}

.btn-adventure:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 18px rgba(52, 211, 153, 0.42), 0 10px 24px rgba(5, 150, 105, 0.35);
}

.btn-romantic {
    background: linear-gradient(135deg, #f472b6, #db2777);
    color: white;
    width: 100%;
    box-shadow: 0 8px 20px rgba(219, 39, 119, 0.32);
}

.btn-romantic:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 18px rgba(244, 114, 182, 0.42), 0 10px 24px rgba(219, 39, 119, 0.33);
}

/* ========== SECTION TITLES ========== */
.section-title {
    font-size: 38px;
    font-weight: 900;
    text-align: center;
    color: #f8fafc;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 50px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.92));
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.step-card {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    max-width: 350px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.45);
}

.step-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(167, 139, 250, 0.55);
    box-shadow: 0 0 26px rgba(167, 139, 250, 0.22), 0 18px 34px rgba(2, 6, 23, 0.55);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6c5ce7, #a855f7);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.step-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #f8fafc;
}

.step-card p {
    color: #a8b2c7;
    font-size: 15px;
    line-height: 1.6;
}

/* ========== MOOD SELECTION ========== */
.mood-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.85), rgba(15, 23, 42, 0.88));
}

.mood-recommendation {
    max-width: 430px;
    margin: 0 auto 28px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.52);
    border: 1px solid rgba(167, 139, 250, 0.28);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.46);
    backdrop-filter: blur(10px);
    text-align: center;
}

.recommendation-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1.2px;
    color: #6658cf;
    font-weight: 800;
    margin-bottom: 4px;
}

.recommendation-value {
    font-size: 17px;
    color: #f8fafc;
    font-weight: 800;
}

.recommendation-note {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #a7b5cf;
}

.mood-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.mood-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    min-height: 300px;
    padding: 32px 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mood-card > * {
    position: relative;
    z-index: 1;
}

.mood-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 24px;
}

.mood-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
    transform: translateX(-100%);
    z-index: 0;
}

.mood-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.mood-card.is-selected {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 0 2px rgba(248, 250, 252, 0.25), 0 0 30px rgba(167, 139, 250, 0.3);
}

.mood-card:hover::after {
    animation: shimmer 0.8s ease forwards;
}

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

.mood-happy {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(251, 191, 36, 0.45);
}

.mood-happy:hover {
    box-shadow: 0 0 26px rgba(251, 191, 36, 0.22), 0 15px 40px rgba(245, 158, 11, 0.28);
}

.mood-sad {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.22), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.45);
    box-shadow: inset 0 1px 0 rgba(191, 219, 254, 0.22);
}

.mood-sad:hover {
    box-shadow: 0 0 26px rgba(96, 165, 250, 0.24), 0 15px 40px rgba(37, 99, 235, 0.27);
}

.mood-adventure {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.22), rgba(5, 150, 105, 0.12));
    border: 1px solid rgba(52, 211, 153, 0.45);
}

.mood-adventure:hover {
    box-shadow: 0 0 26px rgba(52, 211, 153, 0.22), 0 15px 40px rgba(5, 150, 105, 0.27);
}

.mood-romantic {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.22), rgba(219, 39, 119, 0.1));
    border: 1px solid rgba(244, 114, 182, 0.45);
}

.mood-romantic:hover {
    box-shadow: 0 0 26px rgba(244, 114, 182, 0.24), 0 15px 40px rgba(219, 39, 119, 0.28);
}

.mood-emoji {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    transition: transform 0.3s;
}

.mood-card:hover .mood-emoji {
    transform: scale(1.2);
}

.mood-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #f8fafc;
}

.mood-card p {
    color: #cbd5e1;
    font-size: 14px;
    min-height: 40px;
    margin-bottom: 16px;
}

.mood-tag {
    display: inline-block;
    margin-top: auto;
    background: rgba(15, 23, 42, 0.45);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #dbe7ff;
}

/* ========== PRODUCTS SECTIONS ========== */
.products-section {
    padding: 80px 0;
    opacity: 1;
    transform: translateY(0);
    max-height: none;
    overflow: visible;
    transition: opacity 0.32s ease, transform 0.32s ease, max-height 0.42s ease;
}

.products-section.is-hidden {
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    border: 0;
    pointer-events: none;
}

.section-header-with-emoji {
    margin-bottom: 50px;
}

.mood-title,
.sad-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title-emoji {
    font-size: 32px;
    line-height: 1;
    flex: 0 0 auto;
}

.highlight-happy {
    background: linear-gradient(135deg, #fdcb6e, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-sad {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-adventure {
    background: linear-gradient(135deg, #00b894, #00a381);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-romantic {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Backgrounds */
.happy-section {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.14), rgba(15, 23, 42, 0.94));
}

.sad-section {
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.16), rgba(15, 23, 42, 0.94));
}

.adventure-section {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.15), rgba(6, 20, 17, 0.95));
}

.romantic-section {
    background: linear-gradient(180deg, rgba(244, 114, 182, 0.14), rgba(15, 23, 42, 0.94));
}

.products-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.5);
    display: flex;
    flex-direction: column;
}

.wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.7);
    color: #f8fafc;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 11;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.wishlist-btn:hover {
    transform: scale(1.08);
    border-color: rgba(244, 114, 182, 0.65);
}

.wishlist-btn.is-active {
    background: rgba(219, 39, 119, 0.22);
    border-color: rgba(244, 114, 182, 0.95);
    color: #fda4af;
}

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

.card-happy::before,
.card-sad::before,
.card-adventure::before,
.card-romantic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
}

.card-happy::before {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.card-sad::before {
    background: linear-gradient(90deg, #60a5fa, #2563eb);
}

.card-adventure::before {
    background: linear-gradient(90deg, #34d399, #059669);
}

.card-romantic::before {
    background: linear-gradient(90deg, #f472b6, #db2777);
}

.card-happy:hover::before,
.card-sad:hover::before,
.card-adventure:hover::before,
.card-romantic:hover::before {
    opacity: 1;
}

.card-happy:hover {
    border-color: rgba(251, 191, 36, 0.72);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.15), 0 0 60px rgba(251, 191, 36, 0.08), 0 16px 36px rgba(2, 6, 23, 0.55);
}

.card-sad:hover {
    border-color: rgba(96, 165, 250, 0.72);
    box-shadow: 0 0 30px rgba(96, 165, 250, 0.15), 0 0 60px rgba(96, 165, 250, 0.08), 0 16px 36px rgba(2, 6, 23, 0.55);
}

.card-adventure:hover {
    border-color: rgba(52, 211, 153, 0.72);
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.15), 0 0 60px rgba(52, 211, 153, 0.08), 0 16px 36px rgba(2, 6, 23, 0.55);
}

.card-romantic:hover {
    border-color: rgba(244, 114, 182, 0.72);
    box-shadow: 0 0 30px rgba(244, 114, 182, 0.15), 0 0 60px rgba(244, 114, 182, 0.08), 0 16px 36px rgba(2, 6, 23, 0.55);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
    border: 1px solid transparent;
    letter-spacing: 0.3px;
}

.badge-happy {
    background: rgba(251, 191, 36, 0.18);
    border-color: rgba(251, 191, 36, 0.45);
    color: #fef3c7;
}

.badge-sad {
    background: rgba(96, 165, 250, 0.18);
    border-color: rgba(96, 165, 250, 0.45);
    color: #dbeafe;
}

.badge-adventure {
    background: rgba(52, 211, 153, 0.18);
    border-color: rgba(52, 211, 153, 0.45);
    color: #d1fae5;
}

.badge-romantic {
    background: rgba(244, 114, 182, 0.18);
    border-color: rgba(244, 114, 182, 0.45);
    color: #fce7f3;
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.6), rgba(15, 23, 42, 0.8));
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s, opacity 0.3s;
}

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

.product-info {
    padding: 25px 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #f8fafc;
}

.product-info p {
    font-size: 14px;
    color: #b7c4da;
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-emotion {
    font-size: 13px;
    color: #dbe5ff;
    font-weight: 600;
    margin-top: -4px;
    margin-bottom: 16px;
}

.product-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.price {
    font-size: 22px;
    font-weight: 900;
    color: #f8fafc;
}

.old-price {
    font-size: 16px;
    color: #94a3b8;
    opacity: 0.65;
    margin-left: 4px;
    text-decoration: line-through;
}

.currency-note {
    font-size: 12px;
    font-weight: 700;
    color: #8ca0bd;
    letter-spacing: 0.4px;
}

.mood-card,
.product-card,
.step-card,
.btn {
    transition: all 0.3s ease;
}

/* ========== ACCESSIBILITY: FOCUS STATES ========== */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid #a78bfa;
    outline-offset: 3px;
    border-radius: 4px;
}

.mood-card:focus-visible {
    outline: 2px solid #a78bfa;
    outline-offset: 4px;
    transform: translateY(-10px) scale(1.02);
}

.menu-checkbox:focus-visible + .hamburger {
    outline: 2px solid #a78bfa;
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-links a:focus-visible {
    color: #c4b5fd;
    outline-offset: 5px;
}

.mobile-menu a:focus-visible {
    color: #c4b5fd;
    outline-offset: 2px;
}

.btn-happy:focus-visible {
    outline-color: #f59e0b;
}

.btn-sad:focus-visible {
    outline-color: #3b82f6;
}

.btn-adventure:focus-visible {
    outline-color: #10b981;
}

.btn-romantic:focus-visible {
    outline-color: #ec4899;
}

.btn-primary:focus-visible {
    outline-color: #c4b5fd;
    box-shadow: 0 0 22px rgba(167, 139, 250, 0.55), 0 12px 32px rgba(109, 40, 217, 0.45);
}

.scroll-top-btn:focus-visible {
    outline-color: #c4b5fd;
    outline-offset: 4px;
}

/* ===== BUTTON & CARD PRESS FEEDBACK ===== */
.btn:active {
    transform: translateY(0) scale(0.97);
    transition-duration: 0.1s;
}

.mood-card:active {
    transform: translateY(-5px) scale(0.98);
    transition-duration: 0.1s;
}

.scroll-top-btn:active {
    transform: scale(0.92);
    transition-duration: 0.1s;
}

/* ========== POLISH: SCROLLBAR & SELECTION ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7c3aed, #a855f7);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6d28d9, #9333ea);
}

::selection {
    background: rgba(139, 92, 246, 0.35);
    color: #f8fafc;
}

/* ========== CSS-ONLY ENTRANCE ANIMATIONS ========== */
.step-card,
.mood-card,
.product-card {
    animation: fadeInUp 0.8s ease both;
}

.step-card:nth-child(1),
.mood-card:nth-child(1),
.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2),
.mood-card:nth-child(2),
.product-card:nth-child(2) {
    animation-delay: 0.25s;
}

.step-card:nth-child(3),
.mood-card:nth-child(3),
.product-card:nth-child(3) {
    animation-delay: 0.4s;
}

.mood-card:nth-child(4) {
    animation-delay: 0.55s;
}

.hero-subtitle {
    animation: slideRight 0.7s ease both;
    animation-delay: 0.2s;
}

.hero-title {
    animation: slideRight 0.7s ease both;
    animation-delay: 0.4s;
}

.hero-description {
    animation: slideRight 0.7s ease both;
    animation-delay: 0.6s;
}

.hero-stats {
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.8s;
}

.hero-image {
    animation: fadeInUp 0.9s ease both;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.scroll-top-btn:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 1;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.5), 0 12px 28px rgba(124, 58, 237, 0.45);
}

.cart-toast {
    position: fixed;
    right: 20px;
    bottom: 90px;
    background: rgba(15, 23, 42, 0.92);
    color: #f8fafc;
    border: 1px solid rgba(16, 185, 129, 0.7);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.45);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1100;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}

body.light-theme {
    --bg-base: #f8fafc;
    --bg-deep: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    background: radial-gradient(circle at 15% 0%, rgba(147, 197, 253, 0.24), transparent 35%), radial-gradient(circle at 85% 10%, rgba(251, 207, 232, 0.24), transparent 30%), #f8fafc;
}

body.light-theme .header {
    background: rgba(248, 250, 252, 0.85);
    border-bottom: 1px solid rgba(100, 116, 139, 0.2);
}

body.light-theme .logo-text,
body.light-theme .section-title,
body.light-theme .mood-card h3,
body.light-theme .product-info h3,
body.light-theme .price {
    color: #0f172a;
}

body.light-theme .hero,
body.light-theme .how-it-works,
body.light-theme .mood-section,
body.light-theme .products-section {
    filter: saturate(0.88) brightness(1.08);
}

body.light-theme .nav-links a,
body.light-theme .mobile-menu a,
body.light-theme .product-info p,
body.light-theme .section-subtitle {
    color: #334155;
}

body.light-theme .theme-toggle,
body.light-theme .cart-chip {
    background: rgba(226, 232, 240, 0.9);
    color: #0f172a;
    border-color: rgba(100, 116, 139, 0.35);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========== RESPONSIVE - LAPTOP (max-width: 1200px) ========== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 15px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .hero-illustration {
        width: 300px;
        height: 300px;
    }

    .illustration-circle {
        width: 250px;
        height: 250px;
    }
}

/* ========== RESPONSIVE - TABLET (max-width: 992px) ========== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        margin-right: 10px;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        visibility: visible;
    }

    .mobile-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .menu-checkbox:checked + .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-checkbox:checked + .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu-checkbox:checked + .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .menu-checkbox:checked ~ .mobile-menu {
        max-height: 320px;
        padding: 10px 20px 20px;
        border-top: 1px solid rgba(148, 163, 184, 0.2);
        pointer-events: auto;
    }

    .hero {
        padding: 50px 0;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .hero-human-line {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-image {
        min-height: 300px;
    }

    .hero-illustration {
        width: 280px;
        height: 280px;
    }

    .illustration-circle {
        width: 220px;
        height: 220px;
    }

    .illustration-box {
        padding: 15px 18px;
    }

    .illustration-box span {
        font-size: 28px;
    }

    .mood-cards {
        flex-wrap: wrap;
    }

    .mood-card {
        min-width: 200px;
    }

    .products-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        max-width: 450px;
        width: 100%;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        max-width: 450px;
        width: 100%;
    }

    .mood-recommendation {
        max-width: 520px;
    }
}

/* ========== RESPONSIVE - TABLET PORTRAIT (641px-768px) ========== */
@media (max-width: 768px) and (min-width: 641px) {
    .mood-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .mood-card {
        min-width: auto;
        max-width: 100%;
    }

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

    .product-card {
        max-width: 100%;
        min-width: auto;
    }
}

/* ========== RESPONSIVE - MOBILE (max-width: 640px) ========== */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .how-it-works,
    .mood-section,
    .products-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .hero {
        padding: 28px 0 42px;
    }

    .hero-title {
        font-size: 27px;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .hero-human-line {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .local-trust {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
    }

    .mood-recommendation {
        padding: 12px;
    }

    .recommendation-value {
        font-size: 15px;
        line-height: 1.4;
    }

    .recommendation-note {
        display: block;
        margin-left: 0;
        margin-top: 2px;
    }

    .title-emoji {
        font-size: 24px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }

    .stat {
        align-items: center;
    }

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

    .hero-image {
        min-height: 220px;
        overflow: hidden;
        padding: 10px;
    }

    .hero-illustration {
        width: 214px;
        height: 214px;
    }

    .illustration-circle {
        width: 154px;
        height: 154px;
    }

    .illustration-box {
        padding: 8px 10px;
        border-width: 1px;
    }

    .illustration-box span {
        font-size: 18px;
    }

    .illustration-box p {
        font-size: 10px;
    }

    .box-3 {
        left: 0;
    }

    .box-4 {
        right: 0;
    }

    .float-emoji {
        font-size: 22px;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 24px;
    }

    /* Mood Cards - Single Column */
    .mood-cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .mood-card {
        width: calc(100% - 4px);
        max-width: 420px;
        min-width: auto;
        padding: 30px 20px;
    }

    .mood-emoji {
        font-size: 44px;
    }

    /* Product Cards */
    .product-card {
        min-width: auto;
        max-width: 100%;
        width: 100%;
    }

    .product-info {
        padding: 22px 18px 20px;
    }

    .product-price {
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        white-space: nowrap;
    }

    .price {
        font-size: 20px;
    }

    .currency-note {
        font-size: 11px;
        margin-left: 1px;
    }

    .old-price {
        font-size: 14px;
    }

    .product-image {
        height: 200px;
    }

    .wishlist-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .header-actions {
        gap: 8px;
    }

    .theme-toggle,
    .cart-chip {
        height: 34px;
    }

    .theme-toggle {
        width: 34px;
        font-size: 15px;
    }

    .cart-chip {
        min-width: 48px;
        padding: 0 10px;
        font-size: 13px;
    }

    .scroll-top-btn {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
        font-size: 18px;
    }

    .cart-toast {
        right: 16px;
        bottom: 64px;
        left: 16px;
        text-align: center;
    }

    /* Steps */
    .step-card {
        max-width: 100%;
    }

    /* Testimonials */
    /* Footer */
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 20px 0;
        min-height: auto;
    }

    .hero-image {
        min-height: 180px;
    }

    .hero-illustration {
        width: 160px;
        height: 160px;
    }

    .illustration-circle {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        margin-top: 20px;
    }

    .hero-illustration {
        transform: scale(0.9);
    }

    .hero-title {
        font-size: 24px;
    }
}

/* ========== RESPONSIVE - SMALL MOBILE (max-width: 320px) ========== */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 11px;
    }

    .hero-description {
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
    }

    .logo-text {
        font-size: 20px;
    }

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

    .hero-illustration {
        width: 200px;
        height: 200px;
    }

    .illustration-circle {
        width: 150px;
        height: 150px;
    }

    .illustration-box {
        padding: 8px 10px;
    }

    .illustration-box span {
        font-size: 18px;
    }

    .illustration-box p {
        font-size: 10px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .price {
        font-size: 18px;
    }

    .mood-card {
        padding: 30px 20px;
    }

    .step-icon {
        font-size: 40px;
    }

    .product-price {
        flex-wrap: wrap;
        white-space: normal;
    }

    .scroll-top-btn {
        width: 38px;
        height: 38px;
        right: 14px;
        bottom: 14px;
        font-size: 16px;
    }
}

.testimonials {
    background: linear-gradient(
        to bottom,
        #0b1228,
        #070f1f
    );
    border-bottom: 1px solid rgba(139, 92, 246, 0.15);
    padding: 5rem 0;
}

.testimonials::after {
    content: '';
    display: block;
    height: 1px;
    margin-top: 40px;
    background: linear-gradient(to right, transparent, #a855f7, transparent);
}

.footer {
    background: linear-gradient(
        to bottom,
        #020617,
        #000000
    );
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.8);
    padding-top: 4rem;
}

.footer p {
    color: #cbd5e1;
}

.footer a {
    color: #94a3b8;
}

.footer a:hover {
    color: #c4b5fd;
}