:root {
    --brand-red: #a00606;
    --brand-red-deep: #6d0404;
    --brand-white: #ffffff;
    --brand-black: #000000;
    --brand-grey: #4b4b4b;
    --sand: #f2e7db;
    --sand-soft: #fbf6f1;
    --ink: #151515;
    --line: rgba(21, 21, 21, 0.09);
    --line-strong: rgba(21, 21, 21, 0.18);
    --success: #2c8c4a;
    --warning: #b56a00;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: min(1280px, calc(100vw - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(160, 6, 6, 0.08), transparent 28%),
        linear-gradient(180deg, #fff6f1 0%, #f7efe7 30%, #fbf6f1 100%);
}

body.is-locked {
    overflow: hidden;
}

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

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

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

.page-shell {
    min-height: 100vh;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(21, 21, 21, 0.58);
}

.section-heading {
    display: grid;
    gap: 14px;
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading h2,
.catalog-toolbar__copy h2,
.cart-drawer__header h2,
.checkout-modal__intro h2 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 600;
    line-height: 0.98;
    text-transform: uppercase;
}

.section-heading p:last-child,
.catalog-toolbar__copy p,
.checkout-modal__intro p {
    margin: 0;
    color: rgba(21, 21, 21, 0.72);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(251, 246, 241, 0.78);
    border-bottom: 1px solid rgba(21, 21, 21, 0.06);
}

.header-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 86px;
}

.brand-lockup {
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 120px;
    height: auto;
}

.brand-copy {
    display: grid;
    gap: 4px;
}

.brand-copy__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(21, 21, 21, 0.55);
}

.brand-copy__tagline {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.main-nav a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: rgba(21, 21, 21, 0.75);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

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

.cart-button,
.button,
.icon-button {
    border: 0;
    cursor: pointer;
}

.cart-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.cart-button:hover,
.button:hover {
    transform: translateY(-1px);
}

.cart-button,
.button--solid {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-deep) 100%);
    color: var(--brand-white);
    box-shadow: 0 14px 28px rgba(160, 6, 6, 0.24);
}

.button--ghost,
.button--soft {
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    box-shadow: inset 0 0 0 1px rgba(21, 21, 21, 0.1);
}

.cart-button__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.hero {
    position: relative;
    padding: 56px 0 28px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(160, 6, 6, 0.05), transparent 35%),
        url("../brand/logo-full-transparent.png") no-repeat right -80px top 40px / 420px auto;
    opacity: 0.32;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-panel__frame,
.signal-card,
.overview-card,
.product-card,
.launch-card,
.cart-drawer,
.product-modal,
.checkout-modal,
.filter-panel {
    box-shadow: var(--shadow-soft);
}

.hero-copy {
    display: grid;
    align-content: start;
    gap: 20px;
    padding: 36px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-copy h1 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(48px, 6vw, 94px);
    font-weight: 600;
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-copy h1 span {
    color: var(--brand-red);
}

.hero-text {
    max-width: 660px;
    margin: 0;
    font-size: 17px;
    line-height: 1.72;
    color: rgba(21, 21, 21, 0.78);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-point {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(21, 21, 21, 0.04);
    border: 1px solid rgba(21, 21, 21, 0.06);
}

.hero-point strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    line-height: 1;
}

.hero-point span {
    display: block;
    margin-top: 6px;
    color: rgba(21, 21, 21, 0.7);
    font-size: 14px;
}

.hero-panel {
    position: relative;
    display: flex;
}

.hero-panel__frame {
    position: relative;
    display: grid;
    gap: 18px;
    width: 100%;
    padding: 34px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(21, 21, 21, 0.96), rgba(21, 21, 21, 0.88)),
        var(--ink);
    color: var(--brand-white);
    overflow: hidden;
}

.hero-panel__frame::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160, 6, 6, 0.6) 0%, rgba(160, 6, 6, 0) 72%);
    pointer-events: none;
}

.hero-panel__label {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.hero-panel__domain {
    font-family: "Oswald", sans-serif;
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: 0.94;
    text-transform: uppercase;
}

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

.hero-stat {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    line-height: 1;
}

.hero-stat span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.hero-panel__footer {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
}

.signal-strip,
.overview-section,
.catalog-section,
.launch-section {
    padding: 24px 0 56px;
}

.signal-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.signal-card {
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(21, 21, 21, 0.06);
}

.signal-card strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    line-height: 1;
}

.signal-card span {
    display: block;
    margin-top: 7px;
    color: rgba(21, 21, 21, 0.68);
    font-size: 14px;
}

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

.roles-section {
    padding: 8px 0 56px;
}

.overview-card,
.launch-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(21, 21, 21, 0.08);
}

.overview-card__status,
.launch-card__status,
.product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-good {
    background: rgba(44, 140, 74, 0.12);
    color: var(--success);
}

.status-warn {
    background: rgba(181, 106, 0, 0.12);
    color: var(--warning);
}

.status-danger {
    background: rgba(160, 6, 6, 0.12);
    color: var(--brand-red);
}

.overview-card h3,
.launch-card h3 {
    margin: 14px 0 12px;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
}

.overview-card p,
.launch-card p {
    margin: 0;
    color: rgba(21, 21, 21, 0.7);
    line-height: 1.65;
}

.family-band {
    display: grid;
    gap: 18px;
    margin-top: 28px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(21, 21, 21, 0.93);
    color: var(--brand-white);
}

.family-band h3 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.family-band .eyebrow {
    color: rgba(255, 255, 255, 0.58);
}

.family-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.family-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.family-chip:hover,
.family-chip.is-active {
    transform: translateY(-1px);
    background: rgba(160, 6, 6, 0.92);
    border-color: rgba(160, 6, 6, 0.92);
}

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

.role-card {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(21, 21, 21, 0.08);
    box-shadow: var(--shadow-soft);
}

.role-card__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.role-card__label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(160, 6, 6, 0.12);
    color: var(--brand-red);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.role-card__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.role-card__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(21, 21, 21, 0.06);
    color: rgba(21, 21, 21, 0.62);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.role-card h3 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    line-height: 0.98;
    text-transform: uppercase;
}

.role-card p {
    margin: 0;
    color: rgba(21, 21, 21, 0.72);
    line-height: 1.7;
}

.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin-bottom: 20px;
}

.filter-panel {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(21, 21, 21, 0.08);
}

.field,
.toggle-field {
    display: grid;
    gap: 8px;
}

.field span,
.toggle-field span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(21, 21, 21, 0.68);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(21, 21, 21, 0.14);
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: rgba(160, 6, 6, 0.44);
    box-shadow: 0 0 0 4px rgba(160, 6, 6, 0.08);
}

.toggle-field {
    align-content: center;
    grid-auto-flow: column;
    justify-content: start;
    gap: 10px;
    padding: 0 8px;
}

.toggle-field input {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-red);
}

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

.product-card {
    display: grid;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(21, 21, 21, 0.08);
}

.product-media {
    position: relative;
    display: grid;
    align-content: end;
    gap: 10px;
    min-height: 220px;
    padding: 20px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(160, 6, 6, 0.1)),
        linear-gradient(180deg, #f2e7db 0%, #e9dacc 100%);
    overflow: hidden;
}

.product-media::after {
    content: "";
    position: absolute;
    right: -14px;
    bottom: -18px;
    width: 120px;
    height: 120px;
    background: url("../brand/logo-full-transparent.png") no-repeat center / contain;
    opacity: 0.12;
    pointer-events: none;
}

.product-media__eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(21, 21, 21, 0.1);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-media__title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    line-height: 0.94;
    text-transform: uppercase;
}

.product-card__body {
    display: grid;
    gap: 14px;
    padding: 20px;
}

.product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-badge {
    background: rgba(21, 21, 21, 0.06);
    color: rgba(21, 21, 21, 0.7);
}

.product-badge--danger {
    background: rgba(160, 6, 6, 0.12);
    color: var(--brand-red);
}

.product-badge--warn {
    background: rgba(181, 106, 0, 0.12);
    color: var(--warning);
}

.product-card h3 {
    margin: 0;
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    line-height: 1.02;
    text-transform: uppercase;
}

.product-card__description {
    margin: 0;
    color: rgba(21, 21, 21, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.product-card__details {
    display: grid;
    gap: 7px;
    padding-top: 14px;
    border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.product-card__details div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px;
    color: rgba(21, 21, 21, 0.72);
}

.product-card__details strong {
    color: var(--ink);
    font-weight: 600;
}

.product-card__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
}

.product-price {
    display: grid;
    gap: 4px;
}

.product-price strong {
    font-family: "Oswald", sans-serif;
    font-size: 36px;
    line-height: 1;
    color: var(--brand-red);
}

.product-price span {
    color: rgba(21, 21, 21, 0.52);
    text-decoration: line-through;
}

.product-card__actions {
    display: flex;
    gap: 10px;
}

.button--small {
    min-height: 44px;
    padding: 0 16px;
}

.catalog-actions {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.site-footer {
    padding: 0 0 40px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    padding: 28px 30px;
    border-radius: var(--radius-lg);
    background: rgba(21, 21, 21, 0.94);
    color: var(--brand-white);
}

.site-footer__logo {
    width: 124px;
}

.site-footer__text,
.site-footer__meta p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.site-footer__meta a {
    color: rgba(255, 255, 255, 0.8);
}

.cart-drawer,
.product-modal,
.checkout-modal {
    border: 0;
    padding: 0;
}

.cart-drawer {
    position: fixed;
    top: 18px;
    right: 18px;
    bottom: 18px;
    width: min(420px, calc(100vw - 36px));
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(21, 21, 21, 0.08);
    transform: translateX(calc(100% + 32px));
    transition: transform 220ms ease;
    z-index: 90;
}

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

.cart-drawer__header,
.cart-drawer__footer {
    padding: 24px;
}

.cart-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.cart-drawer__body {
    overflow: auto;
    padding: 18px 24px;
    display: grid;
    align-content: start;
    gap: 12px;
}

.cart-item,
.empty-state {
    padding: 16px;
    border-radius: 18px;
    background: rgba(21, 21, 21, 0.04);
    border: 1px solid rgba(21, 21, 21, 0.08);
}

.cart-item {
    display: grid;
    gap: 10px;
}

.cart-item__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.cart-item__head h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
}

.cart-item__meta {
    color: rgba(21, 21, 21, 0.65);
    font-size: 13px;
}

.cart-item__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cart-item__stepper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.icon-button,
.stepper-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(21, 21, 21, 0.06);
    color: var(--ink);
}

.stepper-button {
    border: 0;
    cursor: pointer;
}

.cart-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.cart-summary div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(21, 21, 21, 0.04);
}

.cart-summary span {
    display: block;
    font-size: 12px;
    color: rgba(21, 21, 21, 0.62);
}

.cart-summary strong {
    display: block;
    margin-top: 8px;
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    line-height: 1;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease;
    z-index: 80;
}

.overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.product-modal,
.checkout-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(920px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    overflow: auto;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.98);
    transform: translate(-50%, -44%) scale(0.98);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 180ms ease;
    z-index: 95;
}

.product-modal[open],
.checkout-modal[open] {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.product-modal__close,
.checkout-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
}

.product-modal__content {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 0;
}

.product-modal__visual {
    min-height: 100%;
    padding: 32px;
    background:
        linear-gradient(180deg, rgba(242, 231, 219, 0.9), rgba(233, 218, 204, 0.95)),
        url("../brand/logo-full-transparent.png") no-repeat right 18px bottom 18px / 160px auto;
}

.product-modal__visual p {
    margin: 0;
    font-size: 13px;
    color: rgba(21, 21, 21, 0.65);
}

.product-modal__visual h2 {
    margin: 16px 0 0;
    font-family: "Oswald", sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 0.96;
    text-transform: uppercase;
}

.product-modal__body {
    display: grid;
    gap: 18px;
    padding: 32px;
}

.product-modal__body p {
    margin: 0;
    color: rgba(21, 21, 21, 0.74);
    line-height: 1.7;
}

.modal-facts {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(21, 21, 21, 0.04);
}

.modal-facts div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
    color: rgba(21, 21, 21, 0.74);
}

.modal-facts strong {
    color: var(--ink);
}

.checkout-modal {
    padding: 32px;
}

.checkout-form {
    display: grid;
    gap: 22px;
}

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

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

.checkout-summary {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(21, 21, 21, 0.04);
}

.checkout-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: rgba(21, 21, 21, 0.74);
}

.checkout-summary__row--total {
    padding-top: 12px;
    border-top: 1px solid rgba(21, 21, 21, 0.08);
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    color: var(--brand-red);
    text-transform: uppercase;
}

.checkout-actions {
    display: flex;
    justify-content: flex-end;
}

.checkout-feedback {
    margin-top: 20px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(44, 140, 74, 0.08);
    border: 1px solid rgba(44, 140, 74, 0.14);
}

.checkout-feedback p {
    margin: 0;
    color: rgba(21, 21, 21, 0.75);
    line-height: 1.65;
}

.toast-stack {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 10px;
    z-index: 100;
}

.toast {
    min-width: 280px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(21, 21, 21, 0.94);
    color: var(--brand-white);
    box-shadow: var(--shadow-soft);
}

.loading-block {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(21, 21, 21, 0.06);
    text-align: center;
    color: rgba(21, 21, 21, 0.6);
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 980px) {
    .header-bar,
    .hero-grid,
    .site-footer__inner,
    .product-modal__content {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .hero-points,
    .signal-strip__inner,
    .roles-grid,
    .product-grid,
    .checkout-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 720px) {
    .container {
        width: min(calc(100vw - 28px), 100%);
    }

    .site-header {
        position: static;
    }

    .brand-lockup {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .brand-logo {
        width: 112px;
    }

    .hero-copy,
    .hero-panel__frame,
    .overview-card,
    .launch-card,
    .filter-panel,
    .checkout-modal,
    .site-footer__inner {
        padding: 22px;
    }

    .hero-points,
    .signal-strip__inner,
    .overview-grid,
    .roles-grid,
    .product-grid,
    .filter-panel,
    .checkout-form__grid {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: start;
    }

    .product-card__footer,
    .product-card__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .cart-button,
    .button--small {
        width: 100%;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cart-drawer {
        top: 10px;
        right: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
    }

    .product-modal,
    .checkout-modal {
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
    }
}
