/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-50: #FFF7ED;
    --orange-100: #FFEDD5;
    --orange-200: #FED7AA;
    --orange-300: #FDBA74;
    --orange-400: #FB923C;
    --orange-500: #F97316;
    --orange-600: #EA580C;
    --orange-700: #C2410C;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 40px rgba(249, 115, 22, 0.08);
    --shadow-lg: 0 8px 60px rgba(249, 115, 22, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.08);
    padding: 0 24px;
    transition: var(--transition);
}

nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.logo-group {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--gray-900);
}

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    margin: -6px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-text span {
    color: var(--orange-500);
}

.nav-cta {
    background: var(--orange-500);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.nav-cta:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

/* ===== HERO ===== */
.hero {
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-50);
    border: 1px solid var(--orange-200);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange-700);
    margin-bottom: 28px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    max-width: 700px;
    margin: 0 auto 20px;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--orange-500);
    position: relative;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero p {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--gray-100);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-500);
}

.hero-stat .label {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ===== MUSIC NOTES ANIMATION ===== */
.notes-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero > *:not(.notes-canvas) {
    position: relative;
    z-index: 1;
}

.music-note {
    position: absolute;
    bottom: -30px;
    opacity: 0;
    color: var(--gray-800);
    --note-opacity: 0.1;
    --note-drift: 15px;
    animation: noteRise linear forwards;
    will-change: transform, opacity;
    pointer-events: none;
}

@keyframes noteRise {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    5% {
        opacity: var(--note-opacity);
    }
    20% {
        opacity: var(--note-opacity);
        transform: translateY(-20vh) translateX(var(--note-drift)) rotate(8deg);
    }
    50% {
        opacity: calc(var(--note-opacity) * 0.65);
        transform: translateY(-50vh) translateX(calc(var(--note-drift) * -0.5)) rotate(-5deg);
    }
    80% {
        opacity: calc(var(--note-opacity) * 0.25);
    }
    100% {
        opacity: 0;
        transform: translateY(-110vh) translateX(var(--note-drift)) rotate(12deg);
    }
}

/* ===== ORDER SECTION ===== */
.order-section {
    padding: 40px 24px 100px;
    position: relative;
}

.order-container {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

/* Progress bar */
.progress-bar {
    display: flex;
    padding: 28px 36px 20px;
    gap: 12px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.progress-step {
    flex: 1;
    text-align: center;
}

.progress-step .step-bar {
    height: 4px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 10px;
    transition: var(--transition);
    overflow: hidden;
}

.progress-step.active .step-bar,
.progress-step.completed .step-bar {
    background: var(--orange-500);
}

.progress-step .step-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--gray-400);
    transition: var(--transition);
}

.progress-step.active .step-label {
    color: var(--orange-600);
}

.progress-step.completed .step-label {
    color: var(--gray-500);
}

/* Steps */
.steps-wrapper {
    position: relative;
    overflow: hidden;
}

.step {
    padding: 36px;
    display: none;
    animation: fadeIn 0.4s ease;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--gray-900);
}

.step-subtitle {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

/* Form elements */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-600);
    margin-bottom: 10px;
}

/* Chip select */
.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    padding: 10px 20px;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    user-select: none;
    font-family: 'Inter', sans-serif;
}

.chip:hover {
    border-color: var(--orange-300);
    color: var(--orange-600);
    background: var(--orange-50);
}

.chip.selected {
    border-color: var(--orange-500);
    background: var(--orange-500);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.25);
}

.chip .chip-icon {
    margin-right: 6px;
}

/* Text inputs */
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-800);
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: var(--orange-400);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--gray-300);
}

textarea {
    resize: vertical;
    min-height: 110px;
}

/* Buttons */
.btn-row {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    flex: 1;
    padding: 15px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.btn-primary {
    background: var(--orange-500);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-600);
    flex: 0 0 auto;
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Step 3 — confirmation */
.confirmation-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.confirmation-icon svg {
    width: 36px;
    height: 36px;
    color: var(--orange-500);
}

.step-center {
    text-align: center;
}

.step-center .step-title {
    margin-bottom: 12px;
}

.step-center .step-subtitle {
    margin-bottom: 32px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.email-input-group {
    max-width: 400px;
    margin: 0 auto 20px;
}

.delivery-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-50);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--orange-700);
    margin-bottom: 28px;
    font-weight: 500;
}

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.price-tag span {
    font-size: 1rem;
    color: var(--gray-400);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.price-sub {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 48px;
    background: var(--orange-500);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-buy:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.35);
}

.btn-buy svg {
    width: 20px;
    height: 20px;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 16px;
}

.secure-note svg {
    width: 14px;
    height: 14px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
    font-size: 1.6rem;
    color: var(--gray-300);
}

.btn-buy:disabled {
    opacity: 0.6;
    cursor: wait;
}

.btn-buy .spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* ===== FAQ ===== */
.faq-section {
    padding: 80px 24px 100px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.faq-subtitle {
    text-align: center;
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 48px;
}

.faq-list {
    max-width: 640px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--orange-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-question h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.open .faq-toggle {
    background: var(--orange-500);
    transform: rotate(45deg);
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    color: var(--gray-500);
    transition: var(--transition);
}

.faq-item.open .faq-toggle svg {
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 32px 24px;
    border-top: 1px solid var(--gray-100);
}

footer p {
    font-size: 0.8rem;
    color: var(--gray-400);
}

footer a {
    color: var(--orange-500);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-dot {
    color: var(--gray-300);
    font-size: 0.7rem;
}

.footer-credit {
    margin-top: 12px;
    font-size: 0.7rem;
    color: var(--gray-300);
    letter-spacing: 0.02em;
}

.footer-credit a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--orange-500);
}

/* ===== LEGAL PAGE ===== */
.legal-page {
    padding: 120px 24px 80px;
    max-width: 720px;
    margin: 0 auto;
}

.legal-page .legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--orange-500);
    text-decoration: none;
    margin-bottom: 32px;
    transition: var(--transition);
}

.legal-page .legal-back:hover {
    color: var(--orange-600);
    gap: 8px;
}

.legal-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.legal-page .legal-updated {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 36px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}

.legal-page p,
.legal-page li {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    margin-bottom: 6px;
}

.legal-page a {
    color: var(--orange-500);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page a:hover {
    color: var(--orange-600);
}

.legal-page strong {
    color: var(--gray-700);
    font-weight: 600;
}

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

    .nav-inner {
        height: 60px;
    }

    .logo-group {
        gap: 2px;
    }

    .logo-img {
        width: 42px;
        height: 42px;
        margin: -5px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 0.78rem;
        white-space: nowrap;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-stats {
        gap: 24px;
    }

    .step {
        padding: 28px 24px;
    }

    .progress-bar {
        padding: 20px 24px 16px;
    }

    .chip {
        padding: 9px 16px;
        font-size: 0.82rem;
    }

    .btn-row {
        flex-direction: column-reverse;
    }

    .btn-secondary {
        flex: 1;
    }

    .faq-section {
        padding: 60px 20px 80px;
    }
}

/* ===== SUCCESS ANIMATION ===== */
.success-screen {
    display: none;
    text-align: center;
    padding: 48px 36px;
    animation: fadeIn 0.5s ease;
}

.success-screen.active {
    display: block;
}

.success-checkmark {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-checkmark svg {
    width: 40px;
    height: 40px;
    color: white;
}

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    top: -20px;
    animation: confettiFall 3s ease-in forwards;
}

@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ===== COOKIE BANNER ===== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cookie-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    z-index: 9999;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.15);
    max-width: 520px;
    width: calc(100% - 32px);
    padding: 28px 28px 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.cookie-banner-header svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-banner-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
}

.cookie-banner p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cookie-banner p a {
    color: var(--orange-500);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.cookie-banner p a:hover {
    color: var(--orange-600);
}

.cookie-settings {
    display: none;
    margin-bottom: 20px;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cookie-settings.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

.cookie-setting-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-100);
    gap: 12px;
}

.cookie-setting-item:last-child {
    border-bottom: none;
}

.cookie-setting-info {
    flex: 1;
}

.cookie-setting-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.cookie-setting-info p {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-200);
    border-radius: 24px;
    transition: var(--transition);
}

.cookie-toggle .slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cookie-toggle input:checked + .slider {
    background: var(--orange-500);
}

.cookie-toggle input:checked + .slider::before {
    transform: translateX(20px);
}

.cookie-toggle input:disabled + .slider {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-badge-required {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--gray-400);
    background: var(--gray-100);
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.cookie-btn-accept {
    background: var(--orange-500);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--orange-600);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.cookie-btn-reject {
    background: var(--gray-100);
    color: var(--gray-600);
}

.cookie-btn-reject:hover {
    background: var(--gray-200);
}

.cookie-btn-settings {
    background: none;
    color: var(--gray-500);
    border: 1.5px solid var(--gray-200);
}

.cookie-btn-settings:hover {
    border-color: var(--orange-300);
    color: var(--orange-500);
}

@media (max-width: 640px) {
    .cookie-banner {
        bottom: 12px;
        padding: 22px 20px 20px;
    }

    .cookie-buttons {
        flex-wrap: wrap;
    }

    .cookie-btn-settings {
        flex-basis: 100%;
        order: 3;
    }
}
