:root {
    --bg: #070b14;
    --bg-soft: #0b1220;
    --bg-raised: #0b1833;
    --surface: rgba(255, 255, 255, 0.065);
    --surface-strong: rgba(255, 255, 255, 0.1);
    --surface-hover: rgba(255, 255, 255, 0.115);
    --border: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.18);
    --text: #eaf0ff;
    --text-muted: rgba(218, 229, 252, 0.74);
    --text-subtle: rgba(218, 229, 252, 0.52);
    --accent: #f7c400;
    --accent-light: #ffdd55;
    --accent-ink: #111318;
    --blue: #4f8cff;
    --mint: #48d7b0;
    --violet: #aa7bff;
    --danger: #ff6b7a;
    --success: #4cdda7;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.22);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 32px;
    --container: 1220px;
    --transition: 180ms ease;
}

[data-theme="light"] {
    --bg: #f4f6fb;
    --bg-soft: #f6f7fb;
    --bg-raised: #eef2ff;
    --surface: rgba(15, 33, 66, 0.055);
    --surface-strong: rgba(15, 33, 66, 0.09);
    --surface-hover: rgba(15, 33, 66, 0.11);
    --border: rgba(15, 33, 66, 0.12);
    --border-strong: rgba(15, 33, 66, 0.2);
    --text: #101828;
    --text-muted: rgba(16, 24, 40, 0.72);
    --text-subtle: rgba(16, 24, 40, 0.52);
    --shadow: 0 24px 70px rgba(33, 53, 91, 0.13);
    --shadow-soft: 0 14px 40px rgba(33, 53, 91, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 7% 2%, rgba(79, 140, 255, 0.09), transparent 25rem),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    transition: background-color var(--transition), color var(--transition);
}

body,
button,
input,
select,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    color: inherit;
}

button,
select {
    cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 70%, transparent);
    outline-offset: 3px;
}

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

h1,
h2,
h3,
strong,
b {
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5.4rem);
    line-height: 0.98;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
}

h3 {
    line-height: 1.25;
}

code {
    padding: 0.15rem 0.4rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--surface);
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section--muted {
    border-block: 1px solid var(--border);
    background: var(--bg-soft);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    max-width: 760px;
    margin: 0.4rem 0 0;
}

.section-heading--compact {
    margin-bottom: 1.5rem;
}

.section-heading--compact h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 26px;
    height: 2px;
    background: currentColor;
}

.icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.icon--small {
    width: 15px;
    height: 15px;
}

.icon--back {
    transform: rotate(180deg);
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    transform: translateY(-160%);
    border-radius: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.78rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.button:disabled,
.button[aria-disabled="true"] {
    transform: none;
    opacity: 0.48;
    cursor: not-allowed;
    box-shadow: none;
}

.button--primary {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--accent-ink);
    box-shadow: 0 12px 32px rgba(247, 196, 0, 0.18);
}

.button--primary:hover {
    box-shadow: 0 16px 36px rgba(247, 196, 0, 0.28);
}

.button--secondary {
    border-color: var(--border-strong);
    background: var(--text);
    color: var(--bg);
}

.button--ghost {
    border-color: var(--border);
    background: var(--surface);
}

.button--ghost:hover {
    border-color: var(--border-strong);
    background: var(--surface-hover);
}

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

.button--wide {
    min-width: min(100%, 300px);
}

.button--large {
    min-height: 58px;
}

.button--small {
    min-height: 42px;
    padding: 0.6rem 1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 750;
    white-space: nowrap;
}

.text-link:hover {
    color: var(--accent);
}

.announcement {
    border-bottom: 1px solid rgba(247, 196, 0, 0.16);
    background: #050913;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

[data-theme="light"] .announcement {
    background: #111827;
}

.announcement__inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.announcement strong {
    color: var(--accent-light);
}

.announcement__demo {
    color: rgba(255, 255, 255, 0.58);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: blur(20px);
}

.header__inner {
    display: grid;
    min-height: 72px;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    width: max-content;
}

.brand__mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 950;
    box-shadow: 0 8px 24px rgba(247, 196, 0, 0.2);
}

.brand__name {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.brand__name span {
    color: var(--accent);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.2rem);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.main-nav a {
    transition: color var(--transition);
}

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

.header__actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.icon-button {
    position: relative;
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.icon-button:hover {
    transform: translateY(-1px);
    border-color: var(--border-strong);
    background: var(--surface-hover);
}

.icon-button--accent {
    border-color: color-mix(in srgb, var(--accent) 35%, transparent);
    background: var(--accent);
    color: var(--accent-ink);
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    display: grid;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    place-items: center;
    border: 2px solid var(--bg);
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.65rem;
    font-weight: 900;
}

.theme-toggle__moon {
    display: none;
}

[data-theme="light"] .theme-toggle__sun {
    display: none;
}

[data-theme="light"] .theme-toggle__moon {
    display: block;
}

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

.header-search {
    display: none;
    padding-bottom: 0.8rem;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.search-form__icon {
    width: 20px;
    height: 20px;
    margin-left: 1rem;
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 1.8;
}

.search-form input {
    min-width: 0;
    flex: 1;
    padding: 0.8rem;
    border: 0;
    outline: 0;
    background: transparent;
}

.search-form button {
    align-self: stretch;
    padding: 0 1.2rem;
    border: 0;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 800;
}

.flash-stack {
    position: fixed;
    z-index: 200;
    top: 120px;
    right: 1rem;
    display: grid;
    width: min(calc(100% - 2rem), 430px);
    gap: 0.7rem;
}

.flash {
    display: grid;
    align-items: center;
    padding: 0.85rem 0.9rem;
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    background: color-mix(in srgb, var(--bg-raised) 94%, transparent);
    box-shadow: var(--shadow-soft);
    grid-template-columns: auto 1fr auto;
    gap: 0.7rem;
    backdrop-filter: blur(16px);
}

.flash--success {
    border-color: rgba(76, 221, 167, 0.4);
}

.flash--error {
    border-color: rgba(255, 107, 122, 0.46);
}

.flash button {
    display: grid;
    padding: 0.2rem;
    border: 0;
    place-items: center;
    background: transparent;
}

.flash button .icon {
    width: 18px;
    height: 18px;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.16;
    pointer-events: none;
}

.glow--yellow {
    width: 30vw;
    height: 30vw;
    background: var(--accent);
}

.glow--blue {
    width: 32vw;
    height: 32vw;
    background: var(--blue);
}

.glow--mint {
    width: 24vw;
    height: 24vw;
    background: var(--mint);
}

.hero {
    min-height: 720px;
    overflow: hidden;
    display: grid;
    align-items: center;
}

.hero .glow--yellow {
    top: -18%;
    right: -8%;
}

.hero .glow--blue {
    bottom: -30%;
    left: -12%;
}

.hero .glow--mint {
    top: 30%;
    left: 48%;
    opacity: 0.09;
}

.hero__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__content h1 {
    max-width: 800px;
    margin: 1.2rem 0 1.5rem;
}

.hero__content h1 em {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.hero__content > p {
    max-width: 650px;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 3rem;
}

.hero__trust div {
    display: grid;
    padding: 0 1.5rem;
    border-left: 1px solid var(--border);
}

.hero__trust div:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero__trust strong {
    font-size: 1.15rem;
}

.hero__trust span {
    color: var(--text-subtle);
    font-size: 0.75rem;
}

.hero__visual {
    position: relative;
    min-height: 510px;
    perspective: 1000px;
}

.hero-orbit {
    position: absolute;
    border: 1px solid var(--border);
    border-radius: 50%;
    inset: 4% 10%;
}

.hero-orbit--two {
    inset: 18% 22%;
    border-color: rgba(247, 196, 0, 0.18);
}

.floating-product {
    position: absolute;
    z-index: 2;
    display: grid;
    overflow: hidden;
    width: 220px;
    padding: 0.75rem;
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    background: color-mix(in srgb, var(--bg-raised) 84%, transparent);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transition: transform 300ms ease;
}

.floating-product:hover {
    z-index: 5;
    transform: translateY(-8px) rotate(0);
}

.floating-product img {
    width: 100%;
    height: 175px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
}

.floating-product span {
    overflow: hidden;
    margin-top: 0.7rem;
    font-size: 0.78rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.floating-product strong {
    color: var(--accent);
}

.floating-product--1 {
    top: 4%;
    left: 4%;
    transform: rotate(-7deg);
}

.floating-product--2 {
    top: 30%;
    right: 0;
    transform: rotate(6deg);
}

.floating-product--3 {
    bottom: 0;
    left: 14%;
    transform: rotate(-2deg);
}

.hero-note {
    position: absolute;
    z-index: 6;
    right: 10%;
    bottom: 4%;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(72, 215, 176, 0.3);
    border-radius: 14px;
    background: color-mix(in srgb, var(--bg-raised) 90%, transparent);
    box-shadow: var(--shadow-soft);
    gap: 0.7rem;
}

.hero-note .icon {
    color: var(--mint);
}

.hero-note div {
    display: grid;
}

.hero-note span {
    color: var(--text-muted);
    font-size: 0.7rem;
}

.benefits {
    border-block: 1px solid var(--border);
    background: var(--bg-soft);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefits article {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-left: 1px solid var(--border);
    gap: 0.9rem;
}

.benefits article:first-child {
    border-left: 0;
}

.benefits .icon {
    min-width: 25px;
    color: var(--accent);
}

.benefits div div {
    display: grid;
}

.benefits strong {
    font-size: 0.9rem;
}

.benefits span {
    color: var(--text-subtle);
    font-size: 0.74rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.category-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    padding: 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 260ms ease, border-color var(--transition), background var(--transition);
}

.category-card::after {
    position: absolute;
    right: -30px;
    bottom: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: currentColor;
    content: "";
    filter: blur(55px);
    opacity: 0.13;
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    background: var(--surface-hover);
}

.category-card--blue {
    color: var(--blue);
}

.category-card--mint,
.category-card--green {
    color: var(--mint);
}

.category-card--yellow {
    color: var(--accent);
}

.category-card--violet {
    color: var(--violet);
}

.category-card__index {
    color: var(--text-subtle);
    font-size: 0.7rem;
    font-weight: 800;
}

.category-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 1.5rem 0;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 18px;
    background: color-mix(in srgb, currentColor 10%, transparent);
    font-size: 1.7rem;
}

.category-card h3 {
    margin-bottom: 0.45rem;
    color: var(--text);
}

.category-card p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.category-card__arrow {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-strong);
}

.category-card__arrow .icon {
    width: 17px;
    height: 17px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 260ms ease, border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-soft);
}

.product-card__image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.95);
}

.product-card__image {
    width: 100%;
    height: 230px;
    object-fit: contain;
    transition: transform 350ms ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.035);
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 0.65rem;
    font-weight: 900;
}

.product-card__body {
    padding: 1rem;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-subtle);
    font-size: 0.7rem;
}

.rating {
    display: flex;
    align-items: center;
    color: var(--accent);
    gap: 0.25rem;
}

.product-card__title {
    min-height: 2.6em;
    margin: 0.65rem 0 1rem;
    font-size: 1rem;
}

.product-card__title a:hover {
    color: var(--accent);
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.price {
    font-size: 1.05rem;
}

.story-card {
    display: grid;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5rem);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 8% 20%, rgba(247, 196, 0, 0.13), transparent 25rem),
        radial-gradient(circle at 92% 80%, rgba(79, 140, 255, 0.13), transparent 28rem),
        var(--bg-raised);
    box-shadow: var(--shadow);
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 7vw, 6rem);
}

.story-card__content h2 {
    margin: 0.8rem 0 1.2rem;
}

.story-card__content p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.story-card__stats {
    display: grid;
    gap: 1rem;
}

.story-card__stats div {
    position: relative;
    padding: 1rem 1rem 1rem 4rem;
    border-bottom: 1px solid var(--border);
}

.story-card__stats div:last-child {
    border: 0;
}

.story-card__stats span {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 900;
}

.story-card__stats strong {
    font-size: 1.05rem;
}

.story-card__stats p {
    margin: 0.25rem 0 0;
    color: var(--text-muted);
    font-size: 0.83rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 0 3rem;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 80% 0, rgba(79, 140, 255, 0.12), transparent 30rem),
        var(--bg-soft);
}

.page-hero--compact {
    padding-bottom: 2.5rem;
}

.page-hero h1 {
    max-width: 850px;
    margin: 0.8rem 0;
    font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.page-hero p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.page-hero__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 2rem;
    color: var(--text-subtle);
    font-size: 0.78rem;
    gap: 0.4rem;
}

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

.breadcrumbs span {
    overflow: hidden;
    color: var(--text-muted);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.breadcrumbs .icon {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
}

.section--catalog {
    padding-top: 3rem;
}

.catalog-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 2.5rem;
}

.filters {
    position: sticky;
    top: 100px;
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.filters__header h2 {
    margin: 0;
    font-size: 1.2rem;
}

.filters__header a {
    color: var(--accent);
    font-size: 0.73rem;
    font-weight: 750;
}

.filters label:not(.radio-filter) {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.field-with-icon {
    position: relative;
}

.field-with-icon .icon {
    position: absolute;
    top: 50%;
    left: 0.8rem;
    width: 17px;
    height: 17px;
    transform: translateY(-50%);
    color: var(--text-subtle);
}

.field-with-icon input {
    padding-left: 2.5rem;
}

.filters input,
.filters select,
.form-field input,
.form-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 11px;
    outline: none;
    background: var(--surface);
}

.filters input:focus,
.filters select:focus,
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 196, 0, 0.1);
}

.filters fieldset {
    display: grid;
    margin: 1.4rem 0;
    padding: 0;
    border: 0;
    gap: 0.15rem;
}

.filters legend {
    margin-bottom: 0.55rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.radio-filter {
    display: flex;
    align-items: center;
    padding: 0.45rem 0;
    color: var(--text-muted);
    font-size: 0.86rem;
    gap: 0.6rem;
}

.radio-filter input {
    width: 16px;
    min-height: 16px;
    accent-color: var(--accent);
}

.filters select {
    margin-bottom: 1.2rem;
}

.active-filters {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.76rem;
    gap: 0.5rem;
}

.chip {
    padding: 0.3rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
}

.product-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-state {
    display: grid;
    min-height: 360px;
    padding: 2rem;
    place-items: center;
    align-content: center;
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius);
    background: var(--surface);
    text-align: center;
}

.empty-state__icon {
    display: grid;
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface-strong);
    color: var(--accent);
}

.empty-state h2,
.empty-state h3 {
    margin-bottom: 0.5rem;
}

.empty-state p {
    max-width: 560px;
    color: var(--text-muted);
}

.empty-state--large {
    min-height: 520px;
}

.product-detail {
    padding-top: 3rem;
}

.product-detail__grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: clamp(2rem, 7vw, 6rem);
}

.product-gallery {
    position: relative;
    display: grid;
    min-height: 560px;
    overflow: hidden;
    padding: clamp(1.5rem, 5vw, 4rem);
    place-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.96);
}

.product-gallery__glow {
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(90px);
    opacity: 0.12;
}

.product-gallery img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 470px;
    object-fit: contain;
}

.product-info h1 {
    margin: 0.8rem 0;
    font-size: clamp(2.3rem, 5vw, 4rem);
}

.product-info__rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    gap: 0.6rem;
}

.stars {
    color: var(--accent);
    letter-spacing: 0.1em;
}

.product-info__price {
    display: block;
    margin-bottom: 1.5rem;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.product-info__description {
    color: var(--text-muted);
}

.product-points {
    display: grid;
    margin: 1.5rem 0 2rem;
    padding: 0;
    list-style: none;
    gap: 0.65rem;
}

.product-points li {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    gap: 0.6rem;
}

.product-points .icon {
    width: 18px;
    height: 18px;
    color: var(--mint);
}

.product-security-note {
    display: flex;
    align-items: center;
    margin-top: 1.2rem;
    padding: 0.9rem;
    border: 1px solid rgba(72, 215, 176, 0.22);
    border-radius: 13px;
    background: rgba(72, 215, 176, 0.06);
    gap: 0.7rem;
}

.product-security-note .icon {
    color: var(--mint);
}

.product-security-note div {
    display: grid;
}

.product-security-note span {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.section--cart,
.section--checkout {
    padding-top: 3rem;
}

.cart-layout,
.checkout-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 2rem;
}

.cart-panel {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.cart-list {
    display: grid;
}

.cart-item {
    position: relative;
    display: grid;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid var(--border);
    grid-template-columns: 110px minmax(0, 1fr) 82px 120px 32px;
    gap: 1.2rem;
}

.cart-item__image {
    overflow: hidden;
    border-radius: 13px;
    background: #fff;
}

.cart-item__image img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.cart-item__seller,
.cart-item__unit {
    color: var(--text-subtle);
    font-size: 0.73rem;
}

.cart-item h2 {
    margin: 0.25rem 0;
    font-size: 1rem;
}

.cart-item__quantity label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-subtle);
    font-size: 0.68rem;
}

.cart-item__quantity input {
    width: 70px;
    min-height: 40px;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--surface);
    text-align: center;
}

.cart-item__total {
    text-align: right;
}

.cart-item__remove {
    display: grid;
    padding: 0.25rem;
    border: 0;
    place-items: center;
    background: transparent;
    color: var(--text-subtle);
}

.cart-item__remove:hover {
    color: var(--danger);
}

.cart-item__remove .icon {
    width: 18px;
    height: 18px;
}

.cart-panel__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
}

.order-summary {
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 100% 0, rgba(247, 196, 0, 0.1), transparent 16rem),
        var(--surface);
    box-shadow: var(--shadow-soft);
}

.order-summary h2 {
    margin: 0.5rem 0 1.5rem;
    font-size: 1.45rem;
}

.order-summary dl {
    display: grid;
    margin: 0;
    gap: 0.7rem;
}

.order-summary dl div {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.86rem;
}

.order-summary dd {
    margin: 0;
    color: var(--text);
}

.order-summary__total {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 1.2rem 0;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
}

.order-summary__total span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.order-summary__total strong {
    font-size: 1.45rem;
}

.order-summary__note {
    display: flex;
    align-items: start;
    color: var(--text-subtle);
    font-size: 0.72rem;
    gap: 0.5rem;
}

.order-summary__note .icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
}

.secure-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    color: var(--text-subtle);
    font-size: 0.7rem;
    gap: 0.45rem;
}

.secure-row .icon {
    width: 15px;
    height: 15px;
}

.checkout-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
}

.checkout-form {
    display: grid;
    gap: 1.2rem;
}

.form-card {
    padding: clamp(1.3rem, 4vw, 2rem);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.form-card__heading {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 0.9rem;
}

.form-card__heading > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 900;
}

.form-card__heading h2 {
    margin: 0;
    font-size: 1.25rem;
}

.form-card__heading p {
    margin: 0.15rem 0 0;
    color: var(--text-muted);
    font-size: 0.76rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.form-field small {
    color: var(--text-subtle);
    font-size: 0.7rem;
}

.form-field textarea {
    resize: vertical;
}

.delivery-options {
    display: grid;
    gap: 0.65rem;
}

.delivery-option {
    position: relative;
    display: grid;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    grid-template-columns: 20px 28px 1fr auto;
    gap: 0.8rem;
    cursor: pointer;
}

.delivery-option:has(input:checked) {
    border-color: var(--accent);
    background: rgba(247, 196, 0, 0.055);
}

.delivery-option input {
    position: absolute;
    opacity: 0;
}

.delivery-option__check {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
}

.delivery-option:has(input:checked) .delivery-option__check {
    border: 5px solid var(--accent);
}

.delivery-option > .icon {
    color: var(--text-muted);
}

.delivery-option > span:not(.delivery-option__check) {
    display: grid;
}

.delivery-option small {
    color: var(--text-subtle);
    font-size: 0.7rem;
}

.delivery-option b {
    font-size: 0.86rem;
}

.demo-payment {
    display: flex;
    align-items: start;
    padding: 1rem;
    border: 1px solid rgba(72, 215, 176, 0.25);
    border-radius: 14px;
    background: rgba(72, 215, 176, 0.06);
    gap: 0.8rem;
}

.demo-payment > .icon {
    min-width: 24px;
    color: var(--mint);
}

.demo-payment p {
    margin: 0.2rem 0 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.demo-payment--setup {
    border-color: rgba(247, 196, 0, 0.28);
    background: rgba(247, 196, 0, 0.06);
}

.demo-payment--setup > .icon {
    color: var(--accent);
}

.demo-payment code {
    color: var(--text);
}

.checkout-consent {
    margin: 0;
    color: var(--text-subtle);
    font-size: 0.72rem;
    text-align: center;
}

.checkout-consent a {
    color: var(--text-muted);
    text-decoration: underline;
}

.order-summary--sticky {
    position: sticky;
    top: 100px;
}

.checkout-items {
    display: grid;
    max-height: 315px;
    overflow-y: auto;
    margin-bottom: 1.2rem;
    gap: 0.8rem;
}

.checkout-item {
    display: grid;
    align-items: center;
    grid-template-columns: 54px 1fr auto;
    gap: 0.7rem;
}

.checkout-item img {
    width: 54px;
    height: 54px;
    padding: 0.25rem;
    border-radius: 10px;
    background: #fff;
    object-fit: contain;
}

.checkout-item div {
    display: grid;
}

.checkout-item strong {
    overflow: hidden;
    font-size: 0.76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.checkout-item span {
    color: var(--text-subtle);
    font-size: 0.67rem;
}

.checkout-item b {
    font-size: 0.75rem;
}

.success-page {
    min-height: 720px;
    display: grid;
    align-items: center;
}

.success-card {
    max-width: 840px;
    padding: clamp(2rem, 6vw, 5rem);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 50% 0, rgba(72, 215, 176, 0.12), transparent 25rem),
        var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
}

.success-card__icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 1.5rem;
    place-items: center;
    border: 1px solid rgba(72, 215, 176, 0.35);
    border-radius: 50%;
    background: rgba(72, 215, 176, 0.1);
    color: var(--mint);
}

.success-card__icon .icon {
    width: 38px;
    height: 38px;
}

.success-card h1 {
    margin: 0.8rem 0 1rem;
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.success-card > p {
    max-width: 650px;
    margin-inline: auto;
    color: var(--text-muted);
}

.success-card__reference {
    display: inline-grid;
    margin: 1rem 0 2rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}

.success-card__reference span {
    color: var(--text-subtle);
    font-size: 0.68rem;
}

.success-card__reference strong {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
}

.success-details {
    display: grid;
    margin: 0 0 2rem;
    padding: 1.2rem;
    border-block: 1px solid var(--border);
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: left;
}

.success-details div {
    display: grid;
}

.success-details dt {
    color: var(--text-subtle);
    font-size: 0.7rem;
}

.success-details dd {
    margin: 0;
    font-weight: 700;
}

.success-card__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.auth-page {
    position: relative;
    display: grid;
    min-height: 760px;
    overflow: hidden;
    padding: clamp(4rem, 9vw, 8rem) 0;
    align-items: center;
}

.auth-page .glow--blue,
.auth-page .glow--mint {
    bottom: -20%;
    left: -10%;
}

.auth-page .glow--yellow {
    top: -20%;
    right: -10%;
}

.auth-layout {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr minmax(360px, 470px);
    gap: clamp(3rem, 10vw, 9rem);
}

.auth-intro h1 {
    margin: 1rem 0 1.5rem;
    font-size: clamp(2.7rem, 6vw, 5rem);
}

.auth-intro > p {
    max-width: 620px;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.auth-intro ul {
    display: grid;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
    gap: 0.9rem;
}

.auth-intro li {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    gap: 0.8rem;
}

.auth-intro li .icon {
    color: var(--accent);
}

.auth-highlight {
    display: flex;
    max-width: 570px;
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid rgba(247, 196, 0, 0.2);
    border-radius: 14px;
    background: rgba(247, 196, 0, 0.05);
    gap: 0.8rem;
}

.auth-highlight strong {
    color: var(--accent);
}

.auth-highlight span {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.auth-card {
    padding: clamp(1.5rem, 5vw, 2.5rem);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background: color-mix(in srgb, var(--bg-raised) 82%, transparent);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.auth-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 1.2rem;
    place-items: center;
    border-radius: 16px;
    background: var(--accent);
    color: var(--accent-ink);
}

.auth-card h2 {
    margin-bottom: 0.4rem;
    font-size: 1.8rem;
}

.auth-card > p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-card form {
    display: grid;
    gap: 1rem;
}

.checkbox-field {
    display: flex;
    align-items: start;
    color: var(--text-muted);
    font-size: 0.74rem;
    gap: 0.6rem;
}

.checkbox-field input {
    width: 17px;
    height: 17px;
    margin-top: 0.2rem;
    accent-color: var(--accent);
}

.checkbox-field a,
.auth-card__switch a {
    color: var(--accent);
}

.auth-card__switch {
    margin: 1.5rem 0 0 !important;
    text-align: center;
}

.page-hero--account {
    padding-bottom: 3rem;
}

.account-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.account-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 2rem;
}

.account-summary {
    display: grid;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    place-items: center;
    background: var(--surface);
    text-align: center;
}

.account-summary__avatar {
    display: grid;
    width: 78px;
    height: 78px;
    margin-bottom: 1rem;
    place-items: center;
    border-radius: 24px;
    background: var(--accent);
    color: var(--accent-ink);
    font-size: 2rem;
    font-weight: 950;
}

.account-summary h2 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.account-summary > p {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.account-summary > div {
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: 1rem;
    padding: 0.8rem;
    border: 1px solid rgba(72, 215, 176, 0.2);
    border-radius: 12px;
    background: rgba(72, 215, 176, 0.05);
    text-align: left;
    gap: 0.65rem;
}

.account-summary > div .icon {
    min-width: 21px;
    color: var(--mint);
}

.account-summary > div span {
    display: grid;
}

.account-summary > div small {
    color: var(--text-subtle);
    font-size: 0.62rem;
}

.orders-panel {
    min-width: 0;
}

.orders-list {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.order-row {
    display: grid;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    grid-template-columns: 44px minmax(0, 1fr) auto auto 24px;
    gap: 1rem;
}

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

.order-row__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    background: var(--surface-strong);
    color: var(--accent);
}

.order-row div {
    display: grid;
}

.order-row div span {
    color: var(--text-subtle);
    font-size: 0.7rem;
}

.status-pill {
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(72, 215, 176, 0.09);
    color: var(--mint);
    font-size: 0.65rem;
    font-weight: 800;
}

.status-pill--pending {
    background: rgba(247, 196, 0, 0.1);
    color: var(--accent-light);
}

.status-pill--expired,
.status-pill--payment_failed {
    background: rgba(255, 107, 129, 0.1);
    color: #ff8fa2;
}

.status-pill--demo_paid {
    background: var(--surface-strong);
    color: var(--text-muted);
}

.order-row > a {
    display: grid;
    place-items: center;
}

.order-row > a .icon {
    width: 18px;
    height: 18px;
}

.contact-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(2rem, 7vw, 6rem);
}

.contact-cards {
    display: grid;
    gap: 1rem;
}

.contact-cards article {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    gap: 1rem;
}

.contact-cards article > .icon {
    width: 27px;
    height: 27px;
    color: var(--accent);
}

.contact-cards article div {
    display: grid;
}

.contact-cards span,
.contact-cards small {
    color: var(--text-subtle);
    font-size: 0.7rem;
}

.contact-form h2 {
    margin: 0.6rem 0;
}

.contact-form > p {
    color: var(--text-muted);
}

.contact-form form {
    display: grid;
    gap: 1rem;
}

.legal-page {
    padding-top: 4rem;
}

.legal-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 250px minmax(0, 780px);
    justify-content: center;
    gap: clamp(2rem, 7vw, 6rem);
}

.legal-nav {
    position: sticky;
    top: 110px;
    display: grid;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    gap: 0.25rem;
}

.legal-nav > span {
    padding: 0.5rem;
    color: var(--text-subtle);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-nav a {
    padding: 0.65rem 0.75rem;
    border-radius: 9px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.legal-nav a:hover,
.legal-nav a.active {
    background: var(--surface-strong);
    color: var(--text);
}

.legal-nav a.active {
    box-shadow: inset 3px 0 var(--accent);
}

.legal-content h1 {
    margin: 0.8rem 0 2rem;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.legal-content h2 {
    margin: 2.5rem 0 0.75rem;
    font-size: 1.35rem;
}

.legal-content p {
    color: var(--text-muted);
}

.legal-notice {
    padding: 1rem 1.2rem;
    border: 1px solid rgba(247, 196, 0, 0.25);
    border-radius: 13px;
    background: rgba(247, 196, 0, 0.055);
    color: var(--text-muted);
}

.legal-notice strong {
    color: var(--accent);
}

.legal-steps {
    display: grid;
    padding: 0;
    list-style: none;
    gap: 0.8rem;
}

.legal-steps li {
    display: flex;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--surface);
    gap: 1rem;
}

.legal-steps li > span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 900;
}

.legal-steps p {
    margin: 0.2rem 0 0;
    font-size: 0.8rem;
}

.error-page {
    min-height: 680px;
}

.error-code {
    color: var(--accent);
    font-size: clamp(4rem, 14vw, 9rem);
    font-weight: 950;
    line-height: 1;
    opacity: 0.8;
}

.site-footer {
    padding-top: 4rem;
    border-top: 1px solid var(--border);
    background: #050913;
    color: #eaf0ff;
}

[data-theme="light"] .site-footer {
    background: #0b1220;
}

.footer__grid {
    display: grid;
    padding-bottom: 3.5rem;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
}

.brand--footer {
    margin-bottom: 1.2rem;
}

.footer__description {
    max-width: 340px;
    color: rgba(234, 240, 255, 0.62);
    font-size: 0.83rem;
}

.demo-pill {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(247, 196, 0, 0.25);
    border-radius: 999px;
    background: rgba(247, 196, 0, 0.06);
    color: var(--accent);
    font-size: 0.66rem;
    font-weight: 800;
}

.footer__grid h2 {
    margin-bottom: 1rem;
    color: #eaf0ff;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer__grid ul {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0.55rem;
}

.footer__grid li,
.footer__contact p {
    color: rgba(234, 240, 255, 0.62);
    font-size: 0.78rem;
}

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

.footer__contact p {
    display: flex;
    align-items: start;
    gap: 0.5rem;
}

.footer__contact .icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: var(--accent);
}

.footer__bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(234, 240, 255, 0.42);
    font-size: 0.68rem;
}

@media (min-width: 900px) {
    .header-search {
        display: none !important;
    }
}

@media (max-width: 1080px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid,
    .product-grid--catalog {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .benefits article:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .benefits article:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .cart-item {
        grid-template-columns: 90px minmax(0, 1fr) 70px 100px 28px;
        gap: 0.8rem;
    }

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

    .footer__grid > div:last-child {
        grid-column: 2 / -1;
    }
}

@media (max-width: 900px) {
    .announcement__demo {
        display: none;
    }

    .announcement__inner {
        justify-content: center;
    }

    .header__inner {
        min-height: 64px;
        grid-template-columns: auto 1fr auto;
        gap: 0.7rem;
    }

    .mobile-menu-button {
        display: grid;
        justify-self: end;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 1rem;
        left: 1rem;
        display: none;
        align-items: stretch;
        padding: 0.8rem;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: var(--bg-raised);
        box-shadow: var(--shadow);
        flex-direction: column;
        gap: 0;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 0.75rem;
        border-radius: 9px;
    }

    .main-nav a:hover {
        background: var(--surface);
    }

    .header__actions {
        grid-column: 3;
    }

    .header__actions > a[aria-label="Your account"],
    .header__actions > a[aria-label="Sign in"] {
        display: none;
    }

    .header-search {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 500px;
        max-width: 620px;
        width: 100%;
        margin-inline: auto;
    }

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

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

    .story-card,
    .product-detail__grid,
    .auth-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .product-detail__grid {
        gap: 3rem;
    }

    .product-gallery {
        min-height: 440px;
    }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .filters {
        position: static;
    }

    .filters fieldset {
        grid-template-columns: repeat(3, 1fr);
    }

    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-summary,
    .order-summary--sticky {
        position: static;
    }

    .auth-intro {
        max-width: 700px;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-summary {
        grid-template-columns: auto 1fr;
        justify-items: start;
        text-align: left;
        gap: 0 1rem;
    }

    .account-summary__avatar {
        grid-row: 1 / 4;
        margin: 0;
    }

    .account-summary > div {
        grid-column: 1 / -1;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        position: static;
    }

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

    .footer__grid > div:last-child {
        grid-column: auto;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .section {
        padding-block: 4rem;
    }

    .brand__name {
        display: none;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .hero__content h1 {
        font-size: clamp(2.7rem, 14vw, 4.3rem);
    }

    .hero__actions {
        display: grid;
    }

    .hero__trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__trust div {
        padding: 0 0.7rem;
    }

    .hero__trust div:first-child {
        padding-left: 0;
    }

    .hero__visual {
        min-height: 390px;
    }

    .floating-product {
        width: 160px;
    }

    .floating-product img {
        height: 120px;
    }

    .floating-product--1 {
        left: 0;
    }

    .floating-product--2 {
        right: 0;
    }

    .floating-product--3 {
        left: 18%;
    }

    .hero-note {
        right: 0;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .benefits article,
    .benefits article:nth-child(3),
    .benefits article:nth-child(4) {
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .benefits article:first-child {
        border-top: 0;
    }

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

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 220px;
    }

    .product-grid,
    .product-grid--catalog {
        grid-template-columns: 1fr;
    }

    .product-card__image {
        height: 260px;
    }

    .story-card {
        padding: 1.5rem;
    }

    .story-card__stats div {
        padding-left: 3rem;
    }

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

    .product-gallery {
        min-height: 340px;
    }

    .cart-item {
        align-items: start;
        padding: 1rem;
        grid-template-columns: 82px 1fr auto;
        gap: 0.8rem;
    }

    .cart-item__image {
        grid-row: 1 / 3;
    }

    .cart-item__image img {
        height: 82px;
    }

    .cart-item__quantity {
        grid-column: 2;
    }

    .cart-item__total {
        grid-row: 2;
        grid-column: 3;
        align-self: center;
    }

    .cart-item__remove {
        grid-row: 1;
        grid-column: 3;
    }

    .cart-panel__footer {
        align-items: stretch;
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field {
        grid-column: 1 / -1;
    }

    .delivery-option {
        grid-template-columns: 18px 1fr auto;
    }

    .delivery-option > .icon {
        display: none;
    }

    .success-details {
        grid-template-columns: 1fr;
    }

    .account-hero {
        align-items: start;
        flex-direction: column;
    }

    .account-summary {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .account-summary__avatar {
        grid-row: auto;
    }

    .order-row {
        grid-template-columns: 40px 1fr auto;
    }

    .order-row .status-pill {
        grid-row: 2;
        grid-column: 2;
        width: max-content;
    }

    .order-row > b {
        grid-row: 2;
        grid-column: 3;
    }

    .order-row > a {
        grid-row: 1;
        grid-column: 3;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        align-items: start;
        padding: 1.3rem 0;
        flex-direction: column;
        justify-content: center;
        gap: 0.2rem;
    }
}

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