:root {
    --brand: #6d150b;
    --base: #e5d5c5;
    --ink: #16100d;
    --muted: #756961;
    --paper: #f8f2ea;
    --milk: #fffdf9;
    --line: rgba(22, 16, 13, .11);
    --dark: #17110f;
    --soft-shadow: 0 24px 80px rgba(22, 16, 13, .12);
    --page: clamp(16px, 4vw, 70px);
    --radius: 8px;
    --font-display: Georgia, "Times New Roman", serif;
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --z-header: 30;
    --z-drawer: 45;
    --z-menu: 70;
    --z-modal: 82;
    --z-toast: 90;
}

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

html {
    max-width: 100%;
    scroll-behavior: smooth;
}

body {
    background: var(--milk);
    color: var(--ink);
    font-family: var(--font-body);
    margin: 0;
    max-width: 100%;
}

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

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

img {
    max-width: 100%;
}

.skip-link {
    left: 14px;
    position: fixed;
    top: -120px;
    z-index: 60;
}

.skip-link:focus {
    background: var(--milk);
    border: 1px solid var(--line);
    padding: 10px 12px;
    top: 14px;
}

.site-header {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(255, 253, 249, .88);
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 var(--page);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    width: 100%;
}

body.is-menu-open {
    width: 100%;
}

.brand {
    align-items: center;
    color: var(--brand);
    display: inline-flex;
    font-family: var(--font-display);
    font-size: clamp(27px, 3.8vw, 38px);
    font-weight: 700;
    line-height: 1;
    min-width: 0;
    order: 1;
}

.brand img {
    height: clamp(34px, 4vw, 48px);
    max-width: min(220px, 52vw);
    object-fit: contain;
    width: auto;
}

.site-header nav {
    align-items: center;
    display: flex;
    gap: clamp(18px, 2.6vw, 34px);
    margin-left: auto;
    margin-right: clamp(16px, 2.2vw, 28px);
    order: 2;
}

.site-header nav a,
.footer-links a,
.continue-link {
    background: transparent;
    border: 0;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    padding: 0;
    text-transform: uppercase;
}

.cart-link {
    align-items: center;
    background: var(--brand) !important;
    border: 1px solid rgba(255, 253, 249, .6) !important;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(109, 21, 11, .22);
    color: var(--milk) !important;
    display: inline-flex;
    gap: 8px;
    height: 42px;
    justify-content: center;
    min-height: 38px;
    position: relative;
    width: 42px;
    order: 3;
}

.menu-trigger {
    align-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    font: inherit;
    font-size: 0;
    font-weight: 950;
    gap: 0;
    height: 42px;
    min-height: 42px;
    order: 2;
    padding: 0;
    text-transform: uppercase;
    width: 42px;
    justify-content: center;
}

.menu-trigger svg {
    height: 18px;
    width: 18px;
}

.menu-trigger span,
.fullscreen-menu-close span {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.fullscreen-menu {
    color: var(--ink);
    inset: 0;
    opacity: 0;
    position: fixed;
    transform: translateY(-12px);
    transition: opacity 320ms ease, transform 320ms ease, visibility 320ms;
    visibility: hidden;
    z-index: var(--z-menu);
}

.fullscreen-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.fullscreen-menu-backdrop {
    background: rgba(22, 16, 13, .32);
    border: 0;
    cursor: pointer;
    inset: 0;
    padding: 0;
    position: absolute;
}

.fullscreen-menu-panel {
    background: var(--milk);
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
    height: 100dvh;
    inset: 0;
    overflow: auto;
    padding: max(18px, env(safe-area-inset-top)) var(--page) max(22px, env(safe-area-inset-bottom));
    position: absolute;
    width: 100vw;
}

.fullscreen-menu-head {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    min-height: 62px;
    padding-bottom: 14px;
}

.fullscreen-menu-logo img {
    height: clamp(34px, 4vw, 48px);
    max-width: min(220px, 52vw);
    object-fit: contain;
    width: auto;
}

.fullscreen-menu-close {
    align-items: center;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    color: var(--milk);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-size: 0;
    font-weight: 950;
    gap: 0;
    height: 42px;
    min-height: 42px;
    justify-content: center;
    padding: 0;
    text-transform: uppercase;
    width: 42px;
}

.fullscreen-menu-close svg {
    height: 18px;
    width: 18px;
}

.fullscreen-menu-grid {
    display: grid;
    gap: clamp(24px, 3vw, 46px);
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr) minmax(240px, 340px);
    min-height: 0;
    padding-top: clamp(28px, 4vw, 52px);
}

.fullscreen-menu-primary {
    align-content: start;
    border-right: 1px solid var(--line);
    display: grid;
    gap: 6px;
    padding-right: clamp(18px, 2.4vw, 34px);
}

.fullscreen-menu-primary a,
.mobile-menu-link {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 500;
    line-height: 1.04;
    min-height: 44px;
    overflow-wrap: anywhere;
}

.fullscreen-menu-primary a {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-flex;
    margin-left: -10px;
    padding: 7px 10px 9px;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
    width: calc(100% + 10px);
}

.fullscreen-menu-primary a:hover,
.fullscreen-menu-primary a:focus-visible {
    background: rgba(109, 21, 11, .06);
    border-color: rgba(109, 21, 11, .14);
    color: var(--brand);
    transform: translateX(4px);
}

.fullscreen-menu-catalog {
    min-width: 0;
}

.fullscreen-menu-section-title,
.menu-category-topline {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.fullscreen-menu-section-title {
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
    padding-bottom: 12px;
}

.fullscreen-menu-section-title span,
.fullscreen-menu-section-title a,
.menu-category-topline span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.menu-category-columns {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-category-group {
    border-bottom: 1px solid var(--line);
    min-width: 0;
    padding-bottom: 18px;
}

.menu-category-topline a {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 500;
    line-height: 1.05;
    min-width: 0;
    overflow-wrap: anywhere;
}

.menu-subcategory-list,
.menu-product-links {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.menu-subcategory-list {
    gap: 14px;
}

.menu-subcategory-link {
    color: var(--brand);
    display: inline-flex;
    font-size: 13px;
    font-weight: 950;
    min-height: 28px;
    text-transform: uppercase;
}

.menu-product-links a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
    min-height: 24px;
    overflow-wrap: anywhere;
}

.fullscreen-menu-feature {
    align-self: start;
    background: var(--paper);
    border: 1px solid var(--line);
    display: grid;
    min-width: 0;
    padding: 10px;
}

.fullscreen-menu-feature img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
}

.fullscreen-menu-feature span {
    display: grid;
    gap: 7px;
    padding: 13px 4px 2px;
}

.fullscreen-menu-feature small,
.fullscreen-menu-feature em {
    color: var(--brand);
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
    text-transform: uppercase;
}

.fullscreen-menu-feature strong {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}

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

.menu-empty {
    color: var(--muted);
    margin: 0;
}

.menu-trigger:focus-visible,
.fullscreen-menu-close:focus-visible,
.fullscreen-menu a:focus-visible,
.fullscreen-menu button:focus-visible {
    outline: 2px solid rgba(109, 21, 11, .72);
    outline-offset: 3px;
}

.cart-link svg {
    color: var(--milk);
    fill: none;
    height: 25px;
    overflow: visible;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    width: 25px;
}

.cart-link span {
    align-items: center;
    background: var(--milk);
    border: 1px solid rgba(109, 21, 11, .18);
    border-radius: 999px;
    color: var(--brand);
    display: inline-flex;
    font-size: 11px;
    font-weight: 950;
    height: 22px;
    justify-content: center;
    min-width: 22px;
    padding: 0 6px;
    position: absolute;
    right: -8px;
    top: -8px;
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 900;
    justify-content: center;
    min-height: 48px;
    padding: 12px 19px;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button.primary {
    background: var(--brand);
    color: var(--milk);
}

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

.button.full {
    width: 100%;
}

.button:disabled {
    cursor: not-allowed;
    opacity: .62;
}

.button.is-loading,
.quick-add-form button.is-loading {
    position: relative;
}

.button.is-loading::before,
.quick-add-form button.is-loading::before {
    animation: spin .7s linear infinite;
    border: 2px solid currentColor;
    border-radius: 999px;
    border-right-color: transparent;
    content: "";
    height: 15px;
    margin-right: 9px;
    width: 15px;
}

.store-hero {
    background: var(--dark);
    min-height: calc(100svh - 72px);
    overflow: hidden;
    position: relative;
}

.hero-slide {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity .72s ease;
    z-index: 0;
}

.hero-slide.is-active,
.hero-slide.is-static {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-slide img {
    animation: heroImageMove 11s ease-in-out infinite alternate;
    height: calc(100svh - 72px);
    object-fit: cover;
    object-position: center 18%;
    width: 100%;
}

.hero-slide::after {
    background:
        linear-gradient(90deg, rgba(10, 6, 5, .76), rgba(10, 6, 5, .22) 46%, rgba(10, 6, 5, .06)),
        linear-gradient(0deg, rgba(10, 6, 5, .7), transparent 42%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.store-hero-copy {
    animation: liftIn .55s ease .12s both;
    bottom: clamp(42px, 8vw, 92px);
    color: #fffdf9;
    left: var(--page);
    max-width: min(720px, calc(100vw - 32px));
    position: absolute;
    z-index: 2;
}

.store-hero-copy p,
.eyebrow {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.store-hero-copy h1,
.collection-toolbar h2,
.editorial-band h2,
.care-band h2,
.buy-panel h1,
.cart-heading h1 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0;
    line-height: .95;
    margin: 0;
}

.store-hero-copy h1 {
    color: #fffdf9;
    font-size: clamp(58px, 10vw, 142px);
    max-width: 780px;
    text-shadow: 0 18px 60px rgba(0, 0, 0, .52);
}

.store-hero-copy span {
    color: rgba(255, 253, 249, .96);
    display: block;
    font-size: clamp(17px, 2.2vw, 24px);
    line-height: 1.35;
    margin: 14px 0 24px;
    max-width: 560px;
    text-shadow: 0 10px 34px rgba(0, 0, 0, .48);
}

.store-hero-copy .button.primary {
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.hero-cta {
    align-items: center;
    color: #fffdf9;
    display: inline-flex;
    font-size: 13px;
    font-weight: 950;
    gap: 10px;
    min-height: 42px;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .42);
    text-transform: uppercase;
}

.hero-cta svg {
    background: var(--brand);
    border: 1px solid rgba(255, 253, 249, .28);
    border-radius: 999px;
    color: #fffdf9;
    height: 34px;
    padding: 8px;
    transition: transform .18s ease;
    width: 34px;
}

.hero-cta:hover svg {
    transform: translateX(3px);
}

.store-promise {
    background: var(--milk);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 86px;
}

.store-promise span {
    align-items: center;
    border-right: 1px solid var(--line);
    color: var(--muted);
    display: flex;
    font-size: 12px;
    font-weight: 900;
    padding: 18px var(--page);
    text-transform: uppercase;
}

.collection-section,
.related-section {
    background: var(--milk);
    padding: clamp(52px, 8vw, 112px) var(--page);
}

.related-section {
    border-top: 1px solid var(--line);
    padding-top: clamp(42px, 7vw, 88px);
}

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

.eyebrow {
    color: var(--brand);
}

.collection-toolbar h2 {
    font-size: clamp(42px, 6vw, 78px);
}

.collection-toolbar span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.product-grid {
    display: grid;
    gap: clamp(18px, 2.3vw, 34px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.product-card {
    animation: liftIn .45s ease both;
    min-width: 0;
    position: relative;
}

.product-image {
    background: #eee7df;
    display: block;
    overflow: hidden;
    position: relative;
}

.product-image img {
    aspect-ratio: 4 / 5.3;
    object-fit: cover;
    transition: transform .38s ease, filter .38s ease;
    width: 100%;
}

.product-image span {
    background: rgba(255, 253, 249, .9);
    border: 1px solid rgba(255, 253, 249, .46);
    border-radius: 999px;
    bottom: 12px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 900;
    left: 12px;
    padding: 7px 10px;
    position: absolute;
    text-transform: uppercase;
}

.product-card:hover img {
    filter: saturate(1.06);
    transform: scale(1.035);
}

.product-card-body {
    align-items: start;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 14px 0 10px;
}

.product-card-copy {
    min-width: 0;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.05;
    margin: 0;
}

.product-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
    margin: 6px 0 0;
}

.product-card strong {
    font-size: 14px;
    padding-top: 4px;
    white-space: nowrap;
}

.price-stack,
.line-price-stack,
.product-price-detail {
    display: grid;
    gap: 4px;
    justify-items: end;
}

.line-price-stack,
.product-price-detail {
    justify-items: start;
}

.price-stack span:not(.campaign-name),
.line-price-stack span:not(.campaign-name),
.product-price-detail span:not(.campaign-name) {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.price-stack s,
.line-price-stack s,
.product-price-detail s,
.drawer-line-total s,
.drawer-line-copy s {
    color: var(--muted);
    font-size: 12px;
}

.campaign-name {
    color: var(--accent);
    display: block;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.mini-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.mini-swatches span {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    padding: 5px 8px;
}

.quick-add-form {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr auto;
}

.quick-add-form button,
.quick-add-form a,
.quick-add-form span {
    align-items: center;
    border-radius: var(--radius);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    justify-content: center;
    min-height: 42px;
    padding: 9px 12px;
    text-transform: uppercase;
}

.quick-add-form button {
    background: var(--ink);
    border: 1px solid var(--ink);
    color: var(--milk);
    cursor: pointer;
}

.quick-add-form a {
    border: 1px solid var(--line);
    color: var(--muted);
}

.quick-add-form.is-disabled span {
    background: var(--paper);
    color: var(--muted);
}

.empty-state,
.empty-cart,
.store-notice {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 28px;
}

.editorial-band {
    align-items: end;
    background:
        linear-gradient(90deg, rgba(23, 17, 15, .96), rgba(23, 17, 15, .8)),
        url("https://images.unsplash.com/photo-1556905055-8f358a7a47b2?auto=format&fit=crop&w=1800&q=80");
    background-position: center;
    background-size: cover;
    color: var(--milk);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 540px);
    padding: clamp(58px, 8vw, 104px) var(--page);
}

.editorial-band .eyebrow {
    color: var(--base);
}

.editorial-band h2 {
    font-size: clamp(40px, 6vw, 78px);
}

.editorial-band p,
.care-band p {
    color: rgba(255, 253, 249, .74);
    font-size: 17px;
    line-height: 1.55;
}

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

.care-band article {
    background: var(--milk);
    border-top: 1px solid var(--line);
    padding: clamp(40px, 6vw, 78px) var(--page);
}

.care-band article:first-child {
    background: var(--paper);
}

.care-band h2 {
    font-size: clamp(34px, 5vw, 60px);
}

.care-band p {
    color: var(--muted);
}

.collection-section,
.editorial-band,
.care-band,
.related-section,
.catalog-page,
.product-page,
.cart-page,
.checkout-page,
.legal-page {
    animation: sectionFade .5s ease both;
}

.catalog-page {
    background: var(--milk);
    min-height: 72vh;
    padding: clamp(34px, 6vw, 78px) var(--page) clamp(58px, 8vw, 108px);
    width: 100%;
}

.catalog-hero {
    align-items: end;
    background:
        linear-gradient(90deg, rgba(248, 242, 234, .98), rgba(248, 242, 234, .78) 44%, rgba(22, 16, 13, .18)),
        var(--catalog-hero-image);
    background-position: center;
    background-size: cover;
    border: 1px solid var(--line);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
    margin-bottom: clamp(22px, 4vw, 42px);
    min-height: clamp(240px, 34vw, 430px);
    min-width: 0;
    padding: clamp(24px, 5vw, 58px);
    position: relative;
}

.catalog-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 118px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: .9;
    margin: 0;
    overflow-wrap: anywhere;
}

.catalog-hero p:last-child {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
    margin: 0;
}

.catalog-shell {
    align-items: start;
    display: grid;
    gap: clamp(22px, 3vw, 38px);
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    min-width: 0;
}

.catalog-sidebar {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 14px;
    position: sticky;
    top: 96px;
    min-width: 0;
}

.catalog-sidebar-head,
.catalog-status {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.catalog-sidebar-head {
    border-bottom: 1px solid var(--line);
    margin-bottom: 12px;
    padding: 4px 2px 12px;
}

.catalog-sidebar-head span,
.catalog-status span {
    color: var(--brand);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.catalog-sidebar-head a,
.catalog-status a {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.category-rail {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.category-pill {
    align-items: center;
    background: rgba(255, 253, 249, .66);
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: var(--muted);
    display: grid;
    gap: 10px;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    min-height: 48px;
    min-width: 0;
    padding: 10px 11px;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.category-pill:hover {
    transform: translateY(-1px);
}

.category-pill.is-active {
    background: var(--dark);
    border-color: rgba(255, 253, 249, .18);
    color: var(--milk);
}

.category-pill svg,
.catalog-search svg,
.filter-submit svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 18px;
}

.category-pill span {
    font-size: 13px;
    font-weight: 900;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-pill em {
    background: rgba(22, 16, 13, .07);
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    font-weight: 950;
    min-width: 26px;
    padding: 5px 7px;
    text-align: center;
}

.category-pill.is-active em {
    background: rgba(255, 253, 249, .16);
}

.catalog-results {
    min-width: 0;
}

.catalog-filters {
    align-items: end;
    background: var(--milk);
    border: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 190px) auto;
    margin-bottom: 16px;
    min-width: 0;
    padding: 12px;
    width: 100%;
}

.catalog-search,
.catalog-select {
    color: var(--muted);
    display: grid;
    gap: 7px;
    font-size: 11px;
    font-weight: 950;
    min-width: 0;
    text-transform: uppercase;
}

.catalog-search {
    align-items: center;
    gap: 8px 10px;
    grid-template-columns: 20px 1fr;
}

.catalog-search span {
    grid-column: 2;
}

.catalog-search svg {
    color: var(--brand);
    grid-row: 1 / span 2;
}

.catalog-search input,
.catalog-select select {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font: inherit;
    min-height: 44px;
    padding: 10px 12px;
    width: 100%;
}

.filter-submit {
    align-items: center;
    border-radius: var(--radius);
    display: inline-flex;
    font-size: 12px;
    font-weight: 950;
    gap: 8px;
    justify-content: center;
    min-height: 44px;
    min-width: 0;
    padding: 10px 13px;
    text-transform: uppercase;
    white-space: nowrap;
}

.filter-submit {
    background: var(--ink);
    border: 1px solid var(--ink);
    color: var(--milk);
    cursor: pointer;
    font: inherit;
}

.catalog-status {
    margin-bottom: 20px;
}

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

.catalog-empty {
    grid-column: 1 / -1;
}

.catalog-empty h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 500;
    margin: 0 0 8px;
}

.catalog-pagination {
    margin-top: 34px;
}

.catalog-pagination nav > div:first-child {
    display: none;
}

.catalog-pagination nav > div:last-child,
.catalog-pagination nav span,
.catalog-pagination nav a {
    align-items: center;
    display: flex;
    gap: 8px;
}

.catalog-pagination nav a,
.catalog-pagination nav span span,
.catalog-pagination nav [aria-current="page"] span {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    min-height: 38px;
    padding: 9px 12px;
}

.catalog-pagination nav [aria-current="page"] span {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--milk);
}

.product-page {
    background: var(--milk);
    display: grid;
    gap: clamp(22px, 4vw, 58px);
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
    padding: clamp(24px, 5vw, 70px) var(--page) clamp(54px, 8vw, 100px);
}

.product-gallery-shell {
    min-width: 0;
    position: sticky;
    top: 92px;
}

.gallery-main {
    background: #f2ede8;
    border: 0;
    cursor: zoom-in;
    display: block;
    isolation: isolate;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}

.gallery-main img {
    display: block;
    height: auto;
    max-height: calc(100svh - 176px);
    object-fit: contain;
    object-position: center;
    transition: filter .35s ease, opacity .2s ease, transform .45s ease;
    width: 100%;
}

.gallery-main:hover img {
    filter: saturate(1.04);
    transform: scale(1.018);
}

.gallery-main span {
    background: rgba(255, 252, 247, .92);
    bottom: 18px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    left: 18px;
    letter-spacing: .04em;
    opacity: 0;
    padding: 11px 14px;
    position: absolute;
    text-transform: uppercase;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

.gallery-main:hover span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-thumbs {
    display: grid;
    gap: 12px;
    grid-auto-columns: 92px;
    grid-auto-flow: column;
    margin-top: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 0 8px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    background: #f2ede8;
    border: 1px solid transparent;
    cursor: pointer;
    opacity: .66;
    overflow: hidden;
    padding: 0;
    scroll-snap-align: start;
    transition: border-color .18s ease, opacity .18s ease, transform .18s ease;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
    border-color: var(--brand);
    opacity: 1;
}

.gallery-thumb:hover {
    transform: translateY(-1px);
}

.gallery-thumb img {
    aspect-ratio: 4 / 5;
    display: block;
    object-fit: cover;
    width: 100%;
}

.gallery-hint {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    margin: 8px 0 0;
    text-transform: uppercase;
}

.buy-panel {
    align-self: start;
    background: var(--milk);
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    padding: clamp(22px, 3vw, 36px);
    position: sticky;
    top: 96px;
}

.buy-panel h1,
.cart-heading h1 {
    font-size: clamp(42px, 6vw, 82px);
}

.lead {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
}

.price {
    font-size: 24px;
    font-weight: 950;
}

.product-meta-strip {
    border-block: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin: 22px 0;
    padding: 14px 0;
}

.product-meta-strip span {
    color: var(--muted);
    display: block;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.product-meta-strip strong {
    display: block;
    font-size: 13px;
    line-height: 1.3;
}

.add-to-cart-form fieldset {
    border: 0;
    margin: 22px 0 0;
    padding: 0;
}

.add-to-cart-form legend,
.quantity-field {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.variant-options label {
    cursor: pointer;
}

.variant-options input {
    opacity: 0;
    position: absolute;
}

.variant-options span {
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    min-height: 39px;
    padding: 9px 13px;
}

.variant-options input:checked + span {
    background: var(--brand);
    color: var(--milk);
}

.variant-options input:disabled + span {
    opacity: .35;
}

.quantity-field input {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: block;
    font: inherit;
    margin-top: 8px;
    min-height: 44px;
    padding: 8px 10px;
    width: 110px;
}

.detail-blocks {
    border-top: 1px solid var(--line);
    margin-top: 28px;
}

.detail-blocks section {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.detail-blocks h2 {
    font-size: 13px;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.detail-blocks p {
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 6px;
}

.cart-page {
    background: var(--milk);
    min-height: 70vh;
    padding: clamp(34px, 6vw, 80px) var(--page);
}

.cart-heading {
    margin-bottom: 24px;
}

.cart-layout {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.cart-lines {
    display: grid;
    gap: 14px;
}

.cart-line {
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    display: grid;
    gap: 16px;
    grid-template-columns: 96px minmax(0, 1fr) auto auto;
    padding: 12px;
}

.cart-line img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.cart-line h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.cart-line p {
    color: var(--muted);
    margin: 4px 0;
}

.cart-line form {
    display: grid;
    gap: 8px;
}

.cart-line input {
    background: var(--milk);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: 38px;
    padding: 7px;
    width: 76px;
}

.cart-line button {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 800;
    min-height: 36px;
    padding: 7px 10px;
}

.cart-summary {
    align-self: start;
    background: var(--dark);
    color: var(--milk);
    padding: 24px;
    position: sticky;
    top: 96px;
}

.cart-summary h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 20px;
}

.cart-summary div {
    border-block: 1px solid rgba(255, 253, 249, .18);
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
}

.cart-summary .discount-line,
.checkout-total.discount-line {
    color: var(--base);
}

.cart-summary .discount-line strong,
.checkout-total.discount-line strong {
    color: #fffdf9;
}

.coupon-form {
    border-top: 1px solid rgba(255, 253, 249, .18);
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
}

.coupon-form label {
    color: rgba(255, 253, 249, .72);
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    text-transform: uppercase;
}

.coupon-form input {
    background: rgba(255, 253, 249, .1);
    border: 1px solid rgba(255, 253, 249, .18);
    border-radius: var(--radius);
    color: var(--milk);
    font: inherit;
    min-height: 44px;
    padding: 10px 12px;
    text-transform: uppercase;
    width: 100%;
}

.coupon-form button {
    background: var(--milk);
    border: 0;
    border-radius: var(--radius);
    color: var(--brand);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 950;
    min-height: 42px;
    text-transform: uppercase;
}

.coupon-remove {
    color: var(--base);
    margin-top: 10px;
}

.cart-summary p {
    color: rgba(255, 253, 249, .66);
    font-size: 14px;
}

.cart-summary .continue-link {
    color: var(--base);
    display: inline-flex;
    margin-top: 14px;
}

.checkout-page,
.legal-page {
    background: var(--milk);
    min-height: 72vh;
    padding: clamp(38px, 6vw, 86px) var(--page);
}

.checkout-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.checkout-heading h1,
.legal-page h1 {
    font-family: var(--font-display);
    font-size: clamp(46px, 7vw, 90px);
    font-weight: 500;
    line-height: .96;
    margin: 0;
}

.checkout-heading p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}

.checkout-layout {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
}

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

.checkout-form section,
.checkout-summary {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: clamp(20px, 3vw, 30px);
}

.checkout-form section > span {
    color: var(--brand);
    display: block;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 8px;
}

.checkout-form h2,
.checkout-summary h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 500;
    margin: 0 0 18px;
}

.checkout-form label {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.checkout-form input,
.checkout-form textarea {
    background: var(--milk);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: block;
    font: inherit;
    margin-top: 8px;
    min-height: 46px;
    padding: 11px 12px;
    width: 100%;
}

.payment-choice {
    background: var(--milk);
    border: 1px solid var(--line);
    margin-bottom: 16px;
    padding: 16px;
}

.payment-choice p,
.checkout-summary p {
    color: var(--muted);
    line-height: 1.5;
}

.checkout-consent {
    align-items: flex-start;
    background: var(--milk);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: flex !important;
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px;
    text-transform: none !important;
}

.checkout-consent input {
    margin-top: 4px;
    min-height: auto;
    width: auto;
}

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

.field-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    margin: 12px 0 0;
}

.checkout-summary {
    align-self: start;
    background: var(--dark);
    color: var(--milk);
    position: sticky;
    top: 96px;
}

.checkout-lines {
    display: grid;
    gap: 14px;
}

.checkout-lines article {
    align-items: center;
    border-bottom: 1px solid rgba(255, 253, 249, .16);
    display: grid;
    gap: 12px;
    grid-template-columns: 68px 1fr;
    padding-bottom: 14px;
}

.checkout-lines img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.checkout-lines span {
    color: rgba(255, 253, 249, .7);
    display: block;
    font-size: 13px;
    margin-top: 4px;
}

.checkout-total {
    align-items: center;
    border-block: 1px solid rgba(255, 253, 249, .18);
    display: flex;
    justify-content: space-between;
    margin: 22px 0 12px;
    padding: 16px 0;
}

.checkout-coupon {
    border-block: 1px solid rgba(255, 253, 249, .18);
    margin-top: 0;
    padding-block: 16px;
}

.grand-total {
    margin-top: 0;
}

/* Checkout redesign */
.checkout-page {
    background: linear-gradient(180deg, var(--milk), #f7efe6 100%);
    min-height: calc(100svh - 72px);
    overflow-x: clip;
}

.checkout-heading {
    margin-inline: auto;
    max-width: 1180px;
}

.checkout-heading .eyebrow {
    color: var(--brand);
}

.checkout-heading h1 {
    max-width: 840px;
}

.checkout-heading > p {
    max-width: 720px;
}

.checkout-heading-centered {
    text-align: center;
}

.checkout-heading-centered h1,
.checkout-heading-centered > p {
    margin-inline: auto;
}

.success-mark {
    align-items: center;
    background: var(--brand);
    border: 1px solid rgba(109, 21, 11, .16);
    color: var(--milk);
    display: inline-flex;
    font-size: 21px;
    height: 44px;
    justify-content: center;
    margin-bottom: 18px;
    width: 44px;
}

.order-reference {
    align-items: center;
    background: rgba(255, 253, 249, .74);
    border: 1px solid var(--line);
    display: inline-flex;
    gap: 14px;
    margin: 22px auto 0;
    padding: 12px 16px;
}

.order-reference span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.order-reference strong {
    color: var(--brand);
    font-size: 15px;
}

.checkout-layout {
    gap: clamp(22px, 3vw, 42px);
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    margin-inline: auto;
    max-width: 1180px;
}

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

.paytr-payment-page {
    max-width: none;
    width: 100%;
}

.paytr-payment-page .checkout-heading {
    margin-bottom: clamp(26px, 4vw, 44px);
    max-width: 760px;
}

.paytr-payment-page .checkout-heading h1 {
    max-width: 720px;
}

.paytr-payment-page .checkout-heading > p {
    max-width: 640px;
}

.paytr-frame-section {
    background: rgba(255, 253, 249, .78);
    border: 1px solid rgba(22, 16, 13, .1);
    border-radius: 4px;
    margin-inline: auto;
    max-width: 920px;
    padding: clamp(18px, 3vw, 28px);
    width: min(100%, 920px);
}

.paytr-frame-head {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.paytr-frame-head h2 {
    margin: .35rem 0 0;
}

.paytr-frame-section iframe {
    background: #fff;
    border: 1px solid rgba(22, 16, 13, .08);
    border-radius: 4px;
    display: block;
}

.checkout-form {
    gap: 18px;
    min-width: 0;
}

.checkout-form .checkout-section {
    background: rgba(255, 253, 249, .72);
    border: 1px solid rgba(22, 16, 13, .1);
    padding: clamp(22px, 3vw, 34px);
}

.checkout-step {
    color: var(--brand);
    display: block;
    font-size: 11px;
    font-weight: 950;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.checkout-section-head {
    margin-bottom: 20px;
}

.checkout-form h2,
.checkout-summary h2,
.checkout-summary-details summary span {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    line-height: 1;
    margin: 0 0 16px;
}

.checkout-section-head p,
.order-steps p,
.order-info-panel dd {
    color: var(--muted);
    line-height: 1.55;
}

.checkout-form label {
    color: var(--ink);
    display: grid;
    font-size: 12px;
    font-weight: 900;
    gap: 8px;
    text-transform: uppercase;
}

.checkout-form label em {
    color: var(--brand);
    font-style: normal;
}

.checkout-form input,
.checkout-form textarea {
    background: var(--milk);
    border: 1px solid rgba(22, 16, 13, .16);
    border-radius: 4px;
    color: var(--ink);
    margin-top: 0;
    min-height: 50px;
    outline: 0;
    padding: 12px 13px;
}

.checkout-form textarea {
    min-height: 132px;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.coupon-form input:focus,
.drawer-coupon-form input:focus {
    border-color: rgba(109, 21, 11, .72);
    box-shadow: 0 0 0 3px rgba(109, 21, 11, .1);
}

.checkout-form input[aria-invalid="true"],
.checkout-form textarea[aria-invalid="true"] {
    border-color: rgba(180, 35, 44, .72);
}

.field-error {
    color: #8b1e18;
    display: block;
    font-size: 12px;
    font-weight: 850;
    line-height: 1.4;
    text-transform: none;
}

.payment-choice {
    background: var(--paper);
    border: 1px solid rgba(22, 16, 13, .1);
    border-radius: 4px;
    margin-bottom: 16px;
    padding: 16px;
}

.payment-choice strong {
    color: var(--brand);
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.checkout-consent {
    background: var(--milk);
    border-color: rgba(22, 16, 13, .12);
    border-radius: 4px;
    color: var(--muted) !important;
    line-height: 1.55;
}

.checkout-consent input {
    accent-color: var(--brand);
    min-height: 18px;
    min-width: 18px;
}

.field-note {
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.checkout-summary {
    background: #211713;
    border: 1px solid rgba(255, 253, 249, .12);
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(22, 16, 13, .12);
    color: var(--milk);
    max-height: calc(100svh - 122px);
    overflow: auto;
    padding: clamp(18px, 2.4vw, 26px);
    scrollbar-width: thin;
    top: 92px;
}

.checkout-summary h2,
.checkout-summary-details summary span {
    color: var(--milk);
}

.checkout-summary-details summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    list-style: none;
    margin-bottom: 18px;
}

.checkout-summary-details summary::-webkit-details-marker {
    display: none;
}

.checkout-summary-details summary strong {
    color: var(--base);
    font-size: 14px;
    white-space: nowrap;
}

.checkout-lines {
    gap: 0;
}

.checkout-lines article {
    border-bottom: 1px solid rgba(255, 253, 249, .14);
    gap: 13px;
    grid-template-columns: 74px minmax(0, 1fr);
    padding: 14px 0;
}

.checkout-lines article:first-child {
    padding-top: 0;
}

.checkout-lines article:not(:has(img)) {
    grid-template-columns: minmax(0, 1fr);
}

.checkout-lines img {
    background: rgba(255, 253, 249, .08);
    height: 96px;
    object-fit: cover;
    width: 74px;
}

.checkout-lines strong {
    color: var(--milk);
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
}

.checkout-lines em {
    color: rgba(255, 253, 249, .58);
    display: block;
    font-size: 12px;
    font-style: normal;
    margin-top: 6px;
    text-transform: uppercase;
}

.checkout-lines span {
    color: rgba(255, 253, 249, .72);
    font-size: 13px;
}

.checkout-total {
    border: 0;
    color: rgba(255, 253, 249, .72);
    gap: 12px;
    margin: 0;
    padding: 10px 0;
}

.checkout-total strong {
    color: var(--milk);
    text-align: right;
}

.checkout-total.discount-line,
.checkout-total.discount-line strong {
    color: #d9b6a9;
}

.grand-total {
    border-top: 1px solid rgba(255, 253, 249, .18);
    margin-top: 12px;
    padding-top: 18px;
}

.grand-total span {
    color: var(--milk);
    font-weight: 900;
}

.grand-total strong {
    color: var(--base);
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 500;
}

.checkout-coupon {
    background: rgba(255, 253, 249, .06);
    border: 1px solid rgba(255, 253, 249, .14);
    border-radius: 4px;
    margin: 12px 0;
    padding: 14px;
}

.checkout-coupon label {
    color: rgba(255, 253, 249, .72);
}

.checkout-coupon input {
    background: rgba(255, 253, 249, .96);
    border-radius: 4px;
    color: var(--ink);
    min-height: 46px;
}

.checkout-coupon button {
    border-radius: 4px;
    min-height: 44px;
}

.coupon-remove {
    color: var(--base);
    min-height: 44px;
}

.checkout-summary p {
    color: rgba(255, 253, 249, .62);
    font-size: 13px;
}

.order-steps {
    display: grid;
    gap: 12px;
}

.order-steps article {
    border-left: 1px solid rgba(109, 21, 11, .24);
    padding-left: 16px;
}

.order-steps article span,
.order-info-panel dt {
    color: var(--brand);
    display: block;
    font-size: 11px;
    font-weight: 950;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.order-steps article strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.order-steps article p {
    margin: 0;
}

.order-info-panel dl {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 22px;
}

.order-info-panel div {
    min-width: 0;
}

.order-info-panel .wide {
    grid-column: 1 / -1;
}

.order-info-panel dt,
.order-info-panel dd {
    margin: 0;
}

.order-info-panel dd {
    overflow-wrap: anywhere;
}

.order-tracking-page .checkout-heading {
    max-width: 980px;
}

.order-tracking-search {
    margin-inline: auto;
    margin-bottom: clamp(22px, 3vw, 36px);
    max-width: 760px;
}

.order-tracking-search form {
    background: rgba(255, 253, 249, .72);
    border: 1px solid rgba(22, 16, 13, .1);
    gap: 14px;
    padding: clamp(20px, 3vw, 30px);
}

.order-tracking-layout {
    align-items: start;
}

.order-status-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.order-status-grid article {
    background: var(--milk);
    border: 1px solid rgba(22, 16, 13, .1);
    padding: 14px;
}

.order-status-grid span {
    color: var(--brand);
    display: block;
    font-size: 11px;
    font-weight: 950;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.order-status-grid strong {
    color: var(--ink);
    display: block;
}

.checkout-form .button.primary,
.order-info-panel .button.primary {
    border-radius: 4px;
    text-transform: none;
}

.button:focus-visible,
.continue-link:focus-visible,
.cart-link:focus-visible,
.checkout-form input:focus-visible,
.checkout-form textarea:focus-visible,
.checkout-consent:focus-within,
.checkout-summary-details summary:focus-visible,
.checkout-coupon button:focus-visible {
    outline: 2px solid rgba(109, 21, 11, .72);
    outline-offset: 3px;
}

.legal-page {
    max-width: 980px;
}

.legal-copy {
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 24px;
    padding-top: 24px;
}

.contact-panel {
    background: rgba(255, 253, 249, .72);
    border: 1px solid rgba(22, 16, 13, .1);
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
    padding: clamp(20px, 3vw, 30px);
}

.contact-panel div {
    min-width: 0;
}

.contact-panel .wide {
    grid-column: 1 / -1;
}

.contact-panel span {
    color: var(--brand);
    display: block;
    font-size: 11px;
    font-weight: 950;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.contact-panel strong,
.contact-panel a {
    color: var(--ink);
    display: block;
    font-size: clamp(18px, 2vw, 24px);
    overflow-wrap: anywhere;
}

.site-footer {
    background: var(--dark);
    color: var(--milk);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px) auto;
    padding: clamp(38px, 5vw, 62px) var(--page);
}

.site-footer strong {
    color: var(--base);
    font-family: var(--font-display);
    font-size: 29px;
}

.footer-logo {
    display: inline-flex;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    height: 46px;
    object-fit: contain;
    width: auto;
}

.site-footer p {
    color: rgba(255, 253, 249, .66);
    margin: 6px 0 0;
}

.footer-contact {
    color: rgba(255, 253, 249, .72);
    display: grid;
    font-style: normal;
    gap: 6px;
    margin-top: 18px;
}

.footer-contact strong {
    color: var(--base);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 253, 249, .72);
    font-size: 14px;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.payment-badges img {
    height: 28px;
    width: auto;
}

.footer-campaign {
    align-items: center;
    background: rgba(255, 253, 249, .06);
    border: 1px solid rgba(255, 253, 249, .12);
    display: grid;
    gap: 14px;
    grid-template-columns: 78px 1fr;
    padding: 10px;
}

.footer-campaign img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.footer-campaign small,
.footer-campaign em {
    color: var(--base);
    display: block;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-campaign strong {
    color: var(--milk);
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1;
    margin: 6px 0 10px;
}

.footer-links {
    display: grid;
    gap: 9px;
    justify-items: end;
}

.cart-overlay {
    background: rgba(10, 6, 5, .42);
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity .18s ease;
    z-index: 40;
}

.cart-overlay[data-visible="true"] {
    opacity: 1;
}

.channel-modal-overlay {
    background: rgba(10, 6, 5, .54);
    inset: 0;
    opacity: 0;
    position: fixed;
    transition: opacity .2s ease;
    z-index: 82;
}

.channel-modal-overlay[data-visible="true"] {
    opacity: 1;
}

.channel-modal {
    background: var(--milk);
    box-shadow: 0 32px 90px rgba(22, 16, 13, .28);
    display: grid;
    left: 50%;
    max-height: min(82vh, 760px);
    max-width: min(760px, calc(100vw - 34px));
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -46%) scale(.98);
    transition: opacity .2s ease, transform .2s ease;
    width: auto;
    z-index: 83;
}

.channel-modal.is-editorial {
    max-width: min(620px, calc(100vw - 34px));
    width: 620px;
}

.channel-modal.has-image {
    background: transparent;
    box-shadow: 0 32px 90px rgba(22, 16, 13, .32);
    max-height: min(88vh, 820px);
}

.channel-modal[aria-hidden="false"] {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.channel-modal[aria-hidden="true"] {
    pointer-events: none;
}

.channel-modal figure {
    background: var(--paper);
    margin: 0;
    position: relative;
}

.channel-modal figure img {
    max-height: min(88vh, 820px);
    max-width: min(760px, calc(100vw - 34px));
    object-fit: contain;
    width: auto;
}

.channel-modal-copy {
    display: grid;
    gap: 14px;
    min-width: 0;
    padding: clamp(26px, 4vw, 46px);
    position: relative;
}

.channel-modal-close {
    align-items: center;
    background: rgba(255, 253, 249, .86);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(22, 16, 13, .12);
    border-radius: 999px;
    color: var(--ink);
    cursor: pointer;
    display: grid;
    font: inherit;
    font-size: 24px;
    height: 40px;
    line-height: 1;
    place-items: center;
    position: absolute;
    right: 16px;
    top: 16px;
    width: 40px;
}

.channel-modal-content {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.62;
}

.channel-modal-content > *:last-child {
    margin-bottom: 0;
}

.channel-modal-link {
    color: var(--milk);
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    justify-self: start;
    letter-spacing: 0;
    line-height: 1.1;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.channel-modal.has-image .channel-modal-link {
    bottom: clamp(18px, 4vw, 34px);
    left: clamp(18px, 4vw, 34px);
    position: absolute;
    text-shadow: 0 8px 28px rgba(0, 0, 0, .46);
}

.channel-modal.is-editorial .channel-modal-link {
    color: var(--brand);
    justify-self: start;
    margin-top: 4px;
}

.store-toast {
    background: var(--dark);
    box-shadow: 0 18px 45px rgba(22, 16, 13, .22);
    color: var(--milk);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
    max-width: calc(100vw - 32px);
    opacity: 0;
    padding: 13px 16px;
    pointer-events: none;
    position: fixed;
    right: 24px;
    text-transform: uppercase;
    top: 88px;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 90;
}

.store-toast[data-visible="true"] {
    opacity: 1;
    transform: translateY(0);
}

.lightbox {
    align-items: center;
    background: rgba(10, 6, 5, .86);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: clamp(18px, 4vw, 48px);
    position: fixed;
    transition: opacity .16s ease;
    z-index: 100;
}

.lightbox[hidden] {
    display: none;
}

.lightbox[data-visible="true"] {
    opacity: 1;
}

.lightbox img {
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
    max-height: 88vh;
    max-width: min(1100px, 94vw);
    object-fit: contain;
}

.lightbox-close {
    align-items: center;
    background: var(--milk);
    border: 0;
    color: var(--brand);
    cursor: pointer;
    display: grid;
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 800;
    height: 44px;
    line-height: 1;
    place-items: center;
    position: fixed;
    right: 24px;
    top: 22px;
    width: 44px;
}

.cart-drawer {
    background: var(--milk);
    border-left: 1px solid var(--line);
    bottom: 0;
    box-shadow: -28px 0 70px rgba(22, 16, 13, .18);
    display: grid;
    grid-template-rows: auto 1fr auto;
    max-width: min(480px, 100vw);
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform .22s ease;
    width: 480px;
    z-index: 45;
}

.cart-drawer[aria-hidden="true"] {
    box-shadow: none;
    display: none;
}

.cart-drawer[aria-hidden="false"] {
    transform: translateX(0);
}

.cart-drawer-head,
.cart-drawer-foot {
    padding: 22px;
}

.cart-drawer-head {
    align-items: start;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
}

.cart-drawer-head h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 500;
    margin: 0;
}

.cart-drawer-head button {
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: 25px;
    height: 38px;
    width: 38px;
}

.cart-drawer-body {
    overflow: auto;
    padding: 14px 22px;
}

.drawer-empty {
    color: var(--muted);
}

.drawer-line {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 12px;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    padding: 14px 0;
}

.drawer-line img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.drawer-line-copy {
    min-width: 0;
}

.drawer-line a {
    font-family: var(--font-display);
    font-size: 20px;
}

.drawer-line p,
.drawer-line span {
    color: var(--muted);
    font-size: 13px;
    margin: 3px 0;
}

.drawer-qty {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    grid-column: 2 / 3;
}

.drawer-qty button {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
    height: 30px;
    width: 30px;
}

.drawer-qty span {
    color: var(--ink);
    font-weight: 900;
    min-width: 20px;
    text-align: center;
}

.drawer-line-total {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-column: 3 / 4;
    grid-row: 1 / span 2;
    justify-content: space-between;
    text-align: right;
}

.drawer-line-total button {
    background: transparent;
    border: 0;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    font-weight: 850;
    padding: 0;
}

.cart-drawer-foot {
    border-top: 1px solid var(--line);
}

.cart-drawer-foot div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.drawer-discounts {
    display: grid !important;
    gap: 8px;
}

.drawer-discounts[hidden] {
    display: none !important;
}

.drawer-discounts div {
    border-block: 0;
    color: var(--brand);
    font-size: 13px;
    font-weight: 900;
    margin: 0;
    padding: 0;
}

.drawer-discounts span {
    color: var(--muted);
    max-width: 68%;
}

.drawer-discounts strong {
    color: var(--brand);
    text-align: right;
}

.drawer-coupon-form {
    border-block: 1px solid var(--line);
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
    padding: 14px 0;
}

.drawer-coupon-form label {
    color: var(--muted);
    display: grid;
    font-size: 11px;
    font-weight: 900;
    gap: 7px;
    text-transform: uppercase;
}

.drawer-coupon-form input {
    background: #fffdf9;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    font: inherit;
    min-height: 42px;
    padding: 9px 11px;
    text-transform: uppercase;
    width: 100%;
}

.drawer-coupon-form button {
    background: var(--brand);
    border: 0;
    border-radius: var(--radius);
    color: var(--milk);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 950;
    min-height: 40px;
    text-transform: uppercase;
}

.drawer-coupon-form p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
    margin: 0;
}

@keyframes liftIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sectionFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes imageBloom {
    from {
        filter: saturate(.85);
        transform: scale(1.02);
    }
    to {
        filter: saturate(1);
        transform: scale(1);
    }
}

@keyframes heroImageMove {
    from {
        filter: saturate(.98) contrast(1);
        transform: scale(1);
    }
    to {
        filter: saturate(1.08) contrast(1.04);
        transform: scale(1.055);
    }
}

@keyframes heroFade {
    0%,
    36% {
        opacity: 1;
    }
    44%,
    92% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

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

    .product-page,
    .cart-layout,
    .checkout-layout,
    .editorial-band {
        grid-template-columns: 1fr;
    }

    .buy-panel,
    .cart-summary,
    .checkout-summary {
        position: static;
    }

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

    .fullscreen-menu-grid {
        grid-template-columns: minmax(150px, 200px) minmax(0, 1fr);
    }

    .fullscreen-menu-feature {
        display: none;
    }

    .footer-links {
        justify-items: start;
    }
}

@media (max-width: 900px) {
    .catalog-filters {
        align-items: stretch;
        grid-template-columns: 1fr;
    }

    .filter-submit {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .site-header {
        gap: 12px;
        justify-content: space-between;
        min-height: 62px;
        padding-block: 10px;
    }

    .menu-trigger {
        order: 1;
    }

    .brand {
        flex: 1;
        justify-content: center;
        order: 2;
    }

    .brand img {
        height: 34px;
        max-width: min(180px, calc(100vw - 96px));
    }

    .site-header nav {
        display: none;
    }

    .cart-link {
        background: var(--brand) !important;
        border: 1px solid rgba(255, 253, 249, .6) !important;
        border-radius: 999px;
        box-shadow: 0 12px 28px rgba(109, 21, 11, .22);
        color: var(--milk) !important;
        display: flex !important;
        flex-shrink: 0;
        height: 42px;
        justify-content: center;
        left: auto !important;
        opacity: 1 !important;
        position: relative;
        right: auto !important;
        top: auto !important;
        visibility: visible !important;
        width: 42px;
        order: 3;
        z-index: 80;
    }

    .cart-link svg {
        height: 22px;
        width: 22px;
    }

    .store-hero {
        min-height: 78svh;
    }

    .hero-slide img {
        height: 78svh;
        object-position: center top;
    }

    .store-hero-copy {
        bottom: 28px;
    }

    .store-hero-copy h1 {
        font-size: clamp(50px, 14vw, 64px);
        max-width: 100%;
    }

    .store-hero-copy span {
        font-size: 16px;
        max-width: 310px;
    }

    .channel-modal {
        max-height: calc(100svh - 28px);
        max-width: calc(100vw - 28px);
    }

    .channel-modal.is-editorial {
        overflow: auto;
        width: calc(100vw - 28px);
    }

    .channel-modal figure img {
        max-height: calc(100svh - 28px);
        max-width: calc(100vw - 28px);
    }

    .channel-modal-copy {
        padding: 24px;
    }

    .fullscreen-menu-panel {
        padding: max(12px, env(safe-area-inset-top)) var(--page) max(18px, env(safe-area-inset-bottom));
    }

    .fullscreen-menu-head {
        min-height: 58px;
        padding-bottom: 10px;
        position: sticky;
        top: 0;
        z-index: 1;
        background: var(--milk);
    }

    .fullscreen-menu-logo img {
        height: 34px;
        max-width: min(170px, calc(100vw - 118px));
    }

    .fullscreen-menu-close {
        flex-shrink: 0;
    }

    .fullscreen-menu-grid {
        display: none;
    }

    .fullscreen-menu-mobile {
        display: grid;
        gap: 0;
        padding: 18px 0 28px;
    }

    .mobile-menu-link,
    .mobile-menu-row {
        border-bottom: 1px solid var(--line);
    }

    .mobile-menu-link {
        align-items: center;
        display: flex;
        font-size: clamp(30px, 10vw, 44px);
        padding: 15px 0;
    }

    .mobile-menu-row {
        align-items: center;
        display: grid;
        gap: 12px;
        grid-template-columns: minmax(0, 1fr) 44px;
        min-height: 58px;
    }

    .mobile-menu-row a {
        color: var(--ink);
        font-family: var(--font-display);
        font-size: clamp(28px, 9vw, 42px);
        font-weight: 500;
        line-height: 1;
        min-width: 0;
        overflow-wrap: anywhere;
        padding: 14px 0;
    }

    .mobile-menu-row.is-child a {
        color: var(--brand);
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 950;
        line-height: 1.25;
        text-transform: uppercase;
    }

    .mobile-menu-row button {
        align-items: center;
        background: transparent;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        color: var(--brand);
        cursor: pointer;
        display: grid;
        height: 40px;
        justify-content: center;
        padding: 0;
        width: 40px;
    }

    .mobile-menu-row button svg {
        height: 18px;
        transition: transform 220ms ease;
        width: 18px;
    }

    .mobile-menu-row button[aria-expanded="true"] svg {
        transform: rotate(180deg);
    }

    .mobile-menu-panel {
        border-bottom: 1px solid var(--line);
        display: grid;
        gap: 0;
        padding: 4px 0 10px 16px;
    }

    .mobile-menu-panel[hidden] {
        display: none;
    }

    .mobile-menu-panel.is-products {
        border-bottom: 0;
        gap: 2px;
        padding: 0 0 10px 14px;
    }

    .mobile-menu-panel.is-products a {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.35;
        min-height: 44px;
        overflow-wrap: anywhere;
        padding: 11px 0;
    }

    .mobile-menu-panel.is-root-products {
        padding-left: 0;
    }

    .store-promise,
    .care-band {
        grid-template-columns: 1fr;
    }

    .catalog-page {
        padding: 28px var(--page) clamp(48px, 10vw, 72px);
    }

    .catalog-hero,
    .catalog-shell,
    .catalog-filters {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    .catalog-hero {
        align-items: start;
        gap: 18px;
        margin-bottom: 18px;
        min-height: clamp(220px, 64vw, 330px);
        padding: clamp(20px, 6vw, 30px);
    }

    .catalog-hero h1 {
        font-size: clamp(38px, 13vw, 58px);
        line-height: .95;
        max-width: 100%;
    }

    .catalog-hero p:last-child {
        font-size: 15px;
        max-width: 100%;
    }

    .catalog-sidebar {
        background: transparent;
        border: 0;
        margin-inline: 0;
        padding: 0;
        position: static;
        width: 100%;
    }

    .catalog-sidebar-head {
        margin-bottom: 10px;
        min-width: 0;
    }

    .category-rail {
        display: grid;
        gap: 10px;
        grid-auto-columns: minmax(0, min(260px, calc(100vw - (var(--page) * 2))));
        grid-auto-flow: column;
        margin-inline: 0;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
        width: 100%;
    }

    .category-rail::-webkit-scrollbar {
        display: none;
    }

    .category-pill {
        max-width: 100%;
        scroll-snap-align: start;
    }

    .catalog-filters {
        align-items: stretch;
        padding: 10px;
        width: 100%;
    }

    .catalog-search {
        grid-template-columns: 18px minmax(0, 1fr);
    }

    .catalog-search input,
    .catalog-select select {
        min-width: 0;
    }

    .filter-submit {
        width: 100%;
    }

    .product-gallery-shell {
        position: static;
        top: auto;
    }

    .gallery-main img {
        max-height: none;
    }

    .gallery-main span {
        opacity: 1;
        transform: none;
    }

    .gallery-thumbs {
        grid-auto-columns: 72px;
    }

    .store-promise span {
        border-right: 0;
        padding-block: 14px;
    }

    .product-grid,
    .product-grid.compact {
        gap: 18px 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }

    .collection-toolbar,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .collection-toolbar h2 {
        font-size: clamp(36px, 12vw, 54px);
    }

    .product-card-body {
        display: block;
        padding-bottom: 8px;
    }

    .product-card,
    .product-card-copy,
    .quick-add-form {
        min-width: 0;
    }

    .product-image img {
        height: auto;
        object-fit: cover;
        width: 100%;
    }

    .product-card h3 {
        font-size: 21px;
        overflow-wrap: anywhere;
    }

    .product-card strong {
        display: block;
        margin-top: 8px;
        white-space: normal;
    }

    .footer-logo img {
        height: 40px;
    }

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

    .quick-add-form a {
        display: none;
    }

    .product-page {
        padding-top: 18px;
    }

    .product-meta-strip {
        grid-template-columns: 1fr;
    }

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

    .checkout-heading h1,
    .legal-page h1 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .cart-line {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .cart-line form {
        grid-column: 1 / -1;
    }

    .drawer-line {
        grid-template-columns: 66px minmax(0, 1fr);
    }

    .drawer-qty {
        grid-column: 2 / 3;
    }

    .drawer-line-total {
        align-items: flex-start;
        flex-direction: row;
        grid-column: 2 / 3;
        grid-row: auto;
        text-align: left;
    }
}

@media (max-width: 430px) {
    .brand {
        font-size: 28px;
    }

    .brand img {
        max-width: min(150px, calc(100vw - 92px));
    }

    .fullscreen-menu-logo img {
        max-width: min(150px, calc(100vw - 112px));
    }

    .store-hero-copy h1 {
        font-size: 50px;
    }

    .product-card h3 {
        font-size: 19px;
    }

    .product-card p,
    .mini-swatches {
        display: none;
    }

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

    .catalog-status {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .quick-add-form button,
    .quick-add-form span {
        font-size: 11px;
        min-height: 40px;
        padding-inline: 8px;
    }
}

@media (max-width: 360px) {
    :root {
        --page: 14px;
    }

    .catalog-hero h1 {
        font-size: clamp(34px, 12vw, 46px);
    }

    .category-rail {
        grid-auto-columns: minmax(0, calc(100vw - (var(--page) * 2)));
    }

    .catalog-filters {
        padding: 9px;
    }
}

/* Customer feedback */
.feedback-hero {
    background: #241b18;
    color: #fffaf6;
    padding: clamp(72px, 10vw, 138px) max(24px, calc((100vw - 1180px) / 2));
}

.feedback-hero > div {
    max-width: 760px;
}

.feedback-hero .eyebrow,
.feedback-thank-you .eyebrow {
    color: #d6a88f;
    font-size: 11px;
    letter-spacing: .24em;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.feedback-hero h1,
.feedback-thank-you h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(40px, 6vw, 76px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.05;
    margin: 0 0 24px;
}

.feedback-hero > div > p:last-child {
    color: #d8ccc6;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
    max-width: 620px;
}

.feedback-shell {
    margin: 0 auto;
    max-width: 980px;
    padding: clamp(42px, 7vw, 92px) 24px;
}

.feedback-customer {
    border-bottom: 1px solid #d9cbc3;
    margin-bottom: 40px;
    padding-bottom: 34px;
}

.feedback-customer > div {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feedback-customer label,
.feedback-card > label {
    color: #554842;
    display: grid;
    font-size: 13px;
    gap: 9px;
    letter-spacing: .04em;
}

.feedback-customer input,
.feedback-card textarea,
.feedback-photo input {
    background: #fffdfb;
    border: 1px solid #d9cbc3;
    border-radius: 0;
    color: #251d19;
    font: inherit;
    padding: 13px 14px;
    width: 100%;
}

.feedback-customer input[readonly] {
    background: #f6f0eb;
    color: #75665f;
}

.feedback-form {
    display: grid;
    gap: 26px;
}

.feedback-card {
    background: #fffdfb;
    border: 1px solid #e2d6cf;
    padding: clamp(24px, 4vw, 44px);
}

.feedback-card header {
    align-items: flex-start;
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.feedback-card header > span {
    color: #ad7458;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 13px;
    padding-top: 5px;
}

.feedback-card h2 {
    color: #251d19;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 25px;
    font-weight: 400;
    margin: 0 0 5px;
}

.feedback-card header p {
    color: #8a7971;
    font-size: 13px;
    margin: 0;
}

.feedback-card fieldset {
    border: 0;
    margin: 0 0 26px;
    padding: 0;
}

.feedback-card legend {
    color: #554842;
    font-size: 13px;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.feedback-card legend span,
.feedback-card > label > span {
    color: #9b4235;
}

.feedback-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    width: max-content;
}

.feedback-rating input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}

.feedback-rating label {
    color: #d8cbc3;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    padding: 2px;
    transition: color .15s ease, transform .15s ease;
}

.feedback-rating input:checked ~ label,
.feedback-rating label:hover,
.feedback-rating label:hover ~ label {
    color: #aa6b4c;
}

.feedback-rating input:focus-visible + label {
    outline: 2px solid #7c3d2d;
    outline-offset: 3px;
}

.feedback-rating label:hover {
    transform: translateY(-2px);
}

.feedback-card textarea {
    line-height: 1.6;
    resize: vertical;
}

.feedback-photo {
    margin-top: 24px;
}

.feedback-photo small {
    color: #8a7971;
    font-size: 11px;
    letter-spacing: 0;
}

.feedback-photo input[type='file'] {
    color: #75665f;
    font-size: 12px;
}

.feedback-submit {
    align-items: center;
    background: #f3eae4;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding: 24px;
}

.feedback-submit p {
    color: #75665f;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}

.feedback-submit button,
.feedback-thank-you a {
    background: #7a2f22;
    border: 1px solid #7a2f22;
    color: #fffaf6;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: .08em;
    padding: 15px 22px;
    text-decoration: none;
    text-transform: uppercase;
}

.feedback-thank-you {
    align-items: center;
    background: #241b18;
    color: #fffaf6;
    display: flex;
    flex-direction: column;
    min-height: 72vh;
    padding: clamp(80px, 12vw, 160px) 24px;
    text-align: center;
}

.feedback-thank-you > span {
    color: #d6a88f;
    font-size: 26px;
    margin-bottom: 22px;
}

.feedback-thank-you h1 {
    max-width: 840px;
}

.feedback-thank-you > p:not(.eyebrow) {
    color: #d8ccc6;
    line-height: 1.7;
    margin: 0 0 34px;
    max-width: 600px;
}

@media (max-width: 700px) {
    .feedback-customer > div {
        grid-template-columns: 1fr;
    }

    .feedback-submit {
        align-items: stretch;
        flex-direction: column;
    }
}

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

@media (max-width: 760px) {
    .checkout-page {
        padding-top: 28px;
    }

    .checkout-layout,
    .checkout-complete-layout {
        gap: 16px;
    }

    .paytr-frame-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-summary {
        max-height: none;
        order: -1;
        overflow: visible;
        padding: 18px;
    }

    .checkout-summary-details summary {
        margin-bottom: 12px;
        min-height: 44px;
    }

    .checkout-form .checkout-section {
        padding: 20px;
    }

    .order-reference {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }

    .order-info-panel dl {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 360px) {
    .checkout-lines article {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .checkout-lines img {
        height: 82px;
        width: 62px;
    }

    .checkout-total {
        align-items: flex-start;
        flex-direction: column;
    }

    .checkout-total strong {
        text-align: left;
    }
}
