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

:root {
    --bg: #0a0a0f;
    --bg2: #111118;
    --card: #16161f;
    --border: #252532;
    --text: #f0f0f5;
    --muted: #8b8b9e;
    --accent: #7c5cfc;
    --accent2: #a78bfa;
    --orange: #ff7a18;
    --green: #22c55e;
    --radius: 12px;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }

/* Header */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10,10,15,0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between; height: 60px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.25rem; }
.logo-mark { color: var(--accent); font-size: 1.3rem; }
.logo span span { color: var(--accent2); }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-login {
    font-size: 0.9rem; font-weight: 500; color: var(--muted); padding: 8px 14px;
}
.btn-login:hover { color: var(--text); }
.btn-signup {
    background: var(--orange); color: #fff; font-size: 0.9rem; font-weight: 600;
    padding: 8px 18px; border-radius: 8px; transition: background 0.2s;
}
.btn-signup:hover { background: #ff8f3a; }
.menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.menu-btn span { width: 22px; height: 2px; background: var(--text); }

/* Hero */
.hero {
    position: relative; padding: 70px 0 50px; text-align: center; overflow: hidden;
}
.hero-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(124,92,252,0.2), transparent);
    pointer-events: none;
}
.hero-inner { position: relative; }
.hero h1 {
    font-family: 'Outfit', sans-serif; font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 800; margin-bottom: 12px;
}
.hero p { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto 28px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 24px; border-radius: 9px; font-weight: 600; font-size: 0.95rem;
    border: none; cursor: pointer; transition: all 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent2); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); width: 100%; }
.btn-outline:hover { border-color: var(--accent); }
.btn-full { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* Section common */
.section-row {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px; margin-bottom: 28px;
}
.section-row h2, .pricing-section h2, .how-section h2, .scenes-section h2 {
    font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800;
}
.section-sub { color: var(--muted); font-size: 0.95rem; width: 100%; margin-top: -12px; margin-bottom: 8px; }

.filter-chips, .scene-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.chip, .tab {
    background: var(--card); border: 1px solid var(--border); color: var(--muted);
    padding: 7px 14px; border-radius: 100px; font-size: 0.85rem; font-weight: 500;
    cursor: pointer; transition: all 0.2s; font-family: inherit;
}
.chip:hover, .tab:hover, .chip.active, .tab.active {
    background: var(--accent); border-color: var(--accent); color: #fff;
}

/* Packs grid – OWN3D style */
.packs-section { padding: 40px 0 60px; }
.packs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.pack-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}
.pack-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.pack-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    height: 200px;
    background: #0d0d14;
    padding: 3px;
}
.pack-collage .mini {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.pack-info {
    padding: 14px 16px 16px;
}
.pack-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pack-info .pack-meta {
    font-size: 0.8rem;
    color: var(--muted);
}
.pack-info .pack-price {
    margin-top: 8px;
    font-weight: 700;
    color: var(--accent2);
    font-size: 0.95rem;
}
.pack-info .pack-price.free { color: var(--green); }

/* Mini scene previews inside collage */
.mini-scene {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center;
    font-family: 'Outfit', sans-serif; position: relative;
}
.mini-scene .ms-label {
    font-size: 0.55rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
}
.mini-scene .ms-time {
    font-size: 0.9rem; font-weight: 800; margin-top: 2px; letter-spacing: 1px;
}
.mini-scene .ms-cam {
    position: absolute; right: 4px; top: 4px;
    width: 22px; height: 16px; border: 1px solid rgba(255,255,255,0.35);
    border-radius: 2px; font-size: 0.4rem; display: flex; align-items: center;
    justify-content: center; color: rgba(255,255,255,0.5); background: rgba(0,0,0,0.3);
}

/* Scenes section */
.scenes-section { padding: 50px 0; background: var(--bg2); }
.scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 20px;
}
.scene-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; cursor: pointer; transition: border-color 0.2s, transform 0.2s;
}
.scene-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.scene-preview-wrap { height: 140px; position: relative; }
.scene-preview-wrap .badge {
    position: absolute; top: 8px; left: 8px; z-index: 2;
    font-size: 0.65rem; font-weight: 700; padding: 3px 8px; border-radius: 4px;
    text-transform: uppercase;
}
.badge-free { background: var(--green); color: #052e16; }
.badge-prem { background: var(--accent); color: #fff; }
.scene-info { padding: 12px 14px; }
.scene-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 3px; }
.scene-info .meta { font-size: 0.78rem; color: var(--muted); }
.scene-info .price { margin-top: 6px; font-weight: 700; font-size: 0.9rem; color: var(--accent2); }
.scene-info .price.free { color: var(--green); }

/* Full scene preview styles */
.sp {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; position: relative; overflow: hidden;
    font-family: 'Outfit', sans-serif;
}
.sp-label { font-size: 0.95rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.sp-time { font-size: 1.6rem; font-weight: 800; margin-top: 4px; letter-spacing: 2px; }
.sp-sub { font-size: 0.7rem; margin-top: 4px; opacity: 0.7; }
.sp-cam {
    position: absolute; right: 10px; top: 10px;
    width: 50px; height: 36px; border: 2px solid; border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.55rem; font-weight: 600; background: rgba(0,0,0,0.35);
}
.sp-cam-sm {
    position: absolute; right: 8px; bottom: 8px;
    width: 42px; height: 30px; border: 2px solid; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.5rem; background: rgba(0,0,0,0.35);
}
.sp-chat {
    position: absolute; left: 8px; top: 10px; width: 50%;
    border: 1px solid; border-radius: 5px; padding: 5px 7px;
    font-size: 0.55rem; background: rgba(0,0,0,0.3); opacity: 0.85;
}
.sp-game-area {
    position: absolute; inset: 8px 60px 8px 8px;
    border: 1px dashed rgba(255,255,255,0.12); border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; opacity: 0.4; letter-spacing: 1px;
}
.sp-alert {
    position: absolute; top: 8px; left: 8px;
    font-size: 0.5rem; font-weight: 700; padding: 2px 7px;
    border: 1px solid; border-radius: 3px;
}

/* Pricing */
.pricing-section { padding: 60px 0; text-align: center; }
.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px; margin-top: 32px; text-align: left;
}
.price-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px;
    padding: 28px 22px; position: relative;
}
.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(124,92,252,0.15);
}
.price-card .badge {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 700;
    padding: 3px 12px; border-radius: 100px; text-transform: uppercase;
}
.price-name { font-size: 0.9rem; font-weight: 600; color: var(--accent2); margin-bottom: 6px; }
.price-val { font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.price-card ul { list-style: none; margin-bottom: 22px; }
.price-card li {
    padding: 6px 0 6px 18px; font-size: 0.9rem; color: var(--muted);
    position: relative; border-bottom: 1px solid var(--border);
}
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent2); font-weight: 700; }
.price-card li:last-child { border-bottom: none; }

/* How */
.how-section { padding: 50px 0; background: var(--bg2); text-align: center; }
.how-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px; margin-top: 32px;
}
.how-item span {
    display: inline-flex; width: 36px; height: 36px; border-radius: 50%;
    background: var(--accent); color: #fff; font-weight: 800; font-size: 0.95rem;
    align-items: center; justify-content: center; margin-bottom: 12px;
}
.how-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.how-item p { color: var(--muted); font-size: 0.9rem; }

/* Contact */
.contact-section { padding: 60px 0; }
.contact-box {
    display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px;
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 36px; align-items: start;
}
.contact-left h2 { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.contact-left p { color: var(--muted); }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input, .contact-form select {
    background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
    padding: 12px 14px; color: var(--text); font-family: inherit; font-size: 0.95rem;
}
.contact-form input:focus, .contact-form select:focus { outline: none; border-color: var(--accent); }

/* Footer */
.footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner { text-align: center; }
.footer-inner .logo { justify-content: center; margin-bottom: 8px; }
.footer-inner p { color: var(--muted); font-size: 0.85rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }
.page-btn {
    min-width: 36px; height: 36px; border-radius: 8px;
    background: var(--card); border: 1px solid var(--border); color: var(--muted);
    font-weight: 600; cursor: pointer;
}
.page-btn.active, .page-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Modal */
.modal {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.75);
    z-index: 200; align-items: center; justify-content: center; padding: 20px;
}
.modal.open { display: flex; }
.modal-box {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px;
    padding: 24px; max-width: 480px; width: 100%; position: relative; text-align: center;
}
.modal-x {
    position: absolute; top: 10px; right: 14px; background: none; border: none;
    color: var(--muted); font-size: 1.5rem; cursor: pointer;
}
#modalPreview { border-radius: 10px; overflow: hidden; margin-bottom: 14px; height: 200px; }
.modal-box h3 { font-size: 1.1rem; margin-bottom: 4px; }
.modal-box p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }

/* Responsive */
@media (max-width: 800px) {
    .nav, .header-actions { display: none; }
    .menu-btn { display: flex; }
    .nav.open {
        display: flex; flex-direction: column; position: absolute;
        top: 60px; left: 0; right: 0; background: var(--bg2);
        padding: 16px; gap: 12px; border-bottom: 1px solid var(--border);
    }
    .contact-box { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

/* ===== Animated backgrounds ===== */

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.08); }
}

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

@keyframes borderPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 92, 252, 0); }
    50%      { box-shadow: 0 0 18px 2px rgba(124, 92, 252, 0.45); }
}

@keyframes scanline {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes softPulse {
    0%, 100% { opacity: 0.35; }
    50%      { opacity: 0.7; }
}

/* Animated gradient backgrounds on scene previews */
.sp, .mini-scene {
    background-size: 200% 200% !important;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Soft glow orb behind content */
.sp::before, .mini-scene::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Floating label */
.sp-label, .ms-label {
    position: relative;
    z-index: 1;
    animation: floatY 3.5s ease-in-out infinite;
}

.sp-time, .ms-time {
    position: relative;
    z-index: 1;
    animation: floatY 3.5s ease-in-out infinite 0.3s;
}

/* Scanline effect on full scenes */
.sp::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.04), transparent);
    animation: scanline 5s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Pack collage tiles get border pulse on hover */
.pack-card:hover .mini {
    animation: borderPulse 2s ease-in-out infinite;
}

/* Shimmer bar at bottom of starting scenes */
.sp-time + .sp-sub::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    background-size: 200% 100%;
    animation: shimmer 2.5s linear infinite;
    opacity: 0.6;
}

/* Subtle ambient pulse on pack cards */
.pack-card {
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.3s;
}
.pack-card:hover {
    box-shadow: 0 8px 32px rgba(124, 92, 252, 0.2);
}

/* Scene card hover glow */
.scene-card:hover .scene-preview-wrap {
    animation: borderPulse 2s ease-in-out infinite;
}

/* Core / individual scene badge soft pulse */
.badge-free, .badge-prem {
    animation: softPulse 3s ease-in-out infinite;
}

/* Animated gradient for different style families */
.sp[style*="#302b63"], .mini-scene[style*="#302b63"] {
    animation: gradientShift 7s ease infinite;
}
.sp[style*="#1a0533"], .mini-scene[style*="#1a0533"] {
    animation: gradientShift 6s ease infinite reverse;
}
.sp[style*="#3d2a4a"], .mini-scene[style*="#3d2a4a"] {
    animation: gradientShift 9s ease infinite;
}

/* Webcam box subtle pulse */
.sp-cam, .sp-cam-sm, .ms-cam {
    animation: softPulse 2.8s ease-in-out infinite;
}

/* Alert badge blink */
.sp-alert {
    animation: softPulse 1.8s ease-in-out infinite;
}

/* Auth & user header */
.hidden { display: none !important; }
.header-actions button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}
.btn-login {
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 14px;
}
.btn-login:hover { color: var(--text); }
.btn-signup {
    background: var(--orange);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
}
.btn-signup:hover { background: #ff8f3a; }

/* Auth modal */
.auth-box { text-align: left; max-width: 400px; }
.auth-box h3 { text-align: center; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.auth-form { display: flex; flex-direction: column; gap: 12px; }
.auth-form input {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
}
.auth-form input:focus { outline: none; border-color: var(--accent); }
.auth-switch {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}
.auth-switch button {
    background: none;
    border: none;
    color: var(--accent2);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
}
.auth-note {
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.4;
}

/* Save / heart button on cards */
.save-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, background 0.15s;
}
.save-btn:hover { transform: scale(1.1); background: rgba(0,0,0,0.75); }
.save-btn.saved { color: #ff4d6d; }

.pack-collage, .scene-preview-wrap { position: relative; }

/* Saved section */
.saved-section {
    padding: 50px 0;
    background: var(--bg2);
}
.saved-empty {
    text-align: center;
    color: var(--muted);
    padding: 32px 16px;
    border: 1px dashed var(--border);
    border-radius: 12px;
}

/* Payments accepted – Visa / Amex / Cash App only */
.payments-section {
    padding: 50px 0;
    text-align: center;
}
.payments-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.pay-only-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto 20px;
}
.pay-only-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 16px;
}
.pay-only-icon { font-size: 1.8rem; margin-bottom: 8px; }
.pay-only-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.pay-only-card p { font-size: 0.85rem; color: var(--muted); }
.pay-note {
    color: var(--muted);
    font-size: 0.9rem;
}
.pay-accepted {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    margin: 0;
}
@media (max-width: 600px) {
    .pay-only-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-section { padding: 60px 0; }
.faq-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
}
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px 16px;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    padding: 14px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent2); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
    color: var(--muted);
    font-size: 0.95rem;
    padding-bottom: 14px;
    line-height: 1.6;
}
.faq-item a { color: var(--accent2); }

/* About */
.about-section { padding: 40px 0 60px; background: var(--bg2); }
.about-box { max-width: 680px; margin: 0 auto; text-align: center; }
.about-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 14px;
}
.about-box p { color: var(--muted); margin-bottom: 12px; line-height: 1.65; }
.about-box a { color: var(--accent2); }

/* Footer grid */
.footer { padding: 48px 0 24px; border-top: 1px solid var(--border); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 32px;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin: 10px 0 14px; max-width: 260px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}
.footer-social a:hover { color: var(--accent2); }
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 8px;
}
.footer-col a:hover { color: var(--accent2); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    text-align: center;
    color: var(--muted);
    font-size: 0.82rem;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.35);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
}
.cookie-banner a { color: var(--accent2); }

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 72px;
    right: 20px;
    z-index: 250;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}
.scroll-top:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Checkout form in modal */
.checkout-form {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}
.checkout-total {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.checkout-form input,
.checkout-form select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
}
.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: var(--accent);
}
.chk-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.chk-fields.hidden { display: none; }
.checkout-note {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.4;
    margin: 2px 0 4px;
}
.checkout-success {
    text-align: center;
    padding: 8px 0;
}
.checkout-success .ok-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 10px;
}
.checkout-success p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 8px;
}
.checkout-success strong { color: var(--text); }
.modal-box { max-width: 440px; }
.obs-steps {
    color: var(--muted);
    font-size: 0.88rem;
    padding-left: 20px;
    line-height: 1.55;
    margin: 0;
}
.obs-steps li { margin-bottom: 6px; }
.obs-steps strong { color: var(--text); }
