:root {
    --order-ink: #111111;
    --order-muted: rgba(17, 17, 17, 0.56);
    --order-red: #b20f18;
    --order-line: rgba(17, 17, 17, 0.11);
    --order-glass-line: rgba(255, 255, 255, 0.78);
    --order-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --order-footer-space: 58px;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f6f6f4;
    color: var(--order-ink);
}

body {
    font-family: var(--font-acumin);
}

body::before,
body::after {
    content: none;
}

body > header {
    z-index: 2100;
    color: var(--order-ink);
    background: #ffffff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.06);
    transition: background 260ms ease, box-shadow 260ms ease, color 260ms ease;
}

body.order-intro-chrome > header {
    background: transparent;
    box-shadow: none;
}

body > header::before,
body > header::after {
    content: none;
    display: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

body > header nav ul li,
body > header nav ul li a {
    color: var(--order-ink) !important;
}

body > header nav ul li:last-child a {
    color: var(--order-red) !important;
    font-style: italic;
}

.site-copyright {
    z-index: 1900;
    color: var(--order-ink);
}

.site-copyright.site-legal-footer {
    bottom: 0;
}

body.site-chrome-dark > header nav ul li,
body.site-chrome-dark > header nav ul li a {
    color: #ffffff !important;
}

body.site-chrome-dark > header nav ul li:last-child a {
    color: var(--order-red) !important;
}

body.site-chrome-dark .site-copyright {
    color: #ffffff;
}

body.site-chrome-light > header nav ul li,
body.site-chrome-light > header nav ul li a {
    color: var(--order-ink) !important;
}

body.site-chrome-light > header nav ul li:last-child a {
    color: var(--order-red) !important;
}

body.order-email-footer-contrast .site-copyright,
body.order-email-footer-contrast .site-legal-link,
body.order-email-footer-contrast .site-legal-separator {
    color: #ffffff !important;
}

.order-page {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f7f7f5 0%, #f2f2f0 100%);
}

.order-journey {
    position: absolute;
    inset: 0;
    z-index: 40;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-x: none;
    overscroll-behavior-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-snap-stop: always;
    scrollbar-width: none;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

.order-page[data-active-section="intro"] .order-journey {
    pointer-events: none;
}

.order-journey::-webkit-scrollbar,
.order-offer-rail::-webkit-scrollbar,
.order-category-tabs::-webkit-scrollbar,
.order-brief-form::-webkit-scrollbar {
    display: none;
}

.order-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.order-visual {
    --visual-width: min(58vw, 760px);
    --visual-height: calc(100dvh - var(--header-height) - var(--order-footer-space) - 84px);
    --visual-top: calc(var(--header-height) + env(safe-area-inset-top) + 20px);
    --visual-scale: 1;
    --visual-opacity: 1;
    position: fixed;
    top: var(--visual-top);
    left: 50%;
    z-index: 20;
    width: var(--visual-width);
    height: var(--visual-height);
    margin: 0;
    overflow: visible;
    border: 0;
    border-radius: 8px;
    background: transparent;
    opacity: var(--visual-opacity);
    cursor: pointer;
    pointer-events: auto;
    transform: translate3d(-50%, 0, 0) scale(var(--visual-scale));
    transform-origin: center top;
    will-change: width, height, top, opacity, transform;
}

.order-visual:focus-visible {
    outline: 2px solid rgba(178, 15, 24, 0.68);
    outline-offset: 5px;
}

.order-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    filter: saturate(0.94) contrast(1.01);
    opacity: 1;
    transform: scale(1);
    box-shadow: none;
    transition:
        opacity 300ms ease,
        filter 360ms ease,
        transform 420ms var(--order-ease);
}

.order-visual.is-changing img {
    filter: saturate(0.82);
    opacity: 0.28;
    transform: scale(0.985);
}

.order-visual-shade,
.order-visual figcaption,
.order-intro-copy,
.order-scroll-cue {
    display: none !important;
}

.order-visual-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 42%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 46%);
}

.order-visual figcaption {
    position: absolute;
    right: clamp(18px, 3vw, 44px);
    bottom: clamp(18px, 3vw, 42px);
    left: clamp(18px, 3vw, 44px);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.36);
    transition:
        opacity 320ms ease,
        transform 420ms var(--order-ease);
}

.order-visual figcaption span {
    font-size: 10px;
    font-weight: 500;
}

.order-visual figcaption strong {
    max-width: 60%;
    font-size: clamp(24px, 4vw, 56px);
    font-weight: 200;
    line-height: 0.95;
    text-align: right;
}

.order-page[data-active-section="machine"] .order-visual figcaption {
    opacity: 0;
    transform: translateY(-8px);
}

.order-intro-copy {
    position: absolute;
    top: 50%;
    left: clamp(34px, 7vw, 112px);
    z-index: 60;
    max-width: min(760px, 72vw);
    color: #ffffff;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-36%);
}

.order-intro-copy > span {
    font-size: 11px;
    font-weight: 500;
}

.order-intro-copy h1 {
    max-width: 760px;
    margin: 16px 0 0;
    font-size: clamp(54px, 8.2vw, 128px);
    font-weight: 200;
    line-height: 0.87;
    letter-spacing: 0;
}

.order-intro-copy p {
    max-width: 500px;
    margin: 24px 0 0;
    font-size: clamp(14px, 1.4vw, 20px);
    font-weight: 300;
    line-height: 1.38;
}

.order-scroll-cue {
    position: absolute;
    right: 50%;
    bottom: calc(var(--order-footer-space) + 18px);
    z-index: 70;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
    transform: translateX(50%);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.order-scroll-cue span {
    position: absolute;
    top: 11px;
    left: 50%;
    width: 1px;
    height: 21px;
    background: #ffffff;
    transform: translateX(-50%);
    animation: order-cue 1.7s ease-in-out infinite;
}

.order-scroll-cue span::after {
    content: "";
    position: absolute;
    right: -3px;
    bottom: 0;
    width: 7px;
    height: 7px;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    transform: rotate(45deg);
}

@keyframes order-cue {
    0%,
    100% {
        opacity: 0.38;
        transform: translate(-50%, -3px);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 4px);
    }
}

.order-glass-panel {
    position: absolute;
    z-index: 80;
    overflow: hidden;
    border: 1px solid var(--order-glass-line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 245, 0.91)),
        rgba(250, 250, 248, 0.94);
    -webkit-backdrop-filter: blur(12px) saturate(112%);
    backdrop-filter: blur(12px) saturate(112%);
    box-shadow:
        0 28px 92px rgba(21, 21, 21, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.order-glass-panel.is-attention {
    animation: order-panel-attention 900ms var(--order-ease);
}

@keyframes order-panel-attention {
    0%,
    100% {
        box-shadow:
            0 28px 92px rgba(21, 21, 21, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.96);
    }

    45% {
        border-color: rgba(178, 15, 24, 0.34);
        box-shadow:
            0 28px 100px rgba(178, 15, 24, 0.15),
            0 0 0 7px rgba(178, 15, 24, 0.055),
            inset 0 1px 0 rgba(255, 255, 255, 0.96);
    }
}

.order-offer-panel {
    --offer-opacity: 1;
    --offer-shift: 0px;
    --offer-scale: 1;
    top: 38dvh;
    right: clamp(18px, 2.5vw, 42px);
    bottom: 8px;
    left: clamp(18px, 2.5vw, 42px);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    opacity: var(--offer-opacity);
    transform: translate3d(0, var(--offer-shift), 0) scale(var(--offer-scale));
    transform-origin: center top;
    will-change: opacity, transform;
}

@media (min-width: 681px) {
    .order-offer-panel .order-panel-header {
        min-height: 96px;
        padding-block: 14px;
    }

    .order-offer-panel .order-panel-header h2 {
        font-size: clamp(34px, 4vw, 58px);
    }

    .order-offer-panel .order-panel-header p {
        margin-top: 6px;
    }

    .order-offer-panel .order-category-tabs {
        padding-block: 7px;
    }

    .order-offer-panel .order-category-tab {
        min-height: 42px;
    }

    .order-offer-panel .order-offer-rail {
        padding-block: 10px;
    }

    .order-offer-panel .order-offer-card {
        gap: 8px;
        padding: 14px;
    }

    .order-offer-panel .order-card-copy p {
        display: -webkit-box;
        margin-top: 6px;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .order-offer-panel .order-card-meta {
        padding-top: 8px;
    }

    .order-offer-panel .order-card-toggle {
        min-height: 38px;
    }
}

.order-machine-panel {
    --machine-opacity: 1;
    --machine-shift: 0px;
    --machine-scale: 1;
    top: calc(var(--header-height) + env(safe-area-inset-top) + 4px);
    right: clamp(18px, 2.5vw, 42px);
    bottom: 8px;
    left: clamp(18px, 2.5vw, 42px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    opacity: var(--machine-opacity);
    transform: translate3d(0, var(--machine-shift), 0) scale(var(--machine-scale));
    transform-origin: center top;
    will-change: opacity, transform;
}

.order-panel-header {
    position: relative;
    inset: auto;
    z-index: 2;
    width: auto;
    height: auto;
    min-height: 116px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    padding: 20px clamp(20px, 3.2vw, 44px);
    border-bottom: 1px solid var(--order-line);
    background: transparent;
    color: var(--order-ink);
}

.order-panel-header::before,
.order-panel-header::after {
    content: none;
}

.order-panel-header > div:first-child {
    min-width: 0;
}

.order-panel-header-action {
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    touch-action: manipulation;
    transition:
        color 180ms ease,
        transform 220ms var(--order-ease);
}

.order-panel-header-action::before {
    content: "";
    position: absolute;
    inset: -10px -14px;
    border-radius: 14px;
}

.order-panel-header-action:hover,
.order-panel-header-action:focus-visible {
    transform: translateY(-1px);
}

.order-panel-header-action:focus-visible::before {
    outline: 1px solid rgba(178, 15, 24, 0.34);
    outline-offset: 3px;
}

.order-panel-header > div:first-child > span {
    color: var(--order-red);
    font-size: 9px;
    font-weight: 500;
}

.order-panel-header h2 {
    margin: 4px 0 0;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 200;
    line-height: 0.88;
}

.order-panel-header p {
    max-width: 660px;
    margin: 10px 0 0;
    color: var(--order-muted);
    font-size: 11px;
    line-height: 1.4;
}

.order-selection-summary {
    flex: 0 0 auto;
    display: grid;
    justify-items: end;
    gap: 5px;
}

.order-selection-summary span {
    color: var(--order-muted);
    font-size: 9px;
}

.order-selection-summary strong {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 300;
    line-height: 1;
}

.order-category-tabs {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 10px clamp(16px, 3vw, 38px);
    border-bottom: 1px solid var(--order-line);
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
}

.order-category-tab {
    min-width: 148px;
    min-height: 48px;
    display: grid;
    align-content: center;
    gap: 2px;
    flex: 0 0 auto;
    padding: 7px 13px;
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    color: var(--order-muted);
    text-align: left;
    font: inherit;
    cursor: pointer;
    transition:
        color 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        transform 280ms var(--order-ease);
}

.order-category-tab strong {
    font-size: 11px;
    font-weight: 400;
}

.order-category-tab span {
    max-width: 128px;
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-category-tab:hover,
.order-category-tab:focus-visible,
.order-category-tab.is-active {
    border-color: rgba(178, 15, 24, 0.24);
    background: rgba(178, 15, 24, 0.065);
    color: var(--order-red);
    outline: none;
    transform: translateY(-1px);
}

.order-offer-rail {
    min-height: 0;
    display: flex;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    overscroll-behavior-block: auto;
    padding: 14px clamp(16px, 3vw, 38px);
    scroll-padding-inline: clamp(16px, 3vw, 38px);
    scroll-snap-type: none;
    scrollbar-width: none;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

.order-offer-card {
    position: relative;
    min-width: clamp(260px, 25vw, 360px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: 14px;
    flex: 0 0 clamp(260px, 25vw, 360px);
    padding: 17px;
    scroll-snap-align: none;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.25)),
        rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    transition:
        border-color 260ms ease,
        background 260ms ease,
        transform 360ms var(--order-ease),
        box-shadow 260ms ease;
}

.order-offer-card:hover {
    transform: translateY(-3px);
}

.order-offer-card.is-selected {
    border-color: rgba(178, 15, 24, 0.28);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(178, 15, 24, 0.07)),
        rgba(255, 255, 255, 0.38);
    box-shadow:
        0 12px 34px rgba(178, 15, 24, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.order-offer-card.is-in-cart {
    border-color: rgba(178, 15, 24, 0.45);
}

.order-offer-card.is-placeholder .order-card-index,
.order-offer-card.is-placeholder .order-card-face,
.order-offer-card.is-placeholder .order-card-meta,
.order-offer-card.is-placeholder:not(.is-in-cart) .order-card-selection {
    visibility: hidden;
}

.order-card-hold-ring {
    --card-hold-progress: 0%;
    position: absolute;
    inset: -2px;
    z-index: 6;
    padding: 3px;
    border-radius: 9px;
    background: conic-gradient(from -90deg, #ff1a2c var(--card-hold-progress), transparent 0);
    opacity: 0;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.order-offer-card.is-holding .order-card-hold-ring {
    opacity: 1;
    animation: order-card-hold-progress 1.2s linear forwards;
}

.order-offer-card.is-hold-complete .order-card-hold-ring {
    --card-hold-progress: 100%;
    opacity: 1;
    filter: none;
}

@property --card-hold-progress {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}

@keyframes order-card-hold-progress {
    to {
        --card-hold-progress: 100%;
    }
}

.order-card-index {
    display: flex;
    justify-content: space-between;
    color: var(--order-red);
    font-size: 8px;
    font-weight: 500;
}

.order-card-copy h3 {
    margin: 0;
    font-size: clamp(25px, 2.5vw, 38px);
    font-weight: 250;
    line-height: 0.96;
}

.order-card-copy p {
    margin: 10px 0 0;
    color: var(--order-muted);
    font-size: 10px;
    line-height: 1.4;
}

.order-card-flip {
    position: relative;
    min-height: 92px;
    transform-style: preserve-3d;
    transition: transform 520ms var(--order-ease);
}

.order-card-face {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    backface-visibility: hidden;
}

.order-card-face h3 {
    max-width: 100%;
    margin: 0;
    overflow-wrap: anywhere;
    font-size: clamp(23px, 2.4vw, 36px);
    font-weight: 250;
    line-height: 0.96;
}

.order-card-face p {
    margin: 8px 0 0;
    color: var(--order-muted);
    font-size: 9px;
    line-height: 1.4;
}

.order-card-face-back {
    transform: rotateY(180deg);
}

.order-card-face-back span {
    color: var(--order-red);
    font-size: 8px;
    font-weight: 500;
}

.order-card-face-back p {
    max-height: 72px;
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.order-offer-card.is-detail .order-card-flip {
    transform: rotateY(180deg);
}

.order-card-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--order-line);
}

.order-card-meta span {
    color: var(--order-muted);
    font-size: 8px;
}

.order-card-meta strong {
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
}

.order-card-toggle,
.order-next-button,
.order-cookie-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 15px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--order-ink);
    font: inherit;
    font-size: 10px;
    cursor: pointer;
    transition:
        color 220ms ease,
        border-color 220ms ease,
        background 220ms ease,
        transform 280ms var(--order-ease);
}

.order-card-toggle {
    justify-content: space-between;
}

.order-card-toggle i {
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
}

.order-card-toggle:hover,
.order-card-toggle:focus-visible,
.order-offer-card.is-selected .order-card-toggle,
.order-next-button:hover,
.order-next-button:focus-visible,
.order-cookie-button:hover,
.order-cookie-button:focus-visible {
    border-color: rgba(178, 15, 24, 0.28);
    background: rgba(178, 15, 24, 0.07);
    color: var(--order-red);
    outline: none;
    transform: translateY(-1px);
}

.order-panel-footer {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px clamp(16px, 3vw, 38px);
    border-top: 1px solid var(--order-line);
}

.order-panel-footer > span {
    color: var(--order-muted);
    font-size: 9px;
}

.order-next-button {
    min-width: 156px;
}

.order-brief-status {
    min-width: 185px;
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 2px 8px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(178, 15, 24, 0.16);
    border-radius: 8px;
    background: rgba(178, 15, 24, 0.05);
}

.order-brief-status > span {
    width: 9px;
    height: 9px;
    grid-row: 1 / 3;
    border: 1px solid var(--order-red);
    border-radius: 50%;
}

.order-brief-status strong {
    font-size: 10px;
    font-weight: 400;
}

.order-brief-status small {
    color: var(--order-muted);
    font-size: 8px;
}

.order-brief-status[data-complete="true"] {
    border-color: rgba(39, 112, 73, 0.18);
    background: rgba(39, 112, 73, 0.06);
}

.order-brief-status[data-complete="true"] > span {
    border-color: #277049;
    background: #277049;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.order-brief-form {
    --order-brief-form-x: clamp(20px, 4vw, 58px);
    --order-brief-form-bottom: 160px;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 var(--order-brief-form-x) var(--order-brief-form-bottom);
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 17, 17, 0.18) transparent;
}

.order-brief-section {
    display: grid;
    grid-template-columns: minmax(210px, 0.36fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 86px);
    padding: clamp(30px, 4vw, 58px) 0;
    border-bottom: 1px solid var(--order-line);
}

.order-brief-section:last-child {
    border-bottom: 0;
}

.order-brief-heading {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.order-brief-heading > span {
    color: var(--order-red);
    font-size: 9px;
}

.order-brief-heading h3 {
    margin: 0;
    font-size: clamp(23px, 2.8vw, 40px);
    font-weight: 250;
    line-height: 0.98;
}

.order-brief-heading p {
    max-width: 290px;
    margin: 10px 0 0;
    color: var(--order-muted);
    font-size: 10px;
    line-height: 1.4;
}

.order-choice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.order-choice-grid label {
    position: relative;
    min-width: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 10px 13px;
    border: 1px solid rgba(17, 17, 17, 0.11);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    transition:
        color 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        transform 280ms var(--order-ease);
}

.order-choice-grid input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.order-choice-grid span {
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-choice-grid span::before {
    content: "";
    width: 9px;
    height: 9px;
    display: inline-block;
    margin-right: 8px;
    border: 1px solid rgba(17, 17, 17, 0.22);
    border-radius: 2px;
    vertical-align: -1px;
    transition:
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.order-choice-grid label:hover,
.order-choice-grid label:has(input:focus-visible),
.order-choice-grid label:has(input:checked) {
    border-color: rgba(178, 15, 24, 0.28);
    background: rgba(178, 15, 24, 0.065);
    color: var(--order-red);
    transform: translateY(-1px);
}

.order-choice-grid label:has(input:checked) span::before {
    border-color: var(--order-red);
    background: var(--order-red);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.order-choice-grid.has-error {
    padding: 6px;
    border: 1px solid rgba(178, 15, 24, 0.3);
    border-radius: 8px;
    animation: order-error-pulse 560ms ease;
}

.order-brief-fields {
    grid-template-columns: minmax(210px, 0.36fr) repeat(2, minmax(0, 1fr));
}

.order-brief-send {
    align-items: center;
    border-bottom: 0;
}

.order-brief-send-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.order-brief-send-button {
    min-width: 0;
    min-height: 72px;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 5px;
    padding: 15px 18px;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.56);
    color: var(--order-ink);
    cursor: pointer;
    text-align: left;
    transition:
        color 220ms ease,
        border-color 220ms ease,
        background 220ms ease,
        transform 280ms var(--order-ease);
}

.order-brief-send-button span {
    font-size: 13px;
}

.order-brief-send-button small {
    color: var(--order-muted);
    font-size: 9px;
}

.order-brief-send-button:hover,
.order-brief-send-button:focus-visible {
    border-color: rgba(178, 15, 24, 0.34);
    background: rgba(178, 15, 24, 0.06);
    color: var(--order-red);
    outline: none;
    transform: translateY(-1px);
}

.order-field {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 7px;
}

.order-field > span {
    color: var(--order-muted);
    font-size: 9px;
}

.order-field input,
.order-field textarea,
.order-field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.54);
    color: var(--order-ink);
    font: inherit;
    font-size: 12px;
    line-height: 1.4;
    transition:
        border-color 220ms ease,
        background 220ms ease,
        box-shadow 220ms ease;
}

.order-field textarea {
    min-height: 124px;
    resize: vertical;
}

.order-brief-comment-section {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.order-brief-comment-section .order-field-wide {
    grid-column: 1;
}

.order-brief-comment-section .order-brief-heading p {
    max-width: 520px;
}

.order-brief-comment-section .order-field textarea {
    min-height: clamp(190px, 25vh, 320px);
}

.order-newsletter-field {
    grid-column: 2 / 4;
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.order-newsletter-field input {
    width: 18px;
    height: 18px;
    min-height: 0;
    flex: 0 0 18px;
    margin-top: 1px;
    padding: 0;
    accent-color: var(--order-red);
}

.order-newsletter-field > span {
    color: var(--order-ink);
    font-size: 10px;
    line-height: 1.35;
}

.order-email-continue-section {
    --order-email-pad: clamp(24px, 3.4vw, 44px);
    position: relative;
    align-items: stretch;
    margin-inline: calc(-1 * var(--order-brief-form-x));
    margin-bottom: calc(-1 * var(--order-brief-form-bottom));
    padding:
        var(--order-email-pad)
        calc(var(--order-brief-form-x) + var(--order-email-pad))
        calc(var(--order-email-pad) + var(--order-brief-form-bottom));
    border: 0;
    border-radius: clamp(14px, 2vw, 24px) clamp(14px, 2vw, 24px) 0 0;
    background:
        radial-gradient(circle at 78% 12%, rgba(178, 15, 24, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(0, 0, 0, 0.96));
    color: #f8f8f8;
    overflow: hidden;
    box-shadow: none;
}

.order-email-continue-section .order-brief-heading {
    grid-row: span 2;
}

.order-email-continue-section .order-brief-heading h3 {
    color: #f8f8f8;
}

.order-email-continue-section .order-brief-heading p,
.order-email-continue-section .order-field > span {
    color: rgba(255, 255, 255, 0.58);
}

.order-email-continue-section > .order-field[data-required-field="email"] {
    grid-column: 2 / 4;
}

.order-email-continue-section .order-newsletter-field {
    grid-column: 2 / 4;
    border-color: rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.07);
}

.order-email-continue-section .order-newsletter-field > span {
    color: rgba(255, 255, 255, 0.82);
}

.order-email-continue-section .order-field input {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.order-email-continue-section .order-field input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.order-email-continue-section .order-field input:focus {
    border-color: rgba(178, 15, 24, 0.42);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(178, 15, 24, 0.12);
}

.order-email-verify-card {
    grid-column: 2 / 4;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(240px, 1fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
}

.order-email-verify-card span {
    display: block;
    color: var(--order-red);
    font-size: 8px;
    text-transform: uppercase;
}

.order-email-verify-card strong {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.order-email-verify-card p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    line-height: 1.35;
}

.order-email-verify-actions {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(92px, 0.9fr) minmax(74px, 0.65fr) minmax(82px, 0.8fr);
    gap: 8px;
}

.order-email-verify-actions button,
.order-email-verify-actions input {
    min-width: 0;
    min-height: 42px;
    border-radius: 8px;
    font: inherit;
    font-size: 10px;
    transition:
        color 240ms ease,
        border-color 240ms ease,
        background 240ms ease,
        box-shadow 320ms ease;
}

.order-email-verify-actions button {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.17);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.order-email-verify-actions button[data-email-otp-verify] {
    min-width: 92px;
    border-color: rgba(178, 15, 24, 0.34);
    background: rgba(178, 15, 24, 0.16);
    color: var(--order-red);
}

.order-email-verify-actions button:hover,
.order-email-verify-actions button:focus-visible {
    border-color: rgba(178, 15, 24, 0.32);
    color: var(--order-red);
    outline: none;
}

.order-email-verify-actions button[data-email-otp-verify]:hover,
.order-email-verify-actions button[data-email-otp-verify]:focus-visible {
    border-color: rgba(162, 15, 23, 0.4);
    background: rgba(162, 15, 23, 0.2);
}

.order-email-continue-section[data-email-verified="true"] .order-email-verify-actions button[data-email-otp-verify] {
    border-color: rgba(49, 146, 94, 0.55);
    background: rgba(49, 146, 94, 0.3);
    color: #f0fff6;
    box-shadow:
        0 0 0 1px rgba(49, 146, 94, 0.12),
        0 12px 30px rgba(49, 146, 94, 0.16);
}

.order-email-continue-section[data-email-verified="true"] .order-email-verify-actions button[data-email-otp-verify]:hover,
.order-email-continue-section[data-email-verified="true"] .order-email-verify-actions button[data-email-otp-verify]:focus-visible {
    border-color: rgba(49, 146, 94, 0.72);
    background: rgba(49, 146, 94, 0.38);
}

.order-email-verify-actions button:disabled {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.36);
    cursor: default;
}

.order-email-verify-actions input {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.17);
    color: #ffffff;
    text-align: center;
}

.order-field input:focus,
.order-field textarea:focus,
.order-field select:focus {
    border-color: rgba(178, 15, 24, 0.3);
    background: rgba(255, 255, 255, 0.76);
    outline: none;
    box-shadow: 0 0 0 4px rgba(178, 15, 24, 0.045);
}

.order-field-wide,
.order-upload-placeholder {
    grid-column: 2 / 4;
}

.order-field.has-error input,
.order-field.has-error textarea,
.order-newsletter-field.has-error {
    border-color: rgba(178, 15, 24, 0.46);
    animation: order-error-pulse 560ms ease;
}

@keyframes order-error-pulse {
    0%,
    100% {
        box-shadow: none;
    }

    50% {
        box-shadow: 0 0 0 5px rgba(178, 15, 24, 0.06);
    }
}

.order-upload-placeholder {
    min-height: 92px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
    padding: 17px;
    border: 1px dashed rgba(17, 17, 17, 0.18);
    border-radius: 8px;
    color: var(--order-muted);
    text-align: center;
}

.order-upload-placeholder > span {
    color: var(--order-red);
    font-size: 8px;
}

.order-upload-placeholder strong {
    color: var(--order-ink);
    font-size: 12px;
    font-weight: 400;
}

.order-upload-placeholder small {
    font-size: 9px;
}

.order-cookie {
    --order-cookie-bottom: calc(var(--order-footer-space) + 18px + env(safe-area-inset-bottom));
    position: fixed;
    right: 18px;
    bottom: var(--order-cookie-bottom);
    z-index: 2800;
    width: min(420px, calc(100vw - 36px));
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    box-shadow: 0 18px 66px rgba(20, 20, 20, 0.13);
    pointer-events: none;
}

body.order-payment-visible .order-cookie {
    --order-cookie-bottom: calc(var(--order-footer-space) + 112px + env(safe-area-inset-bottom));
}

.order-cookie[hidden],
.order-toast[hidden] {
    display: none !important;
}

.order-cookie p {
    margin: 0;
    color: var(--order-muted);
    font-size: 10px;
    line-height: 1.35;
}

.order-cookie-button {
    flex: 0 0 auto;
    pointer-events: auto;
}

.order-toast {
    position: fixed;
    right: 18px;
    bottom: calc(var(--order-footer-space) + 112px);
    z-index: 3600;
    max-width: min(440px, calc(100vw - 36px));
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--order-ink);
    font-size: 11px;
    line-height: 1.4;
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 66px rgba(20, 20, 20, 0.14);
}

@media (max-width: 1024px) {
    :root {
        --order-footer-space: 64px;
    }

    .order-touch-overlay,
    .order-touch-overlay * {
        touch-action: none;
    }

    .order-category-tabs,
    .order-category-tabs * {
        touch-action: pan-x;
    }

    .order-offer-rail,
    .order-offer-rail * {
        touch-action: none;
    }

    .order-machine-body,
    .order-machine-body * {
        touch-action: none;
    }

    .order-page.is-scrolling .order-glass-panel,
    body.order-is-scrolling .payment-liquid-island,
    body.order-is-scrolling .order-cookie {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .order-page.is-scrolling .order-visual img,
    .order-page.is-scrolling .order-offer-panel,
    .order-page.is-scrolling .order-offer-panel > *,
    .order-page.is-scrolling .order-machine-panel {
        transition: none;
    }

    .order-offer-panel {
        top: 37dvh;
        right: 12px;
        bottom: 8px;
        left: 12px;
    }

    .order-offer-panel .order-panel-header {
        border-bottom: 0;
    }

    .order-machine-panel {
        right: 12px;
        left: 12px;
    }

    .order-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-machine-body .order-brief-heading p,
    .order-machine-body .order-email-verify-card p {
        display: none;
    }

    .order-brief-section,
    .order-brief-fields {
        grid-template-columns: minmax(170px, 0.32fr) repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .order-brief-comment-section {
        grid-template-columns: 1fr;
    }

    .order-brief-comment-section .order-field-wide {
        grid-column: 1;
    }

    .order-email-verify-card {
        grid-template-columns: 1fr;
    }

    .order-email-continue-section .order-newsletter-field {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    :root {
        --order-footer-space: 56px;
    }

    .order-visual {
        --visual-width: min(calc(100vw - 48px), 320px);
        --visual-height: calc(100dvh - var(--header-height) - var(--order-footer-space) - 64px);
        --visual-top: calc(var(--header-height) + env(safe-area-inset-top) + 12px);
    }

    .order-offer-panel {
        top: 34dvh;
        right: 6px;
        bottom: 5px;
        left: 6px;
    }

    .order-machine-panel {
        top: calc(var(--header-height) + env(safe-area-inset-top) + 4px);
        right: 6px;
        bottom: 5px;
        left: 6px;
    }

    .order-panel-header {
        min-height: 104px;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }

    .order-panel-header h2 {
        font-size: 38px;
    }

    .order-panel-header p {
        max-width: 250px;
        margin-top: 7px;
        font-size: 9px;
    }

    .order-selection-summary {
        padding-top: 16px;
    }

    .order-selection-summary strong {
        font-size: 20px;
    }

    .order-category-tabs {
        padding: 8px 10px;
    }

    .order-category-tab {
        min-width: 124px;
        min-height: 44px;
    }

    .order-offer-rail {
        gap: 9px;
        padding: 10px;
        scroll-padding-inline: 10px;
    }

    .order-offer-card {
        min-width: 78vw;
        flex-basis: 78vw;
        gap: 7px;
        padding: 13px;
    }

    .order-card-copy h3 {
        font-size: 25px;
    }

    .order-card-copy {
        min-height: 0;
        overflow: hidden;
    }

    .order-card-copy p {
        display: -webkit-box;
        margin-top: 7px;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .order-card-meta {
        padding-top: 8px;
    }

    .order-card-toggle {
        min-height: 40px;
    }

    .order-panel-footer {
        min-height: 50px;
        padding: 6px 10px;
    }

    .order-panel-footer > span {
        display: none;
    }

    .order-next-button {
        width: 100%;
    }

    .order-brief-status {
        min-width: 134px;
        padding: 10px;
    }

    .order-brief-status small {
        display: none;
    }

    .order-brief-form {
        --order-brief-form-x: 16px;
        --order-brief-form-bottom: 170px;
    }

    .order-brief-section,
    .order-brief-fields {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 0;
    }

    .order-brief-comment-section,
    .order-brief-comment-section .order-field-wide,
    .order-newsletter-field,
    .order-email-continue-section .order-newsletter-field,
    .order-email-verify-card {
        grid-column: 1;
    }

    .order-email-continue-section {
        --order-email-pad: 20px;
        border-radius: 14px 14px 0 0;
    }

    .order-email-continue-section .order-brief-heading {
        grid-row: auto;
    }

    .order-email-continue-section > .order-field[data-required-field="email"] {
        grid-column: 1;
    }

    .order-email-verify-actions {
        grid-template-columns: 1fr;
    }

    .order-email-verify-actions button,
    .order-email-verify-actions input {
        min-height: 44px;
    }

    .order-brief-comment-section .order-field textarea {
        min-height: 150px;
    }

    .order-choice-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-field-wide,
    .order-upload-placeholder {
        grid-column: 1;
    }

    .order-cookie,
    .order-toast {
        top: auto;
        right: 8px;
        left: 8px;
        width: auto;
    }

    .order-cookie {
        bottom: var(--order-cookie-bottom);
    }

    .order-toast {
        bottom: calc(var(--order-footer-space) + 98px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 390px) {
    .order-panel-header h2 {
        font-size: 33px;
    }

    .order-panel-header p {
        max-width: 215px;
    }

    .order-selection-summary span {
        display: none;
    }

    .order-offer-card {
        min-width: 84vw;
        flex-basis: 84vw;
    }

    .order-brief-status {
        min-width: 112px;
    }

    .order-brief-status strong {
        font-size: 9px;
    }

}

@media (max-height: 720px) and (min-width: 681px) {
    .order-offer-panel {
        top: 35dvh;
    }

    .order-panel-header {
        min-height: 94px;
        padding-block: 14px;
    }

    .order-offer-rail {
        padding-block: 10px;
    }

    .order-offer-card {
        gap: 10px;
        padding: 14px;
    }
}

/* Compact card anatomy for short viewports and long service names. */
.order-offer-card {
    gap: 5px;
    padding: 11px 13px;
}

.order-card-flip {
    min-height: 56px;
}

.order-card-face h3 {
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(21px, 1.9vw, 30px);
    line-height: 0.96;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.order-card-face-front p {
    display: none;
}

.order-card-face-back {
    align-content: start;
}

.order-card-face-back p {
    max-height: 46px;
    margin-top: 5px;
    font-size: 8px;
    line-height: 1.3;
}

.order-card-meta {
    min-height: 20px;
    padding-top: 5px;
}

.order-card-selection {
    min-height: 31px;
    padding-top: 4px;
}

.order-quantity-controls button {
    width: 28px;
    height: 28px;
}

.order-quantity-controls {
    grid-template-columns: 28px 26px 28px;
}

@media (max-width: 680px) {
    .order-card-face h3 {
        font-size: clamp(19px, 6.2vw, 24px);
    }

    .order-card-selection {
        min-height: 36px;
    }

    .order-quantity-controls button {
        width: 34px;
        height: 34px;
    }

    .order-quantity-controls {
        grid-template-columns: 34px 28px 34px;
    }
}

.order-offer-card.order-service-card {
    min-width: clamp(156px, 15vw, 210px);
    flex-basis: clamp(156px, 15vw, 210px);
    height: 104px;
    min-height: 104px;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0;
    padding: 11px;
    border-radius: 12px;
}

.order-service-card .order-card-hold-ring {
    border-radius: 13px;
}

.order-service-card-content {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 10px;
}

.order-service-card-copy {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: start;
}

.order-service-card-copy span {
    color: var(--order-red);
    font-size: 7px;
    font-weight: 500;
    text-transform: uppercase;
}

.order-service-card-copy h3 {
    margin: 2px 0 0;
    max-width: 100%;
    color: var(--order-ink);
    font-size: clamp(17px, 1.5vw, 21px);
    font-weight: 400;
    line-height: 0.98;
    overflow-wrap: anywhere;
}

.order-service-card-copy strong {
    justify-self: end;
    align-self: end;
    color: var(--order-ink);
    font-size: 10px;
    font-weight: 400;
    white-space: nowrap;
}

.order-service-card.is-dark {
    border-color: rgba(0, 0, 0, 0.82);
    background:
        linear-gradient(145deg, rgba(16, 16, 16, 0.96), rgba(0, 0, 0, 0.88)),
        #050505;
    color: #f7f7f7;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.order-service-card.is-dark .order-service-card-copy span,
.order-service-card.is-dark .order-service-card-copy h3,
.order-service-card.is-dark .order-service-card-copy strong {
    color: #ffffff;
}

.order-service-card.is-dark .order-service-info-button {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.order-service-card.is-dark.is-in-cart {
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.34),
        0 0 26px rgba(178, 15, 24, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.order-service-card.is-dark .order-card-selection {
    border-top-color: rgba(255, 255, 255, 0.22);
}

.order-service-card.is-dark .order-card-selected-badge {
    color: rgba(255, 255, 255, 0.86);
}

.order-service-card.is-dark .order-quantity-controls {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.order-service-card.is-dark .order-quantity-controls button {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.92);
    color: #121212;
}

.order-service-card.is-dark .order-quantity-controls > strong {
    color: #121212;
}

.order-service-info-button {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(178, 15, 24, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--order-red);
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition:
        background 220ms ease,
        border-color 220ms ease,
        transform 260ms var(--order-ease);
}

.order-service-info-button:hover,
.order-service-info-button:focus-visible {
    border-color: rgba(178, 15, 24, 0.46);
    background: rgba(178, 15, 24, 0.08);
    outline: none;
    transform: translateY(-1px);
}

.order-service-card:not(.is-in-cart) .order-card-selection {
    display: none;
}

.order-service-card.is-in-cart .order-card-selection {
    min-height: 30px;
    padding-top: 7px;
}

.order-offer-card.is-cart-added {
    animation: order-cart-added 760ms var(--order-ease);
}

@keyframes order-cart-added {
    0% {
        transform: translateY(0) scale(1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    }
    38% {
        transform: translateY(-5px) scale(1.018);
        box-shadow:
            0 18px 34px rgba(178, 15, 24, 0.14),
            0 0 0 5px rgba(178, 15, 24, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.order-offer-info-modal[hidden] {
    display: none;
}

.order-offer-info-modal {
    position: fixed;
    inset: 0;
    z-index: 1800;
    display: grid;
    place-items: center;
    padding: clamp(18px, 5vw, 42px);
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.54), transparent 40%),
        rgba(10, 10, 10, 0.22);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.order-offer-info-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.order-offer-info-dialog {
    position: relative;
    width: min(420px, 100%);
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.86);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: translateY(18px) scale(0.96);
    opacity: 0;
    transition:
        opacity 300ms ease,
        transform 360ms var(--order-ease);
}

.order-offer-info-modal.is-open .order-offer-info-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.order-offer-info-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--order-ink);
    font: inherit;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
}

.order-offer-info-kicker {
    color: var(--order-red);
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
}

.order-offer-info-dialog h3 {
    margin: 0;
    padding-right: 36px;
    color: var(--order-ink);
    font-size: clamp(30px, 6vw, 44px);
    font-weight: 280;
    line-height: 0.95;
}

.order-offer-info-dialog p {
    margin: 0;
    color: rgba(17, 17, 17, 0.72);
    font-size: 13px;
    line-height: 1.55;
    white-space: pre-line;
}

.order-offer-info-modal.is-dark-service .order-offer-info-dialog {
    border-color: rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(145deg, rgba(22, 22, 22, 0.96), rgba(4, 4, 4, 0.92)),
        #050505;
    color: #ffffff;
}

.order-offer-info-modal.is-dark-service .order-offer-info-dialog h3,
.order-offer-info-modal.is-dark-service .order-offer-info-footer strong {
    color: #ffffff;
}

.order-offer-info-modal.is-dark-service .order-offer-info-dialog p {
    color: rgba(255, 255, 255, 0.74);
}

.order-offer-info-modal.is-dark-service .order-offer-info-close {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.order-offer-info-amount {
    display: grid;
    gap: 7px;
}

.order-offer-info-amount[hidden] {
    display: none;
}

.order-offer-info-amount span {
    color: var(--order-red);
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
}

.order-offer-info-amount input {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--order-ink);
    font: inherit;
    font-size: 15px;
    outline: none;
    padding: 0 12px;
}

.order-offer-info-amount input:focus {
    border-color: rgba(178, 15, 24, 0.42);
    box-shadow: 0 0 0 4px rgba(178, 15, 24, 0.08);
}

.order-offer-info-modal.is-dark-service .order-offer-info-amount input {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.order-offer-info-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 4px;
}

.order-offer-info-footer strong {
    color: var(--order-ink);
    font-size: 13px;
    font-weight: 400;
}

.order-offer-info-footer button {
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(178, 15, 24, 0.34);
    border-radius: 999px;
    background: rgba(178, 15, 24, 0.08);
    color: var(--order-red);
    font: inherit;
    font-size: 11px;
    cursor: pointer;
    transition:
        background 220ms ease,
        transform 260ms var(--order-ease);
}

.order-offer-info-footer button:hover,
.order-offer-info-footer button:focus-visible {
    background: rgba(178, 15, 24, 0.13);
    outline: none;
    transform: translateY(-1px);
}

@media (max-width: 680px) {
    .order-offer-panel .order-offer-card.order-service-card {
        min-width: min(48vw, 176px);
        flex-basis: min(48vw, 176px);
        height: 96px;
        min-height: 96px;
        padding: 10px;
    }

    .order-service-card-content {
        grid-template-columns: minmax(0, 1fr) 28px;
        gap: 8px;
    }

    .order-service-info-button {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .order-service-card-copy h3 {
        font-size: clamp(16px, 5vw, 19px);
    }

    .order-offer-info-dialog {
        padding: 18px;
        border-radius: 12px;
    }
}

@media (max-width: 390px) {
    .order-offer-panel .order-offer-card.order-service-card {
        min-width: min(54vw, 172px);
        flex-basis: min(54vw, 172px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .order-journey {
        scroll-behavior: auto;
    }

    .order-visual,
    .order-visual img,
    .order-category-tab,
    .order-offer-card,
    .order-card-toggle,
    .order-next-button {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
    }

}

/* Unified Offer -> Calculative Machine surface */
.order-page {
    --morph-top: 40dvh;
    --morph-right: clamp(18px, 4vw, 66px);
    --morph-bottom: calc(var(--order-footer-space) + 96px);
    --morph-left: clamp(18px, 4vw, 66px);
    --morph-radius: 8px;
    --morph-shift: 100dvh;
    --offer-content-opacity: 1;
    --offer-content-shift: 0px;
    --machine-content-opacity: 0;
}

body > header nav ul li:last-child a.nav-link-bottom-active {
    animation: order-nav-link-bottom-blink 1s ease-in-out infinite !important;
}

@keyframes order-nav-link-bottom-blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.18;
    }
}

.order-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.order-visual img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.order-visual.is-base-visual img {
    max-width: 50%;
    max-height: 50%;
    transform-origin: center;
}

.order-page[data-active-section="intro"] .order-visual.is-base-visual img {
    animation: order-base-breathe 2.92s ease-in-out infinite;
}

.order-page:not([data-active-section="intro"]) .order-visual.is-base-visual img {
    animation: none;
}

@keyframes order-base-breathe {
    0%,
    100% {
        transform: scale(1);
    }

    48% {
        transform: scale(1.055);
    }
}

@media (prefers-reduced-motion: reduce) {
    .order-page[data-active-section="intro"] .order-visual.is-base-visual img {
        animation: none;
    }
}

.order-offer-panel,
.order-machine-panel {
    position: fixed;
    top: var(--morph-top);
    right: var(--morph-right);
    bottom: var(--morph-bottom);
    left: var(--morph-left);
    border-radius: var(--morph-radius);
}

.order-offer-panel {
    z-index: 80;
    pointer-events: none;
    transform: translate3d(0, var(--morph-shift), 0);
    transition:
        border-radius 220ms ease,
        box-shadow 320ms ease;
    will-change: top, right, bottom, left, transform;
}

.order-page[data-active-section="offer"] .order-offer-panel {
    pointer-events: auto;
}

.order-offer-panel > * {
    opacity: var(--offer-content-opacity);
    transform: translate3d(0, var(--offer-content-shift), 0);
    will-change: opacity, transform;
}

.order-machine-panel {
    z-index: 82;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: var(--machine-content-opacity);
    pointer-events: none;
    transform: translate3d(0, var(--machine-shift), 0);
    transition: opacity 180ms linear;
    will-change: top, right, bottom, left, opacity, transform;
}

.order-page[data-active-section="machine"] .order-machine-panel {
    pointer-events: auto;
}

.order-page[data-active-section="machine"] .order-offer-panel > * {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.order-page[data-active-section="machine"] .order-offer-panel {
    border-color: transparent;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
}

.order-panel-footer {
    justify-content: flex-start;
}

.order-panel-footer > span {
    width: 100%;
}

.order-offer-rail {
    align-items: stretch;
    gap: 0;
    padding: 10px clamp(16px, 3vw, 38px) calc(var(--order-footer-space) + 96px);
    scroll-padding-inline: clamp(16px, 3vw, 38px);
}

.order-offer-group {
    min-width: max-content;
    display: flex;
    align-items: stretch;
    flex: 0 0 auto;
    scroll-snap-align: none;
}

.order-offer-group + .order-offer-group {
    margin-left: 18px;
    padding-left: 18px;
    border-left: 1px solid var(--order-line);
}

.order-offer-group-header {
    width: 112px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 112px;
    padding: 11px 14px 11px 0;
    height: min(100%, 196px);
    align-self: flex-start;
}

.order-offer-group-header span {
    color: var(--order-red);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.order-offer-group-header small {
    max-width: 100px;
    color: var(--order-muted);
    font-size: 8px;
    line-height: 1.35;
}

.order-offer-group-track {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.order-offer-card {
    min-width: clamp(248px, 22vw, 320px);
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    flex: 0 0 clamp(248px, 22vw, 320px);
    height: min(100%, 196px);
    cursor: pointer;
    outline: none;
}

.order-offer-card:focus-visible {
    border-color: rgba(178, 15, 24, 0.42);
    box-shadow:
        0 0 0 4px rgba(178, 15, 24, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.order-offer-card.is-selected::after {
    content: none;
}

.order-card-selection {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--order-line);
}

.order-card-select-hint {
    color: var(--order-muted);
    font-size: 9px;
}

.order-card-select-mark {
    color: var(--order-red);
    font-size: 20px;
    font-weight: 200;
}

.order-card-selected-badge {
    color: var(--order-red);
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
}

.order-quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    flex: 0 0 auto;
}

.order-quantity-controls button {
    width: 30px;
    height: 30px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--order-ink);
    font: inherit;
    font-size: 9px;
    cursor: pointer;
    transition:
        color 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        transform 180ms ease;
}

.order-quantity-controls button:hover,
.order-quantity-controls button:focus-visible {
    border-color: rgba(178, 15, 24, 0.32);
    background: rgba(178, 15, 24, 0.07);
    color: var(--order-red);
    outline: none;
    transform: translateY(-1px);
}

.order-quantity-controls > strong {
    min-width: 26px;
    color: var(--order-ink);
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}

.order-quantity-controls {
    display: grid;
    grid-template-columns: 34px 30px 34px;
}

.order-machine-body {
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-x: none;
    overscroll-behavior-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(17, 17, 17, 0.18) transparent;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

.order-machine-selection {
    display: none;
    padding: 22px clamp(20px, 4vw, 58px) 8px;
}

.order-machine-selection-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--order-line);
}

.order-machine-selection-header span {
    color: var(--order-red);
    font-size: 8px;
}

.order-machine-selection-header h3 {
    margin: 4px 0 0;
    font-size: clamp(23px, 2.5vw, 36px);
    font-weight: 250;
    line-height: 1;
}

.order-machine-selection-header > strong {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 300;
    white-space: nowrap;
}

.order-machine-selection-list {
    overflow: visible;
}

.order-machine-empty {
    min-height: 82px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 16px 0;
}

.order-machine-empty strong {
    font-size: 14px;
    font-weight: 400;
}

.order-machine-empty span {
    color: var(--order-muted);
    font-size: 9px;
}

.order-machine-item {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(100px, auto);
    align-items: center;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--order-line);
}

.order-machine-item-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.order-machine-item-copy span {
    color: var(--order-red);
    font-size: 8px;
    text-transform: uppercase;
}

.order-machine-item-copy strong {
    overflow: hidden;
    font-size: 15px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-machine-item-copy small {
    color: var(--order-muted);
    font-size: 8px;
}

.order-machine-item-subtotal {
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    white-space: nowrap;
}

.order-machine-body .order-brief-form {
    overflow: visible;
    --order-brief-form-bottom: 150px;
    padding-bottom: var(--order-brief-form-bottom);
}

@media (max-width: 1024px) {
    .order-offer-card {
        min-width: 286px;
        flex-basis: 286px;
    }

    .order-offer-group-header {
        width: 96px;
        flex-basis: 96px;
    }

    .order-machine-item {
        grid-template-columns: minmax(150px, 1fr) 40px minmax(96px, auto);
        gap: 12px;
    }

    .order-machine-item-subtotal {
        grid-column: auto;
        text-align: right;
    }
}

@media (max-width: 680px) {
    .order-offer-rail {
        padding: 9px 10px calc(var(--order-footer-space) + 90px);
        scroll-padding-inline: 10px;
    }

    .order-offer-group {
        align-items: stretch;
    }

    .order-offer-group + .order-offer-group {
        margin-left: 10px;
        padding-left: 10px;
    }

    .order-offer-group-header {
        width: 72px;
        flex-basis: 72px;
        padding-right: 8px;
    }

    .order-offer-group-header small {
        display: none;
    }

    .order-offer-card {
        min-width: min(74vw, 286px);
        flex-basis: min(74vw, 286px);
    }

    .order-card-flip {
        min-height: 96px;
    }

    .order-card-face h3 {
        font-size: clamp(22px, 7vw, 29px);
    }

    .order-quantity-controls {
        gap: 2px;
    }

    .order-quantity-controls button {
        width: 34px;
        height: 34px;
        font-size: 10px;
    }

    .order-card-selected-badge {
        display: none;
    }

    .order-machine-selection {
        padding: 18px 16px 4px;
    }

    .order-machine-selection-header {
        align-items: flex-start;
    }

    .order-machine-selection-header h3 {
        font-size: 24px;
    }

    .order-machine-selection-header > strong {
        font-size: 20px;
    }

    .order-machine-selection-list {
        max-height: min(28dvh, 210px);
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-right: 4px;
        scrollbar-width: thin;
    }

    .order-machine-item {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 10px 0;
    }

    .order-machine-item-copy strong {
        white-space: normal;
        line-height: 1.12;
    }

    .order-machine-item .order-quantity-controls {
        justify-self: start;
    }

    .order-machine-item-subtotal {
        grid-column: 1;
        text-align: left;
    }

    .order-machine-body .order-brief-form {
        --order-brief-form-bottom: 170px;
        padding-top: 8px;
        padding-bottom: var(--order-brief-form-bottom);
    }
}

@media (max-width: 390px) {
    .order-offer-group-header {
        width: 62px;
        flex-basis: 62px;
    }

    .order-offer-card {
        min-width: 76vw;
        flex-basis: 76vw;
    }

    .order-card-face h3 {
        font-size: clamp(20px, 6.8vw, 26px);
    }

    .order-card-selection {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-quantity-controls button {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 681px) and (max-width: 1024px) {
    .order-offer-panel {
        top: clamp(150px, 27dvh, 230px);
    }

    .order-offer-panel .order-panel-header {
        min-height: 78px;
        align-items: flex-end;
        padding: 10px 16px;
    }

    .order-offer-panel .order-panel-header h2 {
        font-size: clamp(32px, 5vw, 46px);
    }

    .order-offer-panel .order-panel-header p {
        max-width: 520px;
        margin-top: 4px;
        font-size: 9px;
        line-height: 1.25;
    }

    .order-offer-panel .order-category-tabs {
        gap: 6px;
        padding: 7px 12px;
    }

    .order-offer-panel .order-category-tab {
        min-width: 126px;
        min-height: 40px;
        padding: 6px 11px;
    }

    .order-offer-panel .order-category-tab span {
        max-width: none;
        overflow: visible;
        white-space: normal;
        line-height: 1.08;
        text-overflow: clip;
    }

    .order-offer-panel .order-offer-rail {
        padding: 8px 12px calc(var(--order-footer-space) + 82px);
        scroll-padding-inline: 12px;
    }

    .order-offer-panel .order-offer-group-header {
        width: 72px;
        flex-basis: 72px;
        padding: 9px 8px 9px 0;
        height: clamp(188px, 26dvh, 228px);
    }

    .order-offer-panel .order-offer-group-header small {
        display: block;
        max-width: 64px;
        font-size: 7px;
        line-height: 1.18;
    }

    .order-offer-panel .order-offer-card {
        min-width: clamp(236px, 30vw, 286px);
        flex-basis: clamp(236px, 30vw, 286px);
        height: clamp(188px, 26dvh, 228px);
        gap: 6px;
        padding: 11px 12px;
    }

    .order-offer-panel .order-card-flip {
        min-height: 72px;
    }

    .order-offer-panel .order-card-face h3 {
        font-size: clamp(19px, 3vw, 25px);
        line-height: 1;
        -webkit-line-clamp: 2;
    }

    .order-offer-panel .order-card-face-back p {
        max-height: 86px;
        font-size: 8.5px;
        line-height: 1.25;
    }

    .order-offer-panel .order-offer-card.is-detail .order-card-face-back p {
        max-height: 138px;
        overflow: auto;
    }

    .order-offer-panel .order-card-selection {
        min-height: 34px;
    }
}

@media (max-width: 680px) {
    .order-offer-panel {
        top: clamp(272px, 41dvh, 354px);
        right: 5px;
        bottom: 5px;
        left: 5px;
        grid-template-rows: auto auto minmax(0, 1fr);
    }

    .order-offer-panel .order-panel-header {
        min-height: 72px;
        align-items: flex-end;
        gap: 8px;
        padding: 10px 11px 9px;
    }

    .order-offer-panel .order-panel-header > div:first-child > span {
        font-size: 7px;
    }

    .order-offer-panel .order-panel-header h2 {
        margin-top: 2px;
        font-size: clamp(28px, 8vw, 34px);
        line-height: 0.9;
    }

    .order-offer-panel .order-panel-header p {
        max-width: 210px;
        margin-top: 3px;
        font-size: 7.5px;
        line-height: 1.22;
    }

    .order-offer-panel .order-selection-summary {
        gap: 2px;
        padding-top: 0;
    }

    .order-offer-panel .order-selection-summary span {
        display: block;
        font-size: 7px;
    }

    .order-offer-panel .order-selection-summary strong {
        font-size: clamp(16px, 5.2vw, 20px);
    }

    .order-offer-panel .order-category-tabs {
        gap: 5px;
        padding: 6px 8px;
    }

    .order-offer-panel .order-category-tab {
        min-width: 112px;
        min-height: 38px;
        padding: 5px 10px;
        gap: 1px;
    }

    .order-offer-panel .order-category-tab strong {
        font-size: 10px;
    }

    .order-offer-panel .order-category-tab span {
        max-width: none;
        overflow: visible;
        font-size: 7px;
        line-height: 1.08;
        white-space: normal;
        text-overflow: clip;
    }

    .order-offer-panel .order-offer-rail {
        gap: 0;
        padding: 7px 8px calc(var(--order-footer-space) + 76px);
        scroll-padding-inline: 8px;
    }

    .order-offer-panel .order-offer-group + .order-offer-group {
        margin-left: 8px;
        padding-left: 8px;
    }

    .order-offer-panel .order-offer-group-header {
        display: none;
    }

    .order-offer-panel .order-offer-card {
        min-width: min(62vw, 232px);
        flex-basis: min(62vw, 232px);
        height: clamp(148px, 25dvh, 170px);
        grid-template-rows: 12px minmax(50px, 1fr) auto auto;
        gap: 4px;
        padding: 9px;
    }

    .order-offer-panel .order-card-index {
        font-size: 7px;
    }

    .order-offer-panel .order-card-flip {
        min-height: 80px;
    }

    .order-offer-panel .order-card-face {
        align-content: start;
    }

    .order-offer-panel .order-card-face h3 {
        font-size: clamp(16px, 5.1vw, 20px);
        line-height: 1;
        -webkit-line-clamp: 3;
    }

    .order-offer-panel .order-card-face-back span {
        font-size: 7px;
    }

    .order-offer-panel .order-card-face-back p {
        max-height: 52px;
        margin-top: 4px;
        font-size: 7px;
        line-height: 1.18;
    }

    .order-offer-panel .order-offer-card.is-detail .order-card-face-back p {
        max-height: 52px;
        overflow: auto;
    }

    .order-offer-panel .order-card-meta {
        gap: 7px;
        min-height: 22px;
        padding-top: 4px;
    }

    .order-offer-panel .order-card-meta span {
        min-width: 0;
        overflow-wrap: anywhere;
        font-size: 7px;
        line-height: 1.12;
    }

    .order-offer-panel .order-card-meta strong {
        font-size: 11px;
    }

    .order-offer-panel .order-card-selection {
        min-height: 30px;
        align-items: center;
        flex-direction: row;
        gap: 7px;
        padding-top: 4px;
    }

    .order-offer-panel .order-card-select-hint {
        max-width: 18ch;
        overflow-wrap: anywhere;
        font-size: 7.5px;
        line-height: 1.1;
        white-space: normal;
    }

    .order-offer-panel .order-card-select-mark {
        font-size: 17px;
    }

    .order-offer-panel .order-quantity-controls {
        grid-template-columns: 28px 24px 28px;
    }

    .order-offer-panel .order-quantity-controls button {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 390px) {
    .order-offer-panel {
        top: clamp(252px, 40dvh, 338px);
    }

    .order-offer-panel .order-panel-header {
        min-height: 66px;
        padding: 8px 10px;
    }

    .order-offer-panel .order-panel-header p {
        max-width: 188px;
        font-size: 7px;
    }

    .order-offer-panel .order-category-tab {
        min-width: 104px;
    }

    .order-offer-panel .order-offer-card {
        min-width: min(66vw, 222px);
        flex-basis: min(66vw, 222px);
        height: clamp(146px, 24dvh, 160px);
    }

    .order-offer-panel .order-card-face h3 {
        font-size: clamp(15px, 5.1vw, 19px);
    }

    .order-offer-panel .order-card-face-back p {
        max-height: 48px;
    }

    .order-offer-panel .order-offer-card.is-detail .order-card-face-back p {
        max-height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body > header nav ul li:last-child a.nav-link-bottom-active,
    .order-offer-panel,
    .order-offer-panel > *,
    .order-machine-panel,
    .order-quantity-controls button {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
    }

    .order-card-flip,
    .order-card-hold-ring {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
    }
}

.order-offer-card.is-in-cart::after {
    content: none !important;
}

.order-offer-card.is-in-cart {
    border-color: rgba(178, 15, 24, 0.76);
    box-shadow:
        0 0 0 1px rgba(178, 15, 24, 0.36),
        0 0 22px rgba(178, 15, 24, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.order-offer-card.order-service-card.is-in-cart {
    border-color: rgba(178, 15, 24, 0.84);
    box-shadow:
        0 0 0 1px rgba(178, 15, 24, 0.42),
        0 0 24px rgba(178, 15, 24, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.order-offer-panel .order-offer-card.order-service-card {
    min-width: clamp(172px, 15vw, 210px);
    flex: 0 0 clamp(172px, 15vw, 210px);
    height: 104px;
    min-height: 104px;
    max-height: 104px;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 0;
    padding: 11px;
    border-radius: 12px;
}

.order-offer-panel .order-service-card-content {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 10px;
}

.order-offer-panel .order-service-info-button {
    width: 30px;
    height: 30px;
    font-size: 14px;
}

.order-offer-panel .order-service-card-copy h3 {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 0.98;
}

.order-offer-panel .order-service-card-copy strong {
    font-size: 10px;
}

.order-offer-panel .order-service-card.is-in-cart .order-card-selection {
    min-height: 30px;
    flex-direction: row;
    gap: 7px;
    padding-top: 7px;
}

@media (max-width: 680px) {
    .order-offer-panel .order-offer-card.order-service-card {
        min-width: clamp(172px, 48vw, 184px);
        flex-basis: clamp(172px, 48vw, 184px);
        height: 104px;
        min-height: 104px;
        max-height: 104px;
        padding: 11px;
    }
}

@media (max-width: 390px) {
    .order-offer-panel .order-offer-card.order-service-card {
        min-width: min(54vw, 184px);
        flex-basis: min(54vw, 184px);
    }
}

.order-category-tab[data-offer-category="plus"],
.order-offer-panel .order-category-tab[data-offer-category="plus"] {
    min-width: 148px;
    width: auto;
    min-height: 48px;
    height: auto;
    aspect-ratio: auto;
    place-items: stretch;
    align-content: center;
    justify-content: start;
    padding: 7px 13px;
    border-radius: 999px;
    text-align: left;
}

.order-category-tab[data-offer-category="plus"] strong,
.order-offer-panel .order-category-tab[data-offer-category="plus"] strong {
    font-size: 11px;
    line-height: normal;
    white-space: nowrap;
}

.order-category-tab[data-offer-category="plus"] span,
.order-offer-panel .order-category-tab[data-offer-category="plus"] span {
    display: block;
}

@media (max-width: 680px) {
    .order-category-tab[data-offer-category="plus"],
    .order-offer-panel .order-category-tab[data-offer-category="plus"] {
        min-width: 148px;
    }

    .order-category-tab[data-offer-category="plus"] strong,
    .order-offer-panel .order-category-tab[data-offer-category="plus"] strong {
        font-size: 11px;
    }
}

.order-machine-selection {
    display: block;
}

.order-machine-selection-list {
    display: grid;
    max-height: none;
    overflow: visible;
    padding-right: 0;
    touch-action: pan-y pinch-zoom;
}

.order-machine-selection,
.order-machine-selection *,
.order-machine-selection-list,
.order-machine-selection-list * {
    touch-action: pan-y pinch-zoom;
}

.order-machine-item {
    grid-template-columns: minmax(0, 1fr) 40px minmax(86px, auto);
}

.order-machine-body .order-brief-machine-hidden {
    display: none;
}

.order-machine-body .order-brief-section,
.order-machine-body .order-brief-fields,
.order-machine-body .order-brief-send {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: clamp(22px, 3vw, 42px) 0;
}

.order-machine-body .order-newsletter-field {
    grid-column: 1;
}

.order-machine-body .order-email-continue-section {
    padding:
        var(--order-email-pad)
        calc(var(--order-brief-form-x) + var(--order-email-pad))
        calc(var(--order-email-pad) + var(--order-brief-form-bottom));
}

@media (min-width: 681px) {
    .order-machine-body .order-email-continue-section {
        grid-template-columns: minmax(190px, 0.34fr) repeat(2, minmax(0, 1fr));
        gap: clamp(22px, 4vw, 70px);
    }

    .order-machine-body .order-email-continue-section > .order-field[data-required-field="email"],
    .order-machine-body .order-email-continue-section .order-email-verify-card {
        grid-column: 2 / 4;
    }

    .order-machine-body .order-email-continue-section .order-newsletter-field {
        grid-column: 2 / 4;
    }
}

@media (min-width: 681px) {
    .order-machine-body .order-brief-comment-section {
        grid-template-columns: 1fr;
    }

    .order-machine-body .order-brief-comment-section .order-field-wide {
        grid-column: 1;
    }
}

.order-machine-calc-button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    border: 1px solid rgba(178, 15, 24, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    color: var(--order-red);
    cursor: pointer;
    transition:
        border-color 220ms ease,
        background 220ms ease,
        transform 260ms var(--order-ease);
}

.order-machine-calc-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.order-machine-calc-button:hover,
.order-machine-calc-button:focus-visible {
    border-color: rgba(178, 15, 24, 0.5);
    background: rgba(178, 15, 24, 0.08);
    outline: none;
    transform: translateY(-1px);
}

.order-machine-calc-button.is-complete {
    border-color: var(--order-red);
    background: var(--order-red);
    color: #fff;
    box-shadow:
        0 10px 24px rgba(178, 15, 24, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.order-machine-calc-button.is-complete:hover,
.order-machine-calc-button.is-complete:focus-visible {
    border-color: var(--order-red);
    background: var(--order-red);
    color: #fff;
}

.order-service-brief-modal[hidden] {
    display: none;
}

.order-service-brief-modal {
    position: fixed;
    inset: 0;
    z-index: 5200;
    display: block;
    padding: 0;
    background: rgba(248, 248, 248, 0.76);
    opacity: 0;
    pointer-events: none;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-backdrop-filter: blur(8px) saturate(105%);
    backdrop-filter: blur(8px) saturate(105%);
    transition: opacity 260ms ease;
}

.order-service-brief-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.order-service-brief-dialog {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(640px, calc(100vw - 24px));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(246, 246, 246, 0.92)),
        rgba(248, 248, 248, 0.94);
    color: var(--order-ink);
    -webkit-backdrop-filter: blur(12px) saturate(112%);
    backdrop-filter: blur(12px) saturate(112%);
    box-shadow:
        0 28px 90px rgba(18, 18, 18, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transform: translateX(34px);
    opacity: 0;
    transition:
        opacity 300ms ease,
        transform 360ms var(--order-ease);
}

.order-service-brief-modal.is-open .order-service-brief-dialog {
    transform: translateX(0);
    opacity: 1;
}

.order-service-brief-header {
    position: relative;
    inset: auto;
    z-index: 2;
    width: auto;
    height: auto;
    min-height: 0;
    display: block;
    padding: 20px 22px 14px;
    overflow: visible;
    background: rgba(248, 248, 248, 0.72);
    border-bottom: 1px solid var(--order-line);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.order-service-brief-header::before,
.order-service-brief-header::after {
    content: none;
}

.order-service-brief-header span {
    color: var(--order-red);
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
}

.order-service-brief-header h3 {
    margin: 5px 38px 0 0;
    color: var(--order-ink);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 280;
    line-height: 0.95;
}

.order-service-brief-header p {
    margin: 8px 0 0;
    color: var(--order-muted);
    font-size: 10px;
    line-height: 1.45;
}

.order-service-brief-close {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--order-ink);
    font: inherit;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
}

.order-service-brief-content {
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 20px 22px;
    scrollbar-width: thin;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

.order-service-brief-form {
    display: grid;
    gap: 16px;
    min-height: auto;
    overflow: visible;
    padding: 18px 0 0;
    overscroll-behavior: auto;
}

.order-service-brief-form .order-brief-section,
.order-service-brief-form .order-brief-fields {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
}

.order-service-brief-form .order-brief-heading h3 {
    font-size: clamp(20px, 3vw, 28px);
}

.order-service-brief-form .order-choice-grid,
.order-service-brief-form .order-choice-grid-purpose {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-service-brief-form .order-brief-send-actions {
    grid-template-columns: 1fr;
}

@media (max-width: 720px) {
    .order-brief-send-actions {
        grid-template-columns: 1fr;
    }
}

.order-service-brief-form .order-brief-send-button[disabled] {
    opacity: 0.48;
    cursor: default;
}

.order-service-questionnaire {
    display: grid;
    gap: 14px;
    padding: 18px 0 72px;
}

.order-service-questionnaire-summary,
.order-service-questionnaire-included,
.order-service-question,
.order-service-questionnaire-comment,
.order-service-questionnaire-result {
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.order-service-questionnaire-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding: 16px;
}

.order-service-questionnaire-summary span,
.order-service-questionnaire-included > span,
.order-service-questionnaire-comment span,
.order-service-result-head span {
    color: var(--order-red);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.order-service-questionnaire-summary h4 {
    margin: 5px 0 0;
    color: var(--order-ink);
    font-size: clamp(22px, 3.2vw, 36px);
    font-weight: 260;
    line-height: 0.98;
}

.order-service-questionnaire-summary p {
    max-width: 520px;
    margin: 10px 0 0;
    color: var(--order-muted);
    font-size: 10px;
    line-height: 1.45;
}

.order-service-questionnaire-price {
    min-width: 118px;
    display: grid;
    align-content: center;
    justify-items: end;
    gap: 5px;
}

.order-service-questionnaire-price strong {
    color: var(--order-ink);
    font-size: 18px;
    font-weight: 360;
    white-space: nowrap;
}

.order-service-questionnaire-included {
    padding: 14px 16px;
}

.order-service-questionnaire-included ul,
.order-service-questionnaire-result ul {
    list-style: none;
    margin: 11px 0 0;
    padding: 0;
}

.order-service-questionnaire-included li {
    display: inline-flex;
    margin: 0 6px 6px 0;
    padding: 7px 9px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    background: rgba(248, 248, 248, 0.74);
    color: var(--order-ink);
    font-size: 9px;
    line-height: 1.25;
}

.order-service-question {
    min-width: 0;
    margin: 0;
    padding: 14px;
}

.order-service-question legend {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 0;
    color: var(--order-ink);
    font-size: 14px;
    font-weight: 360;
}

.order-service-question legend span {
    color: var(--order-red);
    font-size: 9px;
    font-weight: 500;
}

.order-service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.order-service-options label {
    position: relative;
    min-width: 0;
    min-height: 48px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    padding: 10px 11px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--order-ink);
    cursor: pointer;
    transition:
        color 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        transform 260ms var(--order-ease);
}

.order-service-options input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.order-service-options label > span {
    min-width: 0;
    font-size: 10px;
    line-height: 1.25;
}

.order-service-options label > strong {
    color: var(--order-muted);
    font-size: 9px;
    font-weight: 400;
    white-space: nowrap;
}

.order-service-options label:hover,
.order-service-options label:has(input:focus-visible),
.order-service-options label:has(input:checked) {
    border-color: rgba(178, 15, 24, 0.32);
    background: rgba(178, 15, 24, 0.065);
    color: var(--order-red);
    transform: translateY(-1px);
}

.order-service-options label:has(input:checked) > strong {
    color: var(--order-red);
}

.order-service-questionnaire-comment {
    padding: 14px;
}

.order-service-questionnaire-comment label {
    display: grid;
    gap: 8px;
}

.order-service-questionnaire-comment textarea {
    width: 100%;
    min-height: clamp(120px, 18vh, 220px);
    resize: vertical;
    padding: 12px 13px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--order-ink);
    font: inherit;
    font-size: 11px;
    line-height: 1.45;
    outline: none;
}

.order-service-questionnaire-comment textarea:focus {
    border-color: rgba(178, 15, 24, 0.42);
    background: rgba(255, 255, 255, 0.88);
}

.order-service-questionnaire-result {
    padding: 15px 16px;
    border-color: rgba(178, 15, 24, 0.18);
    background: rgba(178, 15, 24, 0.045);
}

.order-service-result-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.order-service-result-head strong {
    color: var(--order-red);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 300;
    white-space: nowrap;
}

.order-service-questionnaire-result li {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
    gap: 12px;
    padding: 8px 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.order-service-questionnaire-result li span {
    color: var(--order-muted);
    font-size: 9px;
    line-height: 1.35;
}

.order-service-questionnaire-result li strong {
    color: var(--order-ink);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.35;
}

.order-service-questionnaire-result p {
    margin: 10px 0 0;
    color: var(--order-muted);
    font-size: 9px;
    line-height: 1.45;
}

.order-service-custom-price {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}

.order-service-custom-price span {
    color: var(--order-muted);
    font-size: 9px;
    line-height: 1.35;
}

.order-service-custom-price input {
    width: 100%;
    min-height: 50px;
    padding: 12px 13px;
    border: 1px solid rgba(178, 15, 24, 0.18);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--order-ink);
    font: inherit;
    font-size: 18px;
    font-weight: 320;
    outline: none;
}

.order-service-custom-price input:focus {
    border-color: rgba(178, 15, 24, 0.48);
    background: rgba(255, 255, 255, 0.94);
}

.order-service-questionnaire-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 2px 0 0;
}

.order-service-questionnaire-actions button {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(178, 15, 24, 0.28);
    border-radius: 999px;
    background: rgba(178, 15, 24, 0.08);
    color: var(--order-red);
    font: inherit;
    font-size: 11px;
    cursor: pointer;
}

.order-service-questionnaire-actions .order-service-questionnaire-reset {
    border-color: rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.58);
    color: var(--order-muted);
}

@media (max-width: 680px) {
    .order-machine-selection {
        padding: 14px 12px 4px;
    }

    .order-machine-selection-list {
        max-height: none;
        overflow: visible;
    }

    .order-machine-item {
        grid-template-columns: minmax(0, 1fr) 36px auto;
        gap: 9px;
    }

    .order-machine-calc-button {
        width: 34px;
        height: 34px;
    }

    .order-machine-calc-button svg {
        width: 16px;
        height: 16px;
    }

    .order-service-brief-dialog {
        top: 8px;
        right: 8px;
        bottom: 8px;
        left: 8px;
        width: auto;
        border-radius: 12px;
    }

    .order-service-brief-header {
        padding: 17px 17px 12px;
    }

    .order-service-brief-content {
        padding: 0 12px 18px;
    }

    .order-service-brief-form .order-choice-grid,
    .order-service-brief-form .order-choice-grid-purpose {
        grid-template-columns: 1fr;
    }

    .order-service-questionnaire {
        gap: 11px;
        padding-top: 12px;
        padding-bottom: 86px;
    }

    .order-service-questionnaire-summary {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }

    .order-service-questionnaire-price {
        justify-items: start;
    }

    .order-service-options {
        grid-template-columns: 1fr;
    }

    .order-service-questionnaire-result li {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .order-service-result-head {
        display: grid;
        gap: 6px;
    }
}

body.order-service-brief-open {
    overflow: hidden;
}

body.order-service-brief-open .payment-liquid-root,
body.order-service-brief-open .order-cookie {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 680px) {
    .order-page button,
    .order-page a,
    .order-page input,
    .order-page textarea,
    .order-page select {
        touch-action: manipulation;
    }

    .order-page input:not([type="checkbox"]):not([type="radio"]),
    .order-page textarea,
    .order-page select {
        font-size: 16px !important;
    }

    .order-offer-panel .order-panel-header {
        min-height: 62px;
        padding: 7px 10px 6px;
    }

    .order-offer-panel .order-panel-header p {
        display: none;
    }

    .order-offer-panel .order-category-tabs {
        gap: 6px;
        padding: 4px 8px;
    }

    .order-offer-panel .order-category-tab,
    .order-category-tab[data-offer-category="plus"],
    .order-offer-panel .order-category-tab[data-offer-category="plus"] {
        position: relative;
        width: max-content;
        min-width: max-content;
        min-height: 32px;
        padding: 5px 10px;
        gap: 0;
    }

    .order-offer-panel .order-category-tab::before {
        content: "";
        position: absolute;
        inset: -6px 0;
    }

    .order-offer-panel .order-category-tab strong,
    .order-category-tab[data-offer-category="plus"] strong,
    .order-offer-panel .order-category-tab[data-offer-category="plus"] strong {
        font-size: 10px;
        white-space: nowrap;
    }

    .order-offer-panel .order-category-tab span {
        display: none;
    }

    .order-offer-panel .order-service-info-button {
        position: relative;
    }

    .order-offer-panel .order-service-info-button::before {
        content: "";
        position: absolute;
        inset: -6px;
    }

    .order-machine-panel .order-panel-header {
        min-height: 94px;
        gap: 9px;
        padding: 10px 12px;
    }

    .order-machine-panel .order-panel-header h2 {
        font-size: clamp(29px, 9vw, 35px);
        line-height: 0.92;
    }

    .order-machine-panel .order-panel-header p {
        max-width: 220px;
        margin-top: 3px;
        font-size: 8.8px;
        line-height: 1.18;
    }

    .order-machine-panel .order-brief-status {
        min-width: 96px;
        gap: 3px;
        padding: 7px 8px;
    }

    .order-machine-panel .order-brief-status strong {
        font-size: 8.8px;
    }

    .order-machine-panel .order-brief-status small {
        font-size: 6.8px;
        line-height: 1.12;
    }
}

@media (max-width: 680px) {
    .order-service-questionnaire-comment textarea {
        min-height: 96px;
    }

    .order-offer-panel .order-offer-group + .order-offer-group {
        margin-left: 8px;
        padding-left: 0;
        border-left: 0;
    }
}

/* Keep the full Offer workflow usable on short, narrow phones. */
@media (max-width: 390px) and (max-height: 700px) {
    :root {
        --order-footer-space: 48px;
    }

    .order-offer-panel {
        top: clamp(178px, 33dvh, 190px);
        right: 4px;
        bottom: 4px;
        left: 4px;
    }

    .order-offer-panel .order-panel-header {
        min-height: 56px;
        gap: 6px;
        padding: 7px 9px 6px;
    }

    .order-offer-panel .order-panel-header h2 {
        margin-top: 1px;
        font-size: 27px;
        line-height: 0.9;
    }

    .order-offer-panel .order-panel-header p {
        display: none;
    }

    .order-offer-panel .order-selection-summary span {
        display: none;
    }

    .order-offer-panel .order-selection-summary strong {
        font-size: 15px;
    }

    .order-offer-panel .order-category-tabs {
        gap: 4px;
        padding: 4px 6px;
    }

    .order-offer-panel .order-category-tab {
        width: max-content;
        min-width: max-content;
        min-height: 30px;
        padding: 4px 9px;
    }

    .order-offer-panel .order-category-tab strong {
        font-size: 9px;
    }

    .order-offer-panel .order-category-tab span {
        display: none;
    }

    .order-category-tab[data-offer-category="plus"],
    .order-offer-panel .order-category-tab[data-offer-category="plus"] {
        width: max-content;
        min-width: max-content;
        min-height: 30px;
        padding: 4px 9px;
    }

    .order-category-tab[data-offer-category="plus"] strong,
    .order-offer-panel .order-category-tab[data-offer-category="plus"] strong {
        font-size: 9px;
    }

    .order-offer-panel .order-offer-rail {
        padding: 5px 6px 8px;
        scroll-padding-inline: 6px;
    }

    .order-offer-panel .order-offer-group + .order-offer-group {
        margin-left: 6px;
        padding-left: 0;
        border-left: 0;
    }

    .order-offer-panel .order-offer-card.order-service-card {
        min-width: min(54vw, 176px);
        flex-basis: min(54vw, 176px);
        height: 96px;
        min-height: 96px;
        max-height: 96px;
        padding: 8px;
    }

    .order-offer-panel .order-service-card-content {
        grid-template-columns: minmax(0, 1fr) 28px;
        gap: 7px;
    }

    .order-offer-panel .order-service-info-button {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .order-offer-panel .order-service-card-copy h3 {
        font-size: 15px;
        line-height: 0.98;
    }

    .order-offer-panel .order-service-card-copy strong {
        font-size: 8.5px;
    }

    .order-offer-panel .order-service-card.is-in-cart .order-card-selection {
        min-height: 27px;
        padding-top: 5px;
    }

    .order-offer-panel .order-quantity-controls {
        grid-template-columns: 26px 22px 26px;
    }

    .order-offer-panel .order-quantity-controls button {
        width: 26px;
        height: 26px;
    }

    .order-machine-panel .order-panel-header {
        min-height: 84px;
        gap: 7px;
        padding: 8px 9px;
    }

    .order-machine-panel .order-panel-header h2 {
        font-size: 24px;
        line-height: 0.9;
    }

    .order-machine-panel .order-panel-header p {
        max-width: 182px;
        margin-top: 2px;
        font-size: 7.4px;
        line-height: 1.14;
    }

    .order-machine-panel .order-brief-status {
        min-width: 82px;
        padding: 6px 7px;
    }

    .order-machine-panel .order-brief-status strong {
        font-size: 7.8px;
    }

    .order-machine-panel .order-brief-status small {
        font-size: 6px;
        line-height: 1.1;
    }

    .order-machine-body .order-brief-form {
        --order-brief-form-bottom: 150px;
        padding-bottom: var(--order-brief-form-bottom);
    }

    .order-brief-section,
    .order-brief-fields {
        gap: 14px;
        padding-block: 20px;
    }

    .order-cookie,
    .order-toast {
        top: auto;
        right: 6px;
        left: 6px;
        width: auto;
        max-width: none;
        padding: 8px;
    }

    .order-cookie {
        bottom: var(--order-cookie-bottom);
    }

    .order-toast {
        bottom: calc(var(--order-footer-space) + 98px + env(safe-area-inset-bottom));
    }

    .order-cookie {
        gap: 8px;
    }

    .order-cookie p,
    .order-toast {
        font-size: 8px;
        line-height: 1.2;
    }
}
