:root {
    --ink: #181815;
    --muted: #6f6a61;
    --paper: #f7f3ec;
    --paper-deep: #eee7dc;
    --white: #fffdf9;
    --line: rgba(24, 24, 21, .13);
    --accent: #b6422f;
    --accent-dark: #8e2f20;
    --blue: #1548a4;
    --radius-lg: 32px;
    --radius-md: 20px;
    --shadow: 0 24px 70px rgba(55, 44, 30, .11);
    --shell: min(1220px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--white);
    color: var(--ink);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background-image: radial-gradient(circle at 12% 8%, rgba(216, 196, 162, .18), transparent 26%), radial-gradient(circle at 82% 24%, rgba(227, 216, 196, .24), transparent 27%);
    content: "";
    pointer-events: none;
}

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

button,
input,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

button {
    color: inherit;
}

.tracking-pixel,
.tracking-frame {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    border: 0;
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.support-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    gap: 9px;
    background: #173d85;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.flag-mark {
    display: grid;
    width: 24px;
    height: 15px;
    overflow: hidden;
    border-radius: 2px;
}

.flag-mark i:first-child {
    background: #1d70c9;
}

.flag-mark i:last-child {
    background: #ffd33d;
}

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 76px;
    padding: 0 max(24px, calc((100% - 1220px) / 2));
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, .9);
    backdrop-filter: blur(18px);
}

.wordmark {
    display: inline-flex;
    align-items: baseline;
    width: max-content;
    gap: 8px;
    text-decoration: none;
    letter-spacing: .18em;
}

.wordmark span {
    font-family: "Prata", serif;
    font-size: 18px;
}

.wordmark b {
    color: var(--accent);
    font-size: 11px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.header-nav a,
.footer-links a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.header-nav a:hover,
.footer-links a:hover {
    color: var(--ink);
}

.header-order {
    justify-self: end;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
    gap: clamp(44px, 6vw, 92px);
    padding-block: 54px 78px;
}

.mobile-color-picker {
    display: none;
}

.product-visual {
    position: relative;
    min-width: 0;
}

.photo-stage {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--paper-deep);
    box-shadow: var(--shadow);
}

.main-product-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .22s ease, transform .55s ease;
}

.photo-stage:hover .main-product-photo {
    transform: scale(1.015);
}

.main-product-photo.is-changing {
    opacity: .2;
}

.photo-badge {
    position: absolute;
    z-index: 4;
    top: -17px;
    right: auto;
    left: -8px;
    transform: none;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    background: rgba(24, 24, 21, .72);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.photo-zoom {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .88);
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.gallery-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
    backdrop-filter: blur(8px);
}

.gallery-arrow:hover {
    transform: translateY(-50%) scale(1.07);
    background: #fff;
}

.gallery-arrow--prev {
    left: 18px;
}

.gallery-arrow--next {
    right: 18px;
}

.thumbnail-track {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    padding: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}

.thumbnail-track::-webkit-scrollbar,
.color-slider::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    flex: 0 0 84px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 14px;
    background: var(--paper);
    cursor: pointer;
    transition: border-color .2s ease, transform .2s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.is-active {
    border-color: var(--ink);
}

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

.product-summary {
    align-self: start;
    padding-top: 26px;
}

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

.product-summary h1,
.section-copy h2,
.section-heading h2,
.order-card h2 {
    margin: 0;
    font-family: "Prata", Georgia, serif;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.02em;
}

.product-summary h1 {
    max-width: 540px;
    font-size: clamp(40px, 4.2vw, 66px);
}

.product-lead {
    max-width: 550px;
    margin: 22px 0;
    color: var(--muted);
    font-size: 16px;
}

.rating-line {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}

.rating-line > span,
.review-grid figcaption span {
    color: #d88b19;
    letter-spacing: .08em;
}

.rating-line a {
    margin-left: 4px;
    color: var(--muted);
    text-underline-offset: 3px;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.price-block > div {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-block strong {
    font-size: 34px;
    letter-spacing: -.04em;
}

.old-price {
    color: #969087;
    font-size: 16px;
    text-decoration: line-through;
}

.discount-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f1d9d3;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
}

.saving-copy {
    margin: 2px 0 25px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.choice-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 12px;
}

.choice-heading > div:first-child {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 13px;
}

.selected-color-name {
    font-size: 13px;
}

.choice-controls {
    display: flex;
    gap: 6px;
}

.choice-controls button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.color-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 2px 2px 8px;
    overflow: visible;
    scroll-snap-type: none;
}

.color-option {
    flex: 0 0 148px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    cursor: pointer;
    scroll-snap-align: start;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

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

.color-option.is-active {
    border-color: var(--ink);
    box-shadow: 0 0 0 1px var(--ink);
}

.color-option > img {
    width: 100%;
    aspect-ratio: 1.65 / 1;
    object-fit: cover;
    object-position: center 27%;
    border-radius: 12px;
}

.color-option-copy {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 6px 5px;
}

.color-option-copy i {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 50%;
    background: var(--swatch);
}

.color-option-copy b {
    font-size: 12px;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 22px 0;
    border-block: 1px solid var(--line);
}

.product-specs div {
    padding: 15px 4px;
}

.product-specs div + div {
    padding-left: 22px;
    border-left: 1px solid var(--line);
}

.product-specs dt {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-specs dd {
    margin: 3px 0 0;
    font-size: 13px;
    font-weight: 700;
}

.primary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 14px 30px rgba(182, 66, 47, .22);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.primary-button span {
    margin-left: auto;
    font-size: 20px;
}

.primary-button:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
    box-shadow: 0 18px 36px rgba(142, 47, 32, .25);
}

.purchase-notes {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 21px;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--paper);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.countdown div {
    display: flex;
    align-items: center;
    color: var(--ink);
    font-size: 17px;
    letter-spacing: .06em;
}

.countdown i {
    margin: 0 5px;
    color: var(--accent);
    font-style: normal;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    border-block: 1px solid var(--line);
    background: var(--paper);
}

.trust-row div {
    padding: 26px 40px;
    text-align: center;
}

.trust-row div + div {
    border-left: 1px solid var(--line);
}

.trust-row strong,
.trust-row span {
    display: block;
}

.trust-row strong {
    font-family: "Prata", serif;
    font-size: 18px;
    font-weight: 400;
}

.trust-row span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.size-section {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    gap: clamp(40px, 7vw, 110px);
    padding-block: 120px;
}

.section-copy h2,
.section-heading h2,
.order-card h2 {
    font-size: clamp(34px, 4vw, 56px);
}

.section-copy > p:not(.eyebrow) {
    margin: 22px 0;
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    gap: 16px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ink);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.size-card {
    padding: clamp(18px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow);
}

.size-card img {
    width: 100%;
}

.advantages {
    padding-bottom: 120px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 46px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.advantage-grid article {
    position: relative;
    min-height: 340px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper);
}

.advantage-grid article:nth-child(2) {
    background: #e7ece5;
}

.advantage-grid article:nth-child(3) {
    background: #ece5de;
}

.feature-number {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.advantage-grid img {
    width: 82px;
    height: 82px;
    margin: 40px 0 25px;
    object-fit: contain;
    opacity: .82;
}

.advantage-grid h3,
.steps-grid h3 {
    margin: 0 0 8px;
    font-family: "Prata", serif;
    font-size: 21px;
    font-weight: 400;
}

.advantage-grid p,
.steps-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.reviews-section {
    padding-block: 110px;
    background: #1f211e;
    color: #fff;
}

.section-heading--light .eyebrow {
    color: #e7a89d;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.review-grid figure {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    background: #292c28;
}

.review-grid figure > img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
}

.review-grid figcaption {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    padding: 34px;
}

.review-grid figcaption p {
    margin: 15px 0 0;
    font-family: "Prata", serif;
    font-size: clamp(17px, 1.6vw, 23px);
    line-height: 1.5;
}

.steps-section {
    padding-block: 120px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-grid li {
    display: flex;
    align-items: flex-start;
    min-height: 175px;
    gap: 22px;
    padding: 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps-grid li + li {
    border-left: 1px solid var(--line);
}

.steps-grid li > span {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
}

.order-section {
    padding-block: 90px;
    background: var(--paper-deep);
}

.order-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow);
}

.order-visual {
    position: relative;
    min-height: 760px;
    overflow: hidden;
}

.order-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-visual > span {
    position: absolute;
    top: 25px;
    left: 25px;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.order-card {
    align-self: center;
    padding: clamp(40px, 6vw, 78px);
}

.order-card > p:not(.eyebrow, .form-note) {
    margin: 20px 0 30px;
    color: var(--muted);
}

.order-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.order-form label {
    display: grid;
    gap: 7px;
}

.order-form label > span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.order-form input,
.order-form select {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: 0;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.order-form input:focus,
.order-form select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(182, 66, 47, .11);
}

.order-form .primary-button {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.form-note {
    margin: 13px 0 0;
    color: #959087;
    font-size: 10px;
    text-align: center;
}

.site-footer {
    padding-block: 52px;
    background: #181916;
    color: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    gap: 60px;
}

.footer-mark {
    font-family: "Prata", serif;
    font-size: 17px;
    letter-spacing: .12em;
}

.footer-inner p {
    margin: 14px 0 0;
    color: #a6a79f;
    font-size: 11px;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: #c5c6bf;
}

.photo-dialog {
    width: min(820px, calc(100% - 30px));
    max-height: 94vh;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 22px;
    background: transparent;
}

.photo-dialog::backdrop {
    background: rgba(14, 14, 13, .88);
    backdrop-filter: blur(8px);
}

.photo-dialog img {
    width: 100%;
    max-height: 90vh;
    border-radius: 22px;
    object-fit: contain;
}

.photo-dialog button {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    cursor: pointer;
    font-size: 26px;
}

@media (max-width: 1020px) {
    :root {
        --shell: min(100% - 36px, 880px);
    }

    .site-header {
        grid-template-columns: 1fr auto;
        padding-inline: 18px;
    }

    .header-nav {
        display: none;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
        gap: 34px;
    }

    .product-summary h1 {
        font-size: 42px;
    }

    .product-lead {
        font-size: 14px;
    }

    .review-grid figure {
        display: flex;
    }

    .review-grid figure > img {
        height: auto;
    }

    .order-card {
        padding: 40px;
    }

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

    .order-form .primary-button {
        grid-column: auto;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    :root {
        --radius-lg: 24px;
        --radius-md: 18px;
        --shell: calc(100% - 28px);
    }

    html {
        scroll-padding-top: 72px;
    }

    .support-banner {
        min-height: 32px;
        font-size: 10px;
    }

    .site-header {
        min-height: 64px;
    }

    .wordmark span {
        font-size: 15px;
    }

    .header-order {
        padding: 9px 15px;
        font-size: 11px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        gap: 28px;
        padding-block: 18px 56px;
    }

    .mobile-color-picker {
        display: block;
        padding: 16px 14px 10px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 12px 32px rgba(55, 44, 30, .08);
    }

    .mobile-color-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .mobile-color-head > div:first-child {
        display: flex;
        align-items: baseline;
        gap: 8px;
        font-size: 13px;
    }

    .mobile-color-slider {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin: 0;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    .color-option--mobile {
        display: grid;
        grid-template-columns: 40px 1fr;
        align-items: center;
        width: 100%;
        min-width: 0;
        padding: 4px;
        border-radius: 13px;
    }

    .color-option--mobile > img {
        width: 40px;
        height: 40px;
        aspect-ratio: 1;
        border-radius: 9px;
    }

    .color-option--mobile .color-option-copy {
        min-width: 0;
        padding: 6px 8px;
    }

    .color-option--mobile .color-option-copy i {
        display: none;
    }

    .color-option--mobile .color-option-copy b {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .product-summary > .choice-heading,
    .product-summary > .color-slider {
        display: none;
    }

    .photo-stage {
        aspect-ratio: .82;
        border-radius: 20px;
    }

    .photo-badge {
        top: -17px;
        right: auto;
        left: -8px;
    }

    .photo-zoom {
        top: 10px;
        right: 10px;
    }

    .gallery-arrow {
        top: auto;
        bottom: 14px;
        width: 42px;
        height: 42px;
        transform: none;
    }

    .gallery-arrow:hover {
        transform: none;
    }

    .gallery-arrow--prev {
        right: 65px;
        left: auto;
    }

    .gallery-arrow--next {
        right: 14px;
    }

    .thumbnail {
        flex-basis: 68px;
        border-radius: 11px;
    }

    .product-summary {
        padding-top: 0;
    }

    .product-summary h1 {
        font-size: clamp(36px, 11vw, 48px);
    }

    .product-lead {
        margin-block: 16px;
    }

    .price-block strong {
        font-size: 30px;
    }

    .color-option {
        flex-basis: 136px;
    }

    .purchase-notes {
        gap: 10px;
    }

    .trust-row {
        grid-template-columns: 1fr;
    }

    .trust-row div {
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        align-items: center;
        padding: 18px 24px;
        text-align: left;
    }

    .trust-row div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .trust-row span {
        margin-top: 0;
    }

    .size-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 78px;
    }

    .section-copy h2,
    .section-heading h2,
    .order-card h2 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .size-card {
        padding: 12px;
        border-radius: 18px;
    }

    .advantages {
        padding-bottom: 78px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .advantage-grid,
    .review-grid,
    .steps-grid,
    .order-inner {
        grid-template-columns: 1fr;
    }

    .advantage-grid article {
        display: grid;
        grid-template-columns: 74px 1fr;
        min-height: 0;
        column-gap: 20px;
        padding: 24px;
    }

    .advantage-grid .feature-number {
        grid-column: 1 / -1;
    }

    .advantage-grid img {
        grid-row: 2 / 4;
        width: 68px;
        height: 68px;
        margin: 22px 0 0;
    }

    .advantage-grid h3 {
        margin-top: 22px;
    }

    .reviews-section,
    .steps-section {
        padding-block: 78px;
    }

    .review-grid figure {
        display: block;
        min-height: 0;
    }

    .review-grid figure > img {
        width: 100%;
        height: auto;
        object-fit: contain;
        background: #fff;
    }

    .review-grid figcaption {
        padding: 20px 22px 24px;
    }

    .review-grid figcaption p {
        font-size: 16px;
    }

    .steps-grid li {
        min-height: 0;
        padding: 24px 6px;
    }

    .steps-grid li + li {
        border-top: 0;
        border-left: 0;
    }

    .order-section {
        padding-block: 28px;
    }

    .order-visual {
        min-height: 480px;
    }

    .order-card {
        padding: 34px 20px 38px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 28px;
    }
}

@media (max-width: 420px) {
    .product-specs {
        grid-template-columns: 1fr;
    }

    .product-specs div + div {
        padding-left: 4px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .countdown {
        padding-inline: 13px;
    }

    .countdown > span {
        max-width: 120px;
    }

    .purchase-notes {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
}

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