@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");

:root {
    --bg: #070707;
    --bg-2: #0b0b0b;
    --panel: #111111;
    --panel-2: #161616;
    --text: #f5f5f5;
    --muted: #b8b8b8;
    --accent: #ffd400;
    --accent-2: #ffea61;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    background:
        radial-gradient(900px 500px at 20% -10%, rgba(255, 212, 0, 0.10), transparent 60%),
        radial-gradient(700px 450px at 90% 10%, rgba(255, 234, 97, 0.08), transparent 60%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px 28px;
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--border);
}

header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
}

.site-logo,
.logo {
    display: block;
    width: auto;
    height: 32px;
}

.site-nav,
.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
}

.site-nav-link,
.nav-link {
    color: var(--text);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    font-weight: 600;
}

.site-nav-link:hover,
.nav-link:hover {
    border-color: rgba(255, 212, 0, 0.6);
    color: var(--accent);
    box-shadow: 0 0 18px rgba(255, 212, 0, 0.35);
}

.site-nav-link.is-active,
.nav-link.is-active {
    background: rgba(255, 212, 0, 0.12);
    border-color: rgba(255, 212, 0, 0.35);
    color: var(--accent);
}

.site-lang,
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
}

.site-lang button,
.lang-switch button {
    padding: 8px 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.site-lang button:hover,
.lang-switch button:hover {
    border-color: rgba(255, 212, 0, 0.6);
    color: var(--accent);
    box-shadow: 0 0 18px rgba(255, 212, 0, 0.35);
}

.page-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 28px 44px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.back-link:hover {
    border-color: rgba(255, 212, 0, 0.45);
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--accent);
    color: #000;
    border: 1px solid rgba(255, 212, 0, 0.35);
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--accent-2);
    box-shadow: 0 14px 30px rgba(255, 212, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.12);
}

.site-footer {
    padding: 24px 20px;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
    text-align: center;
}

.site-footer__brand {
    margin: 0;
    color: var(--text);
    font-weight: 700;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 32px;
}

.site-footer__links a,
.site-footer__links a:visited {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: var(--accent);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
}

.page-product .product-hero {
    display: grid;
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.page-product .product-media,
.page-product .product-copy,
.page-product .product-section {
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.page-product .product-media {
    padding: 28px;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-product .product-media img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    image-rendering: auto;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.page-product .product-copy {
    padding: 24px;
}

.page-product .product-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.page-product .product-subtitle {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 17px;
}

.page-product .product-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.page-product .product-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 212, 0, 0.22);
    background: rgba(255, 212, 0, 0.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
}

.page-product .product-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.page-product .product-summary-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
}

.page-product .product-summary-label {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-product .product-summary-value {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.page-product .product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.page-product .product-section {
    margin-top: 18px;
    padding: 20px 24px;
}

.page-product .product-section h2 {
    margin: 0 0 16px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.page-product .product-specs {
    display: grid;
}

.page-product .product-spec-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-product .product-spec-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.page-product .product-spec-key {
    color: var(--muted);
}

.page-product .product-spec-value {
    font-weight: 700;
    text-align: right;
}

.page-product .product-seo-copy p {
    margin: 0 0 14px;
    color: var(--muted);
}

@media (max-width: 900px) {
    .page-product .product-hero,
    .page-product .product-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) and (min-width: 701px) {
    .site-header,
    header {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        padding: 12px 20px;
    }

    .site-nav,
    .nav-links {
        grid-column: 1 / -1;
        width: 100%;
        justify-self: stretch;
        justify-content: center;
        overflow: visible !important;
        padding-right: 0;
    }
}

@media (max-width: 700px) {
    .site-header,
    header {
        padding: 10px 12px;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .page-main {
        padding: 18px 14px 38px;
    }

    .site-nav,
    .nav-links {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        margin-right: 0;
        gap: 8px;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto !important;
        overflow-y: hidden;
        padding-bottom: 2px;
        scrollbar-width: none;
        justify-self: stretch;
    }

    .site-nav::-webkit-scrollbar,
    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .site-nav-link,
    .nav-link {
        flex: 0 0 auto;
        text-align: center;
        min-width: 0;
        font-size: 13px;
        padding: 7px 9px;
        white-space: nowrap;
    }

    .site-lang,
    .lang-switch {
        margin-left: auto;
    }

    .site-lang button,
    .lang-switch button {
        padding: 6px 8px;
    }

    .page-product .product-media,
    .page-product .product-copy,
    .page-product .product-section {
        border-radius: 16px;
    }

    .page-product .product-media,
    .page-product .product-copy,
    .page-product .product-section {
        padding: 14px;
    }

    .page-product .product-media {
        min-height: 240px;
    }

    .page-product .product-spec-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .page-product .product-copy h1 {
        font-size: clamp(28px, 8vw, 36px);
    }

    .page-product .product-subtitle {
        font-size: 15px;
    }

    .page-product .product-summary-card {
        padding: 14px;
        border-radius: 14px;
    }

    .page-product .product-summary-value {
        font-size: 18px;
    }

    .page-product .product-section h2 {
        font-size: 18px;
    }

    .page-product .product-spec-value {
        text-align: left;
    }
}
