@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --ice-bg: #dce8f0;
    --ice-dark: #b8c8d8;
    --ice-shadow: #90a8b8;
    --ice-light: #eaf2f8;
    --glacial: #c4d4e0;
    --frost: rgba(180, 200, 220, 0.3);
    --ocean-deep: #087582;
    --ocean-mid: #07718b;
    --ocean-light: #0a8ba0;
    --charcoal: #0a1a1f;
    --text-secondary: #1a3a42;
    --text-muted: #4a6a72;
    --shadow: rgba(8, 117, 130, 0.06);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--ice-bg);
    color: var(--charcoal);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1.6;
}

/* ── BLUER FROZEN BACKGROUND ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(160, 190, 215, 0.35), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(140, 170, 195, 0.25), transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(180, 205, 225, 0.2), transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(160, 190, 215, 0.15), transparent 40%),
        radial-gradient(ellipse at 90% 20%, rgba(140, 170, 195, 0.1), transparent 35%);
    animation: frostPulse 6s ease-in-out infinite alternate;
}
@keyframes frostPulse {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(45deg, transparent 0 2px, rgba(255,255,255,0.03) 2px 4px),
        repeating-linear-gradient(-45deg, transparent 0 2px, rgba(255,255,255,0.03) 2px 4px);
    background-size: 12px 12px;
}

/* ── SNOWFLAKES (RYŠKESNI, MATOMI) ── */
.snowflakes {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    text-shadow: 0 0 12px rgba(255,255,255,0.3), 0 0 25px rgba(200, 220, 240, 0.15);
    animation: fall linear infinite;
    opacity: 0;
}
.snowflake:nth-child(1) { left: 5%; font-size: 22px; animation-duration: 10s; animation-delay: 0s; opacity: 0.85; }
.snowflake:nth-child(2) { left: 12%; font-size: 28px; animation-duration: 13s; animation-delay: 1.5s; opacity: 0.7; }
.snowflake:nth-child(3) { left: 20%; font-size: 18px; animation-duration: 8s; animation-delay: 3s; opacity: 0.95; }
.snowflake:nth-child(4) { left: 30%; font-size: 26px; animation-duration: 12s; animation-delay: 0.8s; opacity: 0.75; }
.snowflake:nth-child(5) { left: 40%; font-size: 20px; animation-duration: 9s; animation-delay: 2.5s; opacity: 0.85; }
.snowflake:nth-child(6) { left: 48%; font-size: 32px; animation-duration: 14s; animation-delay: 0.3s; opacity: 0.6; }
.snowflake:nth-child(7) { left: 55%; font-size: 24px; animation-duration: 11s; animation-delay: 4s; opacity: 0.8; }
.snowflake:nth-child(8) { left: 62%; font-size: 30px; animation-duration: 12s; animation-delay: 2s; opacity: 0.7; }
.snowflake:nth-child(9) { left: 72%; font-size: 16px; animation-duration: 7s; animation-delay: 5s; opacity: 0.95; }
.snowflake:nth-child(10) { left: 80%; font-size: 26px; animation-duration: 10s; animation-delay: 1s; opacity: 0.8; }
.snowflake:nth-child(11) { left: 88%; font-size: 22px; animation-duration: 9s; animation-delay: 3.5s; opacity: 0.85; }
.snowflake:nth-child(12) { left: 95%; font-size: 30px; animation-duration: 13s; animation-delay: 2.8s; opacity: 0.65; }

@keyframes fall {
    0% { transform: translateY(-20px) rotate(0deg) scale(0.9); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg) scale(1.1); opacity: 0; }
}

/* ── SELECTION ── */
::selection { background: var(--ocean-deep); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ice-dark); }
::-webkit-scrollbar-thumb { background: var(--ocean-deep); border-radius: 0; }

/* ── AURORA GLOW OVERLAY ── */
.aurora-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: var(--ice-bg);
    overflow: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    pointer-events: none;
}
.aurora-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}
.aurora-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 50%, rgba(160, 190, 215, 0.08), transparent 60%);
}
.aurora-glow {
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(160, 190, 215, 0.2), transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(140, 170, 195, 0.15), transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(180, 205, 225, 0.1), transparent 45%);
    animation: auroraPulse 4s ease-in-out infinite alternate;
    opacity: 0;
    animation-delay: 0.1s;
}
@keyframes auroraPulse {
    0% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.1) rotate(2deg); }
    100% { opacity: 1; transform: scale(1.05) rotate(-1deg); }
}
.aurora-layer {
    position: absolute;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    opacity: 0;
    animation: auroraRise 2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.aurora-layer-1 {
    animation-delay: 0s;
    background: radial-gradient(ellipse at 40% 30%, rgba(160, 190, 215, 0.25), rgba(255,255,255,0.06) 60%, transparent 70%);
    filter: blur(60px);
    top: -20%;
    left: -20%;
}
.aurora-layer-2 {
    animation-delay: 0.2s;
    background: radial-gradient(ellipse at 60% 50%, rgba(140, 170, 195, 0.18), rgba(255,255,255,0.1) 50%, transparent 65%);
    filter: blur(80px);
    bottom: -20%;
    right: -20%;
}
.aurora-layer-3 {
    animation-delay: 0.4s;
    background: radial-gradient(ellipse at 30% 70%, rgba(180, 205, 225, 0.12), rgba(255,255,255,0.15) 40%, transparent 60%);
    filter: blur(100px);
    top: -10%;
    right: -10%;
}
.aurora-layer-4 {
    animation-delay: 0.6s;
    background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.25), rgba(160, 190, 215, 0.06) 50%, transparent 70%);
    filter: blur(90px);
    bottom: -10%;
    left: -10%;
}
@keyframes auroraRise {
    0% { transform: scale(0.6) rotate(-5deg); opacity: 0; }
    30% { opacity: 1; }
    80% { transform: scale(1) rotate(0deg); opacity: 1; }
    100% { transform: scale(1.1) rotate(2deg); opacity: 0; }
}
.aurora-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(255,255,255,0.25);
    animation: sparkleFloat 3s ease-in-out infinite;
    opacity: 0;
}
.aurora-sparkle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0.2s; width: 5px; height: 5px; }
.aurora-sparkle:nth-child(2) { left: 40%; top: 15%; animation-delay: 0.6s; width: 3px; height: 3px; }
.aurora-sparkle:nth-child(3) { left: 65%; top: 25%; animation-delay: 1s; width: 6px; height: 6px; }
.aurora-sparkle:nth-child(4) { left: 85%; top: 10%; animation-delay: 0.4s; width: 4px; height: 4px; }
.aurora-sparkle:nth-child(5) { left: 10%; top: 50%; animation-delay: 0.8s; width: 5px; height: 5px; }
.aurora-sparkle:nth-child(6) { left: 50%; top: 40%; animation-delay: 1.2s; width: 3px; height: 3px; }
.aurora-sparkle:nth-child(7) { left: 75%; top: 55%; animation-delay: 0.3s; width: 5px; height: 5px; }
.aurora-sparkle:nth-child(8) { left: 25%; top: 70%; animation-delay: 0.7s; width: 4px; height: 4px; }
@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; transform: translateY(-40px) scale(1.6); }
    100% { opacity: 0; transform: translateY(-80px) scale(1); }
}
.aurora-container {
    animation: overlayFadeIn 1s ease 0.1s both;
}
@keyframes overlayFadeIn {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6000;
    height: 2px;
    pointer-events: none;
}
.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--ocean-deep), var(--ice-shadow));
}

/* ── GRAIN ── */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.015;
    background-image:
        repeating-linear-gradient(27deg, rgba(0,0,0,0.08) 0 1px, transparent 1px 5px),
        repeating-linear-gradient(117deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 7px);
    background-size: 9px 11px, 13px 15px;
    animation: grainShift 0.32s steps(2) infinite;
}
@keyframes grainShift {
    0% { transform: translate(0); }
    25% { transform: translate(-1%, 1%); }
    50% { transform: translate(1%, -1%); }
    75% { transform: translate(1%, 1%); }
}

/* ── FRAME ── */
.page-frame {
    position: fixed;
    inset: 8px;
    z-index: 5000;
    border: 1px solid rgba(160, 190, 215, 0.15);
    pointer-events: none;
}
.page-frame::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -1px;
    width: 1px;
    height: 18%;
    background: linear-gradient(transparent, var(--ocean-deep), transparent);
    animation: frameScan 7s ease-in-out infinite;
}
@keyframes frameScan {
    0%, 16% { top: -20%; opacity: 0; }
    30%, 72% { opacity: 0.4; }
    88%, 100% { top: 105%; opacity: 0; }
}

/* ── CURSOR ── */
@media (hover: hover) and (pointer: fine) {
    body, button, a, .wheel-banner, .category-btn { cursor: none; }
}
.cursor-dot, .cursor-outline {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--ocean-deep);
}
.cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(8, 117, 130, 0.15);
    transition: width 0.25s, height 0.25s, background 0.25s, opacity 0.25s;
}
.cursor-outline.hover {
    width: 56px;
    height: 56px;
    background: rgba(160, 190, 215, 0.1);
    border-color: var(--ocean-deep);
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 10px 20px;
    border-bottom: 1px solid transparent;
    background: rgba(220, 232, 240, 0.72);
    backdrop-filter: blur(18px);
    transition: background 0.35s, border-color 0.35s;
}
.navbar.scrolled {
    background: rgba(220, 232, 240, 0.88);
    border-bottom-color: rgba(160, 190, 215, 0.15);
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal);
    text-decoration: none;
    white-space: nowrap;
}
.nav-mark {
    font-size: 18px;
    color: var(--ocean-deep);
    opacity: 0.7;
}
.nav-logo span:last-child {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--charcoal);
}
.nav-links {
    display: none;
    align-items: center;
    gap: 28px;
}
.nav-link {
    position: relative;
    padding-bottom: 5px;
    color: rgba(10, 26, 31, 0.5);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
}
.nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--ocean-deep);
    transform: scaleX(0);
    transition: transform 0.25s;
}
.nav-link:hover, .nav-link.active {
    color: var(--charcoal);
}
.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}
.nav-right, .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.guest-mode-badge {
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(160, 190, 215, 0.15);
    color: var(--text-secondary);
    background: rgba(160, 190, 215, 0.08);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.14em;
    white-space: nowrap;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 8px;
    border: 1px solid rgba(160, 190, 215, 0.12);
    background: rgba(160, 190, 215, 0.06);
}
.user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--ocean-deep);
}
.user-name {
    display: none;
    max-width: 72px;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.logout-btn {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 12px;
}
.mobile-menu-btn {
    display: block;
    padding: 6px;
    border: 0;
    background: transparent;
    color: var(--charcoal);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 99;
    flex-direction: column;
    gap: 2px;
    padding: 16px 22px 24px;
    border-bottom: 1px solid rgba(160, 190, 215, 0.1);
    background: rgba(220, 232, 240, 0.96);
    backdrop-filter: blur(20px);
}
.mobile-menu.active { display: flex; }
.mobile-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(10,26,31,0.04);
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

/* ── BUTTONS WITH FROST ── */
.btn-outline, .btn-accent, .btn-hero-dark, .btn-hero-light, .product-btn, .rv-view-btn, .btn-outline-danger {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    text-transform: uppercase;
    font-family: var(--font-sans);
    transition: transform 0.25s, color 0.25s, background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn-outline::before, .btn-accent::before, .btn-hero-dark::before, .btn-hero-light::before,
.product-btn::before, .rv-view-btn::before, .btn-outline-danger::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent 40%, transparent 60%, rgba(255,255,255,0.2));
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.btn-outline:hover::before, .btn-accent:hover::before, .btn-hero-dark:hover::before,
.btn-hero-light:hover::before, .product-btn:hover::before, .rv-view-btn:hover::before,
.btn-outline-danger:hover::before {
    opacity: 1;
}
.btn-outline::after, .btn-accent::after, .btn-hero-dark::after, .btn-hero-light::after,
.product-btn::after, .rv-view-btn::after, .btn-outline-danger::after {
    content: '❄';
    position: absolute;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.4s, transform 0.6s;
    pointer-events: none;
}
.btn-outline:hover::after, .btn-accent:hover::after, .btn-hero-dark:hover::after,
.btn-hero-light:hover::after, .product-btn:hover::after, .rv-view-btn:hover::after,
.btn-outline-danger:hover::after {
    opacity: 0.3;
    animation: frostFloat 1.2s ease-in-out infinite;
}
@keyframes frostFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-4px, -6px) rotate(20deg); }
}
.btn-outline {
    padding: 8px 14px;
    border: 1px solid rgba(10,26,31,0.15);
    background: transparent;
    color: var(--charcoal);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.14em;
}
.btn-outline:hover {
    border-color: var(--ocean-deep);
    background: var(--ocean-deep);
    color: #fff;
}
.btn-outline:hover::after {
    color: #fff;
}
.btn-accent {
    padding: 9px 16px;
    border: 1px solid var(--ocean-deep);
    background: var(--ocean-deep);
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.14em;
    box-shadow: 0 0 30px rgba(8, 117, 130, 0.15);
}
.btn-accent::after {
    content: '❄';
    color: #fff;
}
.btn-accent:hover::after {
    opacity: 0.5;
    animation: frostFloat 1.2s ease-in-out infinite;
}
.btn-accent:hover {
    background: #065a6a;
    border-color: #065a6a;
    transform: translateY(-1px);
}
.btn-hero-dark, .btn-hero-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 26px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-decoration: none;
    font-family: var(--font-sans);
}
.btn-hero-dark {
    border: 1px solid rgba(10,26,31,0.15);
    background: rgba(220, 232, 240, 0.4);
    color: var(--charcoal);
    backdrop-filter: blur(4px);
}
.btn-hero-dark::after {
    content: '❄';
    color: var(--charcoal);
}
.btn-hero-dark:hover {
    border-color: var(--ocean-deep);
    background: var(--ocean-deep);
    color: #fff;
    transform: translateY(-2px);
}
.btn-hero-dark:hover::after {
    color: #fff;
}
.btn-hero-light {
    border: 1px solid var(--ocean-deep);
    background: var(--ocean-deep);
    color: #fff;
}
.btn-hero-light::after {
    content: '❄';
    color: #fff;
}
.btn-hero-light:hover {
    background: #065a6a;
    border-color: #065a6a;
    transform: translateY(-2px);
}
.btn-hero-light:hover::after {
    opacity: 0.5;
    animation: frostFloat 1.2s ease-in-out infinite;
}
.badge {
    display: inline-flex;
    min-width: 18px;
    justify-content: center;
    margin-left: 4px;
    padding: 2px 6px;
    border-radius: 20px;
    background: var(--ocean-deep);
    color: #fff;
    font-size: 8px;
    font-weight: 700;
}
.ink-ripple {
    position: absolute;
    z-index: 5;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: inkRipple 0.65s ease-out forwards;
}
@keyframes inkRipple {
    to { opacity: 0; transform: translate(-50%, -50%) scale(18); }
}

/* ── HERO ── */
.main-content { position: relative; z-index: 1; padding-top: 70px; }
.hero-section {
    position: relative;
    display: flex;
    min-height: calc(100vh - 70px);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 55px 18px 85px;
    text-align: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(160, 190, 215, 0.25), transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(140, 170, 195, 0.15), transparent 40%),
        radial-gradient(ellipse at 20% 60%, rgba(160, 190, 215, 0.1), transparent 35%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 70% 30%, rgba(160, 190, 215, 0.06), transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(140, 170, 195, 0.04), transparent 45%),
        repeating-radial-gradient(circle at center, transparent 0 80px, rgba(255,255,255,0.02) 81px 82px);
    will-change: transform;
}
.hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    z-index: -1;
    width: 560px;
    height: 280px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(160, 190, 215, 0.12);
    filter: blur(120px);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(100%, 980px);
    align-items: center;
    flex-direction: column;
    will-change: transform;
}
.hero-ornament {
    display: flex;
    width: min(310px, 70vw);
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    color: var(--ocean-deep);
}
.hero-ornament span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ocean-deep));
}
.hero-ornament span:last-child {
    background: linear-gradient(90deg, var(--ocean-deep), transparent);
}
.hero-ornament b {
    font-size: 12px;
}
.hero-mark-container {
    position: relative;
    display: grid;
    width: 140px;
    height: 140px;
    margin: -12px 0 -22px;
    place-items: center;
}
.hero-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(160, 190, 215, 0.2);
    border-radius: 50%;
    animation: heroRing 8s linear infinite;
}
.hero-ring::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 3px;
    height: 8px;
    background: var(--ocean-deep);
    transform: translateX(-50%);
}
@keyframes heroRing {
    to { transform: rotate(360deg); }
}
.hero-mark-large {
    font-family: var(--font-display);
    font-size: 82px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.04em;
}
.hero-pretitle {
    color: var(--text-muted);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}
.hero-title {
    margin: 4px 0 16px;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8.5rem);
    font-weight: 700;
    line-height: 0.84;
}
.hero-title-glow {
    color: transparent;
    background: linear-gradient(100deg, var(--ocean-deep) 0%, var(--charcoal) 34%, var(--ice-shadow) 58%, var(--charcoal) 76%, var(--ocean-deep) 100%);
    background-size: 220% auto;
    background-clip: text;
    -webkit-background-clip: text;
    filter: drop-shadow(0 0 20px rgba(160, 190, 215, 0.3));
    animation: titleShine 5s linear infinite;
}
@keyframes titleShine {
    to { background-position: 220% center; }
}
.hero-subtitle {
    max-width: 620px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.8;
    font-family: var(--font-sans);
}
.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.hero-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
}
.hero-socials a {
    color: var(--text-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
    font-family: var(--font-sans);
}
.hero-socials a:hover {
    color: var(--ocean-deep);
}
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    transform: translateX(-50%);
    pointer-events: none;
}
.scroll-indicator span {
    color: var(--text-muted);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}
.scroll-mouse {
    position: relative;
    width: 20px;
    height: 32px;
    border: 1px solid rgba(160, 190, 215, 0.25);
    border-radius: 20px;
}
.scroll-bubble {
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--ocean-deep);
    animation: scrollBubble 1.8s infinite;
}
@keyframes scrollBubble {
    50% { top: 23px; opacity: 0.2; }
}
.site-ready .hero-ornament { animation: heroReveal 0.75s 0.12s both; }
.site-ready .hero-mark-container { animation: heroReveal 0.85s 0.2s both; }
.site-ready .hero-pretitle { animation: heroReveal 0.75s 0.34s both; }
.site-ready .hero-title { animation: heroReveal 0.95s 0.42s both; }
.site-ready .hero-subtitle { animation: heroReveal 0.8s 0.56s both; }
.site-ready .hero-buttons { animation: heroReveal 0.8s 0.64s both; }
.site-ready .hero-socials { animation: heroReveal 0.8s 0.73s both; }
@keyframes heroReveal {
    from { opacity: 0; filter: blur(6px); transform: translateY(20px) scale(0.98); }
    to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

/* ── WHEEL BANNER ── */
.wheel-banner {
    display: flex;
    max-width: 1320px;
    align-items: center;
    gap: 16px;
    margin: 0 auto 30px;
    padding: 18px 24px;
    border: 1px solid rgba(160, 190, 215, 0.15);
    background: rgba(220, 232, 240, 0.4);
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.wheel-banner:hover {
    border-color: var(--ocean-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(8, 117, 130, 0.08);
}
.wheel-banner-icon {
    display: flex;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(160, 190, 215, 0.2);
    border-radius: 50%;
    font-size: 20px;
    color: var(--ocean-deep);
}
.wheel-banner-info {
    flex: 1;
    text-align: left;
}
.wheel-banner-info h3 {
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.wheel-banner-info p {
    margin-top: 3px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 400;
}
.wheel-banner-badge {
    padding: 5px 10px;
    border: 1px solid rgba(160, 190, 215, 0.15);
    color: var(--text-secondary);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.12em;
}

/* ── WHEEL MODAL ── */
.wheel-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}
#wheelCanvas {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(160, 190, 215, 0.1), 0 0 40px rgba(160, 190, 215, 0.15);
    transition: transform 5s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}
.wheel-pointer {
    position: absolute;
    top: -14px;
    left: 50%;
    z-index: 10;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-top: 24px solid var(--ocean-deep);
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
}

/* ── PRODUCTS ── */
.products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 34px 12px 80px;
}
.section-header {
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(160, 190, 215, 0.1);
}
.section-kicker {
    margin-bottom: 6px;
    color: var(--ocean-deep);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-family: var(--font-sans);
}
.section-title {
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: 0.035em;
}
.text-accent {
    color: var(--ocean-deep);
}
.reveal.visible .section-title {
    animation: sectionTitleReveal 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes sectionTitleReveal {
    from { opacity: 0; filter: blur(8px); letter-spacing: 0.2em; transform: translateX(-16px); }
    to { opacity: 1; filter: blur(0); letter-spacing: 0.035em; transform: translateX(0); }
}
.categories-scroll {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.category-btn {
    padding: 9px 16px;
    border: 1px solid rgba(160, 190, 215, 0.1);
    background: transparent;
    color: var(--text-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.25s;
    font-family: var(--font-sans);
}
.category-btn:hover, .category-btn.active {
    border-color: var(--ocean-deep);
    background: var(--ocean-deep);
    color: #fff;
}
.category-btn::after {
    content: '❄';
    position: absolute;
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    color: #fff;
}
.category-btn:hover::after {
    opacity: 0.4;
    animation: frostFloat 1.2s ease-in-out infinite;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.product-card {
    --mx: 50%;
    --my: 50%;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(160, 190, 215, 0.08);
    background: rgba(220, 232, 240, 0.4);
    backdrop-filter: blur(4px);
    transform-style: preserve-3d;
    animation: productArrival 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    transition: transform 0.18s ease-out, border-color 0.4s, box-shadow 0.4s;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: 6px;
    z-index: 3;
    border: 1px solid transparent;
    pointer-events: none;
    transition: border-color 0.4s;
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle 170px at var(--mx) var(--my), rgba(160, 190, 215, 0.08), transparent 72%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.product-card:hover {
    transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-4px);
    border-color: rgba(160, 190, 215, 0.25);
    box-shadow: 0 16px 40px rgba(160, 190, 215, 0.1);
}
.product-card:hover::after { opacity: 1; }
.product-card:hover::before { border-color: rgba(160, 190, 215, 0.08); }
.product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-bottom: 1px solid rgba(160, 190, 215, 0.06);
    background: rgba(0,0,0,0.01);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    filter: saturate(0.9) contrast(1.02);
    transition: transform 0.85s, filter 0.45s, opacity 0.45s;
}
.product-card:hover .product-image img {
    transform: scale(1.04);
    opacity: 1;
    filter: saturate(1) contrast(1);
}
.product-emoji-fallback {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    filter: grayscale(0.2);
}
.product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
}
.product-info-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}
.product-name {
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.product-sizes {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 7px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}
.product-price {
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    padding: 10px;
    border: 1px solid var(--ocean-deep);
    background: var(--ocean-deep);
    color: #fff;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-family: var(--font-sans);
}
.product-btn::after {
    content: '❄';
    color: #fff;
}
.product-btn:hover {
    background: #065a6a;
    border-color: #065a6a;
}
.product-btn:hover::after {
    opacity: 0.5;
    animation: frostFloat 1.2s ease-in-out infinite;
}
@keyframes productArrival {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── DISCORD BANNER ── */
.discord-banner {
    position: relative;
    max-width: 1400px;
    margin: 30px auto;
    overflow: hidden;
    padding: 65px 20px;
    border-top: 1px solid rgba(160, 190, 215, 0.08);
    border-bottom: 1px solid rgba(160, 190, 215, 0.08);
    background:
        radial-gradient(circle at 30% 50%, rgba(160, 190, 215, 0.06), transparent 55%),
        radial-gradient(circle at 70% 50%, rgba(160, 190, 215, 0.04), transparent 50%),
        var(--ice-bg);
    text-align: center;
}
.discord-banner::before {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    color: rgba(160, 190, 215, 0.04);
    font-family: var(--font-display);
    font-size: 20rem;
    line-height: 1;
}
.discord-banner > * { position: relative; }
.banner-ornament {
    margin-bottom: 18px;
    color: var(--ocean-deep);
    font-size: 10px;
    letter-spacing: 0.15em;
}
.discord-banner h3 {
    margin-bottom: 10px;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 700;
}
.discord-banner p {
    max-width: 520px;
    margin: 0 auto 22px;
    color: var(--text-secondary);
    font-size: 11px;
    line-height: 1.7;
    font-weight: 400;
}
.discord-banner .btn-hero-light {
    border-color: var(--ocean-deep);
    background: var(--ocean-deep);
    color: #fff;
}
.discord-banner .btn-hero-light:hover {
    background: #065a6a;
    border-color: #065a6a;
}
.discord-banner .btn-hero-light::after {
    content: '❄';
    color: #fff;
}
.discord-banner .btn-hero-light:hover::after {
    opacity: 0.5;
    animation: frostFloat 1.2s ease-in-out infinite;
}

/* ── FOOTER ── */
.footer {
    padding: 45px 20px 25px;
    border-top: 1px solid rgba(160, 190, 215, 0.08);
    background: var(--ice-dark);
}
.footer-grid {
    display: grid;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 35px;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-logo span:first-child {
    font-size: 18px;
    color: var(--ocean-deep);
    opacity: 0.6;
}
.footer-logo span:last-child {
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 700;
}
.footer-tagline {
    max-width: 330px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.7;
}
.footer-title {
    margin-bottom: 5px;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
    list-style: none;
}
.footer-copyright {
    max-width: 1400px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(10,26,31,0.03);
    color: var(--text-muted);
    font-size: 8px;
    letter-spacing: 0.17em;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
}

/* ── MODALS ── */
.page-modal, .modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    padding: 18px;
    background: rgba(10,26,31,0.06);
    backdrop-filter: blur(8px);
}
.page-modal { overflow-y: auto; }
.page-modal.active { display: block; animation: fadeIn 0.25s; }
.modal { align-items: center; justify-content: center; }
.modal.active { display: flex; animation: fadeIn 0.25s; }
.modal.active .modal-content, .page-modal.active .page-modal-content {
    animation: modalArrival 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalArrival {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.page-modal-content {
    position: relative;
    max-width: 850px;
    margin: 50px auto;
    text-align: center;
}
.page-modal-close {
    position: absolute;
    top: -35px;
    right: 0;
    padding: 8px 16px;
    border: 1px solid rgba(160, 190, 215, 0.1);
    background: rgba(220, 232, 240, 0.6);
    backdrop-filter: blur(8px);
    color: var(--charcoal);
    font-size: 14px;
}
.about-title {
    margin-bottom: 25px;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 9vw, 6.5rem);
    font-weight: 700;
}
.about-text {
    max-width: 700px;
    margin: 0 auto 28px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    text-align: left;
}
.faq-item {
    border: 1px solid rgba(160, 190, 215, 0.08);
    background: rgba(220, 232, 240, 0.2);
}
.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border: 0;
    background: transparent;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: left;
}
.faq-icon {
    color: var(--ocean-deep);
    font-size: 20px;
    transition: transform 0.3s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 18px;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.6;
    transition: max-height 0.35s, padding 0.35s;
}
.faq-item.active .faq-answer {
    max-height: 220px;
    padding: 0 18px 18px;
}
.contact-grid {
    display: grid;
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 14px;
}
.contact-card {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 40px 20px;
    border: 1px solid rgba(160, 190, 215, 0.08);
    background: rgba(220, 232, 240, 0.2);
    text-decoration: none;
    transition: 0.3s;
}
.contact-card:hover {
    border-color: var(--ocean-deep);
    background: rgba(160, 190, 215, 0.06);
}
.contact-glow {
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0;
    filter: blur(120px);
    background: rgba(160, 190, 215, 0.06);
    transition: opacity 0.5s;
}
.contact-card:hover .contact-glow { opacity: 1; }
.contact-content {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 13px;
}
.contact-icon {
    display: flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(160, 190, 215, 0.1);
    border-radius: 50%;
    font-size: 20px;
    color: var(--ocean-deep);
}
.contact-label {
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
}
.contact-handle {
    color: var(--text-muted);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.modal-content {
    width: 100%;
    max-width: 480px;
    max-height: 86vh;
    overflow-y: auto;
    padding: 26px;
    border: 1px solid rgba(160, 190, 215, 0.1);
    background: rgba(220, 232, 240, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px var(--shadow);
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(160, 190, 215, 0.08);
}
.modal-header h2 {
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.close-btn {
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 18px;
}
.close-btn:hover { color: var(--ocean-deep); }
.size-btn {
    margin: 4px;
    padding: 10px 20px;
    border: 1px solid rgba(160, 190, 215, 0.1);
    background: transparent;
    color: var(--charcoal);
    font-weight: 600;
    transition: 0.2s;
}
.size-btn:hover {
    border-color: var(--ocean-deep);
    background: var(--ocean-deep);
    color: #fff;
}
.size-btn::after {
    content: '❄';
    font-size: 10px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    color: #fff;
}
.size-btn:hover::after {
    opacity: 0.4;
    animation: frostFloat 1.2s ease-in-out infinite;
}
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10,26,31,0.03);
}
.cart-item-remove {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(184, 74, 74, 0.15);
    background: transparent;
    color: var(--danger);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    margin: 18px 0;
    padding-top: 14px;
    border-top: 1px solid rgba(160, 190, 215, 0.08);
    font-family: var(--font-display);
}
.cart-total span:last-child {
    color: var(--charcoal);
    font-size: 19px;
    font-weight: 600;
}
.cart-actions { display: flex; gap: 9px; }
.btn-outline-danger {
    flex: 1;
    padding: 13px;
    border: 1px solid rgba(184, 74, 74, 0.15);
    background: transparent;
    color: var(--danger);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.1em;
}
.modal-note {
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}
#customUrlInput {
    width: 100%;
    margin-bottom: 13px;
    padding: 13px;
    border: 1px solid rgba(160, 190, 215, 0.1);
    background: rgba(220, 232, 240, 0.5);
    color: var(--charcoal);
    outline: none;
}
#customUrlInput:focus { border-color: var(--ocean-deep); }
#customPreview {
    display: none;
    margin-bottom: 16px;
    padding: 18px;
    border: 1px solid rgba(160, 190, 215, 0.08);
    background: rgba(220, 232, 240, 0.2);
    text-align: center;
}
#customPreview img {
    max-height: 220px;
    margin-bottom: 10px;
    object-fit: contain;
}
#customName {
    margin-bottom: 5px;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
}
#customPrice { color: var(--ocean-deep); font-weight: 600; }
.full-btn {
    width: 100%;
    margin-bottom: 9px;
    padding: 13px;
}
#addCustomBtn { display: none; }

/* ── CHECKOUT ── */
.checkout-modal-content { max-width: 1080px; padding: 26px; }
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.65fr);
    gap: 18px;
    align-items: start;
}
.checkout-panel, .checkout-summary {
    border: 1px solid rgba(160, 190, 215, 0.08);
    background: rgba(220, 232, 240, 0.3);
    backdrop-filter: blur(4px);
}
.checkout-panel { padding: 24px; }
.checkout-panel h3, .checkout-success h3, .checkout-processing h3 {
    margin: 5px 0 8px;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.checkout-step-label {
    color: var(--ocean-deep);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.checkout-help {
    max-width: 660px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 11px;
    line-height: 1.65;
}
.checkout-guest-notice {
    display: grid;
    gap: 6px;
    margin: -4px 0 18px;
    padding: 13px 15px;
    border: 1px solid rgba(160, 190, 215, 0.08);
    border-left: 2px solid var(--ocean-deep);
    background: rgba(160, 190, 215, 0.04);
}
.checkout-guest-notice strong {
    color: var(--charcoal);
    font-size: 8px;
    letter-spacing: 0.15em;
}
.checkout-guest-notice span {
    color: var(--text-secondary);
    font-size: 10px;
    line-height: 1.6;
}
.checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.checkout-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}
.checkout-field-wide { grid-column: 1 / -1; }
.checkout-field span {
    color: var(--text-secondary);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.checkout-field input, .checkout-field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(160, 190, 215, 0.1);
    border-radius: 0;
    outline: none;
    background: rgba(220, 232, 240, 0.5);
    color: var(--charcoal);
    font: 12px var(--font-sans);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-field input:focus, .checkout-field select:focus {
    border-color: var(--ocean-deep);
    box-shadow: 0 0 0 1px var(--ocean-deep);
}
.checkout-field input::placeholder { color: var(--text-muted); }
.checkout-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 17px 0;
    color: var(--text-muted);
    font-size: 10px;
    line-height: 1.5;
}
.checkout-consent input { margin-top: 2px; accent-color: var(--ocean-deep); }
.checkout-primary {
    width: 100%;
    min-height: 50px;
    padding: 14px;
}
.checkout-primary:disabled { cursor: wait; opacity: 0.5; }
.checkout-error {
    min-height: 18px;
    padding-top: 9px;
    color: var(--danger);
    font-size: 11px;
    line-height: 1.5;
}
.checkout-summary {
    position: sticky;
    top: 0;
    padding: 20px;
}
.checkout-summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}
.checkout-summary-items > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(10,26,31,0.03);
    color: var(--text-secondary);
    font-size: 11px;
    line-height: 1.45;
}
.checkout-summary-items span { min-width: 0; }
.checkout-summary-items small {
    display: block;
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.checkout-summary-items strong {
    color: var(--charcoal);
    white-space: nowrap;
}
.checkout-summary-prices {
    display: grid;
    gap: 8px;
    padding: 13px 0;
    border-top: 1px solid rgba(160, 190, 215, 0.08);
    color: var(--text-secondary);
    font-size: 9px;
    letter-spacing: 0.08em;
}
.checkout-summary-prices > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.checkout-summary-prices strong {
    color: var(--charcoal);
    font-size: 11px;
    white-space: nowrap;
}
.checkout-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(160, 190, 215, 0.08);
    font-family: var(--font-display);
    font-size: 13px;
}
.checkout-summary-total strong { font-size: 22px; color: var(--ocean-deep); }
.checkout-trust {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 9px;
    line-height: 1.55;
}
.checkout-trust span { color: var(--ocean-deep); }
.checkout-trust strong { color: var(--text-secondary); }
.checkout-methods {
    margin-top: 17px;
    color: var(--text-muted);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.7;
}
.payment-method-grid {
    display: grid;
    gap: 11px;
    margin-top: 20px;
}
.payment-method-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(160, 190, 215, 0.08);
    background: rgba(220, 232, 240, 0.2);
    color: var(--charcoal);
    text-align: left;
    cursor: pointer;
    transition: 0.2s;
}
.payment-method-card:hover {
    border-color: var(--ocean-deep);
    background: rgba(220, 232, 240, 0.5);
    transform: translateY(-1px);
}
.payment-method-card strong, .payment-method-card small { display: block; }
.payment-method-card strong {
    margin-bottom: 4px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.payment-method-card small {
    color: var(--text-muted);
    font-size: 10px;
    line-height: 1.45;
}
.payment-method-card b { color: var(--ocean-deep); font-size: 17px; }
.payment-method-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(160, 190, 215, 0.08);
    background: rgba(220, 232, 240, 0.2);
    font-size: 22px;
}
.payment-empty {
    padding: 24px;
    border: 1px dashed rgba(160, 190, 215, 0.1);
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}
.checkout-back {
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
}
.checkout-back:hover { color: var(--ocean-deep); }
.payment-instructions {
    margin: 18px 0 12px;
    padding: 20px;
    border: 1px solid rgba(160, 190, 215, 0.08);
    background: rgba(220, 232, 240, 0.2);
    color: var(--charcoal);
    font: 12px/1.8 var(--font-sans);
    overflow-wrap: anywhere;
}
.payment-external-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 10px 0;
    border: 1px solid rgba(160, 190, 215, 0.1);
    color: var(--charcoal);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
}
.payment-external-link:hover {
    background: var(--ocean-deep);
    color: #fff;
}
.payment-warning {
    margin: 14px 0 18px;
    padding: 12px 14px;
    border-left: 2px solid var(--ocean-deep);
    background: rgba(160, 190, 215, 0.04);
    color: var(--text-secondary);
    font-size: 9px;
    line-height: 1.65;
}
.payment-waiting {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.checkout-processing, .checkout-success {
    max-width: 610px;
    margin: 10px auto;
    padding: 50px 24px;
    text-align: center;
}
.checkout-processing p, .checkout-success p {
    margin: 10px auto 0;
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.75;
}
.checkout-spinner {
    width: 34px;
    height: 34px;
    margin: 0 auto 22px;
    border: 2px solid rgba(160, 190, 215, 0.08);
    border-top-color: var(--ocean-deep);
    border-radius: 50%;
    animation: checkoutSpin 0.8s linear infinite;
}
@keyframes checkoutSpin { to { transform: rotate(360deg); } }
.checkout-success-mark {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    margin: 0 auto 22px;
    border: 1px solid var(--ocean-deep);
    border-radius: 50%;
    color: var(--ocean-deep);
    font-size: 30px;
}
.checkout-discord-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 14px 20px;
    text-decoration: none;
}
.checkout-processing-error { border-left: 2px solid var(--danger); }

/* ── CARD PAYMENT FIELDS ── */
.card-fields {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}
.card-fields .checkout-field-wide { grid-column: 1 / -1; }
.card-fields .checkout-field input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(160, 190, 215, 0.1);
    border-radius: 0;
    outline: none;
    background: rgba(220, 232, 240, 0.5);
    color: var(--charcoal);
    font: 12px var(--font-sans);
    transition: border-color 0.2s, box-shadow 0.2s;
    letter-spacing: 0.05em;
}
.card-fields .checkout-field input:focus {
    border-color: var(--ocean-deep);
    box-shadow: 0 0 0 1px var(--ocean-deep);
}
.card-fields .checkout-field input::placeholder {
    color: var(--text-muted);
    letter-spacing: 0;
}
.card-fields .checkout-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.card-fields .checkout-field span {
    color: var(--text-secondary);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
@media (max-width: 600px) {
    .card-fields { grid-template-columns: 1fr; }
    .card-fields .checkout-field-wide { grid-column: auto; }
    .card-fields .checkout-field input {
        font-size: 16px;
        min-height: 52px;
    }
}

/* ── TOAST ── */
.toast-container {
    position: fixed;
    right: 14px;
    bottom: 78px;
    left: 14px;
    z-index: 2000;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}
.toast {
    width: 100%;
    max-width: 410px;
    padding: 12px 18px;
    border: 1px solid rgba(160, 190, 215, 0.08);
    border-left: 3px solid var(--ocean-deep);
    background: rgba(220, 232, 240, 0.8);
    backdrop-filter: blur(16px);
    color: var(--charcoal);
    font-size: 12px;
    text-align: center;
    box-shadow: 0 8px 32px var(--shadow);
}
.toast.error { border-left-color: var(--danger); }

/* ── RECENTLY VIEWED ── */
.recently-viewed-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(160, 190, 215, 0.08);
    background: rgba(220, 232, 240, 0.8);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(150%);
    transition: 0.45s;
}
.recently-viewed-bar.show {
    opacity: 1;
    transform: translateY(0);
}
.rv-content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 9px;
}
.rv-close-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(160, 190, 215, 0.08);
    border-radius: 50%;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
}
.rv-image {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid rgba(160, 190, 215, 0.08);
    object-fit: cover;
}
.rv-info {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}
.rv-label {
    color: var(--text-muted);
    font-size: 7px;
    text-transform: uppercase;
}
.rv-name {
    overflow: hidden;
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.rv-price {
    color: var(--ocean-deep);
    font-size: 10px;
    font-weight: 600;
}
.rv-view-btn {
    padding: 7px 10px;
    border: 1px solid var(--ocean-deep);
    background: var(--ocean-deep);
    color: #fff;
    font-size: 8px;
    font-weight: 600;
}
.rv-view-btn:hover {
    background: #065a6a;
    border-color: #065a6a;
}
.rv-view-btn::after {
    content: '❄';
    color: #fff;
}
.rv-view-btn:hover::after {
    opacity: 0.5;
    animation: frostFloat 1.2s ease-in-out infinite;
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    #orderModal { align-items: stretch; padding: 0; background: var(--ice-bg); }
    #orderModal .checkout-modal-content {
        width: 100%;
        max-width: none;
        height: 100dvh;
        max-height: none;
        padding: 0 max(14px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
        border: 0;
    }
    #orderModal .modal-header {
        position: sticky;
        top: 0;
        z-index: 8;
        margin: 0 -14px 14px;
        padding: max(15px, env(safe-area-inset-top)) 16px 13px;
        background: rgba(220, 232, 240, 0.96);
        backdrop-filter: blur(18px);
    }
    .checkout-layout {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .checkout-summary { position: static; order: 2; padding: 16px; }
    .checkout-panel { order: 1; padding: 17px; }
    .checkout-field input, .checkout-field select { min-height: 52px; font-size: 16px; }
    .checkout-primary { min-height: 54px; font-size: 10px; }
    .payment-method-card {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        padding: 13px 12px;
    }
    .payment-method-icon { width: 42px; height: 42px; }
    .payment-instructions { padding: 15px; font-size: 11px; }
    .checkout-summary-items { max-height: 180px; overflow-y: auto; }
}

@media (min-width: 769px) {
    .navbar { min-height: 78px; padding: 12px 42px; }
    .nav-logo span:last-child { font-size: 28px; }
    .nav-links { display: flex; }
    .mobile-menu-btn { display: none; }
    .user-name { display: block; }
    .main-content { padding-top: 78px; }
    .hero-section { min-height: calc(100vh - 78px); padding: 55px 40px 90px; }
    .hero-mark-container { width: 150px; height: 150px; }
    .hero-mark-large { font-size: 88px; }
    .hero-pretitle { font-size: 10px; }
    .hero-subtitle { font-size: 13px; }
    .btn-hero-dark, .btn-hero-light { min-width: 220px; padding: 16px 28px; font-size: 10px; }
    .wheel-banner { padding: 20px 28px; }
    .products-section { padding: 50px 40px 90px; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(265px, 1fr)); gap: 18px; }
    .product-info { gap: 13px; padding: 18px; }
    .product-name, .product-price { font-size: 16px; }
    .product-sizes { font-size: 8px; }
    .product-btn { padding: 10px; font-size: 9px; }
    .modal-content { padding: 30px; }
    .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
    .recently-viewed-bar { right: auto; left: 20px; max-width: 360px; }
    .toast-container { top: 95px; right: 20px; bottom: auto; left: auto; align-items: flex-end; }
}

@media (max-width: 480px) {
    .nav-logo span:last-child { display: none; }
    .guest-mode-badge { display: none !important; }
    .hero-mark-large { font-size: 56px; }
    .hero-mark-container { width: 100px; height: 100px; }
    .hero-title { font-size: clamp(3.4rem, 18vw, 4.8rem); }
    .hero-buttons { width: 100%; }
    .btn-hero-dark, .btn-hero-light { width: 100%; }
    .hero-socials { flex-direction: column; gap: 8px; }
    .wheel-banner-info p { display: none; }
    .product-info-top { flex-direction: column; }
    .checkout-fields { grid-template-columns: 1fr; }
    .checkout-field-wide { grid-column: auto; }
    .checkout-panel { padding: 15px 12px; }
    .checkout-panel h3 { font-size: 21px; }
    .checkout-help { margin-bottom: 16px; }
}

@media (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-outline { display: none; }
    .product-card:hover { transform: translateY(-2px); }
    .grain { animation-duration: 0.8s; opacity: 0.01; }
}

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