﻿/* ═══════════════════════════════════════════════════════════
   3DMennesker — Tailwind + 3D custom effects
   ═══════════════════════════════════════════════════════════ */

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

html {
    overflow-x: hidden;
    max-width: 100%;
}
body.mp-site {
    overflow-x: hidden;
    max-width: 100vw;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
}
main.page-content,
section {
    max-width: 100%;
    overflow-x: clip;
}

:root {
    --mp-primary: #6366f1;
    --mp-primary-dark: #4f46e5;
    --mp-accent: #22d3ee;
    --mp-accent-2: #a78bfa;
    --mp-dark: #0b0f1a;
    --mp-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --mp-transition-3d: 0.15s ease-out;
    --header-offset: 5.5rem;
    --page-gutter: 1rem;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ── Dynamic page spacing (header + safe areas) ───────────── */
.page-section-top {
    padding-top: calc(var(--header-offset) + 1.5rem);
}
.form-pro-sidebar-sticky {
    position: sticky;
    top: calc(var(--header-offset) + 1rem);
}

/* ── Critical layout (fallback without Tailwind CDN) ───────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100vw;
    pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.site-header-nav-wrap {
    padding: 0.5rem 0.75rem 0;
    width: 100%;
}
body.has-promo-bar .site-header-nav-wrap { padding-top: 0.35rem; }
.site-header.scrolled .site-header-nav-wrap { padding-top: 0.25rem; }
body.has-promo-bar.site-header-compact .site-header-nav-wrap { padding-top: 0.2rem; }
.page-content {
    opacity: 1;
    transform: none;
    padding-top: var(--header-offset);
}
.max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl, .max-w-3xl, .max-w-2xl {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
}
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.order-1 { order: 1; }
.order-2 { order: 2; }
.flex { display: flex; }
.hidden { display: none; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-white { background-color: #fff; }
.bg-dark { background-color: var(--mp-dark); }
.text-primary { color: var(--mp-primary); }
.text-slate-500 { color: #64748b; }
.text-slate-400 { color: #94a3b8; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.rounded-2xl { border-radius: 1rem; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }
.w-full { width: 100%; }
.relative { position: relative; }
.fixed { position: fixed; }
.z-50 { z-index: 50; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.no-underline { text-decoration: none; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
@media (min-width: 480px) {
    :root { --page-gutter: 1.25rem; }
    .xs\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 640px) {
    :root { --page-gutter: 1.5rem; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:text-5xl { font-size: 3rem; line-height: 1; }
    .sm\:p-8 { padding: 2rem; }
}
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:block { display: block !important; }
}
@media (min-width: 1024px) {
    .lg\:flex { display: flex !important; }
    .lg\:hidden { display: none !important; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-3 { grid-column: span 3 / span 3; }
    .lg\:col-span-5 { grid-column: span 5 / span 5; }
    .lg\:col-span-7 { grid-column: span 7 / span 7; }
    .lg\:flex-row { flex-direction: row; }
    .lg\:items-center { align-items: center; }
    .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .lg\:pb-24 { padding-bottom: 6rem; }
    .lg\:gap-6 { gap: 1.5rem; }
    .lg\:gap-8 { gap: 2rem; }
    .lg\:gap-10 { gap: 2.5rem; }
    .lg\:order-1 { order: 1; }
    .lg\:order-2 { order: 2; }
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1280px) {
    .xl\:flex { display: flex !important; }
    .xl\:hidden { display: none !important; }
    .xl\:inline { display: inline !important; }
    .xl\:items-center { align-items: center; }
    .xl\:gap-1 { gap: 0.25rem; }
    .xl\:ml-2 { margin-left: 0.5rem; }
    .xl\:mt-0 { margin-top: 0; }
    .xl\:flex-row { flex-direction: row; }
}

/* ── Skip link ────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--mp-primary);
    color: #fff;
    border-radius: 0.5rem;
    text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ── Transition 1: Page load ──────────────────────────────── */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mp-dark);
    transition: opacity 0.6s var(--mp-transition), visibility 0.6s;
}
.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.page-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
@keyframes cubeSpin {
    from { transform: rotateX(-22deg) rotateY(0deg); }
    to { transform: rotateX(-22deg) rotateY(360deg); }
}

/* ── Brand logo — 3D cube ─────────────────────────────────── */
.brand-cube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.brand-cube--sm { --cube-size: 36px; --cube-half: 18px; }
.brand-cube--md { --cube-size: 44px; --cube-half: 22px; }
.brand-cube--lg { --cube-size: 56px; --cube-half: 28px; }
.brand-cube {
    width: var(--cube-size);
    height: var(--cube-size);
}
.brand-cube-inner {
    position: relative;
    width: var(--cube-size);
    height: var(--cube-size);
    transform-style: preserve-3d;
    animation: cubeSpin 10s linear infinite;
}
.nav-brand:hover .brand-cube-inner,
.nav-brand:focus-visible .brand-cube-inner {
    animation-duration: 4s;
}
.brand-cube-face {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--cube-size);
    height: var(--cube-size);
    border: 2px solid rgba(99, 102, 241, 0.55);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.38), rgba(34, 211, 238, 0.22));
    box-shadow: inset 0 0 14px rgba(255, 255, 255, 0.12);
    backface-visibility: visible;
}
.brand-cube-face.f1 { transform: rotateY(0deg) translateZ(var(--cube-half)); }
.brand-cube-face.f2 { transform: rotateY(90deg) translateZ(var(--cube-half)); }
.brand-cube-face.f3 { transform: rotateY(180deg) translateZ(var(--cube-half)); }
.brand-cube-face.f4 { transform: rotateY(-90deg) translateZ(var(--cube-half)); }
.brand-cube-face.f5 { transform: rotateX(90deg) translateZ(var(--cube-half)); }
.brand-cube-face.f6 { transform: rotateX(-90deg) translateZ(var(--cube-half)); }
.page-loader .brand-cube-face {
    border-color: rgba(34, 211, 238, 0.75);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.45), rgba(34, 211, 238, 0.28));
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.18);
}
.page-loader .brand-cube-inner { animation-duration: 6s; }
.site-footer .brand-cube-face {
    border-color: rgba(34, 211, 238, 0.65);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(34, 211, 238, 0.3));
}
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}
.brand-logo-text {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 0.28rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
}
.brand-logo-3d {
    font-weight: 900;
    letter-spacing: -0.02em;
}
.brand-logo-name {
    font-weight: 700;
    letter-spacing: -0.01em;
}
.brand-logo--sm .brand-logo-text { font-size: 1rem; }
.brand-logo--md .brand-logo-text { font-size: 1.2rem; }
.brand-logo--lg .brand-logo-text { font-size: 1.65rem; }
.brand-logo--light .brand-logo-3d {
    background: linear-gradient(135deg, var(--mp-accent) 0%, var(--mp-primary) 50%, var(--mp-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-logo--light .brand-logo-name {
    color: var(--mp-primary-dark);
}
.brand-logo--dark .brand-logo-3d {
    color: #67e8f9;
    text-shadow: 0 0 16px rgba(34, 211, 238, 0.55);
}
.brand-logo--dark .brand-logo-name {
    color: #fff;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
}
@media (max-width: 380px) {
    .brand-logo--sm .brand-logo-text { font-size: 0.88rem; }
}
.form-page-badge-cube {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    gap: 0.35rem;
}

.page-content.ready {
    transition: opacity 0.7s var(--mp-transition) 0.2s, transform 0.7s var(--mp-transition) 0.2s;
}

/* ── Nav glass ────────────────────────────────────────────── */
.nav-glass {
    position: relative;
    width: 100%;
    max-width: calc(100vw - 1.5rem);
    margin: 0 auto;
    padding: 0.65rem 0.85rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s, box-shadow 0.4s, background 0.4s, padding 0.35s;
}
.nav-brand { max-width: none; }
.nav-brand .brand-logo-text {
    position: relative;
    transition: filter 0.35s ease;
}
.nav-brand .brand-logo-3d {
    background-size: 220% 220%;
    animation: brandMarkShift 5s ease-in-out infinite;
}
.nav-brand .brand-logo-name {
    background: linear-gradient(
        100deg,
        #312e81 0%,
        #4f46e5 20%,
        #6366f1 40%,
        #22d3ee 60%,
        #a78bfa 80%,
        #312e81 100%
    );
    background-size: 260% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: brandNameFlow 6s linear infinite;
}
.nav-brand:hover .brand-logo-3d,
.nav-brand:focus-visible .brand-logo-3d {
    animation-duration: 2.5s;
}
.nav-brand:hover .brand-logo-name,
.nav-brand:focus-visible .brand-logo-name {
    animation-duration: 3s;
}
.nav-brand:hover .brand-logo-text,
.nav-brand:focus-visible .brand-logo-text {
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.35)) drop-shadow(0 0 18px rgba(34, 211, 238, 0.2));
}
@keyframes brandMarkShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes brandNameFlow {
    0% { background-position: 0% center; }
    100% { background-position: 260% center; }
}

.nav-glass { flex-wrap: nowrap; }
@media (max-width: 1279px) {
    .nav-glass { gap: 0.35rem; min-width: 0; }
    .nav-brand {
        min-width: 0;
        flex: 1 1 auto;
        max-width: calc(100% - 7rem);
    }
    .nav-brand .brand-logo { max-width: 100%; min-width: 0; }
    .nav-toolbar { gap: 0.35rem; }
}
.nav-toolbar {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    margin-left: auto;
}
@media (min-width: 1280px) {
    .nav-glass { gap: 0.75rem; }
    #mainNav { margin-left: auto; margin-right: 0.5rem; }
    .nav-toolbar { margin-left: 0; }
}
.nav-toolbar-lang {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.lang-switcher--toolbar {
    z-index: 75;
}
.lang-switcher--toolbar .lang-switcher-btn {
    min-width: 0;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.12);
}
.lang-switcher--toolbar .lang-switcher-menu {
    z-index: 80;
}
@media (max-width: 1279px) {
    .lang-switcher--toolbar .lang-switcher-label,
    .lang-switcher--toolbar .lang-switcher-chevron { display: none; }
    .lang-switcher--toolbar .lang-switcher-btn {
        width: 2.75rem;
        height: 2.75rem;
        padding: 0;
        border-radius: 9999px;
        justify-content: center;
    }
    .lang-switcher--toolbar .lang-switcher-flag { font-size: 1.3rem; }
}
@media (min-width: 1280px) {
    .lang-switcher--toolbar.lang-switcher--compact .lang-switcher-btn {
        width: auto;
        height: auto;
        min-height: 2.65rem;
        padding: 0.45rem 0.75rem;
        border-radius: 9999px;
    }
    .lang-switcher--toolbar .lang-switcher-label {
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .lang-switcher--toolbar .lang-switcher-chevron { display: none; }
}
.nav-cart-btn {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 9999px;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    color: var(--mp-primary-dark);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.15);
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}
.nav-cart-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(99, 102, 241, 0.22); }
.nav-cart-badge {
    position: absolute;
    top: -0.15rem;
    right: -0.15rem;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.25rem;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.15rem;
    text-align: center;
    color: #fff;
    background: #ec4899;
    border-radius: 9999px;
    border: 2px solid #fff;
}

.lang-switcher--compact .lang-switcher-btn {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 0;
    padding: 0;
    border-radius: 9999px;
    justify-content: center;
}
.lang-switcher--compact .lang-switcher-flag { font-size: 1.25rem; }

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    visibility: hidden;
}
.cart-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}
.cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 26, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s;
}
.cart-drawer.is-open .cart-drawer-backdrop { opacity: 1; }
.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 22rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.is-open .cart-drawer-panel { transform: translateX(0); }
body.cart-open { overflow: hidden; }
.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}
.cart-drawer-title { font-size: 1.05rem; font-weight: 700; margin: 0; }
.cart-drawer-close {
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 0.65rem;
    background: #f1f5f9;
    cursor: pointer;
}
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; }
.cart-drawer-empty { color: #94a3b8; font-size: 0.9rem; text-align: center; margin: 2rem 0; }
.cart-drawer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.cart-drawer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
}
.cart-drawer-item-info { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.cart-drawer-item-info strong { font-size: 0.85rem; color: #0f172a; }
.cart-drawer-item-info span { font-size: 0.8rem; color: #4f46e5; font-weight: 700; }
.cart-drawer-remove {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.5rem;
    background: #fee2e2;
    color: #dc2626;
    cursor: pointer;
}
.cart-drawer-foot {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.cart-drawer-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #334155;
}
.cart-drawer-total strong { color: #4f46e5; font-size: 1.15rem; }
.cart-drawer-checkout { text-align: center; }
.cart-drawer-clear {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
}

.form-location-block { margin-top: 0.5rem; }
.form-location-rules {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
}
.form-location-detect {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mp-primary-dark);
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.form-location-detect:hover { background: #e0e7ff; transform: translateY(-1px); }
.form-location-detect:disabled { opacity: 0.6; cursor: wait; }
.form-location-status { font-size: 0.82rem; color: #059669; margin-top: 0.5rem; }
.form-location-status.is-error { color: #dc2626; }
.form-pro-terms-location { margin-top: 1rem; }
@media (min-width: 1024px) {
    .site-header-nav-wrap { padding: 0.75rem 1rem 0; max-width: 80rem; margin: 0 auto; }
    .nav-glass { padding: 0.75rem 1.25rem; max-width: 100%; }
    .brand-cube--sm { --cube-size: 40px; --cube-half: 20px; }
}
.nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
}
@media (min-width: 1280px) {
    .nav-actions {
        flex-direction: row;
        align-items: center;
    }
}

/* ── Nav dropdown (categories) ────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    background: transparent;
    border: none;
    border-radius: 0.65rem;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    width: 100%;
}
.nav-dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    color: var(--mp-primary);
    transition: color 0.2s;
}
.nav-dropdown-icon svg { width: 100%; height: 100%; }
.nav-dropdown-btn:hover,
.nav-dropdown.is-open .nav-dropdown-btn,
.nav-dropdown-btn[aria-expanded="true"] {
    color: var(--mp-primary-dark);
    background: rgba(99, 102, 241, 0.08);
}

.nav-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0.35rem;
    min-width: 11.5rem;
}
.nav-dropdown-menu[hidden] { display: none !important; }
.nav-dropdown-link {
    border-radius: 0.55rem;
    width: 100%;
}
@media (min-width: 1280px) {
    .nav-menu-list { flex-direction: row; align-items: center; gap: 0.15rem; }
    .nav-dropdown-btn {
        width: auto;
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
        gap: 0.4rem;
    }
    .nav-dropdown-btn::after { display: none !important; content: none !important; }
    .nav-dropdown-label { flex: none; }
    .nav-dropdown-icon {
        display: flex;
        width: 1.2rem;
        height: 1.2rem;
        color: var(--mp-primary);
    }
    .nav-dropdown-btn:hover .nav-dropdown-icon,
    .nav-dropdown.is-open .nav-dropdown-btn .nav-dropdown-icon,
    .nav-dropdown-btn[aria-expanded="true"] .nav-dropdown-icon {
        color: var(--mp-primary-dark);
    }
    .nav-link { font-size: 0.9rem; padding: 0.5rem 0.75rem; }
    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 0.875rem;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
        z-index: 80;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block !important;
    }
    .nav-dropdown:hover .nav-dropdown-btn,
    .nav-dropdown.is-open .nav-dropdown-btn {
        color: var(--mp-primary-dark);
        background: rgba(99, 102, 241, 0.08);
    }
}
@media (max-width: 1279px) {
    .nav-dropdown { width: 100%; }
    .nav-dropdown-icon { display: none; }
    .nav-dropdown-btn::after {
        content: '';
        display: block;
        width: 0.5rem;
        height: 0.5rem;
        margin-left: auto;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        opacity: 0.55;
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }
    .nav-dropdown.is-open .nav-dropdown-btn::after,
    .nav-dropdown-btn[aria-expanded="true"]::after {
        transform: rotate(-135deg);
    }
    .nav-dropdown-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.1rem;
        font-size: 1.125rem;
        font-weight: 700;
        color: #0f172a;
        min-height: 3.25rem;
        border-radius: 0.875rem;
        background: rgba(248, 250, 252, 0.95);
    }
    .nav-dropdown-menu {
        position: static;
        width: 100%;
        padding: 0.25rem 0 0.5rem 0.75rem;
        border-left: 2px solid rgba(99, 102, 241, 0.15);
        margin: 0.25rem 0 0.5rem 0.5rem;
    }
    .nav-menu.open .nav-dropdown-menu,
    .nav-menu.open .nav-dropdown-menu[hidden] {
        display: block !important;
        visibility: visible !important;
    }
    .nav-menu.open .nav-link,
    .nav-menu.open .nav-dropdown-link {
        color: #0f172a !important;
    }
    .nav-dropdown-link {
        font-size: 1.05rem;
        font-weight: 600;
        padding: 0.85rem 1rem;
        min-height: 3rem;
    }
}

/* ── Language switcher ────────────────────────────────────── */
.lang-switcher {
    position: relative;
    z-index: 70;
}
.lang-switcher-details > summary { list-style: none; }
.lang-switcher-details > summary::-webkit-details-marker { display: none; }
.lang-switcher-details > summary::marker { content: none; }
.lang-switcher-details[open] .lang-switcher-chevron { transform: rotate(180deg); }
.lang-switcher-details[open] .lang-switcher-btn {
    border-color: #c7d2fe;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
}
.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 5.5rem;
    justify-content: center;
}
.lang-switcher-btn:hover,
.lang-switcher.is-open .lang-switcher-btn {
    border-color: #c7d2fe;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
}
.lang-switcher-flag { font-size: 1.1rem; line-height: 1; }
.lang-switcher-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.2s;
}
.lang-switcher-chevron svg { width: 100%; height: 100%; }
.lang-switcher-details[open] .lang-switcher-chevron,
.lang-switcher.is-open .lang-switcher-chevron { transform: rotate(180deg); }
.lang-switcher-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 11rem;
    margin: 0;
    padding: 0.35rem;
    list-style: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.lang-switcher-menu[hidden] { display: none !important; }
.lang-switcher-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.65rem;
    text-decoration: none;
    color: #334155;
    transition: background 0.15s;
}
.lang-switcher-option strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}
.lang-switcher-option small {
    display: block;
    font-size: 0.68rem;
    color: #94a3b8;
}
.lang-switcher-option:hover { background: #f1f5f9; }
.lang-switcher-option.is-active {
    background: #eef2ff;
    color: #4f46e5;
}
.lang-switcher-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.85rem;
    height: 0.85rem;
    margin-left: auto;
    flex-shrink: 0;
    color: #4f46e5;
}
.lang-switcher-check svg { width: 100%; height: 100%; }
.lang-switcher--float .lang-switcher-label,
.lang-switcher--float .lang-switcher-float-code { display: none; }
.lang-switcher--float .lang-switcher-btn {
    width: 3rem;
    height: 3rem;
    min-width: 0;
    padding: 0;
    border-radius: 9999px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(199, 210, 254, 0.8);
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.22);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.lang-switcher--float .lang-switcher-flag { font-size: 1.35rem; }
.lang-switcher--float .lang-switcher-btn:hover,
.lang-switcher--float[open] .lang-switcher-btn {
    transform: scale(1.06);
    border-color: #a5b4fc;
    box-shadow: 0 10px 32px rgba(99, 102, 241, 0.32);
}
.lang-switcher--float .lang-switcher-menu {
    top: auto;
    bottom: calc(100% + 0.55rem);
    right: 0;
    min-width: 12.5rem;
    border-radius: 1rem;
    box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.14), 0 16px 40px rgba(15, 23, 42, 0.1);
    animation: floatLangMenuIn 0.22s ease;
}
.lang-switcher--float[open] .lang-switcher-btn {
    background: #eef2ff;
}
@keyframes floatLangMenuIn {
    from { opacity: 0; transform: translateY(6px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Float dock (lang + cart) ─────────────────────────────── */
.float-dock {
    position: fixed;
    right: calc(1rem + env(safe-area-inset-right, 0px));
    bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
    z-index: 56;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.55rem;
    pointer-events: none;
}
.float-dock-item { pointer-events: auto; }
.float-dock-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}
.float-dock-btn--cart {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    box-shadow: 0 8px 28px rgba(99, 102, 241, 0.35);
}
.float-dock-btn--cart:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 36px rgba(99, 102, 241, 0.45);
}
.float-dock-btn--cart:active { transform: scale(0.98); }
.float-dock-icon { width: 1.35rem; height: 1.35rem; }
.float-dock-badge {
    top: -0.1rem;
    right: -0.1rem;
    min-width: 1.2rem;
    height: 1.2rem;
    line-height: 1.2rem;
    font-size: 0.68rem;
    border-width: 2px;
}
body.cookie-visible .float-dock {
    bottom: calc(7rem + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 768px) {
    .float-dock {
        right: calc(1.25rem + env(safe-area-inset-right, 0px));
        bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
        gap: 0.65rem;
    }
    .float-dock-btn,
    .lang-switcher--float .lang-switcher-btn {
        width: 3.25rem;
        height: 3.25rem;
    }
}

.nav-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    color: #64748b;
    transition: color 0.2s;
}
.nav-link-icon svg { width: 100%; height: 100%; }
.nav-link-text { flex: 1; min-width: 0; }
.nav-dropdown-link { gap: 0.6rem; }
.nav-dropdown-link:hover .nav-link-icon,
.nav-dropdown-link:focus-visible .nav-link-icon { color: var(--mp-primary); }
.nav-link--promo .nav-link-icon { color: #d97706; }
.nav-dropdown-label { flex: 1; text-align: left; }
.nav-link--promo {
    color: #d97706;
    font-weight: 600;
}
.nav-link--promo:hover,
.nav-link--promo:focus {
    color: #b45309;
    background: rgba(251, 191, 36, 0.12);
}
.nav-lang-block {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}
.nav-lang-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
}
.nav-cta-order {
    display: none !important;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    font-size: 0.82rem;
    white-space: nowrap;
    min-height: 2.65rem;
    max-width: 100%;
}
@media (min-width: 1280px) {
    .nav-cta-order { display: inline-flex !important; }
}
@media (max-width: 1279px) {
    .nav-toolbar .nav-cta-order,
    .nav-menu .nav-cta-order { display: none !important; }
}
.nav-menu-list,
.nav-menu-list > li,
.nav-dropdown-menu > li,
.lang-switcher-menu > li {
    list-style: none;
}
.nav-menu-list {
    width: 100%;
    margin: 0;
    padding: 0;
}
.nav-menu-list > li::marker,
.nav-dropdown-menu > li::marker,
.lang-switcher-menu > li::marker {
    content: none;
}

.site-header.scrolled .nav-glass {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: color var(--mp-transition), background var(--mp-transition), transform 0.25s ease;
}
.nav-link:hover, .nav-link:focus { color: var(--mp-primary); background: rgba(99, 102, 241, 0.08); }

/* Burger button */
.nav-burger {
    position: relative;
    z-index: 80;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12);
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, background 0.3s;
}
.nav-burger:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(99, 102, 241, 0.2); }
.nav-burger-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 1.5rem;
}
.nav-bar {
    display: block;
    width: 1.5rem;
    height: 2.5px;
    background: #1e293b;
    border-radius: 999px;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
}
.nav-burger.active { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.nav-burger.active .nav-bar { background: #fff; }
.nav-burger.active .nav-bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); width: 1.35rem; }
.nav-burger.active .nav-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.active .nav-bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); width: 1.35rem; }

/* Mobile menu overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(11, 15, 26, 0.45);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
    pointer-events: none;
}
body.nav-open { overflow: hidden; }
body.nav-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@keyframes navMenuIn {
    from { opacity: 0; transform: translateY(-12px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes navLinkIn {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}

.nav-menu.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    z-index: 70;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px) saturate(180%);
    border-radius: 1.25rem;
    padding: 1.25rem 1rem 1.5rem;
    box-shadow: 0 24px 64px rgba(99, 102, 241, 0.18), 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    animation: navMenuIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform-origin: top center;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--mp-primary);
    border-radius: 2rem;
    text-decoration: none;
    transition: all var(--mp-transition);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
    min-height: 2.75rem;
    -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover {
    background: var(--mp-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
    color: #fff;
}
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: var(--mp-primary-dark);
    background: linear-gradient(135deg, #fff, #e0e7ff);
    border-radius: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.3);
    transition: all var(--mp-transition);
}
.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4), 0 0 40px rgba(34, 211, 238, 0.35);
    color: var(--mp-primary-dark);
}
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2rem;
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: all var(--mp-transition);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    color: #fff;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    color: var(--mp-primary);
    background: transparent;
    border: 2px solid var(--mp-primary);
    border-radius: 2rem;
    text-decoration: none;
    transition: all var(--mp-transition);
}
.btn-outline:hover {
    background: var(--mp-primary);
    color: #fff;
    transform: translateY(-2px);
}
.btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mp-primary);
    background: #fff;
    border: 2px solid rgba(99, 102, 241, 0.35);
    border-radius: 2rem;
    cursor: pointer;
    transition: all var(--mp-transition);
    min-height: 2.5rem;
    -webkit-tap-highlight-color: transparent;
}
.btn-cart:hover {
    background: #eef2ff;
    border-color: var(--mp-primary);
    transform: translateY(-1px);
}
.btn-cta-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mp-primary-dark);
    background: #fff;
    border-radius: 2rem;
    text-decoration: none;
    transition: all var(--mp-transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.btn-cta-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    color: var(--mp-primary-dark);
}
.btn-cta-on-dark {
    background: #fff;
    color: var(--mp-primary-dark);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    font-size: 1rem;
    padding: 0.85rem 2rem;
}
.btn-cta-on-dark:hover {
    background: #f8fafc;
    color: var(--mp-primary-dark);
}
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.btn-row--center { justify-content: center; }
.btn-row--cta { margin-top: 0.25rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Text gradients ───────────────────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-accent) 50%, var(--mp-accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-light {
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 45%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

/* ── Transition 2: Scroll reveal ──────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s var(--mp-transition), transform 0.8s var(--mp-transition);
}
html.js-anim .reveal:not(.revealed) {
    opacity: 0;
    transform: translateY(48px) rotateX(8deg);
    transform-origin: center top;
}
html.js-anim .reveal.revealed {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}
html.js-anim .reveal-left:not(.revealed) {
    opacity: 0;
    transform: translateX(-40px);
}
html.js-anim .reveal-left.revealed { opacity: 1; transform: translateX(0); }
html.js-anim .reveal-right:not(.revealed) {
    opacity: 0;
    transform: translateX(40px);
}
html.js-anim .reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ── Transition 3: 3D tilt cards ──────────────────────────── */
.card-3d {
    transform-style: preserve-3d;
    transition: transform var(--mp-transition-3d) ease-out, box-shadow var(--mp-transition);
    will-change: transform;
}
.card-3d.is-tilting { transition: transform 0.08s ease-out; }
.card-3d .card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
    border-radius: inherit;
    z-index: 2;
}
.card-3d:hover .card-shine { transform: translateX(100%); }

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    margin-top: calc(-1 * var(--header-offset));
    padding-top: calc(var(--header-offset) + 2rem);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}
.hero-section.ready .hero-bg { transform: scale(1); }
.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.45), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(34, 211, 238, 0.35), transparent);
    animation: meshPulse 8s ease-in-out infinite alternate;
}
@keyframes meshPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(11, 15, 26, 0.9) 0%, rgba(79, 70, 229, 0.5) 50%, rgba(11, 15, 26, 0.8) 100%);
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem 0.35rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 2rem;
    backdrop-filter: blur(8px);
}
.hero-pill-dot {
    width: 8px;
    height: 8px;
    background: var(--mp-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--mp-accent);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-glass-badge {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-align: left;
    word-break: break-word;
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    transition: transform var(--mp-transition), border-color var(--mp-transition);
}
.hero-glass-badge:hover { transform: translateY(-2px); border-color: rgba(34, 211, 238, 0.4); }

.hero-price-box {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.hero-price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.hero-price-col { min-width: 0; flex: 1 1 auto; }
.hero-price-divider { color: rgba(255, 255, 255, 0.3); font-size: 1.5rem; flex-shrink: 0; }
.hero-price-delivery {
    margin: 0.75rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    line-height: 1.5;
    word-break: break-word;
}
@media (min-width: 640px) {
    .hero-price-row {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }
    .hero-price-delivery {
        margin-top: 0.75rem;
        padding-top: 0;
        border-top: none;
        text-align: center;
    }
}

/* 3D floating decor */
.cube-3d {
    width: 60px;
    height: 60px;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeSpin 12s linear infinite;
}
.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(34, 211, 238, 0.5);
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(4px);
}
.cube-face.f1 { transform: rotateY(0deg) translateZ(30px); }
.cube-face.f2 { transform: rotateY(90deg) translateZ(30px); }
.cube-face.f3 { transform: rotateY(180deg) translateZ(30px); }
.ring-3d {
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-top-color: var(--mp-accent-2);
    border-right-color: rgba(167, 139, 250, 0.3);
    border-radius: 50%;
    animation: ringSpin 4s linear infinite;
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.3);
}
@keyframes ringSpin { to { transform: rotate(360deg); } }

/* ── Gallery bento ────────────────────────────────────────── */
.gallery-section { position: relative; overflow: hidden; }
.gallery-aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 20%, rgba(99, 102, 241, 0.25), transparent),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(34, 211, 238, 0.2), transparent),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(167, 139, 250, 0.15), transparent);
    animation: auroraShift 10s ease-in-out infinite alternate;
}
@keyframes auroraShift {
    0% { filter: hue-rotate(0deg); opacity: 0.8; }
    100% { filter: hue-rotate(15deg); opacity: 1; }
}
.gallery-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}
.gallery-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
    perspective: 1200px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}
.bento-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.bento-featured { grid-column: span 7; grid-row: span 2; min-height: 420px; }
.bento-video { grid-column: span 5; grid-row: span 2; min-height: 420px; }
.bento-photo { grid-column: span 4; min-height: 220px; }
.bento-stats {
    grid-column: span 4;
    min-height: 220px;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(34,211,238,0.1));
}
.bento-media-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    text-decoration: none;
    color: #fff;
}
.bento-media-link img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s;
}
.bento-card:hover .bento-media-link img { transform: scale(1.06); filter: brightness(1.05); }
.bento-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.7s;
    pointer-events: none;
}
.bento-card:hover .bento-shine { transform: translateX(100%); }
.bento-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem 1.25rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.85rem;
}
.bento-tag {
    display: inline-block;
    width: fit-content;
    padding: 0.2rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mp-accent);
    background: rgba(34, 211, 238, 0.15);
    border-radius: 0.25rem;
}
.bento-video { isolation: isolate; }
.bento-video-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--mp-accent), var(--mp-primary), var(--mp-accent-2));
    border-radius: 1.5rem;
    z-index: 0;
    opacity: 0.6;
    filter: blur(8px);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}
.bento-video-inner { position: relative; height: 100%; min-height: inherit; display: flex; flex-direction: column; }
.bento-video-inner video {
    flex: 1;
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    background: #000;
    position: relative;
    z-index: 1;
    border-radius: 1.4rem 1.4rem 0 0;
}
.bento-live {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 0.35rem;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}
.bento-live-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}
.bento-video-label {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
}

/* About — workshop video */
.about-media {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.about-video {
    position: relative;
    margin: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    isolation: isolate;
}
.about-video-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--mp-accent), var(--mp-primary), var(--mp-accent-2));
    border-radius: 1.6rem;
    z-index: 0;
    opacity: 0.55;
    filter: blur(10px);
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
.about-video-inner {
    position: relative;
    z-index: 1;
    background: #0f172a;
    border-radius: 1.5rem;
    overflow: hidden;
}
.about-video-inner video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}
.about-live {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 0.35rem;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}
.about-live-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}
.about-video-caption {
    margin: 0;
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}
.about-photo {
    width: 100%;
}

.bento-stats-inner {
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}
.stat-orbit {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px dashed rgba(34, 211, 238, 0.3);
    border-radius: 50%;
    animation: ringSpin 8s linear infinite;
}
.stat-sphere {
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    background: var(--mp-accent);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--mp-accent);
}
.stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, #fff, var(--mp-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
}
.stat-desc { display: block; margin-top: 0.5rem; font-size: 0.75rem; color: #94a3b8; }

/* ── Forms ────────────────────────────────────────────────── */
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fff;
    transition: border-color var(--mp-transition), box-shadow var(--mp-transition);
}
.form-input:focus {
    outline: none;
    border-color: var(--mp-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.form-input.is-invalid { border-color: #ef4444; }
.form-label { display: block; font-weight: 500; margin-bottom: 0.5rem; font-size: 0.9rem; }
.form-hint { font-size: 0.8rem; color: #6b7280; margin-top: 0.35rem; }

/* ── FAQ accordion ──────────────────────────────────────────── */
.faq-item { border-radius: 1rem; overflow: hidden; margin-bottom: 0.75rem; }
.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: background var(--mp-transition), color var(--mp-transition);
}
.faq-trigger:hover { background: rgba(99, 102, 241, 0.06); }
.faq-trigger.active { background: rgba(99, 102, 241, 0.1); color: var(--mp-primary); }
.faq-trigger .faq-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    transition: transform 0.3s;
}
.faq-trigger.active .faq-icon { transform: rotate(180deg); }
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--mp-transition);
}
.faq-panel.open { max-height: 500px; }
.faq-panel-inner {
    padding: 0 1.5rem 1.25rem;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── Misc components ──────────────────────────────────────── */
.delivery-num {
    width: 2rem; height: 2rem;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.city-badge-sm {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    transition: all var(--mp-transition);
}
.city-badge-sm:hover { background: rgba(99, 102, 241, 0.1); border-color: var(--mp-primary); }
.payment-step-num {
    width: 1.75rem; height: 1.75rem;
    background: rgba(99, 102, 241, 0.12);
    color: var(--mp-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.vipps-logo {
    display: inline-block;
    background: #ff5b24;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 0.35rem 1.25rem;
    border-radius: 2rem;
}
.vipps-logo-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff5b24;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    line-height: 1.2;
}
.vipps-logo-xs {
    display: inline-flex;
    align-items: center;
    background: #ff5b24;
    color: #fff;
    font-weight: 800;
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    line-height: 1.2;
}
.step-number {
    width: 3rem; height: 3rem;
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-accent-2));
    color: #fff;
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.25rem;
    flex-shrink: 0;
}
.map-iframe {
    height: clamp(220px, 45vw, 350px);
    border: 0;
    width: 100%;
    max-width: 100%;
}
.track-iframe { height: 500px; border: 0; width: 100%; }
.track-timeline { display: flex; flex-direction: column; gap: 0.5rem; }
.track-timeline-step {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.5rem 0.75rem; border-radius: 0.5rem;
    font-size: 0.85rem; color: #9ca3af; background: #f9fafb;
}
.track-timeline-step.active { color: var(--mp-primary); background: rgba(99, 102, 241, 0.1); font-weight: 600; }
.track-timeline-step i { width: 1.25rem; text-align: center; }
.cta-section {
    background: linear-gradient(135deg, var(--mp-primary), #312e81, var(--mp-accent-2));
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.not-italic { font-style: normal; }

.prose-seo p { font-size: 1rem; line-height: 1.75; }

/* Без анімацій — форми, підписка */
.no-animation,
.no-animation * {
    transform: none !important;
    animation: none !important;
}
.no-animation.reveal,
.no-animation .reveal {
    opacity: 1 !important;
    transform: none !important;
}

/* ── Cookie banner ────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 1rem;
    background: rgba(11, 15, 26, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}
.cookie-banner.hidden { display: none; }
.cookie-banner-inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 640px) {
    .cookie-banner-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
.cookie-banner-text {
    margin: 0;
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.5;
}
.cookie-banner-link {
    color: #22d3ee;
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.cookie-btn-accept {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--mp-primary);
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--mp-primary-dark); }
.cookie-btn-settings {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    border: 1px solid #475569;
    border-radius: 2rem;
    transition: color 0.2s, border-color 0.2s;
}
.cookie-btn-settings:hover { color: #fff; border-color: #94a3b8; }

/* ── GDPR cookie banner (EU + Norway) ─────────────────────── */
.cookie-banner-gdpr {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 1rem 1.25rem;
    background: rgba(11, 15, 26, 0.97);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(99, 102, 241, 0.25);
    transform: translateY(100%);
    transition: transform 0.45s ease;
}
.cookie-banner-gdpr.cookie-banner-visible { transform: translateY(0); }
.cookie-banner-gdpr.hidden { display: none; }
.cookie-banner-gdpr .cookie-banner-inner {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    text-align: left;
}
@media (min-width: 768px) {
    .cookie-banner-gdpr .cookie-banner-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.cookie-banner-title { display: block; color: #fff; font-size: 0.95rem; margin-bottom: 0.35rem; }
.cookie-banner-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; margin-top: 0.5rem; font-size: 0.75rem; }
.cookie-btn-reject {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #fca5a5;
    background: transparent;
    border: 1px solid rgba(248, 113, 113, 0.45);
    border-radius: 2rem;
    cursor: pointer;
}
.cookie-reject-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    padding: 0.75rem 1rem;
    background: rgba(245, 158, 11, 0.95);
    color: #451a03;
    font-size: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.cookie-reject-bar.hidden { display: none; }
.cookie-reject-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.cookie-modal.hidden { display: none; }
.cookie-modal-panel {
    background: #0b0f1a;
    color: #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    max-width: 26rem;
    width: 100%;
    border: 1px solid rgba(99, 102, 241, 0.2);
}
.cookie-modal-panel h3 { margin: 0 0 0.75rem; font-size: 1.1rem; color: #fff; }
.cookie-modal-actions { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.cookie-modal-actions .cookie-btn-accept,
.cookie-modal-actions .cookie-btn-settings { flex: 1; text-align: center; }

.legal-content ul li { color: #475569; }

/* ── Test mode popup ──────────────────────────────────────── */
.test-mode-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.test-mode-overlay[hidden] { display: none; }
body.test-mode-open { overflow: hidden; }

.test-mode-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 15, 26, 0.75);
    backdrop-filter: blur(6px);
}

.test-mode-popup {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    padding: 2rem 1.75rem;
    text-align: center;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(99, 102, 241, 0.15);
    animation: testModeIn 0.35s ease-out;
}

@keyframes testModeIn {
    from { opacity: 0; transform: scale(0.92) translateY(16px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.test-mode-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--mp-primary);
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(34,211,238,0.1));
    border-radius: 1rem;
}

.test-mode-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b45309;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 2rem;
}

.test-mode-title {
    margin: 0 0 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

.test-mode-text {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.test-mode-sub {
    margin: 0 0 1.5rem;
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
}

.test-mode-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.test-mode-btn-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--mp-primary), var(--mp-primary-dark));
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.test-mode-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.test-mode-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2aabee;
    text-decoration: none;
    border: 1px solid #bae6fd;
    border-radius: 2rem;
    background: #f0f9ff;
    transition: background 0.2s;
}
.test-mode-btn-secondary:hover { background: #e0f2fe; }

.test-mode-ribbon {
    position: fixed;
    top: 5.5rem;
    right: -2.5rem;
    z-index: 9990;
    padding: 0.4rem 3rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: rotate(35deg);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    pointer-events: none;
}

.order-form-disabled,
.form-pro.order-form-disabled {
    opacity: 0.55;
    pointer-events: none;
    user-select: none;
}
.order-form-disabled .btn-primary,
.form-pro.order-form-disabled .form-pro-submit { pointer-events: none; }

/* ── Pro forms (order + contact) ──────────────────────────── */
.form-page {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 40%, #f1f5f9 100%);
}
.form-page-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4f46e5;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 9999px;
}

.form-pro-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.12);
}
.form-pro-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #6366f1 50%, #22d3ee);
}
.form-pro-card-head-contact {
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
}
.form-pro-card-body { padding: 1.5rem; }
@media (min-width: 640px) {
    .form-pro-card-body { padding: 2rem; }
}

.form-pro-sidebar-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
    margin-bottom: 1rem;
}
.form-pro-sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}
.form-pro-sidebar-price { margin-bottom: 1.25rem; }
.form-pro-sidebar-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
    color: #64748b;
}
.form-pro-sidebar-row strong { color: #4f46e5; font-size: 1.1rem; }
.form-pro-sidebar-row.premium strong { color: #db2777; }
.form-pro-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.form-pro-sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #64748b;
}
.form-pro-sidebar-promo {
    background: linear-gradient(135deg, #fffbeb, #fdf2f8);
    border: 1px solid #fde68a;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}
.form-pro-sidebar-link,
.form-pro-sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.form-pro-sidebar-link {
    color: #4f46e5;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
}
.form-pro-sidebar-cta {
    color: #fff;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.3);
}
.form-pro-sidebar-link:hover,
.form-pro-sidebar-cta:hover {
    transform: translateY(-2px);
}

.form-quick-links { display: flex; flex-direction: column; gap: 0.75rem; }
.form-quick-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.form-quick-link i { font-size: 1.5rem; }
.form-quick-link strong { display: block; font-size: 0.9rem; color: #0f172a; }
.form-quick-link small { display: block; font-size: 0.75rem; color: #94a3b8; margin-top: 0.1rem; }
.form-quick-link:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08); }
.form-quick-telegram:hover { border-color: #2aabee; }
.form-quick-telegram i { color: #2aabee; }
.form-quick-whatsapp:hover { border-color: #25d366; }
.form-quick-whatsapp i { color: #25d366; }
.form-quick-vipps:hover { border-color: #ff5b24; }
.form-quick-vipps .vipps-logo-sm { flex-shrink: 0; }
.form-quick-email:hover { border-color: #6366f1; }
.form-quick-email i { color: #6366f1; }
.form-quick-messenger:hover { border-color: #0084ff; }
.form-quick-messenger i { color: #0084ff; }

.form-pro-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #f1f5f9;
}
.form-pro-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.form-pro-section-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.form-pro-step {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #22d3ee);
    border-radius: 0.65rem;
    flex-shrink: 0;
}
.form-pro-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.form-pro-grid-2 {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .form-pro-grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-pro-field { margin-bottom: 1rem; }
.form-pro-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 0.45rem;
}
.form-pro-input-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
}
.form-pro-input-icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    pointer-events: none;
    z-index: 1;
}
.form-pro-input {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 2.75rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.875rem;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-pro-input:focus {
    outline: none;
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}
.form-pro-input.is-invalid { border-color: #ef4444; background: #fef2f2; }
.form-pro-select { appearance: none; cursor: pointer; }
.form-pro-hint { font-size: 0.78rem; color: #94a3b8; margin-top: 0.4rem; }

.form-package-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 480px) {
    .form-package-grid { grid-template-columns: 1fr 1fr; }
}
.form-package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 1.25rem;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.form-package-card:hover { border-color: #c7d2fe; transform: translateY(-2px); }
.form-package-card.is-selected {
    border-color: #6366f1;
    background: linear-gradient(180deg, #fff, #eef2ff);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
}
.form-package-premium.is-selected {
    border-color: #f472b6;
    background: linear-gradient(180deg, #fff, #fdf2f8);
    box-shadow: 0 12px 32px rgba(236, 72, 153, 0.12);
}
.form-package-check {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #fff;
    background: #6366f1;
    border-radius: 9999px;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s, transform 0.2s;
}
.form-package-card.is-selected .form-package-check { opacity: 1; transform: scale(1); }
.form-package-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #6366f1;
    background: #eef2ff;
    border-radius: 0.75rem;
}
.form-package-premium .form-package-icon { color: #db2777; background: #fce7f3; }
.form-package-name { font-weight: 700; font-size: 0.9rem; color: #0f172a; margin-bottom: 0.35rem; }
.form-package-price { margin-bottom: 0.5rem; }
.form-package-old {
    font-size: 0.8rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 0.35rem;
}
.form-package-price strong { font-size: 1.25rem; color: #4f46e5; }
.form-package-premium .form-package-price strong { color: #db2777; }
.form-package-desc { font-size: 0.75rem; color: #64748b; line-height: 1.45; }

.form-dropzone {
    position: relative;
    border: 2px dashed #c7d2fe;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.form-dropzone:hover,
.form-dropzone.is-dragover {
    border-color: #6366f1;
    background: #eef2ff;
    transform: scale(1.01);
}
.form-dropzone-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}
.form-dropzone-icon {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}
.form-dropzone-title { font-weight: 700; color: #334155; margin-bottom: 0.25rem; }
.form-dropzone-sub { font-size: 0.8rem; color: #94a3b8; margin-bottom: 0.75rem; }
.form-dropzone-btn {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4f46e5;
    background: #fff;
    border: 1px solid #c7d2fe;
    border-radius: 9999px;
}
.form-dropzone-list {
    margin-top: 1rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.form-file-item {
    display: block;
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.5rem;
}
.form-file-item.ok { color: #15803d; background: #f0fdf4; }
.form-file-item.error { color: #b91c1c; background: #fef2f2; }
.form-file-item em { font-style: normal; color: #94a3b8; }

.form-pro-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
}
.form-pro-terms input { margin-top: 0.2rem; width: 1.1rem; height: 1.1rem; accent-color: #6366f1; }
.form-pro-terms label { font-size: 0.85rem; color: #64748b; line-height: 1.5; }

.form-pro-recaptcha { margin-bottom: 1.25rem; }
.form-pro-recaptcha .g-recaptcha { display: inline-block; }
.g-recaptcha.recaptcha-error > div { outline: 2px solid #ef4444; border-radius: 4px; }

.form-pro-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
.form-pro-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-spinner {
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 9999px;
    animation: formSpin 0.8s linear infinite;
}
@keyframes formSpin { to { transform: rotate(360deg); } }

/* ── Promo bar & timer ────────────────────────────────────── */
@keyframes pulseGlow {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 rgba(255, 255, 255, 0); }
    50% { opacity: 0.92; box-shadow: 0 0 18px rgba(255, 255, 255, 0.35); }
}
.site-header.site-header-compact .promo-top-bar {
    max-height: 0;
    opacity: 0;
    border-bottom-width: 0;
    overflow: hidden;
    pointer-events: none;
}
.promo-top-bar {
    position: relative;
    flex-shrink: 0;
    max-height: 4rem;
    overflow: hidden;
    background: linear-gradient(90deg, #f59e0b, #ec4899, #6366f1, #f59e0b);
    background-size: 300% 100%;
    animation: gradientShift 8s ease infinite;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: max-height 0.4s ease, opacity 0.35s ease, border-color 0.35s;
}
.promo-top-bar-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0.45rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    min-height: 2.25rem;
}
.promo-top-bar-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #b45309;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.promo-top-bar-label {
    font-weight: 700;
    white-space: nowrap;
}
.promo-top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.72rem;
    white-space: nowrap;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.35);
    transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.promo-top-bar-link:hover {
    background: rgba(255,255,255,0.38);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
@media (min-width: 768px) {
    .promo-top-bar { font-size: 0.82rem; }
    .promo-top-bar-inner { padding: 0.5rem 1rem; gap: 0.65rem 1rem; }
    .promo-top-bar-link { font-size: 0.78rem; }
}

.promo-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-variant-numeric: tabular-nums;
}
.promo-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 2.25rem;
}
.promo-timer-num {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.04em;
}
.promo-timer-lbl {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.85;
    letter-spacing: 0.06em;
}
.promo-timer-sep {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.7;
    padding-bottom: 0.65rem;
}
.promo-timer-lg {
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 2px solid #fde68a;
    border-radius: 1.25rem;
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
}
.promo-timer-lg .promo-timer-unit { min-width: 3.5rem; }
.promo-timer-lg .promo-timer-num { font-size: 2rem; }
.promo-timer-lg .promo-timer-lbl { font-size: 0.65rem; }
.promo-timer-lg .promo-timer-sep { font-size: 1.75rem; padding-bottom: 1rem; }
.form-pro-sidebar-promo .promo-timer { width: 100%; justify-content: center; }

.hero-promo-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45);
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.promo-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fffbeb 0%, #fff 40%, #fdf2f8 100%);
}
.promo-section-discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.35);
}
.promo-prices-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.promo-price-box {
    flex: 1 1 10rem;
    max-width: 14rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #fde68a;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.08);
}
.promo-price-box-premium {
    border-color: #f9a8d4;
    background: linear-gradient(180deg, #fff 0%, #fdf2f8 100%);
}
.promo-price-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #b45309;
    margin-bottom: 0.35rem;
}
.promo-price-old {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.promo-price-new {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #4f46e5;
}

/* ── Catalog card footer ──────────────────────────────────── */
.catalog-card-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: auto;
}
.catalog-card-footer .btn-add-order,
.catalog-card-footer .btn-outline {
    width: 100%;
    justify-content: center;
    gap: 0.45rem;
}
.btn-add-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}
@media (min-width: 480px) {
    .catalog-card-footer {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .catalog-card-footer .btn-add-order,
    .catalog-card-footer .btn-outline { width: auto; }
}

/* ── Vipps copy button ────────────────────────────────────── */
.vipps-copy-btn {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff5b24, #ff7a4d);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(255, 91, 36, 0.3);
}
.vipps-copy-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255, 91, 36, 0.38); }
.vipps-copy-btn.is-copied { background: linear-gradient(135deg, #059669, #10b981); box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3); }
.vipps-copy-number { font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.vipps-copy-label { font-size: 0.78rem; opacity: 0.9; }
.vipps-copy-icon { font-size: 0.85rem; opacity: 0.85; }

/* ── City chips (SEO links) ───────────────────────────────── */
.city-chip,
.city-badge-sm--link {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mp-primary-dark);
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}
.city-chip:hover,
.city-badge-sm--link:hover {
    background: #e0e7ff;
    color: #4338ca;
    transform: translateY(-1px);
}
.footer-city-chip--extra { display: none; }
.footer-cities-panel[data-collapsed="false"] .footer-city-chip--extra { display: inline-flex; }

/* ── Nav dropdown divider (2nd group) ─────────────────────── */
.nav-dropdown-divider {
    list-style: none;
    margin: 0.35rem 0.5rem 0.25rem;
    padding: 0.45rem 0.5rem 0;
    border-top: 1px solid #e2e8f0;
}
.nav-dropdown-divider span {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #94a3b8;
}
.nav-dropdown-link--city { font-size: 0.92rem; font-weight: 500; }
@media (max-width: 1279px) {
    .nav-dropdown-link--city { font-size: 1rem; }
}
.nav-dropdown-menu { max-height: 70vh; overflow-y: auto; }

/* ── Footer (accessible, responsive) ──────────────────────── */
.site-footer {
    position: relative;
    background: #0b1120;
    color: #cbd5e1;
    overflow-x: hidden;
}
.footer-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.footer-mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: footerOrb 12s ease-in-out infinite alternate;
}
.footer-mesh-orb--1 {
    width: 320px; height: 320px;
    top: -80px; left: -60px;
    background: radial-gradient(circle, rgba(99,102,241,0.55), transparent 70%);
}
.footer-mesh-orb--2 {
    width: 280px; height: 280px;
    top: 40%; right: -40px;
    background: radial-gradient(circle, rgba(34,211,238,0.4), transparent 70%);
    animation-delay: -4s;
}
.footer-mesh-orb--3 {
    width: 240px; height: 240px;
    bottom: -60px; left: 35%;
    background: radial-gradient(circle, rgba(167,139,250,0.35), transparent 70%);
    animation-delay: -8s;
}
@keyframes footerOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -15px) scale(1.08); }
}
.footer-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem var(--page-gutter) calc(2rem + var(--safe-bottom));
    padding-left: max(var(--page-gutter), env(safe-area-inset-left, 0px));
    padding-right: max(var(--page-gutter), env(safe-area-inset-right, 0px));
}
@media (min-width: 640px) {
    .footer-inner { padding-top: 2.75rem; padding-bottom: calc(2.25rem + var(--safe-bottom)); }
}
@media (min-width: 1024px) {
    .footer-inner { padding-top: 3rem; padding-bottom: calc(2.5rem + var(--safe-bottom)); }
}

/* Brand row */
.footer-brand-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(71, 85, 105, 0.4);
}
.footer-brand-main { min-width: 0; }
.footer-brand-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
}
.footer-order-btn {
    width: 100%;
    min-height: 3rem;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    color: #fff !important;
}
@media (max-width: 1279px) {
    .footer-order-btn { display: none !important; }
}
.footer-order-btn-icon,
.footer-order-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    stroke: currentColor;
}
.footer-brand-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0.75rem 0 0;
}
.footer-social-label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin: 0;
}
.footer-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(71, 85, 105, 0.5);
    color: #cbd5e1;
    text-decoration: none;
    transition: transform 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s;
    -webkit-tap-highlight-color: transparent;
}
.footer-social-btn svg { width: 1.25rem; height: 1.25rem; }
.footer-social-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}
.footer-social-btn--tg:hover { border-color: #2aabee; background: rgba(42,171,238,0.15); box-shadow: 0 4px 16px rgba(42,171,238,0.25); color: #2aabee; }
.footer-social-btn--wa:hover { border-color: #25d366; background: rgba(37,211,102,0.15); box-shadow: 0 4px 16px rgba(37,211,102,0.25); color: #25d366; }
.footer-social-btn--msg:hover { border-color: #0084ff; background: rgba(0,132,255,0.15); box-shadow: 0 4px 16px rgba(0,132,255,0.25); color: #0084ff; }
.footer-social-btn--mail:hover { border-color: #6366f1; background: rgba(99,102,241,0.15); box-shadow: 0 4px 16px rgba(99,102,241,0.25); color: #a5b4fc; }
.footer-dev-link {
    width: 100%;
    min-height: 2.75rem;
    justify-content: center;
}
@media (min-width: 768px) {
    .footer-brand-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
    }
    .footer-brand-actions {
        align-items: flex-end;
        flex-shrink: 0;
        width: auto;
        max-width: 20rem;
    }
    .footer-order-btn { width: auto; min-width: 13rem; }
    .footer-dev-link { width: auto; }
}
@media (min-width: 1024px) {
    .footer-brand-row { margin-bottom: 2.5rem; align-items: center; }
    .footer-brand-tagline { max-width: 36rem; }
}

/* Shelves grid */
.footer-shelves {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
.footer-shelf { min-width: 0; }
.footer-shelf--wide .footer-shelf-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.footer-shelf-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(71, 85, 105, 0.35);
}
.footer-shelf-title-icon {
    display: flex;
    width: 1.125rem;
    height: 1.125rem;
    color: #6366f1;
    flex-shrink: 0;
}
.footer-shelf-title-icon svg { width: 100%; height: 100%; }
.footer-shelf-subtitle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin: 1.25rem 0 0.5rem;
}
.footer-shelf-subtitle--contacts { margin-top: 1.5rem; }
.footer-shelf-subtitle-icon {
    display: flex;
    width: 1rem;
    height: 1rem;
    color: #6366f1;
    flex-shrink: 0;
}
.footer-shelf-subtitle-icon svg { width: 100%; height: 100%; }
.footer-shelf-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.footer-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-height: 2.75rem;
    padding: 0.625rem 1rem;
    margin: 0;
    border-radius: 0.625rem;
    font-size: 1rem;
    line-height: 1.4;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.footer-link-icon {
    display: flex;
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
    color: #94a3b8;
    transition: color 0.2s;
}
.footer-link-icon svg { width: 100%; height: 100%; }
.footer-link-text { flex: 1; min-width: 0; word-break: break-word; }
.footer-link:hover {
    color: #fff;
    background: rgba(99, 102, 241, 0.12);
}
.footer-link:hover .footer-link-icon { color: #a5b4fc; }

/* Cities */
.footer-cities-block { margin-top: 0.5rem; }
.footer-cities-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-city-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2.75rem;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.45);
    border-radius: 9999px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.footer-city-chip svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; opacity: 0.75; }
.footer-city-chip:hover {
    color: #fff;
    border-color: var(--mp-primary);
    background: rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}
.footer-cities-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 2.75rem;
    margin-top: 0.75rem;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.footer-cities-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #fff;
}
.footer-cities-toggle-icon {
    display: flex;
    width: 1rem;
    height: 1rem;
    transition: transform 0.25s;
}
.footer-cities-toggle-icon svg { width: 100%; height: 100%; }
.footer-cities-panel[data-collapsed="false"] .footer-cities-toggle-icon,
.footer-cities-toggle[aria-expanded="true"] .footer-cities-toggle-icon { transform: rotate(180deg); }

.footer-shelf-notes {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0.75rem 0 0;
    border-top: 1px solid rgba(71, 85, 105, 0.35);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #94a3b8;
}
.footer-shelf-notes li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.footer-note-check {
    display: flex;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--mp-primary);
    margin-top: 0.15rem;
}
.footer-note-check svg { width: 100%; height: 100%; }

/* Footer bottom */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(71, 85, 105, 0.4);
    margin: 2rem 0 1.5rem;
}
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.5rem;
    margin-bottom: 1.25rem;
}
.footer-legal a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.footer-legal a:hover {
    color: #fff;
    background: rgba(99, 102, 241, 0.1);
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.footer-copyright {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #94a3b8;
    text-align: center;
}
.footer-back-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(71, 85, 105, 0.45);
    border-radius: 9999px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.footer-back-top-icon {
    display: flex;
    width: 1rem;
    height: 1rem;
    transform: rotate(180deg);
}
.footer-back-top-icon svg { width: 100%; height: 100%; }
.footer-back-top:hover {
    color: #fff;
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(34, 211, 238, 0.1);
    box-shadow: 0 4px 16px rgba(34, 211, 238, 0.15);
}
.footer-back-top.is-visible .footer-back-top-icon { animation: footerBounce 1.5s ease infinite; }
@keyframes footerBounce {
    0%, 100% { transform: rotate(180deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-3px); }
}

/* Focus states (WCAG / NO uu-krav) */
.footer-link:focus-visible,
.footer-social-btn:focus-visible,
.footer-order-btn:focus-visible,
.footer-cities-toggle:focus-visible,
.footer-back-top:focus-visible,
.footer-legal a:focus-visible,
.footer-city-chip:focus-visible,
.footer-dev-link:focus-visible {
    outline: 2px solid var(--mp-accent);
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .footer-shelves {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 2.5rem;
    }
    .footer-shelf--wide { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
    .footer-shelves {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
    }
    .footer-shelf--wide { grid-column: auto; }
    .footer-shelf-title { font-size: 0.9375rem; }
}

/* Neon developer button */
.btn-neon-developer {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.1rem;
    border-radius: 0.65rem;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.45);
    background: rgba(15, 23, 42, 0.8);
}
.btn-neon-developer-text {
    position: relative;
    z-index: 1;
    font-family: 'Space Grotesk', Inter, sans-serif;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #67e8f9;
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.8), 0 0 20px rgba(99, 102, 241, 0.5);
    animation: neonPulse 2.5s ease-in-out infinite;
}
.btn-neon-developer-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(99,102,241,0.5), rgba(34,211,238,0.35), rgba(167,139,250,0.4));
    filter: blur(8px);
    opacity: 0.7;
    animation: neonGlow 3s ease-in-out infinite alternate;
}
.btn-neon-developer:hover .btn-neon-developer-text {
    color: #fff;
    text-shadow: 0 0 12px #22d3ee, 0 0 28px #6366f1, 0 0 40px #a78bfa;
}
@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}
@keyframes neonGlow {
    0% { opacity: 0.5; transform: scale(0.98); }
    100% { opacity: 0.9; transform: scale(1.02); }
}

/* SEO shelf cards (homepage) */
.seo-shelf-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    height: 100%;
}
.seo-shelf-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
}
.seo-city-custom {
    border-left: 4px solid var(--mp-primary);
}

/* Trust bar */
.trust-bar {
    background: linear-gradient(90deg, #eef2ff, #f8fafc, #ecfeff);
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
}
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .trust-bar-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-stat {
    text-align: center;
    padding: 0.75rem;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.06);
}
.trust-stat-num {
    display: inline;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #4f46e5;
}
.trust-stat-suffix {
    font-size: 1.25rem;
    font-weight: 800;
    color: #4f46e5;
}
.trust-stat-label {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 0.15rem;
    font-weight: 600;
}
.trust-stat--cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
}
.trust-cta-link {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
/* ── Site footer (layout helpers) ─────────────────────────── */
.site-footer .grid > * { min-width: 0; }
.footer-links a {
    display: inline-block;
    padding: 0.15rem 0;
    word-break: break-word;
}

/* ── Responsive ───────────────────────────────────────────── */

/* Tablet landscape + small laptop (≤1279) — burger menu */
@media (max-width: 1279px) {
    .nav-menu.open .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0.95rem 1.1rem;
        min-height: 3.1rem;
        border-radius: 0.875rem;
        animation: navLinkIn 0.4s ease backwards;
    }
    .nav-menu.open li:nth-child(1) .nav-link { animation-delay: 0.03s; }
    .nav-menu.open li:nth-child(2) .nav-link { animation-delay: 0.05s; }
    .nav-menu.open li:nth-child(3) .nav-link { animation-delay: 0.07s; }
    .nav-menu.open li:nth-child(4) .nav-link { animation-delay: 0.09s; }
    .nav-menu.open li:nth-child(5) .nav-link { animation-delay: 0.11s; }
    .nav-menu.open li:nth-child(6) .nav-link { animation-delay: 0.13s; }
    .nav-menu.open li:nth-child(7) .nav-link { animation-delay: 0.15s; }
    .nav-menu.open li:nth-child(8) .nav-link { animation-delay: 0.17s; }
    .nav-menu.open li:nth-child(9) .nav-link { animation-delay: 0.19s; }
    .nav-menu.open li:nth-child(10) .nav-link { animation-delay: 0.21s; }
    .nav-menu.open li:nth-child(11) .nav-link { animation-delay: 0.23s; }
    .nav-menu.open li:nth-child(12) .nav-link { animation-delay: 0.25s; }
    .nav-menu.open li:nth-child(13) .nav-link { animation-delay: 0.27s; }
    .nav-menu.open li:nth-child(14) .nav-link { animation-delay: 0.29s; }
    .nav-menu.open li:nth-child(15) .nav-link { animation-delay: 0.31s; }
    .nav-menu.open .nav-link:active { transform: scale(0.98); background: rgba(99, 102, 241, 0.12); }
    .nav-menu.open .nav-actions {
        margin-top: 0.75rem;
        padding-top: 0.85rem;
        border-top: 1px solid rgba(99, 102, 241, 0.12);
        animation: navLinkIn 0.4s ease 0.33s backwards;
        gap: 0.85rem;
    }
    .nav-menu.open .nav-lang-block .lang-switcher { width: 100%; }
    .nav-menu.open .lang-switcher-btn {
        width: 100%;
        justify-content: space-between;
        min-height: 3rem;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    .nav-menu.open .lang-switcher-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 0.35rem;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
    .nav-menu.open .lang-switcher-option {
        min-height: 2.75rem;
        padding: 0.75rem 0.85rem;
    }
    .nav-menu.open .btn-primary,
    .nav-menu.open .nav-cta-order {
        width: 100%;
        font-size: 1.05rem;
        padding: 1rem 1.25rem;
        min-height: 3.25rem;
    }
    .form-pro-sidebar-sticky { position: static; }
}

/* Tablet (768–1023) */
@media (max-width: 1023px) {
    .gallery-bento { perspective: none; }
    .bento-featured, .bento-video { grid-column: span 12; min-height: 280px; }
    .bento-photo, .bento-stats { grid-column: span 6; min-height: 200px; }
    .card-3d,
    .card-3d.is-tilting { transform: none !important; }
    .delivery-steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

/* Phone landscape + small tablet (≤767) */
@media (max-width: 767px) {
    .page-loader { display: none !important; }
    .page-content,
    .hero-section { opacity: 1 !important; transform: none !important; }
    html.js-anim .reveal:not(.revealed),
    html.js-anim .reveal-left:not(.revealed),
    html.js-anim .reveal-right:not(.revealed) {
        opacity: 1 !important;
        transform: none !important;
    }
    .site-header-nav-wrap { padding-left: 0.5rem; padding-right: 0.5rem; }
    .nav-glass { max-width: 100%; padding: 0.55rem 0.7rem; border-radius: 1rem; }

    .promo-top-bar-inner {
        min-height: 2rem;
        padding: 0.35rem 0.6rem;
        gap: 0.35rem 0.5rem;
    }
    .promo-top-bar-label { display: none; }
    .promo-top-bar-link-text { display: none; }
    .promo-top-bar-link { padding: 0.35rem 0.55rem; font-size: 0.68rem; }
    .promo-top-bar-discount { font-size: 0.75rem; min-width: 2.25rem; }
    .hero-section .py-20 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .delivery-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .btn-row--center .btn-primary,
    .btn-row--center .btn-outline,
    .btn-row--center .btn-cta-light,
    .btn-row--center .btn-cta-on-dark,
    .btn-row--center .btn-glass { width: 100%; justify-content: center; }
    .grid > * { min-width: 0; }
    .page-section-top { padding-top: calc(var(--header-offset) + 1rem); }
    .cookie-banner { padding-bottom: calc(1rem + var(--safe-bottom)); }
}

@media (max-width: 639px) {
    .bento-photo, .bento-stats,
    .bento-featured, .bento-video { grid-column: span 12; min-height: 200px; }
    .bento-media-link img { min-height: 0; height: auto; max-height: 320px; }
    .bento-video-inner video { min-height: 180px; max-height: 280px; }
    .bento-caption { padding: 1rem 0.85rem 0.85rem; font-size: 0.8rem; }
    .bento-caption span:last-child {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-float-1, .hero-float-2 { display: none; }
    .nav-menu.open {
        max-height: calc(100vh - var(--header-offset) - 1rem);
        overflow-y: auto;
    }
    .nav-link { padding: 0.65rem 0.5rem; }
    .btn-glow, .btn-glass, .btn-primary { max-width: 100%; }
    .hero-section h1 { font-size: clamp(1.65rem, 8vw, 2.25rem) !important; }
    .hero-glass-badge { font-size: 0.75rem; padding: 0.4rem 0.65rem; }
    .delivery-steps-grid { grid-template-columns: 1fr !important; }
    .form-pro-grid-2 { grid-template-columns: 1fr !important; }
    .form-package-grid { grid-template-columns: 1fr !important; }
    .promo-timer-lg .promo-timer-num { font-size: 1.5rem; }
    .promo-timer-lg .promo-timer-unit { min-width: 2.75rem; }
    img, video, iframe { max-width: 100%; height: auto; }
    .map-iframe, .track-iframe { width: 100%; min-height: 200px; }
    #payment .rounded-2xl.p-8,
    #payment .bg-white.rounded-2xl { padding: 1.5rem !important; }
    .site-footer .grid { gap: 2rem; }
}
@media (max-width: 380px) {
    .hero-price-col .font-display { font-size: 1.5rem !important; }
    .section-title { font-size: 1.5rem; }
    .promo-top-bar-link { padding: 0.35rem 0.45rem; }

    .promo-prices-row { flex-direction: column; align-items: stretch; }
    .promo-price-box { max-width: none; }
}

/* Desktop (≥1280) — horizontal nav */
@media (min-width: 1280px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 0.15rem;
        flex: 1;
        min-width: 0;
        justify-content: flex-end;
    }
    .nav-menu > ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        gap: 0.1rem;
        min-width: 0;
    }
    .nav-menu .nav-link {
        padding: 0.45rem 0.55rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .nav-menu .nav-actions {
        flex-shrink: 0;
        margin-left: 0.5rem;
    }
    .nav-menu .btn-primary,
    .nav-menu .nav-cta-order {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    .nav-lang-block {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        width: auto;
    }
    .nav-lang-label { display: none; }
}
/* ── PayPal Checkout ─────────────────────────────────────── */
.checkout-summary {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #eef2ff, #f0fdfa);
    border: 1px solid #e0e7ff;
    border-radius: 1rem;
}
.checkout-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    color: #334155;
}
.checkout-summary-row strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4f46e5;
}
.paypal-button-wrap {
    max-width: 400px;
    margin: 0 auto;
}
.btn-paypal-ncp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem 1.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    background: linear-gradient(180deg, #ffc439 0%, #f5ba2f 100%);
    border: 2px solid #e6a800;
    border-radius: 9999px;
    box-shadow: 0 8px 24px rgba(245, 186, 47, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-paypal-ncp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245, 186, 47, 0.55);
    color: #0f172a;
}
.btn-paypal-ncp .fa-paypal { font-size: 1.5rem; }
.btn-paypal-ncp--inline { max-width: 320px; }
.btn-vipps-ncp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem 1.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(180deg, #ff6b3d 0%, #ff5b24 100%);
    border: 2px solid #e54d1b;
    border-radius: 9999px;
    box-shadow: 0 8px 24px rgba(255, 91, 36, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-vipps-ncp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 91, 36, 0.5);
    color: #fff;
}
.btn-vipps-ncp--inline { max-width: 320px; }
.btn-glass-vipps .vipps-logo-xs { margin-right: 0.15rem; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .brand-cube-inner { transform: rotateX(-22deg) rotateY(35deg); }
    .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }

    .page-loader { display: none; }
    .page-content { opacity: 1; transform: none; }
}