:root {
    --gold: #f3b21a;
    --gold-light: #ffd86a;
    --gold-deep: #a85e00;
    --orange: #ff7600;
    --black: #050505;
    --black-soft: #0b0b0c;
    --graphite: #121214;
    --panel: rgba(18, 18, 20, 0.78);
    --panel-solid: #111113;
    --white: #ffffff;
    --text: #f4f4f5;
    --muted: #a7a7ad;
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(255, 255, 255, 0.16);
    --line-gold: rgba(243, 178, 26, 0.36);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
    --radius: 22px;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--gold-deep) #09090a;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Outfit", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 8%, rgba(243, 178, 26, 0.08), transparent 30%),
        radial-gradient(circle at 88% 25%, rgba(255, 118, 0, 0.07), transparent 28%),
        #060607;
    overflow-x: hidden;
}

body.cart-open,
body.modal-open,
body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

img,
svg {
    display: block;
}

::selection {
    color: #171006;
    background: var(--gold-light);
}

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

#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.75;
}

.ambient {
    position: fixed;
    z-index: -3;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    filter: blur(135px);
    pointer-events: none;
}

.ambient-left {
    left: -210px;
    top: 32%;
    background: rgba(243, 178, 26, 0.13);
}

.ambient-right {
    right: -220px;
    bottom: 4%;
    background: rgba(255, 118, 0, 0.11);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light), var(--orange));
    box-shadow: 0 0 16px rgba(243, 178, 26, 0.75);
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-light);
    box-shadow: 0 0 15px rgba(243, 178, 26, 0.8);
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 216, 106, 0.52);
    transition: width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-ring {
    opacity: 1;
}

body.cursor-hover .cursor-ring {
    width: 58px;
    height: 58px;
    border-color: rgba(255, 216, 106, 0.9);
    background: rgba(243, 178, 26, 0.07);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: 86px;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 4vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(6, 6, 7, 0.72);
    backdrop-filter: blur(22px);
    transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.topbar.scrolled {
    height: 72px;
    background: rgba(5, 5, 6, 0.94);
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.25);
}

.brand,
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-mark {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 216, 106, 0.55);
    background:
        linear-gradient(145deg, rgba(243, 178, 26, 0.3), rgba(255, 118, 0, 0.05)),
        #111;
    transform: rotate(45deg);
    box-shadow: 0 0 28px rgba(243, 178, 26, 0.12);
    overflow: hidden;
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.38), transparent 65%);
    animation: brandShine 5.2s ease-in-out infinite;
}

.brand-mark > span {
    position: relative;
    z-index: 1;
    color: var(--gold-light);
    font-size: 1.7rem;
    font-weight: 900;
    transform: rotate(-45deg);
    text-shadow: 0 0 18px rgba(243, 178, 26, 0.45);
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 1.05rem;
    letter-spacing: 0.22em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    color: #c9c9ce;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.68rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}

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

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

.top-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.server-ip,
.account-trigger,
.cart-trigger,
.mobile-menu-button {
    border: 1px solid var(--line);
    color: var(--white);
    background: rgba(255, 255, 255, 0.035);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.server-ip:hover,
.account-trigger:hover,
.cart-trigger:hover,
.mobile-menu-button:hover {
    border-color: var(--line-gold);
    background: rgba(243, 178, 26, 0.07);
    transform: translateY(-1px);
}

.server-ip,
.account-trigger {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 48px;
    padding: 0.58rem 0.86rem;
    border-radius: 12px;
}

.server-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6be27a;
    box-shadow: 0 0 14px rgba(107, 226, 122, 0.75);
}

.server-ip-copy,
.account-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.server-ip-copy small,
.account-copy small {
    color: var(--muted);
    font-size: 0.56rem;
    letter-spacing: 0.12em;
}

.server-ip-copy strong,
.account-copy strong {
    font-size: 0.8rem;
}

.account-avatar {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #171006;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
    font-weight: 900;
}

.cart-trigger {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 0.9rem;
    border-radius: 12px;
}

.cart-trigger svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.cart-count {
    min-width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #171006;
    background: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
}

.mobile-menu-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0 12px;
    border-radius: 12px;
}

.mobile-menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    transition: 0.25s ease;
}

.hero {
    position: relative;
    min-height: 900px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 3rem;
    padding: 155px 7vw 100px;
    overflow: hidden;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    inset: -3%;
    z-index: -5;
    background:
        linear-gradient(90deg, rgba(4, 4, 5, 0.98) 0%, rgba(4, 4, 5, 0.84) 46%, rgba(4, 4, 5, 0.25) 100%),
        linear-gradient(180deg, rgba(4, 4, 5, 0.06), #060607 98%),
        url("/assets/images/bg.webp") center / cover no-repeat;
    will-change: transform;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -4;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-fog {
    position: absolute;
    z-index: -3;
    width: 75vw;
    height: 260px;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.11;
    pointer-events: none;
}

.hero-fog-one {
    left: -20%;
    bottom: 9%;
    background: linear-gradient(90deg, rgba(243, 178, 26, 0.7), transparent);
    animation: fogMove 13s ease-in-out infinite alternate;
}

.hero-fog-two {
    right: -24%;
    top: 18%;
    background: linear-gradient(90deg, transparent, rgba(255, 118, 0, 0.58));
    animation: fogMoveReverse 17s ease-in-out infinite alternate;
}

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

.eyebrow,
.section-kicker {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
}

.eyebrow > span {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    box-shadow: 0 0 12px rgba(243, 178, 26, 0.5);
}

.hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(3.9rem, 7.4vw, 7.8rem);
    line-height: 0.91;
    letter-spacing: -0.068em;
    text-transform: uppercase;
    text-wrap: balance;
}

.hero h1 em {
    display: block;
    font-style: normal;
    color: var(--gold);
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--orange), var(--gold-light));
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShimmer 6s linear infinite;
    filter: drop-shadow(0 10px 30px rgba(243, 178, 26, 0.16));
}

.hero-content > p {
    max-width: 670px;
    margin: 1.8rem 0 0;
    color: #b8b8be;
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.35rem;
}

.button {
    position: relative;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0 1.45rem;
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button-primary {
    color: #171006;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
    box-shadow: 0 12px 36px rgba(243, 178, 26, 0.22);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(243, 178, 26, 0.31);
}

.button-ghost {
    color: var(--white);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--line-gold);
    background: rgba(243, 178, 26, 0.07);
}

.ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%) scale(0);
    animation: rippleEffect 0.65s ease-out forwards;
    pointer-events: none;
}

.hero-live {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 2rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.48rem 0.72rem;
    border: 1px solid rgba(107, 226, 122, 0.2);
    border-radius: 999px;
    color: #b7f6bf;
    background: rgba(107, 226, 122, 0.055);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6be27a;
    box-shadow: 0 0 12px rgba(107, 226, 122, 0.75);
    animation: pulseDot 1.8s ease-in-out infinite;
}

.hero-stats {
    display: flex;
    gap: 2.7rem;
    margin-top: 2.35rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    color: var(--gold-light);
    font-size: 1.48rem;
}

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

.hero-emblem {
    position: relative;
    width: min(590px, 43vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    justify-self: center;
    will-change: transform;
}

.emblem-orbit {
    position: absolute;
    border: 1px solid rgba(243, 178, 26, 0.22);
    transform: rotate(45deg);
}

.orbit-one {
    width: 82%;
    height: 82%;
    animation: orbitClockwise 19s linear infinite;
}

.orbit-two {
    width: 62%;
    height: 62%;
    animation: orbitCounter 14s linear infinite;
}

.orbit-three {
    width: 44%;
    height: 44%;
    border-color: rgba(255, 216, 106, 0.28);
    animation: orbitClockwise 11s linear infinite reverse;
}

.emblem-core {
    position: relative;
    z-index: 3;
    width: 57%;
    aspect-ratio: 1;
    clip-path: polygon(20% 0, 100% 0, 86% 28%, 54% 28%, 54% 42%, 82% 42%, 68% 65%, 52% 65%, 52% 78%, 78% 78%, 62% 100%, 0 100%, 13% 70%, 13% 28%);
    background:
        linear-gradient(145deg, #fff0a8 0%, #f3b21a 28%, #ff7600 78%, #a84b00 100%);
    filter:
        drop-shadow(0 0 34px rgba(243, 178, 26, 0.25))
        drop-shadow(0 26px 45px rgba(0, 0, 0, 0.58));
    animation: emblemFloat 4.2s ease-in-out infinite;
}

.emblem-core::before {
    content: "";
    position: absolute;
    inset: -45%;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.74), transparent 60%);
    animation: emblemShine 4.8s ease-in-out infinite;
}

.emblem-flare {
    position: absolute;
    z-index: 4;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff4bd;
    box-shadow:
        0 0 12px #fff4bd,
        0 0 35px var(--gold),
        0 0 80px var(--orange);
    transform: translate(92px, -138px);
    animation: flarePulse 2.7s ease-in-out infinite;
}

.emblem-pulse {
    position: absolute;
    width: 58%;
    height: 58%;
    border-radius: 50%;
    background: rgba(243, 178, 26, 0.13);
    filter: blur(68px);
    animation: emblemPulse 3.2s ease-in-out infinite;
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    color: var(--muted);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-hint i {
    position: relative;
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.scroll-hint i::after {
    content: "";
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, transparent, var(--gold-light), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.shop-section,
.rank-comparison,
.benefits-section,
.supporters-section,
.faq-section {
    position: relative;
    padding: 115px 7vw;
}

.section-heading {
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 3rem;
    margin: 0 auto 2.6rem;
}

.section-heading.centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-heading h2 {
    margin: 0.45rem 0 0;
    font-size: clamp(2.25rem, 4vw, 4.2rem);
    letter-spacing: -0.048em;
    text-wrap: balance;
}

.section-heading > p,
.section-heading.centered > p {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.shop-toolbar {
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    margin: 0 auto 2rem;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.category-tab {
    padding: 0.78rem 1.06rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #c9c9cf;
    background: rgba(255, 255, 255, 0.025);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.category-tab:hover,
.category-tab.active {
    color: #171006;
    border-color: var(--gold);
    background: var(--gold);
    transform: translateY(-2px);
}

.product-search {
    width: min(330px, 100%);
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0 0.9rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
}

.product-search:focus-within {
    border-color: var(--line-gold);
    box-shadow: 0 0 25px rgba(243, 178, 26, 0.08);
}

.product-search svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.7;
}

.product-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--white);
    background: transparent;
}

.product-search input::placeholder {
    color: #77777d;
}

.products-grid {
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    margin: 0 auto;
}

.product-card {
    --card-accent: var(--gold);
    --mouse-x: 50%;
    --mouse-y: 50%;
    position: relative;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), color-mix(in srgb, var(--card-accent) 10%, transparent), transparent 34%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
        rgba(10, 10, 11, 0.9);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, opacity 0.28s ease;
    will-change: transform;
}

.product-card.featured {
    border-color: rgba(243, 178, 26, 0.5);
}

.product-card.is-hidden {
    display: none;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.12) 48%, transparent 73%);
    transform: translateX(-125%);
    transition: transform 0.75s ease;
}

.product-card:hover::before {
    transform: translateX(125%);
}

.product-card::after {
    content: "";
    position: absolute;
    right: -130px;
    top: -130px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--card-accent);
    filter: blur(105px);
    opacity: 0.09;
    pointer-events: none;
}

.card-border {
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    background: conic-gradient(from var(--border-angle), transparent 0 22%, var(--card-accent) 28%, transparent 34% 100%);
    animation: borderSpin 4s linear infinite;
    transition: opacity 0.25s ease;
}

.product-card:hover .card-border,
.product-card.featured .card-border {
    opacity: 0.7;
}

.card-glow {
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: calc(var(--radius) - 1px);
    background: #0d0d0f;
}

.product-card:hover {
    border-color: color-mix(in srgb, var(--card-accent) 55%, rgba(255, 255, 255, 0.12));
    box-shadow:
        0 34px 100px rgba(0, 0, 0, 0.58),
        0 0 52px color-mix(in srgb, var(--card-accent) 11%, transparent);
}

.product-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    padding: 0.45rem 0.7rem;
    border: 1px solid color-mix(in srgb, var(--card-accent) 30%, transparent);
    border-radius: 999px;
    color: color-mix(in srgb, var(--card-accent) 65%, white);
    background: color-mix(in srgb, var(--card-accent) 10%, transparent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-icon {
    width: 74px;
    height: 74px;
    display: grid;
    place-items: center;
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--card-accent) 42%, transparent);
    border-radius: 18px;
    color: color-mix(in srgb, var(--card-accent) 72%, white);
    background:
        radial-gradient(circle, color-mix(in srgb, var(--card-accent) 22%, transparent), transparent 72%),
        rgba(255, 255, 255, 0.025);
    font-size: 2rem;
    box-shadow: 0 0 34px color-mix(in srgb, var(--card-accent) 12%, transparent);
    animation: iconFloat 3.4s ease-in-out infinite;
}

.product-type {
    color: var(--card-accent);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0.45rem 0 0.65rem;
    font-size: 2.35rem;
    letter-spacing: -0.045em;
}

.product-description {
    min-height: 78px;
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.product-card ul {
    display: grid;
    gap: 0.76rem;
    margin: 1.6rem 0 1.4rem;
    padding: 0;
    list-style: none;
}

.product-card li {
    position: relative;
    padding-left: 1.45rem;
    color: #d5d5d8;
    font-size: 0.93rem;
}

.product-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--card-accent);
    font-weight: 800;
}

.product-actions {
    margin-top: auto;
}

.details-button {
    border: 0;
    color: var(--muted);
    background: transparent;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    text-underline-offset: 4px;
    cursor: pointer;
}

.details-button:hover {
    color: var(--white);
}

.product-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.price {
    display: flex;
    flex-direction: column;
}

.price span {
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.price strong {
    font-size: 1.48rem;
}

.buy-button {
    position: relative;
    min-height: 47px;
    padding: 0 1.05rem;
    border: 1px solid var(--card-accent);
    border-radius: 10px;
    color: #171006;
    background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 55%, white), var(--card-accent));
    overflow: hidden;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buy-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px color-mix(in srgb, var(--card-accent) 20%, transparent);
}

.buy-button:disabled {
    color: #737379;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.035);
    cursor: not-allowed;
}

.empty-products {
    max-width: 1500px;
    display: none;
    margin: 2rem auto 0;
    padding: 3rem 1rem;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
}

.empty-products.show {
    display: block;
}

.empty-products > span {
    display: block;
    color: var(--gold);
    font-size: 2.6rem;
}

.empty-products strong {
    display: block;
    margin-top: 0.5rem;
    color: var(--white);
}

.empty-products p {
    margin: 0.35rem 0 0;
}

.rank-comparison {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015), transparent);
}

.comparison-table {
    max-width: 1180px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(14, 14, 16, 0.76);
    overflow: hidden;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
    border-bottom: 0;
}

.comparison-row > div {
    position: relative;
    padding: 1.18rem 1.35rem;
    text-align: center;
    border-right: 1px solid var(--line);
}

.comparison-row > div:first-child {
    text-align: left;
}

.comparison-row > div:last-child {
    border-right: 0;
}

.comparison-head {
    color: var(--gold-light);
    font-weight: 800;
    background: rgba(243, 178, 26, 0.06);
}

.benefits-grid {
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0 auto;
}

.benefit-card {
    position: relative;
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.026);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.benefit-card::after {
    content: "";
    position: absolute;
    right: -75px;
    bottom: -75px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gold);
    filter: blur(75px);
    opacity: 0.08;
}

.benefit-card:hover {
    transform: translateY(-7px);
    border-color: var(--line-gold);
    background: rgba(243, 178, 26, 0.035);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-gold);
    border-radius: 14px;
    color: var(--gold-light);
    background: rgba(243, 178, 26, 0.07);
    font-size: 1.35rem;
}

.benefit-card h3 {
    margin: 1.15rem 0 0.55rem;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.supporters-panel {
    max-width: 1350px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    margin: 0 auto;
    padding: 2.2rem;
    border: 1px solid var(--line-gold);
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(243, 178, 26, 0.08), transparent 48%),
        rgba(13, 13, 15, 0.78);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.supporters-copy h2 {
    margin: 0.5rem 0 0;
    font-size: clamp(2.1rem, 3.8vw, 4rem);
    letter-spacing: -0.05em;
}

.supporters-copy p {
    max-width: 620px;
    color: var(--muted);
    line-height: 1.7;
}

.supporters-list {
    display: grid;
    gap: 0.75rem;
}

.supporter {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 0.8rem;
    align-items: center;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.supporter-place {
    color: var(--gold);
    font-weight: 800;
}

.supporter-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #171006;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
    font-weight: 900;
}

.supporter > span:last-child {
    display: flex;
    flex-direction: column;
}

.supporter small {
    color: var(--muted);
}

.faq-list {
    max-width: 980px;
    display: grid;
    gap: 0.8rem;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item.open {
    border-color: var(--line-gold);
    background: rgba(243, 178, 26, 0.025);
}

.faq-item > button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.18rem 1.35rem;
    border: 0;
    color: var(--white);
    background: transparent;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
}

.faq-item > button span {
    color: var(--gold);
    font-size: 1.4rem;
    transition: transform 0.2s ease;
}

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

.faq-answer p {
    margin: 0;
    padding: 0 1.35rem 1.25rem;
    color: var(--muted);
    line-height: 1.65;
}

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

.faq-item.open > button span {
    transform: rotate(45deg);
}

footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2.1rem 7vw;
    border-top: 1px solid var(--line);
    background: #050506;
}

footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.cart-drawer,
.account-modal,
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 700;
    visibility: hidden;
    pointer-events: none;
}

.cart-drawer.open,
.account-modal.open,
.product-modal.open {
    visibility: visible;
    pointer-events: auto;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
    opacity: 0;
    backdrop-filter: blur(8px);
    transition: opacity 0.25s ease;
}

.cart-drawer.open .drawer-overlay,
.account-modal.open .drawer-overlay,
.product-modal.open .drawer-overlay {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(490px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.45rem;
    border-left: 1px solid var(--line);
    background: #0b0b0d;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.52);
}

.cart-drawer.open .drawer-panel {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.drawer-header > div > span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.drawer-header h2 {
    margin: 0.2rem 0 0;
}

.drawer-close,
.account-close {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    font-size: 1.6rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem 0;
}

.empty-cart {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-align: center;
}

.empty-cart > div {
    margin-bottom: 0.7rem;
    color: var(--gold);
    font-size: 3rem;
}

.empty-cart strong {
    color: var(--white);
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.cart-item strong {
    display: block;
}

.cart-item span {
    color: var(--gold-light);
    font-size: 0.88rem;
}

.cart-item button {
    align-self: center;
    border: 0;
    color: #e47979;
    background: transparent;
    cursor: pointer;
}

.coupon-box {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
}

.coupon-box label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.coupon-box > div {
    display: flex;
    gap: 0.6rem;
}

.coupon-box input {
    min-width: 0;
    flex: 1;
    padding: 0 0.85rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.035);
    text-transform: uppercase;
}

.coupon-box input:focus {
    border-color: var(--line-gold);
}

.coupon-box button {
    padding: 0 0.9rem;
    border: 1px solid var(--line-gold);
    border-radius: 10px;
    color: var(--gold-light);
    background: rgba(243, 178, 26, 0.06);
    cursor: pointer;
}

.coupon-box > small {
    display: block;
    min-height: 18px;
    margin-top: 0.45rem;
    color: var(--muted);
}

.cart-summary {
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
}

.summary-line,
.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-line {
    margin-bottom: 0.6rem;
    color: var(--muted);
}

.discount-line {
    display: none;
    color: #89e492;
}

.discount-line.show {
    display: flex;
}

.summary-total {
    margin: 1rem 0;
}

.summary-total strong {
    font-size: 1.6rem;
}

.checkout-button {
    position: relative;
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 12px;
    color: #171006;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
    overflow: hidden;
    font-weight: 900;
    cursor: pointer;
}

.checkout-button:disabled {
    color: #777;
    background: rgba(255, 255, 255, 0.06);
    cursor: not-allowed;
}

.cart-summary > small {
    display: block;
    margin-top: 0.75rem;
    color: #77777d;
    text-align: center;
}

.account-panel,
.product-modal-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(530px, calc(100% - 2rem));
    padding: 2rem;
    border: 1px solid var(--line-gold);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(243, 178, 26, 0.055), transparent 45%),
        #0d0d0f;
    box-shadow: 0 35px 110px rgba(0, 0, 0, 0.66);
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.account-modal.open .account-panel,
.product-modal.open .product-modal-panel {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.account-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.account-large-avatar,
.product-modal-icon {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
    border: 1px solid var(--line-gold);
    border-radius: 22px;
    color: #171006;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--orange));
    font-size: 2.3rem;
    font-weight: 900;
    box-shadow: 0 0 35px rgba(243, 178, 26, 0.15);
}

.account-panel h2,
.product-modal-panel h2 {
    margin: 0.45rem 0 0;
    font-size: 2.1rem;
}

.account-panel > p,
.product-modal-panel > p {
    color: var(--muted);
    line-height: 1.65;
}

.account-panel label {
    display: grid;
    gap: 0.5rem;
    margin: 1.4rem 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.account-panel input {
    min-height: 50px;
    padding: 0 0.9rem;
    border: 1px solid var(--line);
    border-radius: 11px;
    outline: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.035);
}

.account-panel input:focus {
    border-color: var(--line-gold);
}

.product-modal-panel ul {
    display: grid;
    gap: 0.7rem;
    padding: 0;
    list-style: none;
}

.product-modal-panel li {
    position: relative;
    padding-left: 1.4rem;
    color: #d6d6da;
}

.product-modal-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
}

.product-modal-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    border-top: 1px solid var(--line);
}

.product-modal-bottom > strong {
    font-size: 1.6rem;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    z-index: 1200;
    padding: 0.9rem 1.15rem;
    border: 1px solid var(--line-gold);
    border-radius: 12px;
    color: var(--white);
    background: rgba(12, 12, 14, 0.95);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translate(-50%, 22px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

#loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(243, 178, 26, 0.08), transparent 34%),
        #060607;
    transition: opacity 0.58s ease, visibility 0.58s ease;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-shell {
    width: min(350px, 84vw);
    text-align: center;
}

.loader-emblem {
    position: relative;
    width: 84px;
    height: 84px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.1rem;
    border: 1px solid rgba(243, 178, 26, 0.42);
    color: var(--gold-light);
    background: rgba(243, 178, 26, 0.055);
    transform: rotate(45deg);
    animation: loaderFloat 2.3s ease-in-out infinite;
}

.loader-emblem > span {
    font-size: 2.8rem;
    font-weight: 900;
    transform: rotate(-45deg);
}

.loader-brand {
    color: var(--gold-light);
    font-weight: 900;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
}

.loader-progress {
    height: 4px;
    margin-top: 1.45rem;
    border-radius: 999px;
    background: #202024;
    overflow: hidden;
}

.loader-progress > span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-light), var(--orange));
    animation: loaderProgress 0.95s ease forwards;
}

.loader-copy {
    margin-top: 0.8rem;
    color: #77777d;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.reveal,
.delay {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

.delay {
    transition-delay: 0.16s;
}

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

@property --border-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
}

@keyframes borderSpin {
    to { --border-angle: 360deg; }
}

@keyframes loaderProgress {
    to { width: 100%; }
}

@keyframes loaderFloat {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-8px); }
}

@keyframes brandShine {
    0%, 65% { transform: translateX(-65%) rotate(15deg); }
    100% { transform: translateX(65%) rotate(15deg); }
}

@keyframes textShimmer {
    to { background-position: 220% center; }
}

@keyframes fogMove {
    to { transform: translateX(16%) scale(1.08); }
}

@keyframes fogMoveReverse {
    to { transform: translateX(-14%) scale(1.12); }
}

@keyframes orbitClockwise {
    to { transform: rotate(405deg); }
}

@keyframes orbitCounter {
    to { transform: rotate(-315deg); }
}

@keyframes emblemFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-13px) scale(1.015); }
}

@keyframes emblemShine {
    0%, 58% { transform: translateX(-70%) rotate(18deg); }
    100% { transform: translateX(70%) rotate(18deg); }
}

@keyframes flarePulse {
    0%, 100% { opacity: 0.55; transform: translate(92px, -138px) scale(0.8); }
    50% { opacity: 1; transform: translate(92px, -138px) scale(1.3); }
}

@keyframes emblemPulse {
    0%, 100% { opacity: 0.55; transform: scale(0.94); }
    50% { opacity: 1; transform: scale(1.09); }
}

@keyframes scrollLine {
    to { top: 145%; }
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.65; transform: scale(0.86); }
    50% { opacity: 1; transform: scale(1.18); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-7px) rotate(2deg); }
}

@keyframes rippleEffect {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(18);
    }
}

@media (max-width: 1280px) {
    .account-trigger {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .eyebrow,
    .hero-actions,
    .hero-stats,
    .hero-live {
        justify-content: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-emblem {
        width: min(520px, 76vw);
    }

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

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

@media (max-width: 1020px) {
    .main-nav {
        position: fixed;
        inset: 72px 1rem auto 1rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.65rem;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(9, 9, 11, 0.98);
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    body.menu-open .main-nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav a {
        padding: 0.95rem 1rem;
        border-radius: 10px;
    }

    .main-nav a:hover {
        background: rgba(243, 178, 26, 0.06);
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    body.menu-open .mobile-menu-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.menu-open .mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    body.menu-open .mobile-menu-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .product-search {
        width: 100%;
    }

    .supporters-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .topbar {
        height: 72px;
        padding: 0 1rem;
    }

    .brand-copy,
    .server-ip,
    .cart-label {
        display: none;
    }

    .top-actions {
        margin-left: auto;
    }

    .hero {
        padding: 125px 1rem 75px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 15vw, 5rem);
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .hero-live {
        align-items: center;
        flex-direction: column;
    }

    .hero-stats {
        gap: 1.1rem;
    }

    .stat span {
        font-size: 0.61rem;
    }

    .scroll-hint {
        display: none;
    }

    .shop-section,
    .rank-comparison,
    .benefits-section,
    .supporters-section,
    .faq-section {
        padding: 82px 1rem;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    .products-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: auto;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-row {
        min-width: 710px;
    }

    footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        justify-content: center;
    }

    .product-modal-bottom {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .product-card {
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    #particleCanvas {
        display: none;
    }
}


/* ENVEX: warianty czasowe i finalny checkout */
.product-variant-field {
    display: grid;
    gap: .48rem;
    margin: 1.15rem 0 .2rem;
}

.product-variant-field > span,
.checkout-data-title {
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.product-variant-select,
.cart-variant-select,
.account-panel input[type="email"] {
    width: 100%;
    min-height: 46px;
    padding: 0 .85rem;
    border: 1px solid var(--line);
    border-radius: 11px;
    outline: 0;
    color: var(--white);
    background: #141416;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.product-variant-select:focus,
.cart-variant-select:focus,
.account-panel input[type="email"]:focus {
    border-color: var(--line-gold);
    box-shadow: 0 0 0 3px rgba(243,178,26,.08);
}

.product-variant-select option,
.cart-variant-select option {
    color: #fff;
    background: #141416;
}

.variant-duration-note {
    min-height: 20px;
    color: #c8c8cd;
    font-size: .78rem;
}

.cart-item {
    align-items: flex-start;
}

.cart-item-main {
    min-width: 0;
    display: grid;
    gap: .38rem;
}

.cart-item-title {
    display: flex;
    flex-direction: column;
    gap: .12rem;
}

.cart-item-title small {
    color: var(--gold-light);
    font-size: .72rem;
}

.cart-variant-select {
    min-height: 38px;
    padding: 0 .65rem;
    font-size: .78rem;
}

.checkout-details {
    display: grid;
    gap: .72rem;
    margin: 1rem 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(255,255,255,.025);
}

.checkout-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: .82rem;
}

.checkout-detail-row strong {
    color: var(--white);
    text-align: right;
}

.checkout-consents {
    display: grid;
    gap: .85rem;
    margin: 1.05rem 0 1rem;
}

.consent-row {
    display: grid;
    grid-template-columns: 19px 1fr;
    gap: .72rem;
    align-items: flex-start;
    color: #c9c9ce;
    font-size: .78rem;
    line-height: 1.45;
    cursor: pointer;
}

.consent-row input {
    width: 18px;
    height: 18px;
    margin: .1rem 0 0;
    accent-color: var(--gold);
}

.consent-row a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkout-payment-note {
    display: block;
    margin-top: .7rem;
    color: #8f8f95;
    font-size: .72rem;
    text-align: center;
}

.checkout-button:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.account-panel label + label {
    margin-top: .85rem;
}

.product-modal-variant {
    width: 100%;
    margin: 1rem 0 .2rem;
}

@media (max-width: 600px) {
    .checkout-details { padding: .8rem; }
    .consent-row { font-size: .73rem; }
}

/* =========================================================
   ENVEX SHOP — BEZPIECZNA NAPRAWA SZEROKOŚCI NA TELEFONACH
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 760px) {
    .topbar,
    .hero,
    .shop-section,
    .rank-comparison,
    .benefits-section,
    .supporters-section,
    .faq-section,
    footer {
        width: 100%;
        max-width: 100%;
    }

    .main-nav {
        max-width: calc(100vw - 2rem);
    }

    .hero-content,
    .section-heading,
    .shop-toolbar,
    .category-tabs,
    .product-search,
    .products-grid,
    .product-card,
    .product-actions,
    .product-bottom,
    .benefits-grid,
    .benefit-card,
    .supporters-panel,
    .supporters-copy,
    .supporters-list,
    .faq-list,
    .cart-item-main,
    .checkout-details,
    .checkout-consents {
        min-width: 0;
        max-width: 100%;
    }

    .category-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        scrollbar-width: thin;
    }

    .category-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .product-card h3,
    .product-description,
    .product-card li,
    .checkout-detail-row strong,
    .consent-row,
    .consent-row a,
    .cart-item strong,
    .cart-item span,
    .cart-item small {
        overflow-wrap: anywhere;
    }

    .product-bottom {
        flex-wrap: wrap;
    }

    .buy-button {
        max-width: 100%;
    }

    .comparison-table {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .drawer-panel {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .account-panel,
    .product-modal-panel {
        width: calc(100vw - 1rem);
        max-width: calc(100vw - 1rem);
        max-height: calc(100dvh - 1rem);
        overflow-x: hidden;
        overflow-y: auto;
    }

    .consent-row {
        grid-template-columns: 19px minmax(0, 1fr);
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .toast {
        max-width: calc(100vw - 1rem);
        text-align: center;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.2rem);
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .product-card {
        padding: 1.3rem;
    }

    .product-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .buy-button {
        width: 100%;
    }
}

