:root {
    --bg: #050b1d;
    --bg-2: #07152f;
    --panel: rgba(9, 22, 48, 0.72);
    --panel-strong: rgba(14, 33, 68, 0.88);
    --line: rgba(116, 230, 255, 0.22);
    --cyan: #67ecff;
    --cyan-strong: #11bde8;
    --blue: #3d79ff;
    --violet: #7e8cff;
    --text: #f2fbff;
    --muted: #a7bed1;
    --success: #56f0b1;
    --warning: #ffd36b;
    --danger: #ff788d;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(59, 126, 255, 0.18), transparent 28rem),
        radial-gradient(circle at 82% 18%, rgba(103, 236, 255, 0.12), transparent 26rem),
        linear-gradient(180deg, #040816 0%, #07152f 48%, #050b1d 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { position: relative; z-index: 1; }

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.glass-card {
    background: linear-gradient(145deg, rgba(13, 31, 66, 0.78), rgba(5, 13, 31, 0.68));
    border: 1px solid var(--line);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
}

.site-orb {
    position: fixed;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(34px);
    opacity: 0.5;
    z-index: 0;
}

.site-orb-a {
    width: 22rem;
    height: 22rem;
    top: 7rem;
    right: -8rem;
    background: rgba(35, 206, 255, 0.18);
}

.site-orb-b {
    width: 18rem;
    height: 18rem;
    bottom: 10rem;
    left: -7rem;
    background: rgba(85, 107, 255, 0.16);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(4, 10, 24, 0.76);
    border-bottom: 1px solid rgba(103, 236, 255, 0.14);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 156px;
    height: 48px;
    overflow: hidden;
}

.brand img {
    width: 156px;
    max-height: 46px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(103, 236, 255, 0.24));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}

.main-nav a {
    position: relative;
    padding: 30px 0;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 2px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--text); }

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-link,
.lang-pill,
.menu-toggle {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(103, 236, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border-radius: 8px;
}

.cart-link { position: relative; }

.cart-link span {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--cyan);
    color: #03101f;
    font-size: 11px;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.lang-pill {
    width: auto;
    padding: 0 10px;
    font-size: 12px;
    color: var(--cyan);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--cyan);
    border-radius: 2px;
}

.hero {
    position: relative;
    padding: 92px 0 54px;
    overflow: hidden;
}

.hero-lines {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 0 16%, rgba(103, 236, 255, 0.12) 17%, transparent 18% 100%),
        linear-gradient(74deg, transparent 0 54%, rgba(61, 121, 255, 0.14) 55%, transparent 56% 100%);
    animation: driftLines 9s ease-in-out infinite alternate;
}

@keyframes driftLines {
    from { transform: translate3d(-18px, 0, 0); opacity: 0.6; }
    to { transform: translate3d(18px, 0, 0); opacity: 1; }
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 48px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 800;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero-logo {
    width: 230px;
    margin: 18px 0 8px;
    filter: drop-shadow(0 0 28px rgba(103, 236, 255, 0.28));
}

h1, h2, h3, p { margin-top: 0; }

h1 {
    font-size: clamp(38px, 7vw, 72px);
    line-height: 1.04;
    margin-bottom: 22px;
}

.hero-slider {
    position: relative;
    width: min(1630px, calc(100% - 48px));
    height: clamp(420px, 33.333vw, 640px);
    margin: 10px auto 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(103, 236, 255, 0.14);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    background:
        radial-gradient(circle at 76% 34%, rgba(103, 236, 255, 0.15), transparent 24rem),
        radial-gradient(circle at 24% 18%, rgba(61, 121, 255, 0.15), transparent 28rem),
        linear-gradient(135deg, rgba(5, 12, 30, 0.94), rgba(7, 21, 47, 0.94));
}

.hero-track {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    display: grid;
    align-items: center;
    padding: 0;
}

.hero-slide .container {
    width: min(1400px, calc(100% - clamp(54px, 7vw, 120px)));
    height: 100%;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.hero-slide-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
    gap: clamp(26px, 3.5vw, 56px);
    align-items: center;
    height: 100%;
    min-height: 0;
}

.hero-content {
    max-width: 560px;
}

.hero-content h1 {
    font-size: clamp(30px, 2.35vw, 44px);
    line-height: 1.08;
    margin: 14px 0 16px;
    text-wrap: balance;
}

.hero-content p {
    color: var(--muted);
    font-size: clamp(14px, 0.98vw, 16px);
    line-height: 1.58;
    max-width: 520px;
}

.hero-slider .hero-actions {
    margin: 22px 0 0;
}

.hero-slider .hero-visual {
    min-height: 0;
    height: 100%;
    display: grid;
    place-items: center;
}

.glow-ring {
    position: absolute;
    width: min(52vw, 560px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(103, 236, 255, 0.2), transparent 56%),
        conic-gradient(from 130deg, rgba(103, 236, 255, 0.35), rgba(61, 121, 255, 0.08), rgba(126, 140, 255, 0.18), rgba(103, 236, 255, 0.35));
    filter: blur(1px);
    opacity: 0.82;
    animation: glowPulse 5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    from { transform: scale(0.96); opacity: 0.58; }
    to { transform: scale(1.02); opacity: 0.9; }
}

.glass-product-frame {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    aspect-ratio: 1.72;
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(18, 42, 84, 0.86), rgba(6, 14, 34, 0.76)),
        radial-gradient(circle at 50% 18%, rgba(103, 236, 255, 0.16), transparent 34%);
    border: 1px solid rgba(103, 236, 255, 0.34);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.42),
        0 0 42px rgba(20, 190, 235, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.glass-product-frame picture,
.glass-product-frame img {
    width: 100%;
    height: 100%;
}

.glass-product-frame img {
    object-fit: cover;
}

.glass-product-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 34%, rgba(255, 255, 255, 0.12), transparent 64% 100%);
    transform: translateX(-72%);
    animation: lightSweep 6s ease-in-out infinite;
}

.fallback-product-display {
    position: absolute;
    inset: 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.14), transparent 26%),
        linear-gradient(155deg, rgba(103, 236, 255, 0.12), rgba(126, 140, 255, 0.08));
}

.mock-product {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(208, 248, 255, 0.28);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.2);
    overflow: hidden;
}

.mock-product::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,0.2), transparent 62% 100%);
    opacity: 0.62;
}

.mock-box {
    width: 150px;
    height: 205px;
    border-radius: 8px;
    padding: 22px 16px;
    background:
        linear-gradient(180deg, rgba(245, 252, 255, 0.96), rgba(188, 239, 249, 0.9)),
        linear-gradient(135deg, rgba(103, 236, 255, 0.4), rgba(61, 121, 255, 0.16));
    color: #07152f;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mock-brand {
    position: absolute;
    top: 16px;
    left: 14px;
    right: 14px;
    color: #0a7fa3;
    font-size: 12px;
    font-weight: 900;
}

.mock-box strong {
    font-size: 20px;
    line-height: 1.05;
}

.mock-box small {
    margin-top: 6px;
    color: #315269;
    font-weight: 700;
}

.box-left {
    left: 96px;
    bottom: 86px;
    transform: perspective(650px) rotateY(14deg) rotateZ(-4deg);
    opacity: 0.9;
}

.box-main {
    right: 120px;
    bottom: 76px;
    width: 166px;
    height: 226px;
    transform: perspective(650px) rotateY(-10deg) rotateZ(3deg);
    background:
        linear-gradient(180deg, rgba(247, 253, 255, 0.98), rgba(213, 249, 255, 0.92)),
        linear-gradient(135deg, rgba(103, 236, 255, 0.45), rgba(61, 121, 255, 0.2));
}

.mock-tube {
    left: 255px;
    bottom: 72px;
    width: 74px;
    height: 238px;
    border-radius: 38px 38px 16px 16px;
    background: linear-gradient(180deg, rgba(250, 253, 255, 0.98), rgba(120, 232, 255, 0.35) 42%, rgba(35, 89, 168, 0.48));
    transform: rotate(-8deg);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 8px;
    color: #062444;
}

.mock-tube span {
    position: absolute;
    top: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(11, 177, 218, 0.2);
    border: 1px solid rgba(10, 127, 163, 0.24);
}

.mock-tube strong {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 13px;
    letter-spacing: 0;
}

.display-stand {
    position: absolute;
    left: 72px;
    right: 72px;
    bottom: 44px;
    height: 58px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(103, 236, 255, 0.28), rgba(61, 121, 255, 0.08) 54%, transparent 72%);
    border: 1px solid rgba(103, 236, 255, 0.25);
    filter: blur(0.2px);
}

.product-shadow {
    position: absolute;
    left: 68px;
    right: 68px;
    bottom: 36px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    filter: blur(12px);
}

.floating-badge {
    position: absolute;
    z-index: 3;
    min-width: 122px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(103, 236, 255, 0.24);
    background: rgba(5, 15, 35, 0.72);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
}

.floating-badge span {
    display: block;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 3px;
}

.floating-badge strong {
    font-size: 13px;
}

.badge-one { top: 70px; right: 6px; }
.badge-two { left: 24px; bottom: 112px; }
.badge-three { right: 56px; bottom: 40px; }

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(103, 236, 255, 0.28);
    background: rgba(5, 15, 35, 0.8);
    color: var(--cyan);
    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.slider-arrow:hover {
    background: rgba(103, 236, 255, 0.12);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24), 0 0 24px rgba(103, 236, 255, 0.22);
    transform: translateY(-50%) scale(1.04);
}

.slider-prev { left: 22px; }
.slider-next { right: 22px; }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 6;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.slider-dot {
    width: 34px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.slider-dot.active {
    width: 48px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.hero-copy p,
.section-lead,
.reservation-inner p,
.contact-cta p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #03101f;
    background: linear-gradient(135deg, #78f0ff, #2e8cff);
    box-shadow: 0 14px 38px rgba(32, 174, 255, 0.25);
}

.btn-ghost {
    border-color: rgba(103, 236, 255, 0.32);
    background: rgba(103, 236, 255, 0.06);
    color: var(--text);
}

.btn-soft {
    border-color: rgba(126, 140, 255, 0.34);
    background: rgba(126, 140, 255, 0.12);
    color: var(--text);
}

.btn-small {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
}

.btn-full { width: 100%; }

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-grid span {
    padding: 10px 12px;
    border: 1px solid rgba(103, 236, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #d8f8ff;
    font-size: 13px;
}

.hero-visual {
    min-height: 560px;
    position: relative;
}

.product-orbit {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}

.product-orbit::before {
    content: "";
    width: min(86vw, 470px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(103, 236, 255, 0.2);
    box-shadow: 0 0 90px rgba(28, 183, 255, 0.18), inset 0 0 60px rgba(103, 236, 255, 0.07);
    position: absolute;
}

.device-card {
    width: min(82vw, 360px);
    aspect-ratio: 0.84;
    border-radius: 8px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.device-card::before {
    content: "";
    position: absolute;
    inset: 28px 42px 130px;
    border-radius: 8px;
    border: 1px solid rgba(244, 252, 255, 0.22);
    background:
        radial-gradient(circle at 48% 44%, rgba(255, 255, 255, 0.24), transparent 24%),
        linear-gradient(135deg, rgba(103, 236, 255, 0.2), rgba(126, 140, 255, 0.16));
}

.device-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 35%, rgba(103, 236, 255, 0.18), transparent 62% 100%);
    transform: translateX(-70%);
    animation: lightSweep 5s ease-in-out infinite;
}

@keyframes lightSweep {
    45%, 100% { transform: translateX(80%); }
}

.device-card strong { font-size: 28px; }
.device-card small { color: var(--muted); margin-top: 8px; }

.floating-card {
    position: absolute;
    border-radius: 8px;
    padding: 16px 18px;
    min-width: 160px;
}

.floating-card span {
    display: block;
    color: var(--cyan);
    font-size: 12px;
    margin-bottom: 5px;
}

.float-one { top: 64px; right: 22px; }
.float-two { left: 0; bottom: 126px; }
.float-three { right: 10px; bottom: 64px; }

.marquee {
    border-block: 1px solid rgba(103, 236, 255, 0.1);
    background: rgba(4, 12, 28, 0.72);
    color: #cef8ff;
    overflow: hidden;
}

.marquee div {
    white-space: nowrap;
    padding: 14px 0;
    font-size: inherit;
    color: rgba(206, 248, 255, 0.84);
    animation: marquee 24s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.section {
    padding: 84px 0;
}

.products-home-section {
    padding-top: 34px;
}

.section-dark {
    background: linear-gradient(180deg, rgba(3, 8, 20, 0.18), rgba(8, 24, 54, 0.36));
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.compact-section-head {
    margin-bottom: 22px;
    align-items: center;
}

.compact-section-head .eyebrow {
    color: var(--cyan);
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(103, 236, 255, 0.18);
}

.compact-section-head .section-tone-auction,
.compact-section-head .section-tone-auction::before,
.compact-section-head.section-tone-auction a {
    color: var(--cyan);
}

.compact-section-head .section-tone-auction::before {
    background: linear-gradient(90deg, var(--cyan), transparent);
}

.compact-section-head .section-tone-in_stock {
    color: var(--success);
    text-shadow: 0 0 18px rgba(86, 240, 177, 0.18);
}

.compact-section-head.section-tone-in_stock a {
    color: var(--success);
}

.compact-section-head .section-tone-in_stock::before {
    background: linear-gradient(90deg, var(--success), transparent);
}

.compact-section-head .section-tone-limited_stock {
    color: var(--warning);
    text-shadow: 0 0 18px rgba(255, 211, 107, 0.2);
}

.compact-section-head.section-tone-limited_stock a {
    color: var(--warning);
}

.compact-section-head .section-tone-limited_stock::before {
    background: linear-gradient(90deg, var(--warning), transparent);
}

.compact-section-head .section-tone-pre_order {
    color: var(--violet);
    text-shadow: 0 0 18px rgba(126, 140, 255, 0.22);
}

.compact-section-head.section-tone-pre_order a {
    color: var(--violet);
}

.compact-section-head a {
    text-shadow: 0 0 18px currentColor;
}

.compact-section-head .section-tone-pre_order::before {
    background: linear-gradient(90deg, var(--violet), transparent);
}

.product-status-section {
    padding-top: 44px;
}

.status-filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.status-filter-row a {
    border: 1px solid rgba(103, 236, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    padding: 10px 13px;
    font-weight: 800;
}

.status-filter-row a.active,
.status-filter-row a:hover {
    color: #03101f;
    background: linear-gradient(135deg, #78f0ff, #2e8cff);
}

.section-head h2,
.reservation-inner h2,
.contact-cta h2 {
    font-size: clamp(28px, 4vw, 46px);
    margin: 6px 0 0;
}

.section-head a {
    color: var(--cyan);
    font-weight: 800;
}

.section-lead {
    max-width: 760px;
    margin-bottom: 26px;
}

.category-grid,
.product-grid,
.auction-grid,
.brand-grid {
    display: grid;
    gap: 18px;
}

.category-grid { grid-template-columns: repeat(5, 1fr); }
.product-grid { grid-template-columns: repeat(4, 1fr); }
.auction-grid { grid-template-columns: repeat(3, 1fr); }
.brand-grid { grid-template-columns: repeat(3, 1fr); }

.category-card,
.product-card,
.auction-card,
.brand-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.product-card:hover,
.auction-card:hover,
.brand-card:hover {
    transform: translateY(-5px);
    border-color: rgba(103, 236, 255, 0.5);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 34px rgba(23, 190, 232, 0.13);
}

.category-card {
    padding: 22px;
    min-height: 210px;
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(103, 236, 255, 0.18), rgba(61, 121, 255, 0.18));
    color: var(--cyan);
    font-weight: 900;
    margin-bottom: 28px;
}

.category-card h3,
.product-card h3,
.auction-card h3,
.brand-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.category-card p,
.product-card p,
.brand-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.product-media,
.auction-media {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.04);
}

.product-media img,
.auction-media img {
    width: 100%;
    aspect-ratio: 1.16;
    object-fit: cover;
}

.stock-pill,
.auction-status {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 7px 9px;
    border-radius: 999px;
    background: rgba(3, 10, 24, 0.72);
    border: 1px solid rgba(103, 236, 255, 0.22);
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
}

.stock-out_of_stock { color: var(--danger); }
.stock-limited_stock { color: var(--warning); }
.stock-pre_order { color: var(--violet); }
.stock-in_stock { color: var(--success); }

.product-body,
.auction-body {
    padding: 18px;
}

.product-brand {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 900;
    margin: 14px 0;
}

.price-old {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 600;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 8px;
}

.reservation-band {
    padding: 42px 0;
}

.reservation-inner {
    border-radius: 8px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.reservation-inner p { max-width: 760px; margin-bottom: 0; }

.auction-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0;
}

.auction-numbers span,
.countdown {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 13px;
}

.auction-numbers strong {
    display: block;
    color: var(--text);
    margin-top: 5px;
}

.countdown {
    color: var(--cyan);
    border: 1px solid rgba(103, 236, 255, 0.16);
    margin-bottom: 14px;
    text-align: center;
    box-shadow: inset 0 0 24px rgba(103, 236, 255, 0.04);
}

.brand-card {
    padding: 24px;
}

.brand-logo {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(103, 236, 255, 0.18), rgba(126, 140, 255, 0.18));
    border: 1px solid rgba(103, 236, 255, 0.22);
    color: var(--cyan);
    font-weight: 900;
    margin-bottom: 18px;
}

.brand-card span { color: var(--cyan); font-size: 13px; }

.contact-cta {
    padding: 80px 0;
}

.contact-cta-inner {
    text-align: center;
}

.contact-cta .hero-actions {
    justify-content: center;
}

.site-footer {
    border-top: 1px solid rgba(103, 236, 255, 0.14);
    background: rgba(2, 7, 18, 0.78);
    padding-top: 58px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.9fr 0.8fr;
    gap: 32px;
}

.footer-logo {
    width: 170px;
    margin-bottom: 18px;
}

.site-footer p,
.site-footer a {
    color: var(--muted);
    line-height: 1.7;
}

.site-footer a {
    display: block;
    margin: 8px 0;
}

.site-footer h3 {
    color: var(--text);
    margin-bottom: 16px;
}

.social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom {
    margin-top: 42px;
    padding: 18px;
    border-top: 1px solid rgba(103, 236, 255, 0.1);
    color: var(--muted);
    text-align: center;
}

.compact-hero {
    padding: 46px 0 22px;
}

.page-hero h1 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    margin: 10px 0 12px;
    font-weight: 850;
}

.page-hero p {
    color: var(--muted);
    max-width: 680px;
    line-height: 1.65;
    font-size: 16px;
}

.content-card {
    border-radius: 8px;
    padding: 28px;
    color: var(--muted);
    line-height: 1.8;
}

.content-card h2,
.content-card h3 {
    color: var(--text);
}

.content-card ul {
    padding-left: 20px;
}

.content-card form {
    display: grid;
    gap: 14px;
}

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

.field label {
    display: block;
    color: var(--text);
    font-weight: 800;
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    border-radius: 8px;
    border: 1px solid rgba(103, 236, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 12px 13px;
    font: inherit;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
}

/* Homepage ecommerce rows: 5 products per desktop row, clean 2-3 row sections. */
.home-auctions-section,
.product-status-section {
    padding-top: 42px;
    padding-bottom: 32px;
}

.home-auctions-section + .product-status-section,
.product-status-section + .product-status-section {
    padding-top: 30px;
}

.product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.auction-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
