@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fredoka+One&family=Syne:wght@700;800&display=swap');

:root {
    --cyan: #4cc9f0;
    --blue: #3a86ff;
    --pink: #ff007f;
    --lime: #70e000;
    --gold: #ffbe0b;
    --purple: #d946ef;
    --dark: #050508;
    --dark-mid: #0f1118;
    --dark-card: #141820;
    --white: #fff;
    --text: #e8eaef;
    --text-muted: #8b92a8;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-glow: 0 0 60px rgba(76, 201, 240, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── Noise overlay ─── */
.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Header ─── */
.site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 48px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
    padding: 10px 48px;
    background: rgba(5, 5, 8, 0.82);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.nav-links.right { justify-content: flex-end; }

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: color 0.25s, text-shadow 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--cyan));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--white);
    text-shadow: 0 0 20px rgba(76, 201, 240, 0.4);
}

.nav-links a:hover::after { width: 100%; }

.logo-link {
    display: block;
    text-align: center;
}

.logo-header {
    height: clamp(56px, 8vw, 76px);
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(76, 201, 240, 0.35));
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s;
}

.logo-link:hover .logo-header {
    transform: scale(1.06) rotate(-2deg);
    filter: drop-shadow(0 8px 28px rgba(255, 0, 127, 0.45));
}

.header-mascot.peek { position: relative; top: -2px; }

.header-mascot-img {
    width: 44px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 12px rgba(76, 201, 240, 0.5));
    animation: wobble 3s ease-in-out infinite;
}

.header-actions .nav-links.right.open .header-mascot-img {
    width: 56px;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    border-radius: 12px;
    transition: background 0.2s, border-color 0.2s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 201, 240, 0.3);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header-actions .nav-links.right { padding-bottom: 0; }

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-img {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 0, 127, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(76, 201, 240, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, rgba(5, 5, 8, 0.4) 0%, rgba(5, 5, 8, 0.88) 70%, var(--dark) 100%);
}

.hero-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
    animation: aurora-drift 12s ease-in-out infinite alternate;
}

.hero-aurora-1 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    top: 10%;
    left: -10%;
    background: var(--pink);
}

.hero-aurora-2 {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    bottom: 5%;
    right: -5%;
    background: var(--cyan);
    animation-delay: -4s;
    animation-duration: 14s;
}

.hero-aurora-3 {
    width: 30vw;
    height: 30vw;
    max-width: 400px;
    max-height: 400px;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple);
    animation-delay: -7s;
    animation-duration: 10s;
    opacity: 0.3;
}

.hero-inner {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 12px var(--lime);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-logo {
    width: min(88vw, 480px);
    height: auto;
    filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(76, 201, 240, 0.2));
    animation: hero-float 6s ease-in-out infinite;
}

.slogan-wrap {
    margin-bottom: 40px;
}

.slogan {
    font-family: 'Syne', 'Fredoka One', cursive;
    font-weight: 800;
    font-size: clamp(1.6rem, 5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 35%, var(--pink) 65%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 6s linear infinite;
    filter: drop-shadow(0 4px 24px rgba(255, 0, 127, 0.25));
    max-width: 800px;
    margin: 0 auto;
}

.slogan-sub {
    margin-top: 16px;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--text-muted);
    font-weight: 500;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow:
        0 0 0 0 rgba(255, 0, 127, 0.4),
        0 12px 40px rgba(255, 0, 127, 0.25);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-btn span,
.cta-btn { position: relative; z-index: 1; }

.cta-btn:hover {
    box-shadow: 0 0 40px rgba(76, 201, 240, 0.4), 0 16px 48px rgba(0, 0, 0, 0.4);
}

.cta-btn:hover::before { opacity: 1; }

.cta-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.cta-btn-ghost::before { display: none; }

.cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(76, 201, 240, 0.5);
    box-shadow: 0 0 30px rgba(76, 201, 240, 0.15);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 5;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-hint span {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--cyan), transparent);
}

/* ─── Marquee ─── */
.marquee-band {
    background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan), var(--pink));
    background-size: 300% 100%;
    animation: shine 8s linear infinite;
    padding: 14px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

.marquee-inner {
    display: flex;
    width: max-content;
    will-change: transform;
    -webkit-animation: marquee 25s linear infinite;
    animation: marquee 25s linear infinite;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
}

.marquee-item {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-item::after {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
}

/* ─── Shop ─── */
.shop-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 28px 110px;
    position: relative;
}

.shop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 201, 240, 0.3), transparent);
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 14px;
}

.section-head h2 {
    font-family: 'Syne', 'Fredoka One', cursive;
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--white) 30%, var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
}

.section-head p {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
}

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

.grid-three {
    grid-template-columns: repeat(2, 1fr);
}

.product-image-wrap-light,
.checkout-media-light {
    background: #f4f4f4;
}

.product-image-wrap-light .product-image,
.checkout-media-light .checkout-image {
    object-fit: contain;
    padding: 12px;
}

.product-image-contain {
    object-fit: contain;
    padding: 10px;
    background: #f4f4f4;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-gallery-item {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: #f4f4f4;
}

.product-gallery-item .checkout-image {
    width: 100%;
    display: block;
    object-fit: contain;
    padding: 20px;
    aspect-ratio: 1;
    background: #f4f4f4;
}

.product-gallery-item figcaption {
    padding: 10px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    background: var(--dark-card);
    border-top: 1px solid var(--glass-border);
}

.product-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: left;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(76, 201, 240, 0.25);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(76, 201, 240, 0.1);
}

.product-card.featured {
    grid-column: span 1;
}

.product-card-inner {
    padding: 24px 24px 28px;
    position: relative;
    z-index: 2;
}

.product-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 0, 127, 0.2) 0%, transparent 70%);
    opacity: 0.8;
    z-index: 1;
    transition: opacity 0.4s;
    pointer-events: none;
}

.product-card:nth-child(2) .product-glow {
    background: radial-gradient(ellipse at 50% 0%, rgba(76, 201, 240, 0.15) 0%, transparent 70%);
}

.product-card:hover .product-glow { opacity: 1; }

.product-image-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1;
    background: var(--dark-mid);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.product-image-link {
    display: block;
}

.stock-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    background: rgba(112, 224, 0, 0.15);
    color: var(--lime);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(112, 224, 0, 0.35);
    backdrop-filter: blur(8px);
}

.product-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.product-price {
    font-weight: 600;
    font-size: 1rem;
    color: var(--cyan);
    margin-bottom: 16px;
}

.product-in-stock .product-price { font-size: 1.2rem; }

.product-buy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s, opacity 0.25s;
}

.product-buy-btn:hover:not(:disabled) {
    background: var(--cyan);
    color: var(--dark);
    box-shadow: 0 0 24px rgba(76, 201, 240, 0.4);
}

.product-buy-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.product-card.coming-soon {
    opacity: 0.75;
}

.product-card.coming-soon .product-price {
    color: var(--text-muted);
    font-style: italic;
}

.coming-soon-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 190, 11, 0.12);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 190, 11, 0.25);
}

.stock-badge.sold-out,
.checkout-badge.sold-out {
    background: rgba(139, 146, 168, 0.15);
    color: var(--text-muted);
    border-color: rgba(139, 146, 168, 0.3);
}

.stock-badge.coming-soon,
.checkout-badge.coming-soon {
    background: rgba(255, 190, 11, 0.12);
    color: var(--gold);
    border: 1px solid rgba(255, 190, 11, 0.35);
}

/* ─── Cart link ─── */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.cart-link:hover {
    border-color: rgba(76, 201, 240, 0.35);
    background: rgba(76, 201, 240, 0.08);
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.15);
}

.cart-icon { width: 22px; height: 22px; }

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
}

/* ─── Info sections ─── */
.info-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 28px;
}

.info-section h2 {
    font-family: 'Syne', 'Fredoka One', cursive;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.info-section p {
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.05rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-visual-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), transparent 60%);
    pointer-events: none;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-stat {
    text-align: left;
}

.about-stat strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-section.alt {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    max-width: none;
    text-align: center;
}

.media-intro { margin-bottom: 36px; }

.social-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 28px 20px;
    border-radius: var(--radius-md);
    background: var(--dark-card);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.social-link:hover {
    transform: translateY(-6px);
    border-color: rgba(76, 201, 240, 0.3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(76, 201, 240, 0.08);
}

.social-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    flex-shrink: 0;
}

.social-icon { width: 24px; height: 24px; flex-shrink: 0; }

.social-icon-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
}

.social-icon-facebook { background: #1877f2; color: #fff; }

.social-icon-snapchat-img {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
}

.social-username { letter-spacing: 0.02em; color: var(--text-muted); font-size: 0.85rem; }

.pattern-bg {
    position: relative;
}

.pattern-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(112, 224, 0, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 85% 60%, rgba(76, 201, 240, 0.06) 0%, transparent 35%);
    pointer-events: none;
}

.contact-box {
    margin-top: 32px;
    padding: 36px 40px;
    border-radius: var(--radius-lg);
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--cyan), var(--pink), var(--purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

.contact-box p {
    color: var(--text);
    font-size: 1.1rem;
}

.contact-box a {
    color: var(--cyan);
    font-weight: 700;
    text-decoration: none;
    transition: text-shadow 0.2s;
}

.contact-box a:hover {
    text-shadow: 0 0 20px rgba(76, 201, 240, 0.5);
}

/* ─── Footer ─── */
.site-footer {
    background: var(--dark-mid);
    color: var(--text-muted);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border-top: 1px solid var(--glass-border);
}

.site-footer strong {
    color: var(--cyan);
    font-family: 'Syne', sans-serif;
    letter-spacing: 0.05em;
}

.site-footer a {
    color: var(--cyan);
    text-decoration: none;
}

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

/* ─── Cart page ─── */
.page-main {
    padding-top: 100px;
}

.cart-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 28px 100px;
}

.cart-page h1 {
    font-family: 'Syne', 'Fredoka One', cursive;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 2.6rem);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--white), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cart-intro {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

.cart-intro strong { color: var(--lime); }

.cart-empty {
    text-align: center;
    padding: 56px 24px;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.cart-empty p {
    margin-bottom: 24px;
    font-weight: 500;
    color: var(--text-muted);
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.cart-item {
    display: grid;
    grid-template-columns: 96px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: border-color 0.25s;
}

.cart-item:hover { border-color: rgba(76, 201, 240, 0.2); }

.cart-item-image {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 14px;
}

.cart-item-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--white);
}

.cart-item-price {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    transition: border-color 0.2s, background 0.2s;
}

.qty-btn:hover {
    border-color: var(--cyan);
    background: rgba(76, 201, 240, 0.1);
    color: var(--cyan);
}

.qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 700;
    color: var(--white);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--pink);
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.cart-item-remove:hover { opacity: 1; }

.cart-item-line-total {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--cyan);
}

.cart-summary {
    padding: 28px;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
}

.cart-summary-total {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--glass-border);
    font-size: 1.2rem;
    color: var(--white);
}

.cart-summary-total strong { color: var(--cyan); font-size: 1.3rem; }

.cart-summary-delivery { font-size: 0.92rem; }

/* ─── Checkout / product page ─── */
.checkout-page {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 28px 100px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.checkout-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--dark-card);
}

.checkout-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 0, 127, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.checkout-image {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.checkout-media:hover .checkout-image { transform: scale(1.03); }

.checkout-badge {
    display: inline-block;
    background: rgba(112, 224, 0, 0.12);
    color: var(--lime);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    border: 1px solid rgba(112, 224, 0, 0.3);
}

.checkout-details h1 {
    font-family: 'Syne', 'Fredoka One', cursive;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--white);
}

.checkout-price {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 8px;
}

.checkout-delivery {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.checkout-desc {
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 24px;
    font-size: 1.02rem;
}

.checkout-features {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.checkout-features li {
    position: relative;
    padding: 10px 0 10px 28px;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--glass-border);
}

.checkout-features li:last-child { border-bottom: none; }

.checkout-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--lime);
    font-weight: 800;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.color-picker {
    border: 0;
    margin: 0 0 22px;
    padding: 0;
}

.color-picker legend {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, opacity 0.2s;
}

.color-option:hover {
    border-color: rgba(76, 201, 240, 0.35);
}

.color-option:has(input:checked) {
    border-color: rgba(76, 201, 240, 0.55);
    background: rgba(76, 201, 240, 0.08);
}

.color-option.is-sold-out {
    opacity: 0.45;
    cursor: not-allowed;
}

.color-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.color-swatch-white {
    background: #f4f4f4;
}

.color-swatch-black {
    background: #111;
}

.color-label {
    font-size: 0.92rem;
    font-weight: 600;
}

.checkout-btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s, opacity 0.3s;
}

.checkout-btn:hover:not(:disabled) {
    box-shadow: 0 0 32px rgba(255, 0, 127, 0.35);
    transform: scale(1.02);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: wait;
}

.checkout-btn-secondary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.checkout-btn-secondary:hover:not(:disabled) {
    box-shadow: 0 0 32px rgba(76, 201, 240, 0.35);
}

.checkout-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.checkout-btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    transform: none;
}

#cart-checkout-btn { width: 100%; max-width: none; }

.checkout-error {
    margin-top: 14px;
    color: #ff6b8a;
    font-weight: 600;
    font-size: 0.92rem;
}

.checkout-note {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.65;
    font-weight: 500;
}

/* ─── Status pages ─── */
.checkout-status {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 28px;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(76, 201, 240, 0.08), transparent 50%),
        var(--dark);
}

.checkout-status-card {
    text-align: center;
    max-width: 520px;
    padding: 48px 36px;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glow);
}

.checkout-status-card h1 {
    font-family: 'Syne', 'Fredoka One', cursive;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--white), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.checkout-status-card p {
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* ─── Scroll reveal ─── */
/* Product pages: content is above the fold — never hide until JS runs */
.checkout-page .reveal {
    opacity: 1;
    transform: none;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Animations ─── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

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

@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes aurora-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes marquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
}

@-webkit-keyframes marquee {
    from { -webkit-transform: translate3d(0, 0, 0); }
    to { -webkit-transform: translate3d(-50%, 0, 0); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 1fr auto 1fr;
        padding: 14px 20px;
    }

    .site-header.scrolled { padding: 10px 20px; }

    .nav-links.left { display: none; }

    .logo-link { grid-column: 2; justify-self: center; }

    .header-actions {
        grid-column: 3;
        justify-self: end;
        gap: 10px;
    }

    .header-actions .nav-links.right { display: none; }

    .header-actions .nav-links.right.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(5, 5, 8, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid var(--glass-border);
        z-index: 210;
    }

    .menu-toggle { display: block; }
    .logo-header { height: 52px; }

    .grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .social-list { grid-template-columns: 1fr; }
    .checkout-grid { grid-template-columns: 1fr; gap: 36px; }

    .cart-item { grid-template-columns: 80px 1fr; }
    .cart-item-line-total { grid-column: 2; justify-self: start; }

    .hero-scroll-hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ─── Footer nav ─── */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 16px;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
    color: var(--cyan);
}

.footer-brand {
    margin-bottom: 6px;
}

.footer-brand a {
    color: var(--cyan);
    text-decoration: none;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(139, 146, 168, 0.7);
}

/* ─── Legal pages ─── */
.legal-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 28px 100px;
}

.legal-content h1 {
    font-family: 'Syne', 'Fredoka One', cursive;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 12px;
    color: var(--white);
}

.legal-updated {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.75;
}

.legal-content h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

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

.legal-content a {
    color: var(--cyan);
    text-decoration: none;
}

.legal-content a:hover { text-decoration: underline; }

.legal-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
}

.legal-card {
    padding: 20px;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}

.legal-card h3 {
    font-size: 1rem;
    color: var(--cyan);
    margin-bottom: 8px;
}

.legal-card p {
    margin: 0;
    font-size: 0.92rem;
}

/* ─── FAQ ─── */
.faq-section {
    max-width: 760px;
    text-align: center;
}

.faq-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item.open {
    border-color: rgba(76, 201, 240, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--cyan);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 20px 18px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--cyan);
    text-decoration: none;
}

.faq-answer a:hover { text-decoration: underline; }

.faq-more {
    margin-top: 24px;
    text-align: center;
}

.faq-more a {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
}

.faq-more a:hover { text-decoration: underline; }

/* ─── Notify form ─── */
.notify-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.notify-form input[type="email"] {
    flex: 1;
    min-width: 140px;
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: inherit;
    font-size: 0.88rem;
}

.notify-form input::placeholder { color: var(--text-muted); }

.notify-form input:focus {
    outline: none;
    border-color: rgba(76, 201, 240, 0.4);
}

.notify-btn {
    padding: 11px 18px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--gold), #e6a800);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: box-shadow 0.25s;
}

.notify-btn:hover:not(:disabled) {
    box-shadow: 0 0 20px rgba(255, 190, 11, 0.35);
}

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

.notify-message {
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--lime);
    font-weight: 600;
}

.notify-message.notify-error { color: #ff6b8a; }

.notify-form-page {
    margin-bottom: 12px;
}

.notify-form-page .notify-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.85rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ─── Toast ─── */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: auto;
    max-width: min(360px, calc(100vw - 48px));
}

.toast.visible {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-color: rgba(112, 224, 0, 0.3);
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.toast-action {
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.toast-action:hover { text-decoration: underline; }

/* ─── Cookie banner ─── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    padding: 16px 20px;
    background: rgba(15, 17, 24, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--glass-border);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

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

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-banner p {
    flex: 1;
    min-width: 240px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.cookie-banner a {
    color: var(--cyan);
    text-decoration: none;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: background 0.2s, border-color 0.2s;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    border: none;
}

.cookie-btn-essential {
    background: transparent;
    color: var(--text-muted);
}

.cookie-btn:hover { opacity: 0.9; }

/* ─── 404 page ─── */
.error-page {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    position: relative;
}

.error-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.error-code {
    font-family: 'Syne', sans-serif;
    font-size: clamp(5rem, 20vw, 9rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--pink), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.35;
    margin-bottom: -20px;
}

.error-page h1 {
    font-family: 'Syne', 'Fredoka One', cursive;
    font-weight: 800;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 14px;
}

.error-page p {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-mascot {
    position: absolute;
    bottom: 15%;
    right: 10%;
    opacity: 0.2;
    animation: wobble 4s ease-in-out infinite;
}

.error-mascot svg { width: 120px; }

@media (max-width: 900px) {
    .legal-cards { grid-template-columns: 1fr; }
    .toast-container {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
    .cookie-banner-inner { flex-direction: column; align-items: stretch; }
    .error-mascot { display: none; }
}
