@font-face {
    font-family: "Bentham";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../font/Bentham-Regular.ttf") format("truetype");
}

:root {
    --ink: #1d2b22;
    --forest: #294536;
    --forest-dark: #1f352a;
    --sage: #a7b8a1;
    --sage-light: #dce5d9;
    --cream: #f5f1e8;
    --paper: #fbfaf6;
    --sand: #d7c8b0;
    --clay: #a5785e;
    --white: #ffffff;
    --line: rgba(29, 43, 34, 0.13);
    --shadow: 0 24px 80px rgba(31, 53, 42, 0.12);
}

/* Atelier ledger cart and retail checkout */
.atelier-kicker {
    margin: 0;
    color: #8f604b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.atelier-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--forest-dark);
    padding: 13px 24px;
    background: transparent;
    color: var(--forest-dark);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.atelier-button--ink {
    background: linear-gradient(105deg, #173b2d, #28503c);
    color: #fff;
}

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

.atelier-button--ink:hover:not(:disabled) {
    background: #2d493a;
}

.atelier-button:focus-visible,
.checkout-back:focus-visible,
.cart-ledger__continue:focus-visible,
.cart-ledger-item__remove:focus-visible {
    outline: 3px solid rgba(165, 120, 94, 0.3);
    outline-offset: 4px;
}

.atelier-button:disabled {
    border-color: #9ba29d;
    background: #9ba29d;
    cursor: not-allowed;
}

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

.store-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #6f7872;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.store-breadcrumb a {
    text-decoration: none;
}

.store-breadcrumb a:hover {
    color: var(--forest-dark);
}

.cart-ledger,
.checkout-page,
.checkout-complete {
    min-height: 70vh;
    background:
        linear-gradient(rgba(29, 43, 34, 0.018) 1px, transparent 1px),
        var(--paper);
    background-size: 100% 32px;
}

.cart-ledger {
    min-height: calc(100vh - 84px);
    background: #fbfaf7;
}

.container.cart-ledger__shell {
    width: min(1390px, calc(100% - 48px));
    padding-block: 51px 92px;
}

.cart-ledger__heading {
    max-width: 700px;
    padding-block: 42px 62px;
}

.cart-ledger__heading h1,
.checkout-panel__heading h1,
.checkout-complete h1 {
    margin: 10px 0 8px;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.6vw, 66px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.cart-ledger__heading h1 {
    margin: 0 0 20px;
    font-size: 43px;
}

.cart-ledger__heading > p:last-child,
.checkout-panel__heading > p:last-child {
    max-width: 610px;
    margin: 0;
    color: #667169;
    font-size: 15px;
}

.cart-ledger__heading > p:last-child {
    transform: translateY(8px);
}

.cart-ledger__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 385px;
    gap: 37px;
    align-items: start;
}

.cart-ledger__items {
    border-top: 1px solid rgba(29, 43, 34, 0.35);
}

.cart-ledger__columns,
.cart-ledger-item {
    display: grid;
    grid-template-columns: minmax(420px, 1fr) 120px 140px 100px 70px;
    gap: 18px;
}

.cart-ledger__columns {
    padding: 12px 0 31px;
    border-bottom: 1px solid rgba(29, 43, 34, 0.28);
    color: #737c76;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cart-ledger__columns span:nth-child(2),
.cart-ledger__columns span:nth-child(3),
.cart-ledger__columns span:nth-child(4) {
    text-align: center;
}

.cart-ledger__columns span {
    color: #273e34;
    transform: translateY(10px);
}

.cart-ledger__columns span:nth-child(4) {
    text-align: right;
    transform: translate(70px, 10px);
}

.cart-ledger-item {
    align-items: center;
    padding: 38px 0 26px;
    border-bottom: 1px solid rgba(29, 43, 34, 0.28);
}

.cart-ledger-item__product {
    display: grid;
    grid-template-columns: 250px minmax(170px, 1fr);
    gap: 20px;
    align-items: center;
}

.cart-ledger-item__image {
    display: block;
    width: 250px;
    height: 230px;
    overflow: hidden;
    background: #e9e5dc;
}

.cart-ledger-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-ledger-item__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: #8b958e;
    font-family: Georgia, serif;
    font-size: 36px;
}

.cart-ledger-item__copy h2 {
    max-width: 220px;
    margin: 8px 0 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
}

.cart-ledger-item__copy {
    transform: translateY(-18px);
}

.cart-ledger-item__copy h2 a {
    text-decoration: none;
}

.cart-ledger-item__unit {
    margin: 0;
    color: #9a6048;
    font-family: Georgia, serif;
    font-size: 17px;
    text-align: center;
    transform: translateY(-15px);
}

.cart-ledger-item__gift,
.cart-ledger__included {
    margin: 12px 0 0;
    color: #7f5543;
    font-size: 14px;
}

.cart-ledger-item__gift {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-top: 12px;
    transform: translateY(12px);
}

.botanical-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.botanical-icon--check {
    width: 15px;
    height: 15px;
    stroke-width: 1.8;
}

.cart-ledger-item__remove-form {
    margin: 0;
    text-align: right;
    transform: translateY(-15px);
}

.cart-ledger-item__remove {
    border: 0;
    border-bottom: 1px solid #9a6f59;
    padding: 0 0 2px;
    background: transparent;
    color: #805844;
    cursor: pointer;
    font-size: 12px;
}

.cart-ledger-item__quantity-form {
    margin: 0;
    transform: translateY(-15px);
}

.atelier-stepper {
    display: grid;
    grid-template-columns: 34px 44px 34px;
    width: 114px;
    height: 42px;
    align-items: stretch;
    border: 1px solid rgba(29, 43, 34, 0.25);
    background: rgba(255, 255, 255, 0.44);
}

.atelier-stepper button {
    border: 0;
    background: transparent;
    color: var(--forest-dark);
    cursor: pointer;
    font-size: 17px;
}

.atelier-stepper button:hover {
    background: rgba(41, 69, 54, 0.07);
}

.atelier-stepper .input {
    margin: 0;
}

.atelier-stepper input {
    width: 100%;
    height: 40px;
    border: 0;
    border-inline: 1px solid var(--line);
    padding: 0;
    background: transparent;
    color: var(--ink);
    text-align: center;
    -moz-appearance: textfield;
}

.atelier-stepper input::-webkit-outer-spin-button,
.atelier-stepper input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.cart-ledger-item__total {
    margin: 0;
    color: #9a6048;
    font-family: Georgia, serif;
    font-size: 19px;
    text-align: right;
    transform: translateY(-15px);
}

.cart-ledger__summary,
.checkout-summary {
    position: sticky;
    top: 112px;
    padding: 30px;
    border: 1px solid rgba(29, 43, 34, 0.18);
    background: rgba(245, 241, 232, 0.82);
    box-shadow: 0 18px 48px rgba(41, 69, 54, 0.07);
}

.cart-ledger__summary {
    min-height: 385px;
    padding: 21px 0 0 42px;
    border: 0;
    border-left: 1px solid rgba(29, 43, 34, 0.18);
    background: transparent;
    box-shadow: none;
    transform: translate(4px, 2px);
}

.cart-ledger__summary h2,
.checkout-summary h2 {
    margin: 8px 0 28px;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.cart-ledger__summary > .atelier-kicker {
    color: var(--forest-dark);
    font-size: 13px;
}

.cart-ledger__subtotal {
    display: flex;
    justify-content: space-between;
    margin-top: 26px;
    padding: 24px 0 14px;
    border-top: 1px solid rgba(29, 43, 34, 0.28);
    font-size: 14px;
}

.cart-ledger__subtotal strong {
    color: #9a6048;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
}

.cart-ledger__shipping-note {
    margin: 10px 0 4px;
    color: #69736d;
    font-size: 12px;
    line-height: 1.55;
    transform: translateY(-6px);
}

.cart-ledger__summary .atelier-button {
    margin-top: 41px;
    min-height: 63px;
}

.cart-ledger__continue {
    display: block;
    width: fit-content;
    margin: 30px 0 0;
    color: #56635b;
    font-size: 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(86, 99, 91, 0.5);
}

.cart-ledger__secure {
    margin: 22px 0 0;
    color: #79827c;
    font-size: 11px;
    text-align: center;
}

.cart-ledger__empty {
    max-width: 720px;
    padding: 54px 0 80px;
    border-top: 1px solid rgba(29, 43, 34, 0.35);
}

.cart-ledger__empty h2 {
    margin: 10px 0;
    font-family: Georgia, serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.12;
}

.cart-ledger__empty > p:nth-of-type(2) {
    max-width: 590px;
    margin: 0 0 28px;
    color: #68726c;
}

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

.checkout-page__shell {
    padding-block: 34px 92px;
}

.checkout-progress {
    max-width: 900px;
    margin-bottom: 46px;
}

.checkout-progress ol {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.checkout-progress__step {
    position: relative;
    display: flex;
    gap: 9px;
    align-items: center;
    color: #8b938e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-progress__step::after {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: 10px;
    left: 36px;
    height: 1px;
    background: rgba(29, 43, 34, 0.16);
    content: "";
}

.checkout-progress__step:last-child::after {
    display: none;
}

.checkout-progress__number {
    position: relative;
    z-index: 1;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(29, 43, 34, 0.25);
    border-radius: 50%;
    background: var(--paper);
    font-size: 10px;
}

.checkout-progress__step > span:last-child,
.checkout-progress__step > a {
    position: relative;
    z-index: 1;
    padding-right: 12px;
    background: var(--paper);
    text-decoration: none;
}

.checkout-progress__step.is-current,
.checkout-progress__step.is-complete {
    color: var(--forest-dark);
}

.checkout-progress__step.is-current .checkout-progress__number,
.checkout-progress__step.is-complete .checkout-progress__number {
    border-color: var(--forest-dark);
}

.checkout-progress__step.is-current .checkout-progress__number {
    background: var(--forest-dark);
    color: #fff;
}

.checkout-progress__step.is-complete .checkout-progress__number {
    background: #edf0ea;
}

.checkout-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.75fr);
    gap: clamp(54px, 7vw, 100px);
    align-items: start;
}

.checkout-panel {
    min-width: 0;
    animation: checkout-stage-settle 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes checkout-stage-settle {
    from {
        opacity: 0.94;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-panel__heading {
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(29, 43, 34, 0.24);
}

.checkout-panel__heading h1 {
    max-width: 720px;
    font-size: clamp(36px, 4vw, 56px);
}

.checkout-form {
    margin-top: 28px;
}

.checkout-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(29, 43, 34, 0.2);
}

.checkout-choice {
    position: relative;
    display: flex;
    min-height: 154px;
    flex-direction: column;
    padding: 24px 22px;
    border-right: 1px solid rgba(29, 43, 34, 0.15);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.checkout-choice:last-child {
    border-right: 0;
}

.checkout-choice.is-selected {
    background: #eff1eb;
    box-shadow: inset 0 -3px var(--forest-dark);
}

.checkout-choice input,
.checkout-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.checkout-choice__marker,
.checkout-option__marker {
    display: block;
    width: 16px;
    height: 16px;
    margin-bottom: 22px;
    border: 1px solid #77827a;
    border-radius: 50%;
}

.checkout-choice input:checked + .checkout-choice__marker,
.checkout-option input:checked + .checkout-option__marker {
    border: 5px solid var(--forest-dark);
}

.checkout-choice input:focus-visible + .checkout-choice__marker,
.checkout-option input:focus-visible + .checkout-option__marker {
    outline: 3px solid rgba(165, 120, 94, 0.3);
    outline-offset: 3px;
}

.checkout-choice strong {
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
}

.checkout-choice small {
    margin-top: 8px;
    color: #69736d;
    font-size: 11px;
    line-height: 1.45;
}

.checkout-mode-panel,
.checkout-form-section,
.checkout-saved-addresses {
    margin-top: 30px;
    padding-top: 30px;
    border: 0;
    border-top: 1px solid var(--line);
}

.checkout-mode-panel[hidden],
.checkout-billing[hidden] {
    display: none;
}

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

.checkout-section-heading h2,
.checkout-saved-addresses legend,
.checkout-complete__grid h2 {
    margin: 0 0 5px;
    color: var(--forest-dark);
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.checkout-section-heading p {
    margin: 0;
    color: #69736d;
    font-size: 12px;
}

.checkout-fields {
    display: grid;
    gap: 17px;
}

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

.checkout-fields--three {
    grid-template-columns: 1.4fr 1fr 0.75fr;
}

.checkout-password-stack {
    min-width: 0;
}

.checkout-registration-dob,
.checkout-registration-gender {
    grid-column: 1 / -1;
    min-width: 0;
    margin: 4px 0 0;
    border: 0;
    padding: 0;
}

.checkout-registration-dob legend,
.checkout-registration-gender legend {
    width: 100%;
    margin-bottom: 9px;
    color: #4d5a52;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.checkout-registration-dob legend small {
    margin-left: 7px;
    color: #9d382e;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.checkout-registration-dob .checkout-fields {
    max-width: 440px;
}

.checkout-registration-gender__options {
    display: flex;
    gap: 6px 24px;
    align-items: center;
    flex-wrap: wrap;
}

.checkout-form .checkout-registration-gender__options label {
    display: inline-flex;
    min-height: 44px;
    gap: 10px;
    align-items: center;
    margin: 0;
    color: #4d5a52;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.checkout-registration-gender__options input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.checkout-registration-gender__options label > span {
    position: relative;
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    place-items: center;
    border: 1px solid #69736d;
    border-radius: 50%;
}

.checkout-registration-gender__options label > span::after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--forest-dark);
    content: "";
    opacity: 0;
}

.checkout-registration-gender__options input:checked + span::after {
    opacity: 1;
}

.checkout-registration-gender__options input:focus-visible + span {
    outline: 3px solid rgba(165, 120, 94, 0.3);
    outline-offset: 3px;
}

.checkout-registration-gender__options em {
    font-style: normal;
}

.checkout-password-rules {
    display: grid;
    gap: 4px;
    margin: 9px 0 0;
    padding: 0;
    color: #69736d;
    font-size: 11px;
    line-height: 1.4;
    list-style: none;
}

.checkout-password-rules[hidden] {
    display: none;
}

.checkout-password-rules li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.checkout-password-rules li span {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.checkout-password-rules li.is-valid {
    color: var(--sage-dark);
}

.checkout-password-rules li.is-valid span {
    background: currentColor;
}

.checkout-form .input {
    margin: 0;
}

.checkout-form label:not(.checkout-choice, .checkout-option, .checkout-check-row, .checkout-radio-row) {
    display: block;
    margin-bottom: 7px;
    color: #4d5a52;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.checkout-form input:not([type="radio"], [type="checkbox"]),
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(29, 43, 34, 0.24);
    border-radius: 0;
    padding: 11px 13px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--ink);
}

.checkout-form textarea {
    min-height: 108px;
    resize: vertical;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    border-color: var(--forest-dark);
    outline: 2px solid rgba(41, 69, 54, 0.12);
    outline-offset: 0;
}

.checkout-error {
    margin: 9px 0 14px;
    padding: 10px 12px;
    border: 1px solid rgba(162, 87, 69, 0.34);
    background: rgba(162, 87, 69, 0.045);
    color: #883f31;
    font-size: 12px;
}

.checkout-contact-note {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 2px 18px;
    padding: 18px 0 22px;
    border-bottom: 1px solid var(--line);
}

.checkout-contact-note > span {
    grid-row: span 2;
    color: #7b847e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.checkout-contact-note strong {
    font-family: Georgia, serif;
    font-weight: 400;
}

.checkout-contact-note small {
    color: #6b746f;
}

.checkout-saved-addresses legend {
    margin-bottom: 16px;
}

.checkout-radio-row,
.checkout-check-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 10px 0;
    color: #445149;
    cursor: pointer;
    font-size: 13px;
}

.checkout-radio-row input,
.checkout-check-row input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--forest-dark);
}

.checkout-radio-row span,
.checkout-check-row span {
    display: grid;
}

.checkout-radio-row small,
.checkout-check-row small {
    color: #727b75;
}

.checkout-check-row--prominent {
    padding: 18px;
    border: 1px solid rgba(29, 43, 34, 0.18);
    background: rgba(255, 255, 255, 0.28);
}

.checkout-billing {
    margin-top: 26px;
}

.checkout-gift-note {
    padding: 26px;
    border: 1px solid rgba(154, 96, 72, 0.25);
    background: #f3ece2;
}

.checkout-form__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(29, 43, 34, 0.22);
}

.checkout-back {
    color: #56635b;
    font-size: 12px;
    text-decoration: none;
    border-bottom: 1px solid rgba(86, 99, 91, 0.5);
}

.checkout-form__note {
    margin: 18px 0 0;
    color: #6f7872;
    font-size: 12px;
}

.checkout-option-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: 0;
}

.checkout-option {
    position: relative;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 17px;
    align-items: center;
    min-height: 96px;
    padding: 20px;
    border: 1px solid rgba(29, 43, 34, 0.2);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.checkout-option:has(input:checked) {
    border-color: var(--forest-dark);
    background: #eff1eb;
}

.checkout-option__marker {
    margin: 0;
}

.checkout-option__copy {
    display: grid;
}

.checkout-option__copy strong {
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 400;
}

.checkout-option__copy small {
    color: #6f7872;
    font-size: 12px;
}

.checkout-option__price {
    color: #9a6048;
    font-family: Georgia, serif;
    font-size: 16px;
    text-align: right;
}

.checkout-option.is-unavailable {
    color: #7d837f;
    cursor: not-allowed;
    opacity: 0.68;
}

.checkout-option--payment {
    grid-template-columns: 18px 38px minmax(0, 1fr) auto;
}

.checkout-provider-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(29, 43, 34, 0.25);
    background: #fff;
    color: #536159;
    font-family: Georgia, serif;
    font-weight: 700;
}

.checkout-provider-mark--paypal {
    color: #215b9a;
}

.checkout-setup-note {
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(165, 120, 94, 0.35);
    background: #f3ece2;
}

.checkout-setup-note strong {
    font-family: Georgia, serif;
    font-weight: 400;
}

.checkout-setup-note p {
    margin: 4px 0 0;
    color: #6b665f;
    font-size: 12px;
}

.checkout-summary {
    top: 110px;
    padding: 28px;
}

.checkout-summary h2 {
    margin-bottom: 22px;
    font-size: 26px;
}

.checkout-summary__items {
    display: grid;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.checkout-summary-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
}

.checkout-summary-item__image {
    position: relative;
    display: grid;
    width: 54px;
    height: 66px;
    place-items: center;
    background: #e4e1d8;
    color: #829087;
    font-family: Georgia, serif;
}

.checkout-summary-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-summary-item__image strong {
    position: absolute;
    top: -7px;
    right: -7px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: var(--forest-dark);
    color: #fff;
    font-size: 10px;
}

.checkout-summary-item h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}

.checkout-summary-item p {
    margin: 4px 0 0;
    color: #8f604b;
    font-size: 9px;
}

.checkout-summary-item > span {
    color: #8f604b;
    font-size: 12px;
}

.checkout-summary__totals {
    margin: 18px 0 0;
}

.checkout-summary__totals > div {
    display: flex;
    justify-content: space-between;
    margin: 9px 0;
    color: #606b64;
    font-size: 12px;
}

.checkout-summary__totals dt,
.checkout-summary__totals dd {
    margin: 0;
}

.checkout-summary__total {
    align-items: baseline;
    margin-top: 17px !important;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--forest-dark) !important;
    font-family: Georgia, serif;
    font-size: 17px !important;
}

.checkout-summary__total small {
    color: #7a837d;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 9px;
}

.checkout-summary__total dd {
    color: #9a6048;
    font-size: 23px;
}

.checkout-summary__gift,
.checkout-summary__trust {
    margin: 18px 0 0;
    color: #8f604b;
    font-size: 10px;
}

.checkout-summary__gift {
    display: flex;
    gap: 7px;
    align-items: center;
}

.checkout-summary__trust {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: #7a837d;
    text-align: center;
}

.checkout-complete__shell {
    max-width: 940px;
    padding-block: 80px 110px;
    text-align: center;
}

.checkout-complete__shell .checkout-progress {
    margin-inline: auto;
    text-align: left;
}

.checkout-complete__mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin: 0 auto 18px;
    border: 1px solid var(--forest-dark);
    border-radius: 50%;
}

.checkout-complete__mark .botanical-icon {
    width: 22px;
    height: 22px;
}

.checkout-complete h1 {
    font-size: clamp(40px, 5vw, 62px);
}

.checkout-complete__lead {
    max-width: 620px;
    margin: 0 auto;
    color: #68726c;
}

.checkout-complete__reference {
    display: grid;
    gap: 3px;
    margin: 28px auto 48px;
}

.checkout-complete__reference span {
    color: #8f604b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.checkout-complete__reference strong {
    font-size: 12px;
    font-weight: 500;
}

.checkout-complete__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 48px;
    margin-bottom: 42px;
    padding: 34px 0;
    border-block: 1px solid rgba(29, 43, 34, 0.25);
    text-align: left;
}

.checkout-complete-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}

.checkout-complete-item > div {
    display: grid;
}

.checkout-complete-item strong {
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 400;
}

.checkout-complete-item span {
    color: #69736d;
}

.checkout-complete__totals {
    margin: 20px 0 0;
}

.checkout-complete__totals > div {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 13px;
}

.checkout-complete__totals dt,
.checkout-complete__totals dd {
    margin: 0;
}

.checkout-complete__totals > div:last-child {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: #9a6048;
    font-family: Georgia, serif;
    font-size: 19px;
}

.checkout-complete__detail {
    margin-bottom: 28px;
}

.checkout-complete__detail h2 {
    margin-top: 6px;
}

.checkout-complete__detail address,
.checkout-complete__detail > p:last-child {
    color: #657069;
    font-size: 13px;
    font-style: normal;
}

.checkout-complete__method {
    margin: 0 0 8px;
    color: #8f604b;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.checkout-surface > iframe {
    display: none !important;
}

@media (max-width: 1100px) {
    .cart-ledger__layout,
    .checkout-page__layout {
        grid-template-columns: 1fr;
    }

    .cart-ledger__summary,
    .checkout-summary {
        position: static;
        width: 100%;
        max-width: 620px;
    }

    .cart-ledger__summary {
        padding: 28px;
        border: 1px solid rgba(29, 43, 34, 0.18);
    }

    .cart-ledger__columns {
        display: none;
    }

    .cart-ledger-item {
        grid-template-columns: 1fr auto auto auto;
        gap: 20px;
    }

    .cart-ledger-item__product {
        grid-column: 1 / -1;
    }

    .cart-ledger-item__copy {
        transform: none;
    }

    .cart-ledger-item__gift {
        transform: none;
    }

    .cart-ledger-item__unit,
    .cart-ledger-item__quantity-form,
    .cart-ledger-item__total {
        transform: none;
    }

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

    .checkout-choice {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(29, 43, 34, 0.15);
    }

    .checkout-choice:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 680px) {
    .cart-ledger__shell,
    .checkout-page__shell {
        padding-block: 22px 62px;
    }

    .cart-ledger__heading {
        padding-block: 32px 24px;
    }

    .cart-ledger__columns {
        display: none;
    }

    .cart-ledger-item {
        grid-template-columns: 1fr auto;
        gap: 18px 12px;
        align-items: start;
    }

    .cart-ledger-item__product {
        grid-column: 1 / -1;
        grid-template-columns: 102px minmax(0, 1fr);
        gap: 16px;
    }

    .cart-ledger-item__image {
        width: 102px;
        height: 126px;
    }

    .cart-ledger-item__unit {
        display: none;
    }

    .cart-ledger-item__quantity-form {
        grid-column: 1;
    }

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

    .cart-ledger-item__remove-form {
        grid-column: 2;
        text-align: right;
    }

    .cart-ledger__summary,
    .checkout-summary {
        padding: 24px 20px;
    }

    .cart-ledger__summary {
        transform: none;
    }

    .checkout-progress {
        overflow: visible;
        margin-bottom: 34px;
        padding-bottom: 0;
    }

    .checkout-progress ol {
        min-width: 0;
        gap: 4px;
    }

    .checkout-progress__step > span:last-child,
    .checkout-progress__step > a {
        width: 100%;
        padding: 0 1px;
        background: transparent;
        font-size: 10px;
        letter-spacing: 0.02em;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }

    .checkout-progress__step {
        gap: 7px;
        align-items: center;
        flex-direction: column;
        min-width: 0;
    }

    .checkout-progress__number {
        width: 25px;
        height: 25px;
    }

    .checkout-progress__step::after {
        top: 12px;
        right: calc(-50% + 14px);
        left: calc(50% + 14px);
    }

    .checkout-fields--two,
    .checkout-fields--three,
    .checkout-complete__grid {
        grid-template-columns: 1fr;
    }

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

    .checkout-contact-note > span {
        grid-row: auto;
    }

    .checkout-option,
    .checkout-option--payment {
        grid-template-columns: 18px minmax(0, 1fr);
    }

    .checkout-provider-mark {
        display: none;
    }

    .checkout-option__price {
        grid-column: 2;
        text-align: left;
    }

    .checkout-form__actions {
        gap: 22px;
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .checkout-form__actions .atelier-button {
        width: 100%;
    }

    .checkout-back {
        align-self: center;
    }

    .checkout-complete__shell {
        padding-block: 60px 80px;
    }

    .checkout-complete__grid {
        gap: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .atelier-button {
        transition: none;
    }

    .checkout-panel {
        animation: none;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-top: 2px solid var(--forest);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(16px) saturate(125%);
    backdrop-filter: blur(16px) saturate(125%);
}

.site-header--checkout {
    border-top: 0;
}

.site-header--checkout .nav-wrap {
    min-height: 83px;
}

.site-header--home {
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.91);
    -webkit-backdrop-filter: blur(20px) saturate(130%);
    backdrop-filter: blur(20px) saturate(130%);
    box-shadow: 0 10px 36px rgba(31, 53, 42, 0.06);
    transition:
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 220ms ease;
    will-change: transform;
}

.site-header--home.is-hidden {
    transform: translateY(calc(-100% - 1px));
    pointer-events: none;
}

.site-header--home + main .hero-grid {
    padding-top: 158px;
}

.nav-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 30px;
}

.home-nav-shell {
    position: relative;
}

.header-utility-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 94px;
    gap: 28px;
    transition: min-height 220ms ease;
}

.header-utility-note {
    justify-self: start;
    color: #6e7171;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.header-utility-row > .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-utility-actions {
    display: flex;
    align-items: center;
    margin-inline-start: auto;
    gap: 22px;
}

.header-utility-actions > a {
    color: #48574f;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.header-utility-actions > a:hover {
    color: var(--forest-dark);
}

.header-utility-actions > a:focus-visible,
.main-nav a:focus-visible {
    border-radius: 4px;
    outline: 3px solid rgba(41, 69, 54, 0.22);
    outline-offset: 4px;
}

.nav-primary-bar {
    border-top: 1px solid rgba(29, 43, 34, 0.08);
    background: rgba(255, 255, 255, 0.42);
}

.nav-primary-bar .main-nav {
    min-height: 62px;
    justify-content: center;
    gap: clamp(36px, 6vw, 88px);
}

.site-header--home:not(.is-compact) .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 27px;
}

.site-header--home:not(.is-compact) .brand strong {
    font-size: 30px;
}

.site-header--home:not(.is-compact) .brand small {
    font-size: 9px;
}

.site-header--home.is-compact {
    background: rgba(255, 255, 255, 0.96);
}

.site-header--home.is-compact .header-utility-row {
    min-height: 72px;
}

.site-header--home.is-compact .header-utility-note {
    display: none;
}

.site-header--home.is-compact .header-utility-row > .brand {
    position: static;
    margin-inline-end: auto;
    transform: none;
}

.site-header--home.is-compact .nav-primary-bar {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
    pointer-events: none;
}

.site-header--home.is-compact .nav-primary-bar .main-nav {
    width: max-content;
    min-height: 72px;
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--forest);
    border-radius: 50% 50% 46% 54%;
    font-family: Georgia, serif;
    font-size: 21px;
    font-style: italic;
    transition:
        width 220ms ease,
        height 220ms ease,
        font-size 220ms ease;
}

.brand strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
    transition: font-size 220ms ease;
}

.brand small {
    display: block;
    margin-top: 5px;
    letter-spacing: 0.23em;
    font-size: 8px;
    transition: font-size 220ms ease;
}

.main-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 18px 0 14px;
    border-bottom: 2px solid transparent;
    color: #516058;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition:
        border-color 180ms ease,
        color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
    border-bottom-color: var(--forest);
    color: var(--forest);
}

.nav-primary-bar .main-nav a {
    min-height: 62px;
    padding: 20px 14px 16px;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header--home.is-compact .nav-primary-bar .main-nav a {
    min-height: 72px;
    padding: 23px 8px 19px;
    font-size: 12px;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.main-nav .cart-link {
    margin-inline-start: 16px;
    color: #48574f;
}

.cart-count {
    font-variant-numeric: tabular-nums;
}

.cart-icon {
    width: 20px;
    height: 20px;
    margin-inline-start: 2px;
}

.header-utility-actions .cart-link.active {
    color: var(--forest-dark);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 690px;
    background:
        radial-gradient(circle at 18% 28%, rgba(167, 184, 161, 0.17), transparent 29%),
        linear-gradient(120deg, var(--cream) 0%, #f8f5ee 51%, #e8ece3 51%, #dfe7db 100%);
}

.hero-grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 55px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: #68796d;
}

.eyebrow.light {
    color: #cdd8d0;
}

.hero h1,
.page-hero h1,
.admin-shell h1,
.dashboard-top h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 650px;
    font-size: clamp(58px, 6.5vw, 94px);
}

.hero-copy > p {
    max-width: 620px;
    margin: 28px 0 0;
    color: #526159;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 2px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: 0.2s ease;
}

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

.btn-primary {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.btn-primary:hover {
    background: var(--forest-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border-color: rgba(41, 69, 54, 0.35);
}

.btn-light {
    background: var(--cream);
    color: var(--forest);
}

.full-width {
    width: 100%;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 35px;
    color: #617067;
    font-size: 12px;
}

.hero-art {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.product-stage {
    position: relative;
    z-index: 3;
    width: 420px;
    height: 380px;
    border-radius: 50%;
    background: rgba(245, 241, 232, 0.76);
    box-shadow: inset 0 0 0 1px rgba(41, 69, 54, 0.08);
}

.product-stage::after {
    content: "";
    position: absolute;
    left: 44px;
    right: 44px;
    bottom: 58px;
    height: 36px;
    border-radius: 50%;
    background: rgba(49, 63, 53, 0.13);
    filter: blur(14px);
}

.bottle {
    position: absolute;
    z-index: 4;
    left: 176px;
    bottom: 70px;
    width: 112px;
    height: 220px;
    border-radius: 18px 18px 30px 30px;
    background: linear-gradient(90deg, #b1bea8, #d8dfd1 45%, #a5b49c);
    border: 1px solid rgba(41, 69, 54, 0.2);
    box-shadow: 13px 16px 32px rgba(40, 57, 46, 0.18);
}

.dropper {
    position: absolute;
    width: 65px;
    height: 82px;
    left: 23px;
    top: -76px;
    border-radius: 18px 18px 7px 7px;
    background: var(--forest-dark);
}

.dropper::after {
    content: "";
    position: absolute;
    left: 13px;
    bottom: -10px;
    width: 39px;
    height: 14px;
    background: #6c796f;
}

.bottle-label,
.jar-label {
    position: absolute;
    text-align: center;
    color: var(--forest-dark);
}

.bottle-label {
    inset: 62px 10px auto;
}

.jar-label {
    inset: 40px 10px auto;
}

.bottle-label small,
.jar-label small {
    display: block;
    font-size: 8px;
    letter-spacing: 0.18em;
}

.bottle-label strong,
.jar-label strong {
    display: block;
    margin: 8px 0 4px;
    font-family: Georgia, serif;
    font-size: 29px;
    font-weight: 400;
}

.bottle-label span,
.jar-label span {
    display: block;
    font-size: 6px;
    letter-spacing: 0.12em;
}

.jar {
    position: absolute;
    z-index: 5;
    left: 66px;
    bottom: 70px;
    width: 145px;
    height: 125px;
    border-radius: 18px 18px 24px 24px;
    background: linear-gradient(90deg, #e1d4c1, #f2eadf 55%, #cfbfa8);
    border: 1px solid rgba(85, 63, 46, 0.16);
    box-shadow: 10px 15px 28px rgba(53, 46, 39, 0.14);
}

.jar-lid {
    position: absolute;
    left: -4px;
    right: -4px;
    top: -25px;
    height: 32px;
    border-radius: 12px 12px 7px 7px;
    background: linear-gradient(#526656, #2e4738);
}

.leaf {
    position: absolute;
    z-index: 1;
    width: 190px;
    height: 330px;
}

.leaf::before,
.leaf::after {
    content: "";
    position: absolute;
    width: 65px;
    height: 150px;
    background: #698268;
    border-radius: 100% 0 100% 0;
    opacity: 0.86;
}

.leaf-one {
    right: -15px;
    top: 62px;
    transform: rotate(17deg);
}

.leaf-one::before {
    left: 34px;
    top: 15px;
}

.leaf-one::after {
    right: 16px;
    top: 123px;
    transform: rotate(74deg);
}

.leaf-two {
    left: -8px;
    bottom: 26px;
    transform: rotate(-28deg) scale(0.7);
}

.leaf-two::before {
    left: 28px;
}

.leaf-two::after {
    right: 15px;
    top: 105px;
    transform: rotate(70deg);
}

.hero-note {
    position: absolute;
    z-index: 6;
    right: -6px;
    bottom: 24px;
    width: 210px;
    padding: 20px;
    background: rgba(251, 250, 246, 0.9);
    border: 1px solid rgba(41, 69, 54, 0.12);
}

.hero-note span {
    font-family: Georgia, serif;
    color: #93a38f;
}

.hero-note p {
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.6;
}

.brand-strip {
    background: var(--forest);
    color: #dbe2dc;
}

.brand-strip .container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    letter-spacing: 0.14em;
}

.section {
    padding: 105px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 55px;
}

.section-heading h2,
.story-copy h2,
.wholesale-box h2,
.ai-grid h2,
.contact-aside h2,
.admin-form-inner h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.section-heading h2,
.story-copy h2,
.ai-grid h2,
.contact-aside h2 {
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.05;
}

.section-heading p {
    margin: 0;
    color: #617067;
}

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

.product-card {
    border: 1px solid var(--line);
    background: #fff;
}

.product-visual {
    min-height: 340px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.serum-card .product-visual {
    background: #dce5d9;
}

.mask-card .product-visual {
    background: #ebe1d4;
}

.hamper-card .product-visual {
    background: #d5ddd0;
}

.mini-bottle {
    position: relative;
    width: 92px;
    height: 185px;
    border-radius: 14px 14px 24px 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, #7b9077, #b5c5ae, #71876f);
    box-shadow: 20px 25px 40px rgba(41, 69, 54, 0.18);
}

.mini-dropper {
    position: absolute;
    top: -65px;
    width: 48px;
    height: 66px;
    border-radius: 13px 13px 5px 5px;
    background: var(--forest);
}

.mini-bottle span,
.mini-jar span {
    font-family: Georgia, serif;
    font-size: 21px;
    letter-spacing: 0.07em;
}

.mini-jar {
    position: relative;
    width: 150px;
    height: 110px;
    border-radius: 17px 17px 24px 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, #d6c4ab, #f0e7db, #cbb69a);
    box-shadow: 20px 25px 40px rgba(95, 72, 50, 0.16);
}

.mini-jar > div {
    position: absolute;
    top: -24px;
    left: -4px;
    right: -4px;
    height: 30px;
    border-radius: 9px 9px 6px 6px;
    background: var(--forest);
}

.gift-box {
    position: relative;
    width: 180px;
    height: 155px;
    display: grid;
    place-items: center;
    background: #f0eadc;
    border: 1px solid rgba(41, 69, 54, 0.15);
    box-shadow: 20px 25px 40px rgba(41, 69, 54, 0.14);
}

.gift-box strong {
    position: relative;
    z-index: 2;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 38px;
    font-weight: 400;
}

.ribbon-v,
.ribbon-h {
    position: absolute;
    background: #71836d;
}

.ribbon-v {
    width: 28px;
    top: 0;
    bottom: 0;
    left: calc(50% - 14px);
}

.ribbon-h {
    height: 28px;
    left: 0;
    right: 0;
    top: calc(50% - 14px);
}

.product-info {
    padding: 27px 28px 31px;
    border-top: 1px solid var(--line);
}

.product-number {
    color: #8b998f;
    font-family: Georgia, serif;
    font-size: 13px;
}

.product-info h3 {
    margin: 10px 0;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 400;
}

.product-info p {
    min-height: 72px;
    margin: 0 0 18px;
    color: #657269;
    font-size: 14px;
}

.product-info a,
.text-link {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--forest);
}

.story-section {
    padding: 105px 0;
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 95px;
    align-items: center;
}

.story-art {
    position: relative;
    min-height: 520px;
    background:
        linear-gradient(rgba(41, 69, 54, 0.04), rgba(41, 69, 54, 0.04)),
        #d8e0d4;
    overflow: hidden;
}

.story-circle {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 45% 45%, #edf0e8 0 20%, #bbc9b5 21% 38%, #7c9578 39% 52%, transparent 53%);
    left: -85px;
    bottom: -80px;
    opacity: 0.82;
}

.story-card {
    position: absolute;
    right: 32px;
    bottom: 32px;
    max-width: 250px;
    padding: 24px;
    background: var(--paper);
}

.story-card span {
    display: block;
    color: #7a887f;
    font-size: 9px;
    letter-spacing: 0.14em;
}

.story-card strong {
    display: block;
    margin-top: 10px;
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.story-copy p {
    max-width: 620px;
    color: #5e6c63;
}

.wholesale-section {
    padding: 0 0 105px;
    background: var(--cream);
}

.wholesale-box {
    min-height: 310px;
    padding: 60px 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: var(--forest);
    color: var(--white);
}

.wholesale-box h2 {
    max-width: 690px;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
}

.wholesale-box p {
    max-width: 700px;
    color: #d3ddd6;
}

.ai-section {
    padding: 100px 0;
}

.ai-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.ai-card {
    display: flex;
    gap: 22px;
    padding: 35px;
    border: 1px solid var(--line);
    background: #fff;
}

.ai-icon {
    font-size: 32px;
    color: #84967f;
}

.ai-card h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 400;
}

.ai-card p {
    margin: 0;
    color: #647168;
}

/* Contact page */
.page-hero {
    padding: 95px 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
}

.page-hero h1 {
    font-size: clamp(58px, 7vw, 90px);
}

.page-hero p {
    max-width: 650px;
    color: #5c6b62;
    font-size: 18px;
}

.contact-meta {
    display: grid;
    align-content: center;
    gap: 15px;
}

.contact-meta > div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.contact-meta span {
    font-family: Georgia, serif;
    color: #8ea08c;
}

.contact-meta p {
    margin: 0;
    font-size: 13px;
}

.contact-section {
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 80px;
}

.contact-aside {
    padding-top: 22px;
}

.contact-aside h2 {
    font-size: 51px;
}

.contact-aside > p {
    color: #657269;
}

.aside-note {
    display: flex;
    gap: 15px;
    margin-top: 36px;
    padding: 24px;
    background: var(--cream);
}

.aside-note p {
    margin: 0;
    font-size: 13px;
    color: #637067;
}

.form-card {
    padding: 42px;
    background: var(--paper);
    border: 1px solid var(--line);
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.form-row.two-col {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row label,
form > label {
    display: grid;
    gap: 8px;
}

.form-row span,
form > label > span {
    font-size: 12px;
    font-weight: 700;
    color: #4d5c53;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(41, 69, 54, 0.18);
    background: #fff;
    color: var(--ink);
    padding: 13px 14px;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #7d927b;
    box-shadow: 0 0 0 3px rgba(125, 146, 123, 0.11);
}

textarea {
    resize: vertical;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

/* Dropdown */
.contact-select {
    width: 100%;
    height: 56px;

    padding: 0 48px 0 18px;

    background: #ffffff;
    border: 0.5px solid #5a5a5a;
    border-radius: 16px;

    font-size: 15px;
    font-weight: 600;
    color: #1f1f1f;

    cursor: pointer;

    /* Remove browser default arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    outline: none;
}

/* Custom down arrow */
.select-wrapper::after {
    content: "";
    position: absolute;

    right: 20px;
    top: 50%;

    width: 8px;
    height: 8px;

    border-right: 2px solid #222;
    border-bottom: 2px solid #222;

    transform: translateY(-70%) rotate(45deg);

    pointer-events: none;
}

/* Small focus effect */
.contact-select:focus {
    border-color: #222222;
}

/* Optional hover */
.contact-select:hover {
    border-color: #444444;
}

.required-star {
    color: #d93025;
    margin-left: 2px;
}

/* Normal input */
.contact-input {
    width: 100%;
    border: 1px solid #999;
    transition: border-color 0.2s ease;
}

.required-star {
    color: #d93025 !important;
    margin-left: 2px;
    display: inline !important;
    font-size: inherit !important;
}

.contact-input {
    width: 100%;
    border: 1px solid #ddd;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* Only added by JavaScript after submit */
.contact-input.is-invalid {
    border: 2px solid #d93025 !important;
    box-shadow: 0 0 0 2px rgba(217, 48, 37, 0.08);
}

.contact-input:focus {
    outline: none;
}

/* Focus */
.contact-input:focus {
    outline: none;
    border-color: #333;
}

.required-star {
    color: #b3261e !important;
    margin-left: 2px;
    display: inline !important;
    font-size: inherit !important;
}

/* Normal field */
.contact-input {
    width: 100%;
    border: 1px solid #ddd;
    transition: border-color 0.2s ease;
}

/* Red only after validation fails */
.contact-input.is-invalid {
    border-color: #b3261e !important;
}

/* Warning is hidden normally */
.field-warning {
    display: none;
    align-items: center;
    gap: 5px;

    margin-top: 5px;

    color: #b3261e;
    font-size: 12px;
    line-height: 1.4;
}

/* Show after invalid submission */
.field-warning.show {
    display: flex;
}

.warning-icon {
    color: #b3261e !important;
    font-size: 10px !important;
    line-height: 1;
}

/* Don't override red invalid field when focused */
.contact-input.is-invalid:focus {
    border-color: #b3261e !important;
    box-shadow: 0 0 0 2px rgba(179, 38, 30, 0.08);
}

.message-counter {
    margin-top: 6px;
    text-align: right;
    font-size: 12px;
    color: #6b746d;
}

.message-counter.limit-reached {
    color: #b3261e;
    font-weight: 600;
}

.form-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.form-submit-row p {
    max-width: 440px;
    margin: 0;
    font-size: 11px;
    color: #738077;
}

.alert {
    margin-bottom: 24px;
    padding: 15px 18px;
    font-size: 13px;
    border: 1px solid;
}

.alert ul {
    margin-bottom: 0;
}

.alert-success {
    color: #31533d;
    background: #edf4ed;
    border-color: #bdd0bd;
}

.alert-error {
    color: #714238;
    background: #f8ece9;
    border-color: #e0bcb4;
}

/* Admin */
.admin-shell {
    min-height: calc(100vh - 82px);
    padding: 55px 20px;
    display: grid;
    place-items: center;
    background: #e8ece5;
}

.admin-login-panel {
    width: min(1000px, 100%);
    min-height: 610px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow);
}

.admin-brand-panel {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--forest);
    color: #fff;
}

.admin-brand-panel .brand {
    color: #fff;
}

.light-mark {
    border-color: rgba(255,255,255,0.8);
}

.admin-brand-panel h1 {
    margin-top: 12px;
    font-size: 67px;
}

.admin-brand-panel p {
    max-width: 390px;
    color: #d8e0da;
}

.security-list {
    display: grid;
    gap: 9px;
    font-size: 12px;
    color: #c9d5cd;
}

.admin-form-panel {
    display: grid;
    place-items: center;
    padding: 48px;
    background: #fff;
}

.admin-form-inner {
    width: min(355px, 100%);
}

.admin-form-inner h2 {
    font-size: 46px;
}

.muted {
    margin-top: 7px;
    color: #77837b;
    font-size: 13px;
}

.demo-note {
    display: grid;
    gap: 4px;
    margin-top: 20px;
    padding: 16px;
    background: var(--cream);
    font-size: 12px;
}

.demo-note code {
    font-size: 11px;
}

.demo-note small {
    margin-top: 6px;
    color: #78695e;
}

.back-link {
    display: inline-block;
    margin-top: 24px;
    font-size: 12px;
    text-decoration: none;
    color: #657269;
}

.admin-dashboard {
    min-height: 80vh;
    padding: 85px 0 110px;
    background: #f4f2ec;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 35px;
}

.dashboard-top h1 {
    font-size: clamp(48px, 6vw, 75px);
}

.dashboard-top p {
    margin-bottom: 0;
    color: #69766e;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.stat-card {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
}

.stat-card span {
    display: block;
    color: #77837b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-card strong {
    display: block;
    margin-top: 5px;
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 400;
}

.message-list {
    display: grid;
    gap: 15px;
}

.message-card {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
}

.message-card.unread {
    border-left: 4px solid #6f856c;
}

.message-card.read {
    opacity: 0.86;
}

.message-card-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.message-card-head h2 {
    margin: 8px 0 5px;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 400;
}

.message-card-head p,
.message-card-head time {
    color: #6c786f;
    font-size: 12px;
}

.message-tags {
    display: flex;
    gap: 7px;
}

.status-tag,
.type-tag {
    display: inline-block;
    padding: 4px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.status-tag {
    background: var(--forest);
    color: #fff;
}

.type-tag {
    background: #e6ebe2;
    color: var(--forest);
}

.message-body {
    margin-top: 24px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #46544b;
    font-size: 14px;
}

.message-actions {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--forest);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.link-button.danger {
    color: #9a5347;
}

.empty-state {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
}

.empty-state > span {
    font-size: 36px;
    color: #82917f;
}

.empty-state h2 {
    margin: 10px 0 4px;
    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 400;
}

.empty-state p {
    margin: 0 0 24px;
    color: #6b786f;
}

/* Footer */
.site-footer {
    padding: 70px 0 22px;
    background: #18261e;
    color: #d6ded8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.7fr;
    gap: 50px;
}

.footer-brand {
    color: #fff;
}

.footer-brand .brand-mark {
    border-color: #8da08f;
}

.footer-grid > div > p {
    max-width: 420px;
    color: #9eaca2;
    font-size: 13px;
}

.footer-grid h3 {
    margin: 0 0 13px;
    color: #f4f5f2;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid a {
    display: block;
    margin: 7px 0;
    text-decoration: none;
    color: #9eaca2;
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.09);
    color: #849389;
    font-size: 11px;
}

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

@media (max-width: 900px) {
    .hero-grid,
    .section-heading,
    .story-grid,
    .ai-grid,
    .page-hero-grid,
    .contact-layout,
    .admin-login-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-grid {
        min-height: auto;
    }

    .site-header--home + main .hero-grid {
        padding-top: 145px;
    }

    .hero-art {
        min-height: 510px;
    }

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

    .product-visual {
        min-height: 300px;
    }

    .story-grid {
        gap: 45px;
    }

    .wholesale-box {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .admin-brand-panel {
        min-height: 430px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-header--home,
    .site-header--home .header-utility-row,
    .site-header--home .brand-mark,
    .site-header--home .brand strong,
    .site-header--home .brand small {
        transition: none;
    }
}


@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav-wrap {
        min-height: 72px;
        gap: 18px;
    }

    .header-utility-row {
        min-height: 76px;
        gap: 16px;
    }

    .header-utility-note {
        display: none;
    }

    .header-utility-actions {
        gap: 14px;
    }

    .site-header--home:not(.is-compact) .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .site-header--home:not(.is-compact) .brand strong {
        font-size: 22px;
    }

    .site-header--home:not(.is-compact) .brand small {
        font-size: 8px;
    }

    .nav-primary-bar .main-nav {
        min-height: 52px;
        gap: 12px;
    }

    .nav-primary-bar .main-nav a {
        min-height: 52px;
        padding: 16px 10px 12px;
        font-size: 12px;
    }

    .site-header--home.is-compact .header-utility-row {
        min-height: 66px;
    }

    .site-header--home.is-compact .nav-primary-bar {
        position: static;
        border-top: 1px solid rgba(29, 43, 34, 0.08);
    }

    .site-header--home.is-compact .nav-primary-bar .main-nav {
        width: min(100% - 28px, 1180px);
        min-height: 50px;
    }

    .site-header--home.is-compact .nav-primary-bar .main-nav a {
        min-height: 50px;
        padding: 15px 10px 11px;
    }

    .site-header--home + main .hero-grid {
        padding-top: 128px;
    }

    .main-nav {
        gap: 13px;
    }

    .main-nav a {
        padding: 25px 0 22px;
        font-size: 12px;
    }

    .brand strong {
        font-size: 17px;
    }

    .brand small {
        font-size: 7px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .hero h1 {
        font-size: 53px;
    }

    .hero-art {
        transform: scale(0.82);
        margin: -40px -45px;
    }

    .brand-strip .container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 18px 0;
    }

    .section,
    .story-section,
    .ai-section {
        padding: 75px 0;
    }

    .section-heading h2,
    .story-copy h2,
    .ai-grid h2,
    .contact-aside h2 {
        font-size: 42px;
    }

    .wholesale-box {
        padding: 40px 28px;
    }

    .form-row.two-col,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 26px 20px;
    }

    .captcha-box,
    .form-submit-row,
    .dashboard-top,
    .message-card-head {
        align-items: stretch;
        flex-direction: column;
    }

    .captcha-box label {
        max-width: none;
    }

    .admin-brand-panel,
    .admin-form-panel {
        padding: 32px 25px;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .site-header:not(.site-header--home) .nav-wrap > .brand > span:last-child,
    .site-header--home.is-compact .header-utility-row > .brand > span:last-child {
        display: none;
    }

    .nav-wrap {
        gap: 12px;
    }

    .nav-wrap .main-nav {
        gap: 10px;
    }

    .main-nav .cart-link {
        margin-inline-start: 4px;
    }
}

@media (max-width: 420px) {
    .cart-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}
/* Contact form */
.contact-section {
    padding: 80px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.contact-form-card .form-row {
    margin-bottom: 20px;
}
.contact-form-card .form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form-card label,
.contact-form-card .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card input[type="number"],
.contact-form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}
.contact-form-card textarea {
    resize: vertical;
}
.contact-form-card .radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    margin-right: 20px;
}
.contact-form-card .error-message {
    color: #b3261e;
    font-size: 0.85rem;
    margin-top: 4px;
}
.contact-form-card .captcha-row input {
    max-width: 120px;
}
/* Admin dashboard */
.admin-page {
    padding: 56px 0 96px;
    background: #faf9f5;
    min-height: 60vh;
}
.admin-page .container {
    max-width: 1180px;
}
.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}
.admin-header-row h1 {
    margin: 0;
}
.admin-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}
.admin-table-wrap {
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}
.admin-table th,
.admin-table td {
    padding: 14px 18px;
    text-align: left;
    white-space: nowrap;
}
.admin-table thead th {
    background: #f6f4ef;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: #6b6b62;
    border-bottom: 1px solid #eee;
}
.admin-table thead th a {
    color: inherit;
    text-decoration: none;
}
.admin-table tbody tr {
    border-bottom: 1px solid #f0efe9;
}
.admin-table tbody tr:last-child {
    border-bottom: none;
}
.admin-table tbody tr:hover {
    background: #fbfaf6;
}
.admin-table td.message-cell {
    max-width: 260px;
    white-space: normal;
    color: #555;
}
.admin-actions a,
.admin-actions button {
    font-size: 0.82rem;
    margin-right: 12px;
    color: #2f4a3c;
    text-decoration: none;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.admin-actions a.delete-link {
    color: #b3261e;
}
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: capitalize;
    background: #eee;
    color: #555;
}
.status-badge.status-new { background: #e4efe6; color: #2f6b45; }
.status-badge.status-contacted { background: #eaf0fb; color: #2b4d8f; }
.status-badge.status-closed { background: #f1f1ee; color: #6b6b62; }
.status-badge.status-active { background: #e4efe6; color: #2f6b45; }
.status-badge.status-inactive { background: #f6e7e7; color: #a13d3d; }
.admin-empty {
    padding: 56px 24px;
    text-align: center;
    color: #888;
}
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding: 0 4px;
}
.admin-pagination ul {
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.admin-pagination ul li a,
.admin-pagination ul li span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
}
.admin-pagination ul li.active span {
    background: #2f4a3c;
    color: #fff;
}
.admin-pagination ul li.disabled span {
    color: #bbb;
}
.admin-pagination p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}
.admin-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    background: #2f4a3c;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.admin-btn:hover {
    background: #24382e;
}
.admin-btn:focus-visible {
    outline: 3px solid rgba(47, 74, 60, 0.28);
    outline-offset: 3px;
}
.admin-btn:active {
    transform: translateY(1px);
}
.admin-btn--secondary {
    border: 1px solid rgba(47, 74, 60, 0.25);
    background: transparent;
    color: #2f4a3c !important;
}
.admin-btn--secondary:hover {
    background: rgba(47, 74, 60, 0.08);
}
.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 28px;
}
.admin-detail-grid .full-width {
    grid-column: 1 / -1;
}
.admin-detail-item label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    margin-bottom: 4px;
}
.admin-detail-item p {
    margin: 0;
    font-size: 1rem;
    color: #222;
}

/* Contact submission review */
.submission-form-page {
    min-height: calc(100dvh - 82px);
    padding: clamp(64px, 9vw, 120px) 20px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(167, 184, 161, 0.28), transparent 42%),
        var(--paper);
}

.submission-form-shell {
    width: min(100%, 640px);
    padding: clamp(34px, 6vw, 58px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 90px rgba(31, 53, 42, 0.12);
    border-radius: 24px;
}

.submission-form-shell--wide {
    width: min(100%, 760px);
}

.submission-form-shell h1 {
    margin: 0 0 clamp(34px, 5vw, 48px);
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 58px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.02;
    text-align: center;
}

.submission-review-back {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin: -12px 0 22px;
    padding: 0 16px;
    border: 1px solid rgba(41, 69, 54, 0.22);
    border-radius: 16px;
    background: transparent;
    color: var(--forest);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.submission-review-back:hover {
    border-color: rgba(41, 69, 54, 0.38);
    background: rgba(41, 69, 54, 0.06);
    color: var(--forest-dark);
}

.submission-review-back:active {
    transform: translateY(1px);
}

.submission-review-back:focus-visible {
    border-radius: 16px;
    outline: 3px solid rgba(41, 69, 54, 0.22);
    outline-offset: 3px;
}

.submission-review {
    margin: 0;
}

.submission-review-item {
    padding: 19px 0;
    border-bottom: 1px solid rgba(41, 69, 54, 0.12);
}

.submission-review-item:first-child {
    padding-top: 0;
}

.submission-review-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.submission-review-item dt {
    margin-bottom: 7px;
    color: #405047;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.submission-review-item dd {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.submission-review-item dd a {
    color: var(--forest);
    text-decoration-color: rgba(41, 69, 54, 0.35);
    text-underline-offset: 4px;
}

.submission-review-item dd a:hover {
    text-decoration-color: currentColor;
}

.submission-review-item--message dd {
    white-space: normal;
}

.submission-form {
    display: grid;
    gap: 24px;
}

.submission-form .input {
    display: grid;
    gap: 9px;
}

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

.submission-form-workflow {
    padding-top: 6px;
}

.submission-form label {
    color: #405047;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.submission-form input,
.submission-form textarea,
.submission-form select {
    margin: 0;
    border: 1px solid rgba(41, 69, 54, 0.2);
    border-radius: 16px;
    background: var(--paper);
    color: var(--ink);
    font-size: 16px;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.submission-form input {
    min-height: 54px;
}

.submission-form select {
    min-height: 54px;
    padding-right: 42px;
}

.submission-form textarea {
    min-height: 170px;
    line-height: 1.6;
}

.submission-form input:hover,
.submission-form textarea:hover,
.submission-form select:hover {
    border-color: rgba(41, 69, 54, 0.42);
}

.submission-form input:focus,
.submission-form textarea:focus,
.submission-form select:focus {
    border-color: var(--forest);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(41, 69, 54, 0.12);
}

.submission-form .error input,
.submission-form .error textarea,
.submission-form .error select {
    border-color: #9e4537;
}

.submission-form .error-message {
    margin: 0;
    color: #84392f;
    font-size: 12px;
    line-height: 1.45;
}

.submission-form-submit {
    width: 100%;
    min-height: 56px;
    margin-top: 8px;
    border-radius: 16px;
}

.submission-form-submit:active {
    transform: translateY(1px);
}

.submission-form-submit:focus-visible {
    outline: 3px solid rgba(41, 69, 54, 0.28);
    outline-offset: 3px;
}

.submission-form-submit:disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

@media (max-width: 640px) {
    .submission-form-page {
        min-height: calc(100dvh - 72px);
        padding: 42px 14px;
    }

    .submission-form-shell {
        padding: 32px 22px;
    }

    .submission-form-shell h1 {
        font-size: 40px;
    }

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

@media (prefers-reduced-motion: reduce) {
    .submission-review-back,
    .submission-form input,
    .submission-form textarea,
    .submission-form select,
    .submission-form-submit {
        transition: none;
    }
}
/* Admin login */
.login-page {
    padding: 96px 24px;
    display: flex;
    justify-content: center;
}
.login-card {
    max-width: 420px;
    width: 100%;
}
.login-card h1 {
    margin: 0 0 8px;
}
.login-card .login-sub {
    margin: 0 0 28px;
    color: #666;
}

/* Error Messages */
/* CakePHP Flash message card */
.message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    z-index: 9999;

    width: min(420px, calc(100% - 40px));
    padding: 24px 28px;

    background: #ffffff;
    border-radius: 14px;

    text-align: center;
    font-size: 14px;
    line-height: 1.5;

    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);

    cursor: pointer;
}

/* Error message */
.message.error {
    color: #8b2f27;
    border: 1px solid #e2b4ae;
    background: #fff7f5;
}

/* Success message */
.message.success {
    color: #294536;
    border: 1px solid #b9ccb9;
    background: #f3f8f2;
}

/* CakePHP hides message when clicked */
.message.hidden {
    display: none;
}

.flash-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #b3261e;
    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
}

.message strong {
    display: block;
    margin-bottom: 8px;

    font-size: 17px;
}

.message p {
    margin: 0 0 10px;
}

.message small {
    color: #777;
    font-size: 11px;
}
/* Product catalogue */
.catalogue-section {
    padding: 0 0 96px;
    background: #faf9f5;
}

.product-management-shell {
    width: 100%;
    display: grid;
    grid-template-columns: clamp(260px, 22vw, 320px) minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

.product-management-content {
    min-width: 0;
    padding: 64px clamp(24px, 4vw, 64px) 0;
}

.product-management-sidebar {
    position: sticky;
    top: 82px;
    height: calc(100dvh - 82px);
    width: 170px;
    padding: 16px 16px 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    box-shadow: 8px 0 24px rgba(31, 53, 42, 0.06);
    scrollbar-color: rgba(41, 69, 54, 0.3) transparent;
    scrollbar-width: thin;
}

.product-management-sidebar::-webkit-scrollbar {
    width: 8px;
}

.product-management-sidebar::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: rgba(41, 69, 54, 0.3);
    background-clip: padding-box;
}

.product-management-nav {
    min-height: 100%;
}

.product-management-menu,
.product-management-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-management-menu {
    display: grid;
    gap: 42px;
}

.product-management-menu-section summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 44px;
    padding: 6px 4px;
    color: #8d928f;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    list-style: none;
    cursor: pointer;
}

.product-management-menu-section summary::-webkit-details-marker {
    display: none;
}

.product-management-menu-section summary::after {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.product-management-menu-section[open] summary::after {
    transform: rotate(-135deg);
}

.product-management-menu-section summary:focus-visible {
    border-radius: 8px;
    outline: 3px solid rgba(41, 69, 54, 0.2);
    outline-offset: 3px;
}

.product-management-submenu {
    display: grid;
    gap: 2px;
    margin: 5px 0 0;
    padding-left: 16px;
}

.product-management-nav-item {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 14px;
    padding-left: 8px;
    border-radius: 8px;
    color: #303531;
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
    transition:
        background-color 180ms ease,
        color 180ms ease;
}

a.product-management-nav-item {
    cursor: pointer;
}

.product-management-nav-item.is-active {
    background: rgba(41, 69, 54, 0.08);
    box-shadow: inset 3px 0 0 var(--forest);
    color: var(--forest-dark);
    font-weight: 700;
}

.product-management-nav-item.is-active:hover {
    background: rgba(41, 69, 54, 0.12);
}

.product-management-nav-item.is-active:focus-visible {
    outline: 3px solid rgba(41, 69, 54, 0.24);
    outline-offset: 3px;
}

.product-management-nav-item.is-placeholder {
    color: #303531;
    cursor: default;
}

.product-management-nav-item.is-placeholder:hover,
a.product-management-nav-item:not(.is-active):hover {
    background: rgba(41, 69, 54, 0.05);
    color: var(--forest-dark);
}

.product-management-content .section-heading h1 {
    margin: 0;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1;
}

.category-management-heading {
    align-items: flex-end;
    margin-bottom: 32px;
}

.category-management-heading p {
    max-width: 620px;
    margin: 14px 0 0;
    color: #617067;
    font-size: 0.98rem;
    line-height: 1.65;
}

.category-management-card {
    border: 1px solid rgba(41, 69, 54, 0.08);
}

.category-management-table th:first-child,
.category-management-table td:first-child {
    width: 36%;
}

.category-management-table th:last-child,
.category-management-table td:last-child {
    text-align: right;
}

.category-management-table .admin-actions a:last-child {
    margin-right: 0;
}

.category-name {
    color: var(--forest-dark);
    font-weight: 700;
}

.category-description {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    background: #f1f3ee;
    color: #4b5c52;
    font-size: 0.82rem;
}

.category-management-card .admin-empty h2 {
    margin: 0 0 8px;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
}

.category-management-card .admin-empty p {
    margin: 0;
    color: #65736a;
}

/* Product creation */
.product-create-page {
    min-height: calc(100dvh - 82px);
}

.product-create-content {
    padding-bottom: 96px;
}

.product-create-heading {
    align-items: flex-end;
    margin-bottom: 32px;
}

.product-create-heading p {
    max-width: 660px;
    margin: 14px 0 0;
    color: #617067;
    font-size: 0.98rem;
    line-height: 1.65;
}

.product-create-form {
    max-width: 1040px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(31, 53, 42, 0.08);
}

.product-edit-media {
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 28px 36px;
    border-bottom: 1px solid rgba(41, 69, 54, 0.1);
    background: #f1f4ef;
}

.product-edit-media-preview {
    display: grid;
    width: 176px;
    aspect-ratio: 1;
    overflow: hidden;
    place-items: center;
    border-radius: 12px;
    background: #dfe6dd;
}

.product-edit-media-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-edit-media-preview span {
    padding: 16px;
    color: #5d6c63;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.product-edit-media-copy {
    min-width: 0;
}

.product-edit-media-copy h2 {
    margin: 0;
    color: var(--forest-dark);
    font-size: 1.2rem;
    line-height: 1.3;
}

.product-edit-media-copy p {
    max-width: 600px;
    margin: 7px 0 14px;
    color: #56675d;
    font-size: 0.9rem;
    line-height: 1.55;
}

.product-edit-media-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--forest-dark);
    font-size: 0.84rem;
    font-weight: 750;
    text-underline-offset: 4px;
}

.product-edit-media-link:hover {
    color: #1f352a;
}

.product-edit-media-link:focus-visible {
    border-radius: 4px;
    outline: 3px solid rgba(41, 69, 54, 0.24);
    outline-offset: 3px;
}

.product-create-form-section {
    padding: 32px 36px;
    border-bottom: 1px solid rgba(41, 69, 54, 0.1);
}

.product-create-section-heading {
    max-width: 700px;
    margin-bottom: 24px;
}

.product-create-section-heading h2 {
    margin: 0;
    color: var(--forest-dark);
    font-size: 1.25rem;
    font-weight: 750;
    letter-spacing: -0.015em;
    line-height: 1.25;
}

.product-create-section-heading p {
    margin: 7px 0 0;
    color: #617067;
    font-size: 0.9rem;
    line-height: 1.55;
}

.product-create-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
}

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

.product-create-form-grid .full-width {
    grid-column: 1 / -1;
}

.product-create-field {
    align-content: start;
    gap: 8px;
    margin: 0;
}

.product-create-field > label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    color: #34443b;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.35;
}

.product-create-required {
    color: #718078;
    font-size: 0.72rem;
    font-weight: 600;
}

.product-create-form input,
.product-create-form select,
.product-create-form textarea {
    min-height: 48px;
    border-color: rgba(41, 69, 54, 0.2);
    border-radius: 10px;
    background: #fff;
    font: inherit;
}

.product-create-form textarea {
    min-height: 96px;
    line-height: 1.55;
}

.product-create-form input::placeholder,
.product-create-form textarea::placeholder {
    color: #7d8882;
}

.product-create-form input:hover,
.product-create-form select:hover,
.product-create-form textarea:hover {
    border-color: rgba(41, 69, 54, 0.36);
}

.product-create-form input:focus,
.product-create-form select:focus,
.product-create-form textarea:focus {
    border-color: #627b69;
    box-shadow: 0 0 0 3px rgba(98, 123, 105, 0.14);
}

.product-create-form .error input,
.product-create-form .error select,
.product-create-form .error textarea {
    border-color: #9b3f36;
}

.product-create-form .error-message {
    margin-top: 6px;
    color: #87372f;
    font-size: 0.8rem;
    line-height: 1.4;
}

.product-create-help {
    margin: 0;
    color: #6c7871;
    font-size: 0.78rem;
    line-height: 1.45;
}

.product-create-number-field {
    position: relative;
}

.product-create-number-field > span {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 1;
    color: #627168;
    font-size: 0.86rem;
    font-weight: 700;
    transform: translateY(-50%);
    pointer-events: none;
}

.product-create-number-field input {
    padding-left: 34px;
}

.product-create-number-field--suffix > span {
    right: 14px;
    left: auto;
}

.product-create-number-field--suffix input {
    padding-right: 46px;
    padding-left: 14px;
}

.product-create-image-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
    padding: 20px 22px;
    border-radius: 12px;
    background: #f1f4ef;
}

.product-create-image-note h3 {
    margin: 0;
    color: var(--forest-dark);
    font-size: 0.95rem;
    line-height: 1.35;
}

.product-create-image-note p {
    max-width: 620px;
    margin: 5px 0 0;
    color: #5e6d64;
    font-size: 0.84rem;
    line-height: 1.5;
}

.product-create-image-note a {
    flex: 0 0 auto;
    color: var(--forest-dark);
    font-size: 0.82rem;
    font-weight: 750;
    text-underline-offset: 4px;
}

.product-create-image-note a:hover {
    color: #1f352a;
}

.product-create-image-note a:focus-visible {
    border-radius: 4px;
    outline: 3px solid rgba(41, 69, 54, 0.24);
    outline-offset: 4px;
}

.product-create-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 24px 36px;
    background: #fbfcfa;
}

.product-create-actions .admin-btn {
    min-width: 132px;
    text-align: center;
}

@media (max-width: 1120px) {
    .product-create-form-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) {
    .product-create-form-grid {
        grid-template-columns: 1fr;
    }

    .product-create-form-grid .full-width {
        grid-column: auto;
    }

    .product-create-image-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-edit-media {
        grid-template-columns: 1fr;
    }

    .product-edit-media-preview {
        width: min(100%, 220px);
    }
}

.product-images-card {
    border: 1px solid rgba(41, 69, 54, 0.08);
}

.product-images-table th:last-child,
.product-images-table td:last-child {
    text-align: right;
}

.product-images-table .admin-actions a:last-child {
    margin-right: 0;
}

.product-image-thumb {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: #f1f3ee;
    object-fit: cover;
}

.product-image-thumb--empty {
    display: grid;
    place-items: center;
    padding: 6px;
    color: #7b857f;
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: center;
}

.product-image-url {
    overflow-wrap: anywhere;
}

.product-image-form-container {
    max-width: 900px;
}

.product-image-form-container .admin-header-row p {
    max-width: 620px;
    margin: 10px 0 0;
    color: #617067;
}

.product-image-form-card {
    padding: clamp(24px, 4vw, 40px);
}

.product-image-current,
.product-image-detail-preview {
    padding: 24px;
    border-bottom: 1px solid #f0efe9;
    background: #f6f4ef;
}

.product-image-current {
    margin: -40px -40px 32px;
}

.product-image-preview {
    display: block;
    width: min(100%, 420px);
    max-height: 420px;
    margin: 0 auto;
    border-radius: 16px;
    object-fit: contain;
}

.product-image-primary-control {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding-top: 24px;
}

.product-image-primary-control .checkbox {
    margin: 0;
}

.product-image-form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-image-detail-card {
    max-width: 100px;
}

.product-image-detail-card .admin-detail-item p {
    overflow-wrap: anywhere;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.category-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.category-filters a {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--line, #ddd);
    font-size: 0.85rem;
    text-decoration: none;
    color: inherit;
}
.category-filters a.active {
    background: #2f4a3c;
    color: #fff;
    border-color: #2f4a3c;
}
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}
.catalogue-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.catalogue-image {
    display: block;
    aspect-ratio: 1 / 1;
    background: #f6f4ef;
}
.catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catalogue-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
}
.catalogue-info {
    padding: 18px 20px 22px;
}
.catalogue-category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
}
.catalogue-info h3 {
    margin: 6px 0;
    font-size: 1.1rem;
}
.catalogue-info h3 a {
    color: inherit;
    text-decoration: none;
}
.catalogue-price {
    font-weight: 600;
    margin: 0 0 10px;
}
.catalogue-price.large {
    font-size: 1.4rem;
    margin: 12px 0;
}

@media (max-width: 900px) {
    .product-management-shell {
        grid-template-columns: clamp(240px, 34vw, 288px) minmax(0, 1fr);
    }

    .product-management-sidebar {
        padding: 32px 22px;
    }
}

@media (max-width: 560px) {
    .product-management-shell {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .product-management-sidebar {
        top: 72px;
        height: calc(100dvh - 72px);
        padding: 28px 16px;
    }

    .product-management-content {
        padding: 42px 16px 0;
    }

    .category-management-heading {
        align-items: stretch;
        margin-bottom: 24px;
    }

    .product-management-content .category-management-heading h1 {
        font-size: 32px;
        line-height: 1.08;
    }

    .category-management-heading .admin-btn {
        width: 100%;
        text-align: center;
    }

    .product-create-heading {
        align-items: stretch;
        margin-bottom: 24px;
    }

    .product-management-content .product-create-heading h1 {
        font-size: 32px;
        line-height: 1.08;
    }

    .product-create-heading .admin-btn {
        width: 100%;
        text-align: center;
    }

    .product-create-form-section {
        padding: 24px 20px;
    }

    .product-edit-media {
        gap: 20px;
        padding: 24px 20px;
    }

    .product-create-actions {
        align-items: stretch;
        flex-direction: column-reverse;
        padding: 20px;
    }

    .product-create-actions .admin-btn {
        width: 100%;
    }

    .product-image-current {
        margin: -24px -24px 24px;
    }

    .product-image-primary-control {
        padding-top: 0;
    }

    .product-management-content .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .product-management-menu-section summary,
    .product-management-nav-item {
        font-size: 14px;
    }

    .product-management-nav-item {
        min-height: 46px;
        padding: 10px;
    }

    .product-management-submenu {
        padding-left: 8px;
    }
}

/* Quantity Management: admin stock ledger */
.inventory-page {
    --inventory-forest: #244437;
    --inventory-ink: #1d2b22;
    --inventory-muted: #617067;
    --inventory-paper: #fbfaf6;
    --inventory-line: rgba(29, 43, 34, 0.13);
    --inventory-sage: #e9efe7;
    --inventory-clay: #8d5f49;
    min-height: calc(100dvh - 82px);
    color: var(--inventory-ink);
}

.inventory-page ::selection {
    background: #cbdac8;
    color: #15261e;
}

.product-inventory-handoff {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 18px;
    border: 1px solid rgba(41, 69, 54, 0.15);
    border-radius: 12px;
    background: #eef2eb;
}

.product-inventory-handoff strong {
    color: #244437;
}

.product-inventory-handoff p {
    max-width: 64ch;
    margin: 4px 0 0;
    color: #617067;
    font-size: 0.84rem;
    line-height: 1.5;
}

.product-inventory-handoff > a {
    flex: 0 0 auto;
    color: #244437;
    font-weight: 700;
    text-underline-offset: 4px;
}

.inventory-content {
    padding-bottom: 88px;
}

.inventory-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    align-items: end;
    gap: 40px;
    margin-bottom: 34px;
}

.inventory-heading h1 {
    margin: 0;
    color: var(--inventory-forest);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.04;
}

.inventory-heading p {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--inventory-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.inventory-policy-note {
    display: grid;
    gap: 5px;
    padding: 14px 0;
    border-top: 1px solid var(--inventory-line);
    border-bottom: 1px solid var(--inventory-line);
}

.inventory-policy-note strong {
    color: var(--inventory-forest);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inventory-policy-note span {
    color: var(--inventory-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.inventory-access-notice {
    margin-bottom: 26px;
    padding: 18px 20px;
    border: 1px solid rgba(36, 68, 55, 0.16);
    border-radius: 12px;
    background: var(--inventory-sage);
}

.inventory-access-notice strong {
    color: var(--inventory-forest);
}

.inventory-access-notice p {
    margin: 5px 0 0;
    color: var(--inventory-muted);
    line-height: 1.5;
}

.inventory-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 30px;
    border-top: 1px solid var(--inventory-line);
    border-bottom: 1px solid var(--inventory-line);
}

.inventory-summary-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px 12px;
    min-height: 112px;
    padding: 19px 20px;
    color: var(--inventory-ink);
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.inventory-summary-item + .inventory-summary-item {
    border-left: 1px solid var(--inventory-line);
}

.inventory-summary-item:hover {
    background: rgba(233, 239, 231, 0.68);
}

.inventory-summary-item:focus-visible {
    position: relative;
    z-index: 1;
    outline: 3px solid rgba(36, 68, 55, 0.28);
    outline-offset: -3px;
}

.inventory-summary-item.is-current {
    background: var(--inventory-forest);
    color: #fff;
}

.inventory-summary-label {
    align-self: end;
    font-size: 0.8rem;
    font-weight: 700;
}

.inventory-summary-item > strong {
    grid-row: 1 / span 2;
    grid-column: 2;
    align-self: center;
    font-size: 2rem;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    line-height: 1;
}

.inventory-summary-description {
    color: var(--inventory-muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

.inventory-summary-item.is-current .inventory-summary-description {
    color: rgba(255, 255, 255, 0.72);
}

.inventory-workspace {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(29, 43, 34, 0.07);
}

.inventory-workspace-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 28px 22px;
}

.inventory-workspace-heading h2,
.inventory-history-heading h2 {
    margin: 0;
    color: var(--inventory-forest);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: -0.018em;
}

.inventory-workspace-heading p,
.inventory-history-heading p {
    margin: 6px 0 0;
    color: var(--inventory-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.inventory-result-count {
    flex: 0 0 auto;
    color: var(--inventory-muted);
    font-size: 0.82rem;
    font-variant-numeric: tabular-nums;
}

.inventory-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(145px, 1fr)) auto;
    align-items: end;
    gap: 14px;
    padding: 18px 28px;
    background: #f4f5f0;
    border-top: 1px solid var(--inventory-line);
    border-bottom: 1px solid var(--inventory-line);
}

.inventory-filters label,
.inventory-adjustment-field label {
    display: block;
    margin-bottom: 6px;
    color: #435248;
    font-size: 0.74rem;
    font-weight: 700;
}

.inventory-filters .input,
.inventory-adjustment-field .input {
    margin: 0;
}

.inventory-filters input,
.inventory-filters select,
.inventory-adjustment-field input,
.inventory-adjustment-field select {
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 10px 12px;
    border: 1px solid rgba(29, 43, 34, 0.24);
    border-radius: 8px;
    background: #fff;
    color: var(--inventory-ink);
    caret-color: var(--inventory-forest);
    font: inherit;
}

.inventory-filters input::placeholder,
.inventory-adjustment-field input::placeholder {
    color: #6b756f;
    opacity: 1;
}

.inventory-filters input:focus,
.inventory-filters select:focus,
.inventory-adjustment-field input:focus,
.inventory-adjustment-field select:focus {
    border-color: var(--inventory-forest);
    outline: 3px solid rgba(36, 68, 55, 0.17);
    outline-offset: 1px;
}

.inventory-filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
}

.inventory-filter-actions .admin-btn {
    min-height: 44px;
}

.inventory-reset-link,
.inventory-history-link,
.inventory-cancel-button {
    color: var(--inventory-forest);
    font-weight: 700;
    text-underline-offset: 4px;
}

.inventory-reset-link:hover,
.inventory-history-link:hover,
.inventory-cancel-button:hover {
    color: #142d23;
}

.inventory-reset-link:focus-visible,
.inventory-history-link:focus-visible,
.inventory-cancel-button:focus-visible,
.inventory-adjust-button:focus-visible {
    border-radius: 4px;
    outline: 3px solid rgba(36, 68, 55, 0.24);
    outline-offset: 3px;
}

.inventory-table-wrap {
    width: 100%;
}

.inventory-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.inventory-table th,
.inventory-table td {
    padding: 15px 16px;
    text-align: left;
    vertical-align: middle;
}

.inventory-table th:first-child,
.inventory-table td:first-child {
    padding-left: 28px;
}

.inventory-table th:last-child,
.inventory-table td:last-child {
    padding-right: 28px;
}

.inventory-table thead th {
    border-bottom: 1px solid var(--inventory-line);
    color: #5d6962;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
}

.inventory-table thead a {
    color: inherit;
    text-decoration: none;
    text-underline-offset: 4px;
}

.inventory-table thead a:hover {
    text-decoration: underline;
}

.inventory-product-row {
    border-bottom: 1px solid var(--inventory-line);
    transition: background-color 180ms ease;
}

.inventory-product-row:hover {
    background: var(--inventory-paper);
}

.inventory-product-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.inventory-product-identity > div:last-child,
.inventory-last-update {
    display: grid;
    gap: 3px;
}

.inventory-product-identity strong,
.inventory-last-update strong {
    color: var(--inventory-ink);
    font-size: 0.88rem;
}

.inventory-product-identity span,
.inventory-last-update span {
    color: var(--inventory-muted);
    font-size: 0.74rem;
}

.inventory-product-image {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: #e7ece4;
    color: var(--inventory-forest);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

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

.inventory-sku {
    color: #48554d;
    font-size: 0.8rem;
    font-variant-numeric: tabular-nums;
}

.inventory-quantity {
    color: var(--inventory-forest);
    font-size: 1.25rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.inventory-stock-badge,
.inventory-read-only-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
}

.inventory-stock-badge--in {
    background: #e3eee5;
    color: #235a37;
}

.inventory-stock-badge--low {
    background: #f3e9d7;
    color: #75531f;
}

.inventory-stock-badge--out {
    background: #f3e2df;
    color: #8a3832;
}

.inventory-read-only-label {
    background: #efefeb;
    color: #626862;
}

.inventory-row-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    white-space: nowrap;
}

.inventory-history-link {
    font-size: 0.78rem;
    font-weight: 600;
}

.inventory-adjust-button,
.inventory-cancel-button {
    min-height: 36px;
    padding: 7px 13px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
}

.inventory-adjust-button {
    background: var(--inventory-forest);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.inventory-adjust-button:hover {
    background: #183529;
}

.inventory-adjust-button:active,
.inventory-cancel-button:active {
    transform: translateY(1px);
}

.inventory-cancel-button {
    background: transparent;
}

.inventory-adjustment-row[hidden],
.inventory-note-field[hidden] {
    display: none;
}

.inventory-adjustment-row > td {
    padding: 0 !important;
    border-bottom: 1px solid rgba(36, 68, 55, 0.25);
    background: #eef2eb;
}

.inventory-adjustment-panel {
    display: grid;
    grid-template-columns: minmax(180px, 0.65fr) minmax(0, 2fr);
    gap: 32px;
    padding: 26px 28px 28px;
}

.inventory-adjustment-copy h3 {
    margin: 0;
    color: var(--inventory-forest);
    font-size: 1rem;
    line-height: 1.35;
}

.inventory-adjustment-copy p {
    max-width: 30ch;
    margin: 8px 0 0;
    color: var(--inventory-muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.inventory-adjustment-form[aria-busy="true"] {
    opacity: 0.72;
}

.inventory-adjustment-fields {
    display: grid;
    grid-template-columns: minmax(130px, 0.7fr) minmax(180px, 1fr) minmax(220px, 1.35fr);
    align-items: start;
    gap: 14px;
}

.inventory-field-error {
    display: block;
    min-height: 18px;
    margin-top: 5px;
    color: #9c332c;
    font-size: 0.73rem;
    line-height: 1.35;
}

.inventory-adjustment-field [aria-invalid="true"] {
    border-color: #a63c34;
    outline: 2px solid rgba(166, 60, 52, 0.13);
}

.inventory-adjustment-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 43px;
    margin-top: 8px;
    padding: 10px 0;
    border-top: 1px solid rgba(36, 68, 55, 0.14);
    border-bottom: 1px solid rgba(36, 68, 55, 0.14);
    color: var(--inventory-muted);
    font-size: 0.78rem;
}

.inventory-adjustment-preview span:not(.inventory-preview-rule) {
    display: flex;
    gap: 5px;
}

.inventory-adjustment-preview strong {
    color: var(--inventory-ink);
    font-variant-numeric: tabular-nums;
}

.inventory-preview-rule {
    width: 24px;
    height: 1px;
    background: rgba(36, 68, 55, 0.35);
}

.inventory-difference {
    margin-left: auto;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.inventory-difference.is-positive,
.inventory-history-change .is-positive {
    color: #28613d;
}

.inventory-difference.is-negative,
.inventory-history-change .is-negative {
    color: #963d34;
}

.inventory-form-message {
    min-height: 20px;
    margin-top: 7px;
    font-size: 0.78rem;
    font-weight: 600;
}

.inventory-form-message.is-error {
    color: #963d34;
}

.inventory-form-message.is-success {
    color: #28613d;
}

.inventory-adjustment-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 8px;
}

.inventory-adjustment-actions .admin-btn {
    min-height: 42px;
}

.inventory-adjustment-actions .admin-btn:disabled {
    cursor: wait;
    opacity: 0.65;
}

.inventory-empty-state {
    display: grid;
    justify-items: start;
    gap: 8px;
    padding: 52px 28px 58px;
}

.inventory-empty-state h3 {
    margin: 0;
    color: var(--inventory-forest);
    font-size: 1.1rem;
}

.inventory-empty-state p {
    max-width: 55ch;
    margin: 0 0 10px;
    color: var(--inventory-muted);
}

.inventory-pagination {
    margin: 0;
    padding: 19px 28px 22px;
    border-top: 1px solid var(--inventory-line);
}

.inventory-history {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid var(--inventory-line);
    scroll-margin-top: 110px;
}

.inventory-history-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
}

.inventory-history-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--inventory-line);
    list-style: none;
}

.inventory-history-item {
    display: grid;
    grid-template-columns: minmax(180px, 1.3fr) minmax(150px, 0.85fr) minmax(170px, 1fr);
    align-items: center;
    gap: 18px;
    padding: 17px 4px;
    border-bottom: 1px solid var(--inventory-line);
}

.inventory-history-item.is-new {
    animation: inventory-record-settle 220ms ease-out;
}

.inventory-history-product,
.inventory-history-meta {
    display: grid;
    gap: 3px;
}

.inventory-history-product strong,
.inventory-history-meta strong {
    color: var(--inventory-ink);
    font-size: 0.84rem;
}

.inventory-history-product span,
.inventory-history-meta time {
    color: var(--inventory-muted);
    font-size: 0.74rem;
}

.inventory-history-change {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--inventory-muted);
    font-variant-numeric: tabular-nums;
}

.inventory-history-change strong {
    color: var(--inventory-forest);
    font-size: 1.03rem;
}

.inventory-history-change em {
    margin-left: 3px;
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 700;
}

.inventory-history-to {
    color: #78817c;
    font-size: 0.68rem;
    text-transform: uppercase;
}

.inventory-history-item > p {
    grid-column: 1 / -1;
    max-width: 72ch;
    margin: -5px 0 0;
    color: var(--inventory-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.inventory-history-empty {
    display: grid;
    gap: 5px;
    padding: 24px 0;
    border-top: 1px solid var(--inventory-line);
    border-bottom: 1px solid var(--inventory-line);
}

.inventory-history-empty strong {
    color: var(--inventory-forest);
}

.inventory-history-empty span {
    color: var(--inventory-muted);
    font-size: 0.86rem;
}

@keyframes inventory-record-settle {
    from {
        background: rgba(203, 218, 200, 0.8);
    }
    to {
        background: transparent;
    }
}

@media (max-width: 1220px) {
    .inventory-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .inventory-policy-note {
        max-width: 680px;
    }

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

    .inventory-summary-item:nth-child(3) {
        border-left: 0;
    }

    .inventory-summary-item:nth-child(n + 3) {
        border-top: 1px solid var(--inventory-line);
    }

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

    .inventory-search-field,
    .inventory-filter-actions {
        grid-column: 1 / -1;
    }

    .inventory-adjustment-panel {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 840px) {
    .inventory-page .product-management-shell {
        grid-template-columns: 1fr;
    }

    .inventory-page .product-management-sidebar {
        position: static;
        width: auto;
        height: auto;
        padding: 14px 20px;
        overflow: visible;
        box-shadow: 0 8px 24px rgba(31, 53, 42, 0.06);
    }

    .inventory-page .product-management-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .inventory-content {
        padding: 42px 20px 72px;
    }

    .inventory-table thead {
        display: none;
    }

    .inventory-table,
    .inventory-table tbody {
        display: block;
    }

    .inventory-product-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 18px 20px;
    }

    .inventory-table .inventory-product-row td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 10px 8px;
    }

    .inventory-table .inventory-product-row td:first-child {
        grid-column: 1 / -1;
        padding: 0 8px 14px;
    }

    .inventory-table .inventory-product-row td:last-child {
        grid-column: 1 / -1;
        padding: 14px 8px 0;
        border-top: 1px solid var(--inventory-line);
    }

    .inventory-table .inventory-product-row td:not(:first-child, :last-child)::before {
        color: #68726c;
        content: attr(data-label);
        font-size: 0.67rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .inventory-product-identity {
        min-width: 0;
    }

    .inventory-row-actions {
        width: 100%;
    }

    .inventory-adjustment-row,
    .inventory-adjustment-row > td {
        display: block;
    }

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

    .inventory-note-field {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .inventory-page .product-management-menu {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .inventory-page .product-management-menu-section:not([open]) .product-management-submenu {
        display: none;
    }

    .inventory-content {
        padding: 34px 14px 64px;
    }

    .inventory-heading h1 {
        font-size: 2.15rem;
    }

    .inventory-summary {
        grid-template-columns: 1fr 1fr;
    }

    .inventory-summary-item {
        min-height: 98px;
        padding: 15px 14px;
    }

    .inventory-summary-item > strong {
        font-size: 1.6rem;
    }

    .inventory-workspace-heading,
    .inventory-filters,
    .inventory-pagination {
        padding-right: 18px;
        padding-left: 18px;
    }

    .inventory-workspace-heading,
    .inventory-history-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .inventory-filters,
    .inventory-adjustment-fields {
        grid-template-columns: 1fr;
    }

    .inventory-search-field,
    .inventory-filter-actions,
    .inventory-note-field {
        grid-column: auto;
    }

    .inventory-filter-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .inventory-filter-actions .admin-btn {
        width: 100%;
        text-align: center;
    }

    .inventory-reset-link {
        min-height: 36px;
        text-align: center;
    }

    .inventory-product-row {
        grid-template-columns: 1fr;
        padding: 17px 14px;
    }

    .inventory-table .inventory-product-row td,
    .inventory-table .inventory-product-row td:first-child,
    .inventory-table .inventory-product-row td:last-child {
        grid-column: 1;
        padding-right: 4px;
        padding-left: 4px;
    }

    .inventory-adjustment-panel {
        padding: 22px 18px 24px;
    }

    .inventory-adjustment-preview {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .inventory-difference {
        width: 100%;
        margin-left: 0;
    }

    .inventory-adjustment-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .inventory-adjustment-actions .admin-btn,
    .inventory-cancel-button {
        width: 100%;
    }

    .inventory-pagination ul {
        max-width: 100%;
        overflow-x: auto;
    }

    .inventory-history-item {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 17px 2px;
    }

    .inventory-history-meta {
        grid-column: 1 / -1;
    }

    .product-inventory-handoff {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .inventory-summary-item,
    .inventory-product-row {
        transition: none;
    }

    .inventory-history-item.is-new {
        animation: none;
    }
}

/* Sisters' Client Book: retail account */
.account-auth,
.account-app {
    --account-ink: #1a2f25;
    --account-forest: #0f4937;
    --account-muted: #69716c;
    --account-clay: #9f604b;
    --account-rule: rgba(26, 47, 37, 0.46);
    color: var(--account-ink);
}

.customer-account-surface .site-header:not(.site-header--home) {
    border-top: 0;
}

.customer-account-surface .site-header:not(.site-header--home) .nav-wrap {
    width: 100%;
    min-height: 90px;
    padding-inline: clamp(42px, 5.65vw, 86px);
}

.customer-account-surface .site-header:not(.site-header--home) .brand strong {
    color: var(--account-ink);
    font-size: 24px;
}

.account-auth {
    min-height: calc(100vh - 64px);
    background: #fff;
}

.account-auth__spread {
    position: relative;
    display: grid;
    grid-template-columns: minmax(430px, 41%) minmax(0, 59%);
    min-height: calc(100vh - 64px);
}

.account-auth__sign-in,
.account-auth__register {
    min-width: 0;
}

.account-auth__sign-in {
    position: relative;
    padding: 29px clamp(46px, 5.6vw, 86px) 80px;
    background: #f8f8f6;
}

.account-auth__sign-in::after {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    width: 6px;
    background: #184738;
    content: "";
    pointer-events: none;
}

.account-auth__register {
    padding: 85px clamp(54px, 5.1vw, 78px) 58px;
    background: #fff;
}

.account-auth__breadcrumb {
    margin-bottom: 47px;
}

.account-auth h1,
.account-auth h2,
.account-app h1,
.account-page-heading h1,
.account-dialog h2 {
    color: var(--account-forest);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.account-auth__sign-in h1 {
    margin: 0 0 48px;
    font-size: 51px;
    line-height: 0.98;
}

.account-auth__register h2 {
    margin: 0 0 17px;
    font-size: clamp(39px, 3.1vw, 47px);
    line-height: 1.05;
}

.account-form {
    width: 100%;
}

.account-form--sign-in {
    width: min(100%, 390px);
    margin-top: 14px;
}

.account-form--register {
    max-width: 697px;
}

.account-form--register > .account-line-field {
    min-height: 98px;
}

.account-form--sign-in > input[name="account_action"] + .account-line-field {
    min-height: 100px;
}

.account-form--sign-in .account-button--compact {
    min-height: 58px;
    margin-top: 39px;
}

.account-form--sign-in .account-line-field input {
    height: 58px;
    border-bottom-color: #989898;
}

.account-form--sign-in .account-line-field input#login-password {
    padding-right: 42px;
}

.account-password-toggle {
    position: absolute;
    right: 0;
    bottom: 16px;
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--account-forest);
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease;
}

.account-password-toggle:hover {
    background: rgba(42, 77, 59, 0.08);
}

.account-password-toggle:focus-visible {
    outline: 2px solid var(--account-forest);
    outline-offset: 3px;
}

.account-password-toggle__icon {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.account-password-toggle__icon--hide {
    display: none;
}

.account-password-toggle[aria-pressed="true"] .account-password-toggle__icon--show {
    display: none;
}

.account-password-toggle[aria-pressed="true"] .account-password-toggle__icon--hide {
    display: block;
}

.account-form--register .account-form__pair--profile {
    grid-template-columns: minmax(0, 328px) minmax(0, 1fr);
    gap: 33px;
    margin-top: -9px;
}

.account-form--register > .account-gender {
    margin: 29px 0 26px;
}

.account-form--register .account-button--compact {
    width: 256px;
    min-height: 63px;
    margin-top: 36px;
}

.account-form__pair,
.account-password-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
}

.account-form__pair--profile {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: end;
}

.account-line-field {
    position: relative;
    min-width: 0;
    min-height: 78px;
    padding-top: 17px;
}

.account-line-field input,
.account-line-field select,
.account-line-field textarea {
    display: block;
    width: 100%;
    height: 48px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--account-rule);
    border-radius: 0;
    outline: 0;
    padding: 15px 0 6px;
    background: transparent;
    box-shadow: none;
    color: #26322c;
    font: inherit;
    font-size: 16px;
    line-height: 1.3;
    transition: border-color 180ms ease;
}

.account-line-field input:focus,
.account-line-field select:focus,
.account-line-field textarea:focus {
    border-bottom-color: var(--account-forest);
    border-bottom-width: 2px;
}

.account-line-field > label {
    position: absolute;
    z-index: 1;
    top: 21px;
    bottom: auto;
    left: 0;
    margin: 0;
    color: #2d3631;
    cursor: text;
    font-size: 14px;
    line-height: 1;
    pointer-events: none;
    transform: translate(0, 0) scale(1);
    transform-origin: left center;
    transition: color 160ms ease, transform 180ms ease;
}

.account-line-field:focus-within > label,
.account-line-field.is-filled > label,
.account-line-field input:not(:placeholder-shown) + label,
.account-line-field textarea:not(:placeholder-shown) + label {
    color: var(--account-forest);
    transform: translate(8px, -12px) scale(0.86);
}

.account-line-field input[type="password"] {
    letter-spacing: 0.32em;
}

.account-line-field.has-error input,
.account-line-field.has-error select,
.account-line-field.has-error textarea,
.account-dob.has-error .account-line-field select {
    border-bottom-color: #a33f32;
}

.account-field-error {
    display: block;
    margin-top: 6px;
    color: #9d382e;
    font-size: 12px;
    line-height: 1.35;
}

.account-line-field--select {
    min-height: 59px;
    padding-top: 0;
}

.account-line-field--select select {
    height: 47px;
    padding: 14px 20px 7px 0;
    background-color: transparent;
    color: #555d58;
    cursor: pointer;
    font-size: 14px;
}

.account-dob,
.account-gender {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}

.account-dob {
    padding-top: 8px;
}

.account-dob legend,
.account-gender legend {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #2f3732;
    font-size: 14px;
    line-height: 1.4;
}

.account-dob legend {
    display: flex;
    gap: 14px;
    align-items: baseline;
    justify-content: space-between;
}

.account-dob legend small {
    position: relative;
    top: 10px;
    left: -35px;
    color: #de433d;
    font-size: 13px;
    font-weight: 400;
}

.account-form--register .account-form__pair--profile > .account-line-field > label {
    top: 2px;
}

.account-password-pair > .account-line-field > label {
    top: 16px;
}

.account-dob__fields {
    display: grid;
    grid-template-columns: 0.7fr 1.08fr 0.9fr;
    gap: 28px;
}

.account-gender {
    margin: 4px 0 11px;
}

.account-gender__options {
    display: flex;
    gap: 20px 41px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 14px;
}

.account-radio {
    display: inline-flex;
    min-height: 44px;
    gap: 11px;
    align-items: center;
    color: #4d5550;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.3;
}

.account-radio input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.account-radio > span {
    position: relative;
    display: inline-grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border: 1px solid #56615b;
    border-radius: 50%;
    background: transparent;
}

.account-radio > span::after {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--account-forest);
    content: "";
    opacity: 0;
    transform: scale(0.45);
    transition: opacity 150ms ease, transform 150ms ease;
}

.account-radio input:checked + span::after {
    opacity: 1;
    transform: scale(1);
}

.account-radio input:focus-visible + span {
    outline: 3px solid rgba(159, 96, 75, 0.28);
    outline-offset: 3px;
}

.account-radio em {
    font-style: normal;
}

.account-password-pair {
    align-items: start;
}

.account-password-stack {
    min-width: 0;
}

.account-password-stack .account-line-field {
    padding-top: 23px;
}

.account-password-stack .account-line-field:focus-within > label,
.account-password-stack .account-line-field.is-filled > label,
.account-password-stack .account-line-field input:not(:placeholder-shown) + label {
    transform: translate(8px, -6px) scale(0.86);
}

.account-password-rules {
    display: grid;
    gap: 6px;
    margin: 3px 0 14px;
    padding: 0;
    color: #5c645f;
    font-size: 12px;
    line-height: 1.25;
    list-style: none;
}

.account-password-rules[hidden] {
    display: none;
}

.account-password-rules li {
    display: flex;
    gap: 9px;
    align-items: center;
}

.account-password-rules li > span {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #c7c9c8;
}

.account-password-rules li.is-met {
    color: var(--account-forest);
}

.account-password-rules li.is-met > span {
    background: var(--account-forest);
}

.account-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--account-forest);
    border-radius: 0;
    padding: 13px 29px;
    background-color: #173935;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 170ms ease, color 170ms ease, transform 170ms ease;
}

.account-button--compact {
    min-width: 217px;
    margin-top: 24px;
}

.account-form--register .account-button--compact {
    margin-top: 36px;
}

.account-button--secondary {
    background: transparent;
    color: var(--account-forest);
}

.account-button:hover {
    background: #173f32;
    color: #fff;
    transform: translateY(-1px);
}

.account-button:focus-visible,
.account-text-link:focus-visible,
.account-sidebar a:focus-visible,
.account-sidebar button:focus-visible,
.account-dialog__close:focus-visible {
    outline: 3px solid rgba(159, 96, 75, 0.32);
    outline-offset: 4px;
}

.account-auth__sign-in-note {
    max-width: 340px;
    margin: 29px 0 0;
    color: #505a54;
    font-size: 14px;
    line-height: 1.6;
}

.account-error-summary {
    margin: 0 0 16px;
    border: 1px solid rgba(164, 65, 53, 0.28);
    padding: 11px 15px;
    background: #fbf2ef;
    color: #703027;
    font-size: 13px;
    line-height: 1.45;
}

.account-error-summary strong {
    display: block;
}

.account-error-summary ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

/* Signed-in account remains a quiet, ruled ledger rather than a tile dashboard. */
.account-app {
    min-height: 70vh;
    padding: 0 0 96px;
    background: #fbfaf6;
}

.account-app__breadcrumb-wrap {
    padding-top: 31px;
    padding-bottom: 31px;
}

.account-app__layout {
    display: grid;
    grid-template-columns: 264px minmax(0, 1fr);
    gap: clamp(45px, 6.5vw, 104px);
    align-items: start;
}

.account-sidebar {
    position: sticky;
    top: 112px;
    border-top: 5px solid var(--account-forest);
    background: #f3eee4;
}

.account-sidebar__title {
    display: grid;
    gap: 5px;
    padding: 25px 25px 21px;
    border-bottom: 1px solid rgba(26, 47, 37, 0.17);
}

.account-sidebar__title strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.account-sidebar nav {
    display: grid;
}

.account-sidebar__item {
    display: flex;
    min-height: 55px;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(26, 47, 37, 0.12);
    padding: 14px 25px;
    color: #445149;
    font-size: 13px;
    text-decoration: none;
}

.account-sidebar__item.is-active {
    box-shadow: inset 4px 0 0 var(--account-forest);
    color: var(--account-forest);
    font-weight: 700;
}

.account-sidebar__item:not(.is-coming):hover {
    background: rgba(255, 255, 255, 0.52);
}

.account-sidebar__item.is-coming {
    color: #7d837f;
}

.account-sidebar__item small {
    color: var(--account-clay);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.account-sidebar__logout {
    margin: 0;
    padding: 20px 25px 23px;
}

.account-sidebar__logout button {
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 0 0 3px;
    background: transparent;
    color: #8c4738;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.account-app__main {
    min-width: 0;
    max-width: 920px;
}

.account-dashboard__header {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    justify-content: space-between;
    padding: 11px 0 42px;
    border-bottom: 1px solid rgba(26, 47, 37, 0.35);
}

.account-dashboard__header h1,
.account-page-heading h1 {
    margin: 0 0 9px;
    font-size: clamp(43px, 5vw, 67px);
    line-height: 1;
}

.account-dashboard__header a[href^="mailto:"] {
    color: #657169;
    font-size: 14px;
    text-decoration-color: rgba(26, 47, 37, 0.25);
    text-underline-offset: 4px;
}

.account-dashboard__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 3px;
}

.account-ledger {
    padding: 41px 0 8px;
}

.account-ledger__heading,
.account-list__heading {
    display: flex;
    gap: 20px;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(26, 47, 37, 0.35);
}

.account-ledger__heading h2,
.account-list__heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
}

.account-ledger__heading span,
.account-list__heading span {
    color: #737c76;
    font-size: 12px;
}

.account-ledger dl {
    margin: 0;
}

.account-ledger dl > div {
    display: grid;
    grid-template-columns: minmax(145px, 0.36fr) minmax(0, 1fr);
    gap: 28px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(26, 47, 37, 0.12);
}

.account-ledger dt {
    color: #778079;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.account-ledger dd {
    margin: 0;
    color: #26362e;
    font-size: 14px;
}

.account-dashboard__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
    border-top: 1px solid rgba(26, 47, 37, 0.35);
    border-bottom: 1px solid rgba(26, 47, 37, 0.35);
}

.account-dashboard__links a {
    display: grid;
    gap: 7px;
    padding: 25px 26px;
    color: var(--account-forest);
    text-decoration: none;
}

.account-dashboard__links a + a {
    border-left: 1px solid rgba(26, 47, 37, 0.22);
}

.account-dashboard__links span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.account-dashboard__links strong {
    color: #778079;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-dashboard__links a:hover {
    background: #f3eee4;
}

.account-page-heading {
    padding: 7px 0 35px;
    border-bottom: 1px solid rgba(26, 47, 37, 0.34);
}

.account-page-heading > span {
    display: block;
    max-width: 640px;
    color: #68736c;
    font-size: 14px;
    line-height: 1.65;
}

.account-edit > .account-form,
.account-edit > .account-error-summary {
    max-width: 760px;
}

.account-edit > .account-form {
    padding-top: 29px;
}

.account-readonly-line {
    display: grid;
    gap: 5px;
    margin: 12px 0 18px;
    border-bottom: 1px solid rgba(26, 47, 37, 0.38);
    padding: 12px 0 11px;
}

.account-readonly-line span {
    color: #68736c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.account-readonly-line strong {
    font-size: 15px;
    font-weight: 400;
}

.account-readonly-line small {
    color: #7a827d;
    font-size: 11px;
}

.account-readonly-line--compact {
    margin: 0;
}

.account-form__actions {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 28px;
}

.account-text-link {
    color: var(--account-forest);
    font-size: 13px;
    text-underline-offset: 4px;
}

.account-dialog {
    width: min(570px, calc(100% - 32px));
    max-height: calc(100dvh - 38px);
    border: 0;
    padding: 0;
    background: #fbfaf6;
    box-shadow: 0 32px 90px rgba(12, 31, 23, 0.25);
    color: var(--account-ink);
}

.account-dialog::backdrop {
    background: rgba(13, 31, 23, 0.55);
    backdrop-filter: blur(3px);
}

.account-dialog[open] {
    animation: account-dialog-enter 210ms ease-out;
}

.account-dialog__topline {
    height: 6px;
    background: var(--account-forest);
}

.account-dialog__body {
    overflow-y: auto;
    padding: 42px 48px 48px;
}

.account-dialog h2 {
    margin: 0 0 8px;
    font-size: 43px;
}

.account-dialog__body > h2 + p {
    margin: 0 0 19px;
    color: #68736c;
    font-size: 14px;
}

.account-dialog__close {
    position: absolute;
    top: 22px;
    right: 23px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(26, 47, 37, 0.22);
    border-radius: 50%;
    background: transparent;
    color: var(--account-forest);
    cursor: pointer;
}

.account-dialog__close svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.account-page-heading--with-action {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    justify-content: space-between;
}

.account-page-heading--with-action > div {
    min-width: 0;
}

.account-order-list,
.account-address-list {
    border-top: 1px solid rgba(26, 47, 37, 0.34);
}

.account-page-heading + .account-order-list,
.account-page-heading + .account-address-list {
    border-top: 0;
}

.account-order-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.72fr 0.8fr auto auto;
    gap: 22px;
    align-items: center;
    min-height: 103px;
    border-bottom: 1px solid rgba(26, 47, 37, 0.16);
    padding: 19px 0;
}

.account-order-row > div:not(.account-order-row__status) {
    display: grid;
    gap: 5px;
}

.account-order-row > div > span:not(.account-status) {
    color: #78817b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.account-order-row > div > strong {
    color: #2e3d35;
    font-size: 13px;
    font-weight: 500;
}

.account-order-row__reference strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px !important;
    font-weight: 400 !important;
}

.account-status {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border: 1px solid rgba(26, 47, 37, 0.24);
    border-radius: 999px;
    padding: 5px 10px;
    color: var(--account-forest);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    white-space: nowrap;
}

.account-status--cancelled {
    border-color: rgba(157, 56, 46, 0.3);
    color: #923e34;
}

.account-order-row__link,
.account-address-row__actions a,
.account-address-row__actions button {
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 0 0 2px;
    background: transparent;
    color: var(--account-forest);
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.account-address-row {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
    min-height: 142px;
    border-bottom: 1px solid rgba(26, 47, 37, 0.16);
    padding: 23px 0;
}

.account-address-row > div:first-child > span {
    display: block;
    margin-bottom: 8px;
    color: var(--account-clay);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.account-address-row address,
.account-order-meta address {
    color: #435048;
    font-size: 14px;
    font-style: normal;
    line-height: 1.65;
}

.account-address-row__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.account-address-row__actions form {
    margin: 0;
}

.account-address-row__actions button {
    color: #8e4437;
}

.account-empty-state {
    max-width: 640px;
    margin-top: 54px;
    border-top: 1px solid rgba(26, 47, 37, 0.35);
    border-bottom: 1px solid rgba(26, 47, 37, 0.18);
    padding: 38px 0 42px;
}

.account-empty-state h2 {
    max-width: 20ch;
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.15;
}

.account-empty-state p {
    margin: 0 0 24px;
    color: #6d7771;
    font-size: 14px;
}

.account-order-detail {
    padding: 42px 0 45px;
}

.account-order-items {
    border-bottom: 1px solid rgba(26, 47, 37, 0.28);
}

.account-order-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 34px;
    align-items: center;
    min-height: 82px;
    border-bottom: 1px solid rgba(26, 47, 37, 0.12);
    padding: 17px 0;
}

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

.account-order-item > div {
    display: grid;
    gap: 6px;
}

.account-order-item > div strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
}

.account-order-item > div span,
.account-order-item > span {
    color: #727b75;
    font-size: 12px;
}

.account-order-item > strong {
    font-size: 14px;
}

.account-order-totals {
    width: min(100%, 390px);
    margin: 26px 0 0 auto;
}

.account-order-totals > div,
.account-order-meta dl > div {
    display: flex;
    gap: 24px;
    align-items: baseline;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(26, 47, 37, 0.12);
}

.account-order-totals dt,
.account-order-meta dt {
    color: #707a73;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.account-order-totals dd,
.account-order-meta dd {
    margin: 0;
    font-size: 13px;
}

.account-order-totals__total {
    border-bottom-color: rgba(26, 47, 37, 0.4) !important;
    padding-top: 16px !important;
}

.account-order-totals__total dt,
.account-order-totals__total dd {
    color: var(--account-forest);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    text-transform: none;
}

.account-order-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px;
    margin-bottom: 36px;
    border-top: 1px solid rgba(26, 47, 37, 0.35);
    padding-top: 31px;
}

.account-order-meta h2 {
    margin: 0 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}

.account-order-meta dl {
    margin: 0;
}

@keyframes account-dialog-enter {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1080px) {
    .account-auth__spread {
        grid-template-columns: minmax(360px, 39%) minmax(0, 61%);
    }

    .account-auth__sign-in {
        padding-inline: 45px;
    }

    .account-auth__register {
        padding-inline: 45px;
    }

    .account-gender__options {
        gap-inline: 24px;
    }

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

@media (max-width: 860px) {
    .account-auth__spread {
        grid-template-columns: 1fr;
    }

    .account-auth__sign-in {
        border-right: 0;
        border-bottom: 0;
        padding: 27px max(28px, 7vw) 62px;
    }

    .account-auth__sign-in::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        height: 6px;
        background: #184738;
        box-shadow: none;
    }

    .account-auth__register {
        padding: 58px max(28px, 7vw) 72px;
    }

    .account-auth__breadcrumb {
        margin-bottom: 40px;
    }

    .account-app__layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .account-sidebar {
        position: static;
    }

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

    .account-sidebar__logout {
        border-top: 1px solid rgba(26, 47, 37, 0.12);
    }
}

@media (max-width: 620px) {
    .site-header:not(.site-header--home) .main-nav .nav-link--home,
    .site-header:not(.site-header--home) .main-nav .nav-link--shop,
    .site-header:not(.site-header--home) .main-nav .nav-link--contact {
        display: none;
    }

    .site-header:not(.site-header--home) .mobile-nav-menu {
        display: block;
    }

    .mobile-nav-menu summary {
        display: inline-flex;
        min-width: 44px;
        min-height: 44px;
        gap: 7px;
        align-items: center;
        justify-content: center;
        color: #516058;
        cursor: pointer;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        list-style: none;
        text-transform: uppercase;
    }

    .mobile-nav-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-nav-menu summary > span:first-child,
    .mobile-nav-menu summary > span:first-child::before,
    .mobile-nav-menu summary > span:first-child::after {
        display: block;
        width: 17px;
        height: 1px;
        background: currentColor;
        content: "";
    }

    .mobile-nav-menu summary > span:first-child {
        position: relative;
    }

    .mobile-nav-menu summary > span:first-child::before {
        position: absolute;
        top: -5px;
    }

    .mobile-nav-menu summary > span:first-child::after {
        position: absolute;
        top: 5px;
    }

    .mobile-nav-menu summary:focus-visible {
        outline: 3px solid rgba(159, 96, 75, 0.32);
        outline-offset: 3px;
    }

    .mobile-nav-menu__panel {
        position: absolute;
        z-index: 30;
        top: calc(100% + 8px);
        left: 0;
        display: grid;
        width: 190px;
        border: 1px solid rgba(26, 47, 37, 0.22);
        padding: 8px 14px;
        background: #fbfaf6;
        box-shadow: 0 18px 38px rgba(26, 47, 37, 0.14);
    }

    .main-nav .mobile-nav-menu__panel a {
        min-height: 44px;
        padding: 12px 2px;
        border-bottom: 1px solid rgba(26, 47, 37, 0.12);
        font-size: 13px;
    }

    .main-nav .mobile-nav-menu__panel a:last-child {
        border-bottom: 0;
    }

    .customer-account-surface .site-header:not(.site-header--home) .nav-wrap {
        min-height: 76px;
        padding-inline: 20px;
    }

    .account-auth__sign-in,
    .account-auth__register {
        padding-inline: 24px;
    }

    .account-auth__register {
        padding-top: 48px;
    }

    .account-auth__sign-in h1 {
        margin-bottom: 34px;
    }

    .account-auth__register h2 {
        font-size: 39px;
    }

    .account-form__pair,
    .account-form__pair--profile,
    .account-form__pair--address,
    .account-password-pair {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .account-form--register .account-form__pair--profile {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .account-dob {
        padding-top: 17px;
    }

    .account-dob legend small {
        position: static;
        font-size: 12px;
    }

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

    .account-button--compact,
    .account-form--register .account-button--compact {
        width: 100%;
    }

    .account-app {
        padding-bottom: 65px;
    }

    .account-app__breadcrumb-wrap {
        overflow-x: auto;
        padding-top: 22px;
        padding-bottom: 22px;
    }

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

    .account-dashboard__header h1,
    .account-page-heading h1 {
        font-size: 43px;
    }

    .account-dashboard__actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

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

    .account-dashboard__links a + a {
        border-top: 1px solid rgba(26, 47, 37, 0.22);
        border-left: 0;
    }

    .account-ledger__heading,
    .account-list__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-ledger dl > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .account-dialog__body {
        padding: 39px 24px 32px;
    }

    .account-dialog h2 {
        padding-right: 34px;
        font-size: 37px;
    }

    .account-page-heading--with-action,
    .account-order-meta {
        grid-template-columns: minmax(0, 1fr);
        align-items: flex-start;
    }

    .account-page-heading--with-action {
        flex-direction: column;
    }

    .account-page-heading--with-action .account-button {
        width: 100%;
    }

    .account-order-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        padding: 23px 0;
    }

    .account-order-row__status,
    .account-order-row__link {
        justify-self: start;
    }

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

    .account-order-item {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px 18px;
    }

    .account-order-item > strong {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .account-order-meta {
        display: grid;
        gap: 36px;
    }
}

@media (max-width: 460px) {
    .account-gender__options {
        grid-template-columns: minmax(0, 1fr);
    }

    .account-order-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .account-line-field > label,
    .account-line-field input,
    .account-line-field select,
    .account-line-field textarea,
    .account-radio > span::after,
    .account-button {
        transition: none;
    }

    .account-dialog[open] {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-management-menu-section summary::after {
        transition: none;
    }
}
.product-detail-section {
    padding: 64px 0 96px;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 860px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}
.product-detail-image {
    aspect-ratio: 1 / 1;
    background: #f6f4ef;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-description {
    margin: 20px 0;
    color: #444;
    line-height: 1.7;
}
.product-ingredients {
    margin-top: 20px;
}
.product-ingredients h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #777;
    margin-bottom: 6px;
}
.cart-qty-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty-input {
    width: 70px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(41, 69, 54, 0.2);
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    text-align: center;
}

.cart-qty-input:focus {
    outline: none;
    border-color: #627b69;
    box-shadow: 0 0 0 3px rgba(98, 123, 105, 0.14);
}

.cart-summary {
    margin-top: 24px;
    text-align: right;
}

.cart-subtotal {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

/* Immersive product atelier */
::selection {
    color: var(--white);
    background: var(--forest);
}

input,
textarea {
    caret-color: var(--forest);
}

.cart-count.is-empty {
    display: none;
}

.storefront-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--forest);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-button--primary {
    color: var(--white);
    background: var(--forest);
}

.storefront-button--primary:hover {
    color: var(--white);
    background: var(--forest-dark);
    transform: translateY(-1px);
}

.storefront-button--secondary {
    color: var(--forest);
    background: transparent;
}

.storefront-button--secondary:hover {
    color: var(--white);
    background: var(--forest);
}

.storefront-button:focus-visible,
.quantity-stepper button:focus-visible,
.product-gallery__thumb:focus-visible,
.product-story__tabs button:focus-visible,
.product-story__panel summary:focus-visible,
.cart-drawer__close:focus-visible,
.cart-drawer-item__remove:focus-visible,
.cart-drawer-item__update:focus-visible {
    outline: 3px solid rgba(41, 69, 54, 0.28);
    outline-offset: 4px;
}

.storefront-button:disabled,
.storefront-button[aria-disabled="true"] {
    color: #e4e9e5;
    border-color: #6e7d74;
    background: #6e7d74;
    cursor: wait;
    transform: none;
}

.product-detail-page {
    overflow: hidden;
    color: var(--ink);
    background: #f8f8f5;
}

.product-admin-toolbar {
    border-bottom: 1px solid rgba(29, 43, 34, 0.12);
    background: var(--sage-light);
}

.product-admin-toolbar__inner,
.product-admin-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-admin-toolbar__inner {
    justify-content: space-between;
    min-height: 64px;
    color: var(--forest-dark);
    font-size: 13px;
    font-weight: 700;
}

.product-admin-toolbar__actions .delete-link {
    color: #87372f;
    font-size: 13px;
    text-underline-offset: 4px;
}

.product-detail-shell {
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    padding: 30px 0 34px;
}

.product-breadcrumbs {
    display: flex;
    align-items: center;
    min-height: 44px;
    gap: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    color: #665f56;
    font-size: 13px;
    white-space: nowrap;
}

.product-breadcrumbs a {
    color: #4f5c54;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
}

.product-breadcrumbs a:hover {
    color: var(--forest);
    text-decoration-color: currentColor;
}

.product-breadcrumbs [aria-current="page"] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-detail-hero {
    display: grid;
    grid-template-columns: minmax(620px, 720px) minmax(280px, 340px);
    gap: clamp(38px, 4vw, 70px);
    align-items: start;
    justify-content: start;
}

.product-gallery {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 20px;
    min-width: 0;
}

.product-gallery--single {
    grid-template-columns: minmax(0, 1fr);
}

.product-gallery__rail {
    display: grid;
    align-content: start;
    gap: 12px;
    max-height: 646px;
    padding: 1px 8px 1px 1px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: rgba(41, 69, 54, 0.35) transparent;
    scrollbar-width: thin;
}

.product-gallery__rail::-webkit-scrollbar,
.cart-drawer__items::-webkit-scrollbar {
    width: 8px;
}

.product-gallery__rail::-webkit-scrollbar-thumb,
.cart-drawer__items::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: rgba(41, 69, 54, 0.34);
    background-clip: padding-box;
}

.product-gallery__thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    padding: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 2px;
    background: var(--cream);
    cursor: pointer;
}

.product-gallery__thumb::after {
    position: absolute;
    inset: 3px;
    border: 1px solid transparent;
    content: "";
    pointer-events: none;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-selected {
    border-color: var(--forest);
}

.product-gallery__thumb.is-selected::after {
    border-color: rgba(255, 255, 255, 0.78);
}

.product-gallery__thumb img,
.product-gallery__main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__stage {
    height: 646px;
    min-width: 0;
    overflow: hidden;
    background: #e8e2d7;
}

.product-gallery__main-image {
    transition:
        opacity 180ms ease,
        filter 320ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-gallery__main-image.is-changing {
    opacity: 0.35;
    filter: blur(5px);
    transform: scale(1.015);
}

.product-gallery__placeholder {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    padding: clamp(28px, 5vw, 64px);
    flex-direction: column;
    color: var(--forest-dark);
    background: var(--sage-light);
}

.product-gallery__placeholder span {
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-gallery__placeholder strong {
    max-width: 11ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

.product-purchase {
    padding-top: 22px;
}

.product-purchase__category {
    margin: 0 0 18px;
    color: #547257;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.product-purchase h1 {
    max-width: 10ch;
    margin: 0;
    color: #132a1d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 41px;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.02;
    text-wrap: balance;
}

.product-purchase__price {
    margin: 22px 0 0;
    color: #9c5f50;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

.product-purchase__summary {
    max-width: 38ch;
    margin: 34px 0 0;
    padding-top: 28px;
    border-top: 1px solid rgba(29, 43, 34, 0.16);
    color: #434b46;
    font-size: 16px;
    line-height: 1.65;
}

.product-purchase__form {
    margin: 30px 0 0;
}

.product-purchase__quantity-label {
    display: block;
    margin-bottom: 9px;
    color: #5b675f;
    font-size: 12px;
    font-weight: 700;
}

.quantity-stepper {
    display: grid;
    grid-template-columns: 48px 66px 48px;
    width: max-content;
    height: 54px;
    overflow: hidden;
    border: 1px solid rgba(29, 43, 34, 0.26);
    border-radius: 8px;
    background: var(--white);
}

.quantity-stepper button,
.quantity-stepper input {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--ink);
    background: transparent;
    text-align: center;
}

.quantity-stepper button {
    display: grid;
    place-items: center;
    cursor: pointer;
}

.quantity-stepper button:hover {
    background: #f0f3ee;
}

.quantity-stepper button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.5;
}

.quantity-stepper input {
    appearance: textfield;
    font-size: 16px;
    font-variant-numeric: tabular-nums;
}

.quantity-stepper input::-webkit-inner-spin-button,
.quantity-stepper input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.quantity-stepper input:focus {
    position: relative;
    z-index: 1;
    outline: 2px solid var(--forest);
    outline-offset: -3px;
}

.product-purchase__submit {
    width: 100%;
    min-height: 58px;
    margin-top: 24px;
}

.product-purchase__enquiry {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    margin-top: 25px;
    color: #496b55;
    font-size: 15px;
    text-decoration-thickness: 1px;
    text-decoration-color: transparent;
    text-underline-offset: 6px;
}

.product-purchase__enquiry:hover {
    color: var(--forest-dark);
    text-decoration-color: currentColor;
}

.product-story {
    border-top: 1px solid rgba(29, 43, 34, 0.13);
    border-bottom: 1px solid rgba(29, 43, 34, 0.13);
    background: #f8f8f5;
}

.product-story__tabs,
.product-story__panels {
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
}

.product-story__tabs {
    display: none;
}

.product-story.is-enhanced .product-story__tabs {
    display: flex;
    align-items: stretch;
    min-height: 72px;
    gap: clamp(28px, 5vw, 80px);
    border-bottom: 1px solid rgba(29, 43, 34, 0.1);
}

.product-story__tabs button {
    position: relative;
    padding: 3px 0 0;
    border: 0;
    color: #776f65;
    background: transparent;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    cursor: pointer;
}

.product-story__tabs button::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: transparent;
    content: "";
}

.product-story__tabs button:hover,
.product-story__tabs button[aria-selected="true"] {
    color: var(--forest-dark);
}

.product-story__tabs button[aria-selected="true"]::after {
    background: var(--forest);
}

.product-story__panels {
    padding: 34px 0 52px;
}

.product-story__panel {
    border-bottom: 1px solid rgba(29, 43, 34, 0.12);
}

.product-story__panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    gap: 20px;
    color: var(--forest-dark);
    font-size: 13px;
    font-weight: 750;
    list-style: none;
    cursor: pointer;
}

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

.product-story__panel summary svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform 180ms ease;
}

.product-story__panel[open] summary svg {
    transform: rotate(180deg);
}

.product-story.is-enhanced .product-story__panel {
    border: 0;
}

.product-story.is-enhanced .product-story__panel:not([open]) {
    display: none;
}

.product-story.is-enhanced .product-story__panel summary {
    display: none;
}

.product-story__content {
    max-width: 74ch;
}

.product-story__content h2 {
    margin: 0 0 13px;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.product-story__content p {
    margin: 0;
    color: #4d5851;
    font-size: 16px;
    line-height: 1.72;
}

.product-highlight {
    padding: 32px;
    background: #f8f8f5;
}

.product-highlight__inner {
    width: min(1376px, 100%);
    min-height: 270px;
    margin: 0 auto;
    padding: clamp(42px, 7vw, 88px);
    color: var(--white);
    background: var(--forest-dark);
}

.product-highlight h2 {
    max-width: 14ch;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
    text-wrap: balance;
}

.product-highlight p {
    max-width: 68ch;
    margin: 24px 0 0;
    color: #e4ebe5;
    font-size: 16px;
    line-height: 1.7;
}

.related-products {
    padding: 76px 0 96px;
    background: var(--cream);
}

.related-products__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.related-products__heading h2 {
    margin: 0;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
}

.related-products__heading > a {
    color: var(--forest);
    font-size: 13px;
    font-weight: 700;
    text-underline-offset: 5px;
}

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

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

.related-product-card__image {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--sage-light);
}

.related-product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.related-product-card__image:hover img {
    transform: scale(1.025);
}

.related-product-card__placeholder {
    display: grid;
    height: 100%;
    padding: 24px;
    place-items: end start;
    color: var(--forest-dark);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.related-product-card__copy {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
}

.related-product-card__copy h3,
.related-product-card__copy p {
    margin: 0;
}

.related-product-card__copy h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.related-product-card__copy h3 a {
    text-decoration: none;
}

.related-product-card__copy p {
    flex: 0 0 auto;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

/* Global cart drawer */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 80;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 360ms;
}

.cart-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.cart-drawer__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    opacity: 0;
    background: rgba(18, 30, 23, 0.28);
    cursor: default;
    transition: opacity 260ms ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
    opacity: 1;
}

.cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    width: clamp(420px, 30vw, 480px);
    max-width: 100%;
    height: 100dvh;
    overflow: hidden;
    flex-direction: column;
    color: var(--ink);
    background: #fdfdfb;
    box-shadow: -18px 0 64px rgba(31, 53, 42, 0.16);
    transform: translateX(102%);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cart-drawer__panel:focus {
    outline: none;
}

.cart-drawer__content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
    gap: 24px;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(29, 43, 34, 0.13);
}

.cart-drawer__header h2 {
    margin: 0;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1;
}

.cart-drawer__close {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 8px;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
}

.cart-drawer__close:hover {
    background: #eef2ed;
}

.cart-drawer__close svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.4;
}

.cart-drawer__message {
    margin: 0;
    padding: 12px 32px;
    color: #294536;
    background: #edf3ed;
    font-size: 13px;
}

.cart-drawer__message.is-error {
    color: #712f28;
    background: #f8e8e5;
}

.cart-drawer__items {
    flex: 1 1 auto;
    padding: 8px 32px 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: rgba(41, 69, 54, 0.34) transparent;
    scrollbar-width: thin;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(29, 43, 34, 0.13);
}

.cart-drawer-item__image {
    display: grid;
    width: 104px;
    aspect-ratio: 1;
    overflow: hidden;
    place-items: center;
    background: var(--cream);
}

.cart-drawer-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-drawer-item__placeholder {
    padding: 10px;
    color: #5c6a61;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.cart-drawer-item__body {
    min-width: 0;
}

.cart-drawer-item__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cart-drawer-item__heading h3,
.cart-drawer-item__heading p {
    margin: 0;
}

.cart-drawer-item__heading h3 {
    max-width: 16ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.22;
}

.cart-drawer-item__heading h3 a {
    text-decoration: none;
}

.cart-drawer-item__heading p,
.cart-drawer-item__line-total {
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.cart-drawer-item__controls {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 10px 16px;
    margin-top: 18px;
}

.cart-drawer-item__quantity-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-stepper--compact {
    grid-template-columns: 38px 44px 38px;
    height: 44px;
}

.cart-drawer-item__update {
    min-height: 38px;
    padding: 0 8px;
    border: 0;
    color: #51635a;
    background: transparent;
    font-size: 11px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.cart-drawer-item__line-total {
    justify-self: end;
    margin: 0 0 11px;
    font-weight: 700;
}

.cart-drawer-item__remove-form {
    grid-column: 1 / -1;
    margin: 0;
}

.cart-drawer-item__remove {
    min-height: 34px;
    padding: 0;
    border: 0;
    color: #9a5447;
    background: transparent;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}

.cart-drawer__empty {
    flex: 1 1 auto;
    padding: 54px 32px;
}

.cart-drawer__empty h3 {
    max-width: 13ch;
    margin: 0;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.cart-drawer__empty p {
    max-width: 30ch;
    margin: 16px 0 0;
    color: #5a685f;
    line-height: 1.65;
}

.cart-drawer__footer {
    flex: 0 0 auto;
    padding: 24px 32px 32px;
    border-top: 1px solid rgba(29, 43, 34, 0.13);
    background: #fdfdfb;
}

.cart-drawer__subtotal {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
    font-size: 15px;
}

.cart-drawer__subtotal strong {
    font-size: 18px;
    font-variant-numeric: tabular-nums;
}

.cart-drawer__footer .storefront-button {
    width: 100%;
    min-height: 58px;
}

body.cart-drawer-open {
    overflow: hidden;
}

/* Accessible server-rendered cart fallback */
.cart-page {
    min-height: 65vh;
    padding: 72px 0 96px;
    background: var(--paper);
}

.cart-page__header {
    max-width: 760px;
    margin-bottom: 46px;
}

.cart-page__header h1 {
    margin: 0;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

.cart-page__header p {
    margin: 20px 0 0;
    color: #5a685f;
}

.cart-page__empty {
    max-width: 620px;
    padding: 46px;
    background: var(--cream);
}

.cart-page__empty h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
}

.cart-page__empty p {
    margin: 12px 0 24px;
    color: #5a685f;
}

.cart-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 58px;
    align-items: start;
}

.cart-page-item {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr) auto;
    gap: 24px;
    padding: 26px 0;
    border-top: 1px solid rgba(29, 43, 34, 0.13);
}

.cart-page-item__image {
    display: grid;
    width: 132px;
    aspect-ratio: 1;
    overflow: hidden;
    place-items: center;
    background: var(--cream);
}

.cart-page-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-page-item__placeholder {
    color: #5d6b62;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cart-page-item__copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}

.cart-page-item__copy h2 a {
    text-decoration: none;
}

.cart-page-item__copy > p {
    margin: 6px 0 18px;
    color: #66736b;
    font-size: 13px;
}

.cart-page-item__quantity-form {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 10px;
}

.cart-page-item__quantity-form label {
    width: 100%;
    color: #5a685f;
    font-size: 12px;
    font-weight: 700;
}

.cart-page-item__quantity-form .input {
    margin: 0;
}

.cart-page-item__quantity-form input {
    width: 76px;
    min-height: 50px;
    margin: 0;
    border-color: rgba(29, 43, 34, 0.22);
    border-radius: 8px;
    font-variant-numeric: tabular-nums;
    text-align: center;
}

.cart-page-item__remove {
    display: inline-block;
    margin-top: 16px;
    color: #914d42;
    font-size: 12px;
    text-underline-offset: 4px;
}

.cart-page-item__total {
    margin: 0;
    text-align: right;
}

.cart-page-item__total span {
    display: block;
    margin-bottom: 4px;
    color: #6b766f;
    font-size: 11px;
}

.cart-page-item__total strong {
    font-size: 17px;
    font-variant-numeric: tabular-nums;
}

.cart-page__summary {
    position: sticky;
    top: 112px;
    padding: 28px;
    background: var(--cream);
}

.cart-page__summary > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.cart-page__summary strong {
    font-variant-numeric: tabular-nums;
}

.cart-page__summary .storefront-button {
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .storefront-button,
    .product-gallery__main-image,
    .related-product-card__image img,
    .cart-drawer,
    .cart-drawer__backdrop,
    .cart-drawer__panel,
    .product-story__panel summary svg {
        transition: none;
    }
}

/* Product detail and cart drawer responsive composition */
@media (max-width: 1180px) {
    .product-detail-shell,
    .product-story__tabs,
    .product-story__panels {
        width: min(calc(100% - 48px), 1100px);
    }

    .product-detail-hero {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
        gap: 42px;
    }

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

    .product-gallery__stage,
    .product-gallery__rail {
        max-height: 620px;
    }

    .product-gallery__stage {
        height: min(58vw, 620px);
    }

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

@media (max-width: 900px) {
    .product-detail-shell,
    .product-story__tabs,
    .product-story__panels {
        width: min(calc(100% - 40px), 760px);
    }

    .product-detail-shell {
        padding-top: 20px;
    }

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

    .product-gallery__stage {
        height: min(78vw, 680px);
    }

    .product-purchase {
        max-width: 620px;
        padding: 0 0 28px;
    }

    .product-purchase h1 {
        max-width: 13ch;
        font-size: clamp(40px, 7vw, 58px);
    }

    .product-purchase__summary {
        max-width: 52ch;
    }

    .product-story.is-enhanced .product-story__tabs {
        gap: clamp(22px, 5vw, 48px);
        overflow-x: auto;
    }

    .product-highlight {
        padding: 24px;
    }

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

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

    .cart-page__summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .product-detail-shell,
    .product-story__panels {
        width: calc(100% - 28px);
    }

    .product-detail-shell {
        padding: 12px 0 24px;
    }

    .product-breadcrumbs {
        min-height: 42px;
        gap: 9px;
        margin-bottom: 12px;
        overflow-x: auto;
        font-size: 12px;
        scrollbar-width: none;
    }

    .product-breadcrumbs::-webkit-scrollbar {
        display: none;
    }

    .product-gallery,
    .product-gallery--single {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .product-gallery__stage {
        grid-row: 1;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1.05;
    }

    .product-gallery__rail {
        display: grid;
        grid-row: 2;
        grid-auto-columns: 76px;
        grid-auto-flow: column;
        grid-template-columns: none;
        max-height: none;
        gap: 10px;
        padding: 1px 1px 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
    }

    .product-gallery__thumb {
        scroll-snap-align: start;
    }

    .product-purchase__category {
        margin-bottom: 13px;
    }

    .product-purchase h1 {
        max-width: 15ch;
        font-size: clamp(38px, 12vw, 52px);
    }

    .product-purchase__price {
        margin-top: 16px;
    }

    .product-purchase__summary {
        margin-top: 24px;
        padding-top: 22px;
    }

    .product-story__tabs,
    .product-story.is-enhanced .product-story__tabs {
        display: none;
    }

    .product-story__panels {
        padding: 8px 0 26px;
    }

    .product-story.is-enhanced .product-story__panel,
    .product-story.is-enhanced .product-story__panel:not([open]) {
        display: block;
        border-bottom: 1px solid rgba(29, 43, 34, 0.12);
    }

    .product-story.is-enhanced .product-story__panel summary {
        display: flex;
    }

    .product-story__content {
        padding: 2px 0 26px;
    }

    .product-story__content h2 {
        display: none;
    }

    .product-highlight {
        padding: 14px;
    }

    .product-highlight__inner {
        min-height: 230px;
        padding: 34px 28px;
    }

    .related-products {
        padding: 56px 0 72px;
    }

    .related-products__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-drawer__panel {
        width: 100%;
    }

    .cart-drawer__header {
        min-height: 82px;
        padding: 18px 20px;
    }

    .cart-drawer__message {
        padding: 11px 20px;
    }

    .cart-drawer__items {
        padding: 4px 20px 20px;
    }

    .cart-drawer__footer {
        padding: 20px;
    }

    .cart-page {
        padding: 48px 0 72px;
    }

    .cart-page__empty {
        padding: 32px 24px;
    }
}

@media (max-width: 560px) {
    .related-products__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .cart-drawer-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 14px;
        padding: 22px 0;
    }

    .cart-drawer-item__image {
        width: 84px;
    }

    .cart-drawer-item__heading {
        display: block;
    }

    .cart-drawer-item__heading p {
        margin-top: 6px;
    }

    .cart-drawer-item__controls {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .cart-drawer-item__line-total {
        justify-self: start;
        margin: 0;
    }

    .cart-page-item {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 16px;
    }

    .cart-page-item__image {
        width: 88px;
    }

    .cart-page-item__total {
        grid-column: 2;
        text-align: left;
    }
}

.product-filter-sidebar .filter-group {
    margin-bottom: 28px;
}

.product-filter-sidebar .filter-group h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #4d5c53;
}

.product-filter-sidebar .filter-coming-soon {
    padding: 2px 8px;
    border-radius: 999px;
    background: #eee;
    color: #888;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
}

.product-filter-sidebar .filter-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-filter-sidebar .filter-price-inputs input,
.product-filter-sidebar input[type="text"] {
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid rgba(41, 69, 54, 0.2);
    border-radius: 8px;
    font-size: 14px;
}

.product-filter-sidebar .filter-group--disabled {
    opacity: 0.55;
}

.product-filter-sidebar .filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #4d5c53;
}

.product-filter-sidebar .admin-btn {
    width: 100%;
    text-align: center;
}
.product-filter-sidebar {
    width: 280px;
}
.product-filter-sidebar form {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-filter-sidebar .filter-actions {
    margin-top: 60px;
}
.product-filter-sidebar .filter-sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--forest-dark);
}

/* Garden Storefront retail landing page */
.site-header--home .header-utility-row {
    min-height: 78px;
}

.site-header--home .nav-primary-bar .main-nav {
    min-height: 64px;
}

.site-header--home .nav-primary-bar .main-nav a {
    min-height: 34px;
    padding: 6px 14px 5px;
}

.site-header--home:not(.is-compact) .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 24px;
}

.site-header--home:not(.is-compact) .brand strong {
    font-size: 26px;
}

.site-header--home + main .home-storefront {
    padding-top: 94px;
}

.home-storefront {
    --home-ink: #10231d;
    --home-forest: #254837;
    --home-line: rgba(16, 35, 29, 0.19);
    --home-paper: #f7f6f2;
    overflow: clip;
    background: var(--home-paper);
    color: var(--home-ink);
}

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

.home-frame {
    width: min(1238px, calc(100% - 48px));
    margin-inline: auto;
}

.home-button,
.home-text-link,
.home-community nav a {
    text-decoration: none;
}

.home-button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--home-forest);
    border-radius: 0;
    padding: 9px 20px 8px;
    color: var(--home-ink);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-button--filled {
    background: #2c4738;
    color: #fff;
}

.home-button--outline {
    background: rgba(255, 255, 255, 0.34);
}

.home-button--small {
    min-height: 31px;
    padding: 7px 18px 6px;
    font-size: 9px;
}

.home-button:hover,
.home-text-link:hover,
.home-community nav a:hover {
    color: #7b5f4f;
}

.home-button--filled:hover {
    background: #163527;
    color: #fff;
}

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

.home-button:focus-visible,
.home-text-link:focus-visible,
.home-square-control:focus-visible,
.home-campaign__dot:focus-visible,
.home-product-card__media:focus-visible,
.home-community nav a:focus-visible {
    outline: 3px solid rgba(37, 72, 55, 0.3);
    outline-offset: 4px;
}

.home-button[aria-disabled="true"],
.home-community a[aria-disabled="true"] {
    cursor: default;
}

.home-square-control {
    position: absolute;
    z-index: 5;
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(16, 35, 29, 0.22);
    border-radius: 0;
    padding: 0;
    background: rgba(250, 249, 245, 0.88);
    color: var(--home-ink);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(35, 42, 36, 0.1);
    transition: background-color 180ms ease, opacity 180ms ease;
}

.home-square-control:hover:not(:disabled) {
    background: #fff;
}

.home-square-control:disabled {
    opacity: 1;
    cursor: default;
}

.home-square-control svg,
.home-text-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 1.25;
}

.home-campaign {
    position: relative;
    height: 256px;
    overflow: hidden;
    background: #e6e6dc;
}

.home-campaign__track,
.home-campaign__slide {
    position: absolute;
    inset: 0;
}

.home-campaign__slide {
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: scale(1.018);
    transition: opacity 620ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1), visibility 620ms;
}

.home-campaign__slide.is-active {
    z-index: 2;
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.home-campaign__media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-campaign__content {
    position: absolute;
    z-index: 2;
    top: 45px;
    left: max(9.8vw, calc((100% - 1238px) / 2 + 18px));
    width: min(482px, 42vw);
}

.home-campaign__label {
    position: absolute;
    z-index: 2;
    top: 158px;
    left: 55.5%;
    width: 166px;
    margin: 0;
    color: #96998d;
    font-size: 9.5px;
    font-weight: 750;
    letter-spacing: 0.3em;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.home-campaign__content h1 {
    max-width: 482px;
    margin-bottom: 4px;
    font-family: "Bentham", Georgia, serif;
    font-size: clamp(50px, 4.65vw, 70px);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 0.87;
}

.home-campaign__copy {
    margin-bottom: 10px;
    color: #26362f;
    font-size: 17px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.home-campaign__content .home-button {
    width: 200px;
    min-width: 200px;
    height: 34px;
    min-height: 34px;
    padding-block: 7px 6px;
    background: #354e40;
    color: #f4f5f2;
    transform: translate(4px, 4px);
}

.home-campaign__previous,
.home-routine__previous {
    left: max(3.8vw, 22px);
}

.home-campaign__next,
.home-routine__next {
    right: max(3.8vw, 22px);
}

.home-campaign__previous,
.home-campaign__next {
    top: calc(50% - 22px);
}

.home-campaign__next {
    right: 50px;
}

.home-campaign__previous svg,
.home-campaign__next svg,
.home-routine__previous svg,
.home-routine__next svg {
    width: 22px;
    height: 22px;
}

.home-campaign__dots {
    position: absolute;
    z-index: 5;
    bottom: 12px;
    left: calc(50% + 8px);
    display: flex;
    width: 61px;
    height: 10px;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    transform: translateX(-50%);
}

.home-campaign__dot {
    width: 8px;
    height: 8px;
    border: 1px solid #20352c;
    border-radius: 50%;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.home-campaign__dot.is-active {
    border-color: #fff;
    background: #173429;
    box-shadow: 0 0 0 1px #173429;
}

.home-routine {
    height: 288px;
    background: #f7f6f2;
}

.home-section-heading {
    display: flex;
    height: 69px;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 9px;
    gap: 28px;
}

.home-section-heading h2,
.home-community h2,
.home-closing h2 {
    margin-bottom: 0;
    font-family: "Bentham", Georgia, serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-text-link svg {
    width: 15px;
    height: 15px;
}

.home-routine__stage {
    position: relative;
    height: 219px;
}

.home-routine__rail {
    display: flex;
    height: 204px;
    gap: 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.home-routine__rail::-webkit-scrollbar {
    display: none;
}

.home-product-card {
    display: grid;
    min-width: calc(50% - 10px);
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 26px;
    scroll-snap-align: start;
}

.home-product-card__media {
    display: block;
    height: 204px;
    overflow: hidden;
    background: #e8e2d7;
}

.home-product-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-product-card__media:hover img {
    transform: scale(1.025);
}

.home-product-card__details {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 8px 12px 0;
}

.home-product-card__details > p {
    margin-bottom: 10px;
    color: #667069;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.home-product-card__details h3 {
    max-width: 225px;
    margin-bottom: 40px;
    font-family: "Bentham", Georgia, serif;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.02;
}

.home-product-card__details .home-button {
    min-width: 142px;
    min-height: 40px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
}

.home-product-card:first-child .home-product-card__details {
    transform: translateY(10px);
}

.home-product-card:nth-child(2) {
    position: relative;
    left: -6px;
    grid-template-columns: minmax(0, 354px) minmax(0, 1fr);
    gap: 18px;
}

.home-product-card:nth-child(2) .home-product-card__details {
    transform: translateY(7px);
}

.home-product-card:nth-child(2) .home-product-card__details h3 {
    margin-bottom: 9px;
}

.home-routine__previous,
.home-routine__next {
    top: calc(50% - 30px);
}

.home-routine__next {
    right: 41px;
    width: 51px;
    height: 48px;
}

.home-routine__previous svg,
.home-routine__next svg {
    stroke-width: 2;
}

.home-routine__empty {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border-block: 1px solid var(--home-line);
}

.home-routine__empty p {
    margin-bottom: 0;
    font-family: "Bentham", Georgia, serif;
    font-size: 25px;
}

.home-concerns {
    height: 238px;
    background: #f7f6f2;
}

.home-concerns__grid {
    display: grid;
    height: 168px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-concerns .home-section-heading {
    height: 56px;
}

.home-concern-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #e3e1d8;
}

.home-concern-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-concern-card:hover > img {
    transform: scale(1.035);
}

.home-concern-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 7px 32px 8px;
    background: transparent;
}

.home-concern-card:nth-child(n + 2) .home-concern-card__content {
    padding-inline: 44px;
}

.home-concern-card:first-child .home-button {
    width: 163px;
    min-width: 163px;
    margin-left: 3px;
    transform: translateY(5px);
}

.home-concern-card:nth-child(2) .home-button {
    width: 162px;
    min-width: 162px;
    transform: translate(6px, 4px);
}

.home-concern-card:nth-child(3) .home-button {
    width: 172px;
    min-width: 172px;
    transform: translate(10px, 4px);
}

.home-concern-card:nth-child(4) .home-button {
    width: 162px;
    min-width: 162px;
    transform: translate(13px, 5px);
}

.home-concern-card__content h3 {
    margin-bottom: 4px;
    font-family: "Bentham", Georgia, serif;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
}

.home-concern-card__content .home-button {
    height: 30px;
    min-height: 30px;
    background: #354e40;
}

.home-community {
    height: 56px;
    border-top: 1px solid var(--home-line);
    border-bottom: 1px solid var(--home-line);
    background: #faf9f6;
}

.home-community__inner {
    display: grid;
    height: 100%;
    grid-template-columns: 186px 235px 345px 145px;
    align-items: center;
    gap: 16px;
}

.home-community h2 {
    font-size: 24px;
    letter-spacing: -0.065em;
    white-space: nowrap;
}

.home-community p {
    margin-bottom: 0;
    color: #59635e;
    font-size: 10px;
    line-height: 1.25;
    transform: translateY(6px);
}

.home-community nav {
    display: flex;
    align-items: center;
    width: 301px;
    justify-content: space-between;
    gap: 12px;
}

.home-community nav a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #34443c;
    font-size: 9px;
}

.home-social-mark {
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: "Bentham", Georgia, serif;
    font-size: 13px;
    font-weight: 400;
}

.home-community__action {
    height: 30px;
    width: 128px;
    min-height: 30px;
    min-width: 0;
    justify-self: start;
    padding-inline: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transform: translateY(7px);
}

.home-closing {
    display: grid;
    height: 113px;
    grid-template-columns: 60% 40%;
    background: #f7f6f1;
}

.home-closing__panel {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.home-closing__panel + .home-closing__panel {
    border-left: 1px solid rgba(16, 35, 29, 0.16);
}

.home-closing__media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-closing__panel--gifting .home-closing__media {
    right: auto;
    left: 48.6%;
    width: 51.4%;
}

.home-closing__panel--wholesale .home-closing__media {
    right: 0;
    left: auto;
    width: 50%;
}

.home-closing__content {
    position: relative;
    z-index: 2;
    width: min(455px, 61%);
    height: 100%;
    padding: 25px 0 8px calc(8.7vw + 2px);
}

.home-closing__panel--wholesale .home-closing__content {
    width: 360px;
    padding-left: 40px;
}

.home-closing__panel--gifting .home-button {
    position: absolute;
    bottom: 2px;
    left: calc(8.7vw + 5px);
    width: 132px;
    min-width: 132px;
    height: 30px;
    min-height: 30px;
    background: #354e40;
}

.home-closing__panel--wholesale .home-button {
    position: absolute;
    top: 67px;
    left: 260px;
    width: 158px;
    height: 32px;
    min-height: 32px;
    padding-inline: 10px;
    background: #fff;
}

.home-closing h2 {
    margin-bottom: 6px;
    color: #111414;
    font-size: 29px;
    letter-spacing: -0.01em;
}

.home-closing__panel--gifting h2 {
    font-size: 29px;
}

.home-closing p {
    max-width: 280px;
    margin-bottom: 5px;
    color: #616863;
    font-size: 12px;
    line-height: 1.18;
}

.home-closing__panel--wholesale p {
    max-width: 200px;
}

@media (max-width: 1180px) {
    .home-product-card {
        grid-template-columns: 56% 44%;
        gap: 18px;
    }

    .home-product-card__details h3 {
        font-size: 20px;
    }

    .home-concern-card__content {
        padding-inline: 18px;
    }

    .home-concern-card__content h3 {
        font-size: 17px;
    }

    .home-community__inner {
        grid-template-columns: 186px 205px 1fr 135px;
        gap: 10px;
    }
}

@media (max-width: 900px) {
    .home-frame {
        width: min(100% - 36px, 720px);
    }

    .home-campaign {
        height: 420px;
    }

    .home-campaign__content {
        top: auto;
        right: 44px;
        bottom: 44px;
        left: 44px;
        width: auto;
        padding: 22px;
        background: rgba(247, 246, 242, 0.82);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
    }

    .home-campaign__content h1 {
        max-width: 600px;
        font-size: clamp(48px, 8vw, 65px);
    }

    .home-campaign__previous,
    .home-routine__previous {
        left: 12px;
    }

    .home-campaign__next,
    .home-routine__next {
        right: 12px;
    }

    .home-routine {
        height: 350px;
    }

    .home-routine__stage {
        height: 281px;
    }

    .home-routine__rail {
        height: 266px;
    }

    .home-product-card {
        min-width: 84%;
        grid-template-columns: minmax(0, 58%) minmax(0, 42%);
    }

    .home-product-card:nth-child(2) {
        left: 0;
        grid-template-columns: minmax(0, 58%) minmax(0, 42%);
        gap: 18px;
    }

    .home-product-card:nth-child(2) .home-product-card__details {
        transform: none;
    }

    .home-product-card:first-child .home-product-card__details,
    .home-community p {
        transform: none;
    }

    .home-product-card:nth-child(2) .home-product-card__details h3 {
        margin-bottom: 28px;
    }

    .home-product-card__media {
        height: 266px;
    }

    .home-concerns {
        height: auto;
        padding-bottom: 18px;
    }

    .home-concerns__grid {
        height: auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-concern-card {
        aspect-ratio: 1.62;
    }

    .home-community {
        height: auto;
        padding-block: 20px;
    }

    .home-community__inner {
        grid-template-columns: 1fr auto;
        gap: 14px 24px;
    }

    .home-community p {
        text-align: right;
    }

    .home-community nav {
        justify-content: flex-start;
    }

    .home-closing {
        height: 260px;
        grid-template-columns: 1fr 1fr;
    }

    .home-closing__content,
    .home-closing__panel--wholesale .home-closing__content {
        width: 100%;
        padding: 28px;
    }

    .home-closing__panel--gifting .home-button,
    .home-closing__panel--wholesale .home-button {
        position: static;
    }
}

@media (max-width: 640px) {
    .site-header--home .header-utility-row {
        min-height: 76px;
    }

    .site-header--home .nav-primary-bar .main-nav,
    .site-header--home .nav-primary-bar .main-nav a {
        min-height: 52px;
    }

    .site-header--home .nav-primary-bar .main-nav a {
        padding: 16px 10px 12px;
    }

    .site-header--home + main .home-storefront {
        padding-top: 128px;
    }

    .home-campaign {
        height: 500px;
    }

    .home-campaign__content {
        right: 24px;
        bottom: 44px;
        left: 24px;
        padding: 20px;
    }

    .home-campaign__content h1 {
        font-size: clamp(44px, 14vw, 60px);
        line-height: 0.92;
    }

    .home-campaign__copy {
        font-size: 15px;
    }

    .home-campaign__content .home-button {
        transform: none;
    }

    .home-campaign__previous,
    .home-campaign__next {
        top: 24px;
    }

    .home-section-heading {
        height: auto;
        min-height: 96px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
        padding-block: 22px 14px;
        gap: 10px;
    }

    .home-section-heading h2 {
        font-size: 35px;
    }

    .home-routine {
        height: 560px;
    }

    .home-routine__stage {
        height: 464px;
    }

    .home-routine__rail {
        height: 442px;
    }

    .home-product-card {
        min-width: 88%;
        grid-template-columns: 1fr;
        grid-template-rows: 286px 156px;
        gap: 0;
        background: #f2f0e9;
    }

    .home-product-card:nth-child(2) {
        grid-template-columns: 1fr;
        grid-template-rows: 286px 156px;
        gap: 0;
    }

    .home-product-card__media {
        height: 286px;
    }

    .home-product-card__details {
        justify-content: flex-start;
        padding: 18px;
    }

    .home-product-card__details > p {
        margin-bottom: 5px;
    }

    .home-product-card__details h3 {
        margin-bottom: 14px;
    }

    .home-product-card:nth-child(2) .home-product-card__details h3 {
        margin-bottom: 14px;
    }

    .home-routine__previous,
    .home-routine__next {
        top: 118px;
    }

    .home-concerns__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-concern-card {
        aspect-ratio: 1.55;
    }

    .home-concern-card__content {
        padding: 12px 20px 16px;
    }

    .home-concern-card:nth-child(n + 2) .home-concern-card__content {
        padding: 12px 20px 16px;
    }

    .home-concern-card:first-child .home-button,
    .home-concern-card:nth-child(2) .home-button,
    .home-concern-card:nth-child(3) .home-button,
    .home-concern-card:nth-child(4) .home-button {
        width: min(200px, 100%);
        min-width: 0;
        margin-left: 0;
        transform: none;
    }

    .home-community__inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-community p {
        text-align: left;
    }

    .home-community nav {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .home-closing {
        height: auto;
        grid-template-columns: 1fr;
    }

    .home-closing__panel {
        min-height: 245px;
    }

    .home-closing__panel + .home-closing__panel {
        border-top: 1px solid rgba(16, 35, 29, 0.16);
        border-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-storefront *,
    .home-storefront *::before,
    .home-storefront *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* Homepage: replace fixed heights with content-driven spacing */
.home-campaign {
    height: clamp(300px, 23vw, 400px);
}

.home-routine {
    height: auto;
    padding-block: 16px 80px;
}

.home-routine__stage {
    height: auto;
}

.home-routine__rail {
    height: auto;
}

.home-product-card__media {
    height: clamp(260px, 22vw, 330px);
}

.home-product-card__details {
    padding-block: 18px;
}

.home-concerns {
    height: auto;
    padding-block: 16px 80px;
}

.home-concerns__grid {
    height: auto;
    gap: 16px;
}

.home-concern-card {
    aspect-ratio: 4 / 5;
}

.home-concern-card__content {
    padding: 20px 24px 22px;
}

.home-community {
    height: auto;
    padding-block: 28px;
}

.home-closing {
    height: auto;
}

.home-closing__panel {
    min-height: 300px;
}

.home-closing__content,
.home-closing__panel--wholesale .home-closing__content {
    width: min(455px, 60%);
    height: auto;
    padding: 40px 0 40px calc(6vw + 2px);
}

.home-closing__panel--gifting .home-button,
.home-closing__panel--wholesale .home-button {
    position: static;
    margin-top: 18px;
}

.home-product-card:first-child .home-product-card__details,
.home-product-card:nth-child(2) .home-product-card__details,
.home-concern-card:first-child .home-button,
.home-concern-card:nth-child(2) .home-button,
.home-concern-card:nth-child(3) .home-button,
.home-concern-card:nth-child(4) .home-button,
.home-community p,
.home-community__action,
.home-campaign__content .home-button {
    transform: none;
}

/* Custom hamper atelier */
.hamper-workbench {
    margin: 54px 0 78px;
    padding: clamp(34px, 5vw, 68px);
    border: 1px solid rgba(29, 43, 34, 0.2);
    background:
        linear-gradient(rgba(29, 43, 34, 0.035) 1px, transparent 1px),
        #f3efe5;
    background-size: 100% 32px;
    scroll-margin-top: 106px;
}

.hamper-workbench__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(29, 43, 34, 0.24);
}

.hamper-workbench__heading h2 {
    max-width: 13ch;
    margin: 0;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
    text-wrap: balance;
}

.hamper-workbench__heading p {
    max-width: 58ch;
    margin: 18px 0 0;
    color: #58655d;
    line-height: 1.65;
}

.hamper-workbench__heading .hamper-workbench__editing-note {
    flex: 0 0 auto;
    margin: 0 0 7px;
    padding: 9px 12px;
    border: 1px solid rgba(143, 96, 75, 0.38);
    color: #825742;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hamper-builder-form {
    margin: 0;
}

.hamper-size-fieldset {
    min-width: 0;
    margin: 0;
    padding: 30px 0 38px;
    border: 0;
    border-bottom: 1px solid rgba(29, 43, 34, 0.24);
}

.hamper-size-fieldset legend {
    padding: 0;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.hamper-size-fieldset > p {
    margin: 8px 0 20px;
    color: #657168;
    font-size: 13px;
}

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

.hamper-size-option {
    position: relative;
    display: grid;
    min-height: 126px;
    grid-template-columns: 1fr auto;
    align-content: center;
    gap: 6px 18px;
    padding: 23px 22px 20px 54px;
    border: 1px solid rgba(29, 43, 34, 0.22);
    background: rgba(255, 255, 255, 0.42);
    color: #58645c;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.hamper-size-option:hover {
    border-color: rgba(29, 43, 34, 0.5);
    transform: translateY(-2px);
}

.hamper-size-option:has(input:checked) {
    border-color: var(--forest-dark);
    background: #fbfaf6;
    box-shadow: inset 0 -3px var(--forest-dark);
}

.hamper-size-option:has(input:disabled) {
    border-color: rgba(29, 43, 34, 0.18);
    background: rgba(232, 229, 219, 0.7);
    cursor: not-allowed;
    transform: none;
}

.hamper-size-option:has(input:disabled) input {
    opacity: 0.52;
}

.hamper-size-option:has(input:disabled) small {
    width: max-content;
    padding: 3px 5px;
    background: #8b554a;
    color: #fffaf3;
}

.hamper-size-option input {
    position: absolute;
    top: 24px;
    left: 22px;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--forest-dark);
}

.hamper-size-option__name {
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1;
}

.hamper-size-option > span:not(.hamper-size-option__name) {
    grid-column: 1;
    font-size: 12px;
}

.hamper-size-option strong {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: center;
    color: #8f604b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
}

.hamper-size-option small {
    grid-column: 1 / -1;
    color: #8b554a;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hamper-size-fieldset--purchase {
    margin-top: 16px;
    padding: 16px 0 18px;
    border-top: 1px solid rgba(29, 43, 34, 0.2);
}

.product-detail-page--hamper .product-purchase h1 {
    max-width: none;
    font-size: 34px;
}

.product-detail-page--hamper .product-purchase__price {
    margin-top: 16px;
}

.product-detail-page--hamper .product-purchase__stock {
    margin: 12px 0 0;
    line-height: 1.4;
}

.hamper-size-fieldset--purchase legend {
    font-size: 20px;
}

.hamper-size-fieldset--purchase > p {
    margin: 3px 0 7px;
    font-size: 11px;
    line-height: 1.45;
}

.hamper-size-fieldset--purchase .hamper-size-options {
    gap: 6px;
}

.hamper-size-fieldset--purchase .hamper-size-option {
    min-height: 94px;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    gap: 2px;
    padding: 27px 8px 7px;
}

.hamper-size-fieldset--purchase .hamper-size-option input {
    top: 9px;
    left: 10px;
    width: 15px;
    height: 15px;
}

.hamper-size-fieldset--purchase .hamper-size-option__name {
    font-size: 16px;
}

.hamper-size-fieldset--purchase .hamper-size-option > span:not(.hamper-size-option__name),
.hamper-size-fieldset--purchase .hamper-size-option strong,
.hamper-size-fieldset--purchase .hamper-size-option small {
    grid-row: auto;
    grid-column: 1;
}

.hamper-size-fieldset--purchase .hamper-size-option > span:not(.hamper-size-option__name) {
    line-height: 1.2;
}

.hamper-size-fieldset--purchase .hamper-size-option strong {
    align-self: auto;
    font-size: 16px;
    line-height: 1.1;
}

.hamper-size-fieldset--purchase .hamper-size-option small {
    margin-top: 3px;
    font-size: 8px;
    line-height: 1.1;
}

.product-detail-page--hamper .product-purchase__submit {
    min-height: 54px;
    margin-top: 15px;
}

.product-detail-page--hamper .product-purchase__limit {
    margin: 9px 0 0;
    font-size: 11px;
    line-height: 1.45;
}

.product-purchase__summary--hamper {
    margin-top: 18px;
    padding-top: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.hamper-workbench__layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.43fr) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 72px);
    padding-top: 42px;
    align-items: start;
}

.hamper-tray {
    position: sticky;
    top: 104px;
    min-width: 0;
    padding: 27px;
    border: 1px solid rgba(29, 43, 34, 0.28);
    background: #fbfaf6;
    box-shadow: 0 20px 54px rgba(31, 53, 42, 0.09);
}

.hamper-tray__header,
.hamper-shelf__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.hamper-tray__header h3,
.hamper-shelf__heading h3,
.hamper-shelf__empty h3 {
    margin: 0;
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.05;
}

.hamper-tray__header p,
.hamper-shelf__heading p {
    margin: 7px 0 0;
    color: #68736c;
    font-size: 12px;
    line-height: 1.5;
}

.hamper-tray__count {
    display: grid;
    min-width: 52px;
    min-height: 52px;
    place-items: center;
    border: 1px solid rgba(29, 43, 34, 0.25);
    color: var(--forest-dark);
    font-size: 12px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.hamper-tray__slots {
    display: grid;
    gap: 0;
    margin: 24px 0;
    padding: 0;
    border-top: 1px solid rgba(29, 43, 34, 0.18);
    list-style: none;
}

.hamper-slot {
    display: grid;
    min-height: 62px;
    grid-template-columns: 24px 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(29, 43, 34, 0.18);
}

.hamper-slot__number {
    color: #8f604b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.hamper-slot > img,
.hamper-slot__placeholder {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: #e5e4db;
    color: #78847c;
    font-family: Georgia, serif;
    object-fit: cover;
}

.hamper-slot__copy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.hamper-slot__copy strong {
    overflow: hidden;
    color: #304238;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hamper-slot__copy small,
.hamper-slot__empty {
    color: #78827c;
    font-size: 10px;
}

.hamper-slot > button {
    min-height: 32px;
    border: 0;
    border-bottom: 1px solid rgba(128, 88, 68, 0.55);
    padding: 0;
    background: transparent;
    color: #805844;
    cursor: pointer;
    font-size: 10px;
}

.hamper-slot--intro {
    min-height: 130px;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(29, 43, 34, 0.15);
    border-top: 0;
    background:
        linear-gradient(90deg, transparent calc(33.333% - 0.5px), rgba(29, 43, 34, 0.12) 33.333%, transparent calc(33.333% + 0.5px)),
        linear-gradient(90deg, transparent calc(66.666% - 0.5px), rgba(29, 43, 34, 0.12) 66.666%, transparent calc(66.666% + 0.5px));
}

.hamper-slot--intro span {
    color: #8a938d;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-align: center;
    text-transform: uppercase;
}

.hamper-price-ledger {
    display: grid;
    gap: 9px;
    padding: 18px 0;
    border-top: 1px solid rgba(29, 43, 34, 0.3);
    border-bottom: 1px solid rgba(29, 43, 34, 0.3);
}

.hamper-price-ledger > div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #667169;
    font-size: 12px;
}

.hamper-price-ledger strong {
    color: #405047;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.hamper-price-ledger__total {
    align-items: baseline;
    padding-top: 10px;
    border-top: 1px solid rgba(29, 43, 34, 0.14);
    color: var(--forest-dark) !important;
}

.hamper-price-ledger__total small {
    color: #778179;
    font-size: 9px;
    letter-spacing: 0.08em;
}

.hamper-price-ledger__total strong {
    color: #8f604b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.hamper-tray__message {
    min-height: 36px;
    margin: 15px 0 0;
    color: #5d6a62;
    font-size: 11px;
    line-height: 1.5;
}

.hamper-tray__submit {
    width: 100%;
    min-height: 58px;
    margin-top: 12px;
}

.hamper-tray__submit:disabled {
    border-color: #a5aaa6;
    background: #a5aaa6;
    color: #f5f4f0;
    cursor: not-allowed;
}

.hamper-tray__gift-note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 15px 0 0;
    color: #805844;
    font-size: 10px;
    text-align: center;
}

.hamper-shelf {
    min-width: 0;
}

.hamper-shelf__heading {
    padding-bottom: 22px;
}

.hamper-shelf__search {
    display: grid;
    width: min(230px, 42%);
    gap: 6px;
    color: #5e6c63;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hamper-shelf__search input {
    width: 100%;
    min-height: 42px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(29, 43, 34, 0.4);
    border-radius: 0;
    padding: 8px 2px;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
}

.hamper-shelf__filters {
    display: flex;
    gap: 7px;
    padding: 4px 0 18px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.hamper-shelf__filters button {
    min-height: 36px;
    flex: 0 0 auto;
    border: 1px solid rgba(29, 43, 34, 0.24);
    padding: 7px 12px;
    background: transparent;
    color: #536159;
    cursor: pointer;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hamper-shelf__filters button:hover,
.hamper-shelf__filters button[aria-pressed="true"] {
    border-color: var(--forest-dark);
    background: var(--forest-dark);
    color: #fff;
}

.hamper-shelf__result-count {
    min-height: 17px;
    margin: 0 0 9px;
    color: #78827c;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hamper-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(29, 43, 34, 0.26);
    border-left: 1px solid rgba(29, 43, 34, 0.26);
}

.hamper-product-option {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-rows: auto 1fr auto;
    border-right: 1px solid rgba(29, 43, 34, 0.26);
    border-bottom: 1px solid rgba(29, 43, 34, 0.26);
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.hamper-product-option:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hamper-product-option.is-selected,
.hamper-product-option:has(input:checked) {
    z-index: 1;
    background: #fbfaf6;
    box-shadow: inset 0 0 0 2px var(--forest-dark);
}

.hamper-product-option:has(input:disabled) {
    cursor: not-allowed;
}

.hamper-product-option input {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--forest-dark);
}

.hamper-product-option__image {
    display: grid;
    aspect-ratio: 1 / 0.92;
    overflow: hidden;
    place-items: center;
    background: #e5e4dc;
    color: #829087;
    font-family: Georgia, serif;
    font-size: 28px;
}

.hamper-product-option__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hamper-product-option:hover .hamper-product-option__image img {
    transform: scale(1.025);
}

.hamper-product-option:has(input:disabled) .hamper-product-option__image,
.hamper-product-option.is-capacity-locked .hamper-product-option__image {
    filter: grayscale(0.75);
    opacity: 0.48;
}

.hamper-product-option__copy {
    display: grid;
    align-content: start;
    gap: 5px;
    padding: 15px 15px 10px;
}

.hamper-product-option__copy small {
    color: #8f604b;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.hamper-product-option__copy strong {
    color: var(--forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
}

.hamper-product-option__copy > span {
    color: #58665d;
    font-size: 12px;
    font-variant-numeric: tabular-nums;
}

.hamper-product-option__action {
    display: block;
    margin: 0 15px;
    padding: 9px 0 12px;
    border-top: 1px solid rgba(29, 43, 34, 0.15);
    color: #56655c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hamper-product-option.is-selected .hamper-product-option__action,
.hamper-product-option:has(input:checked) .hamper-product-option__action {
    color: #8f604b;
}

.hamper-product-option[hidden] {
    display: none;
}

.hamper-shelf__empty {
    padding: 42px 0;
    border-top: 1px solid rgba(29, 43, 34, 0.25);
}

.hamper-shelf__empty p,
.hamper-shelf__no-results {
    color: #69746d;
    line-height: 1.6;
}

.hamper-mobile-dock {
    display: none;
}

.hamper-shelf__no-results {
    padding: 28px 0;
    border-top: 1px solid rgba(29, 43, 34, 0.22);
}

.hamper-size-option input:focus-visible,
.hamper-product-option input:focus-visible,
.hamper-slot button:focus-visible,
.hamper-shelf__filters button:focus-visible,
.hamper-shelf__search input:focus-visible {
    outline: 3px solid rgba(143, 96, 75, 0.35);
    outline-offset: 4px;
}

/* Hamper snapshots in cart, checkout, and account ledgers */
.cart-drawer-item__hamper,
.cart-ledger-item__hamper {
    margin-top: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(29, 43, 34, 0.16);
    border-bottom: 1px solid rgba(29, 43, 34, 0.16);
}

.cart-drawer-item__hamper > p,
.cart-ledger-item__hamper > p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    color: #5e6a62;
    font-size: 10px;
}

.cart-drawer-item__hamper > p strong,
.cart-ledger-item__hamper > p strong {
    color: #805844;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cart-drawer-item__hamper ul,
.cart-ledger-item__hamper ol,
.checkout-summary-item__components,
.checkout-complete-item__components,
.account-order-item__components {
    display: grid;
    gap: 4px;
    margin: 9px 0 0;
    padding: 0;
    color: #5f6c64;
    font-size: 10px;
    line-height: 1.35;
    list-style: none;
}

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

.cart-drawer-item__edit-hamper,
.cart-ledger-item__edit-hamper {
    display: inline-block;
    margin-top: 10px;
    border-bottom: 1px solid currentColor;
    color: #805844;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.checkout-summary-item__hamper-size,
.checkout-complete-item__hamper-size,
.account-order-item__hamper-size {
    color: #805844 !important;
    font-size: 9px !important;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.checkout-summary-item__components {
    max-width: 24ch;
}

.checkout-complete-item__components,
.account-order-item__components {
    margin-top: 8px;
    font-size: 12px;
}

/* Admin hamper tier settings */
.product-hamper-settings {
    margin-top: 4px;
    padding: 22px;
    border: 1px solid rgba(41, 69, 54, 0.18);
    background: rgba(245, 241, 232, 0.52);
}

.product-hamper-settings legend {
    padding: 0 8px;
    color: var(--forest-dark);
    font-size: 14px;
    font-weight: 750;
}

.product-hamper-settings__prices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.product-hamper-settings__prices > label {
    display: grid;
    gap: 7px;
    color: #44534b;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .hamper-workbench {
        margin-inline: calc(50% - 50vw);
        padding-inline: max(28px, calc((100vw - 980px) / 2));
        border-inline: 0;
    }

    .hamper-workbench__layout {
        grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
        gap: 30px;
    }

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

@media (max-width: 820px) {
    .product-detail-page--hamper,
    .product-detail-page--hamper .product-detail-shell,
    .product-detail-page--hamper .product-detail-hero,
    .product-detail-page--hamper .product-purchase,
    .product-detail-page--hamper .hamper-workbench,
    .product-detail-page--hamper .hamper-workbench__layout,
    .product-detail-page--hamper .hamper-tray,
    .product-detail-page--hamper .hamper-shelf,
    .product-detail-page--hamper .product-story__panels,
    .product-detail-page--hamper .product-story__content {
        min-width: 0;
        max-width: 100%;
    }

    .product-detail-page--hamper .product-purchase h1,
    .product-detail-page--hamper .hamper-size-option__name,
    .product-detail-page--hamper .hamper-slot__copy strong,
    .product-detail-page--hamper .hamper-tray__gift-note,
    .product-detail-page--hamper .product-story__content p {
        overflow-wrap: anywhere;
    }

    .hamper-workbench {
        margin-top: 38px;
        padding-block: 40px 54px;
        padding-inline: 20px;
    }

    .hamper-workbench__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hamper-size-options,
    .hamper-workbench__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hamper-size-fieldset--purchase .hamper-size-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hamper-size-options {
        gap: 8px;
    }

    .hamper-size-option {
        min-height: 96px;
    }

    .hamper-size-fieldset--purchase .hamper-size-option {
        min-height: 94px;
    }

    .hamper-tray {
        position: static;
        width: 100%;
    }

    .hamper-slot {
        grid-template-columns: 20px 40px minmax(0, 1fr) auto;
    }

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

    .hamper-shelf__heading {
        align-items: stretch;
        flex-direction: column;
    }

    .hamper-shelf__search {
        width: 100%;
    }

    .product-hamper-settings__prices {
        grid-template-columns: 1fr;
    }

    .hamper-mobile-dock {
        position: fixed;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 10px;
        z-index: 30;
        display: grid;
        max-width: 620px;
        min-height: 66px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        gap: 10px;
        margin-inline: auto;
        padding: 9px 9px 9px 14px;
        border: 1px solid rgba(29, 43, 34, 0.28);
        background: rgba(251, 250, 246, 0.97);
        box-shadow: 0 18px 42px rgba(31, 53, 42, 0.22);
        opacity: 0;
        pointer-events: none;
        transform: translateY(calc(100% + 22px));
        transition: opacity 180ms ease, transform 220ms ease;
    }

    .hamper-mobile-dock.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hamper-mobile-dock__copy {
        min-width: 0;
        color: #59675e;
        font-size: 10px;
        font-weight: 750;
        line-height: 1.25;
        text-transform: uppercase;
    }

    .hamper-mobile-dock > strong {
        color: #8f604b;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 17px;
        font-weight: 400;
        font-variant-numeric: tabular-nums;
        white-space: nowrap;
    }

    .hamper-mobile-dock__submit {
        min-height: 46px;
        border: 1px solid var(--forest-dark);
        border-radius: 0;
        padding: 8px 13px;
        background: var(--forest-dark);
        color: #fff;
        cursor: pointer;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .hamper-mobile-dock__submit:disabled {
        border-color: #9ca49f;
        background: #9ca49f;
        cursor: not-allowed;
    }
}

@media (max-width: 520px) {
    .hamper-workbench {
        margin-bottom: 54px;
        padding-inline: 14px;
    }

    .hamper-workbench__heading h2 {
        font-size: 42px;
    }

    .hamper-tray {
        padding: 20px 18px;
    }

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

    .hamper-product-option__copy {
        padding-inline: 11px;
    }

    .hamper-product-option__copy strong {
        font-size: 15px;
    }

    .hamper-product-option__action {
        margin-inline: 11px;
        font-size: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hamper-size-option,
    .hamper-product-option,
    .hamper-product-option__image img,
    .hamper-mobile-dock {
        transition: none;
    }
}

/* Homepage catalogue search */
.site-header--home.is-search-open {
    transform: translateY(0);
    pointer-events: auto;
}

.site-search-trigger {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 5px;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #516058;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 180ms ease, color 180ms ease;
}

.site-search-trigger svg,
.site-search-field > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-width: 1.6;
}

.site-search-trigger:hover,
.site-search-trigger[aria-expanded="true"] {
    border-bottom-color: var(--forest);
    color: var(--forest);
}

.site-search-trigger:focus-visible,
.site-search-close:focus-visible,
.site-search-result:focus-visible,
.site-search-footer a:focus-visible {
    outline: 2px solid #294536;
    outline-offset: 3px;
}

.site-header--home.is-compact .site-search-trigger {
    min-height: 72px;
    padding: 23px 8px 19px;
    font-size: 12px;
}

.site-search-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    border-top: 1px solid rgba(16, 35, 29, 0.18);
    border-bottom: 1px solid rgba(16, 35, 29, 0.24);
    background: #fbfaf6;
    box-shadow: 0 28px 70px rgba(31, 53, 42, 0.18);
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header--home.is-compact .site-search-panel {
    max-height: calc(100vh - 72px);
}

.site-header--home.is-search-open .site-search-panel {
    opacity: 1;
    transform: translateY(0);
}

.site-search-panel__inner {
    width: min(1238px, calc(100% - 48px));
    margin-inline: auto;
    padding: 30px 0 34px;
}

.site-search-form > label {
    display: block;
    margin-bottom: 10px;
    color: #526159;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-search-field {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(16, 35, 29, 0.54);
    color: #294536;
}

.site-search-field input {
    appearance: none;
    min-width: 0;
    height: 62px;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    box-shadow: none;
    color: #10231d;
    caret-color: #8f604b;
    font-family: Bentham, Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 2.5vw, 38px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
}

.site-search-field input::placeholder {
    color: #65736b;
    opacity: 1;
}

.site-search-field:focus-within {
    border-bottom-color: #294536;
    box-shadow: 0 1px 0 #294536;
}

.site-search-field input::-webkit-search-cancel-button {
    appearance: none;
}

.site-search-close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(16, 35, 29, 0.3);
    border-radius: 0;
    background: transparent;
    color: #294536;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease;
}

.site-search-close svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-width: 1.5;
}

.site-search-close:hover {
    background: #294536;
    color: #fff;
}

.site-search-status {
    min-height: 22px;
    margin: 13px 0 16px;
    color: #5d6b63;
    font-size: 13px;
    line-height: 1.55;
}

.site-search-status[data-state="loading"]::before {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #8f604b;
    content: "";
    animation: site-search-pulse 900ms ease-in-out infinite alternate;
}

.site-search-status[data-state="empty"] {
    color: #704b3d;
}

.site-search-status[data-state="error"] {
    color: #9b2f2a;
}

.site-search-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(16, 35, 29, 0.2);
    list-style: none;
}

.site-search-results[hidden] {
    display: none;
}

.site-search-results > li:nth-child(odd) {
    border-right: 1px solid rgba(16, 35, 29, 0.16);
}

.site-search-results > li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
}

.site-search-result {
    display: grid;
    min-height: 114px;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 12px 18px 12px 0;
    border-bottom: 1px solid rgba(16, 35, 29, 0.16);
    color: #10231d;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.site-search-results > li:nth-child(even) .site-search-result {
    padding-left: 18px;
}

.site-search-result:hover {
    background: #eef1e9;
    color: #1f352a;
}

.site-search-result.is-active,
.site-search-result:focus-visible {
    outline: 0;
    background: #dce5d9;
    box-shadow: inset 0 0 0 2px #294536;
    color: #1f352a;
}

.site-search-result__media {
    display: grid;
    width: 92px;
    height: 88px;
    place-items: center;
    overflow: hidden;
    background: #dce5d9;
}

.site-search-result__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-search-result__placeholder {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentcolor;
    border-radius: 50% 50% 46% 54%;
    color: #294536;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-style: italic;
}

.site-search-result__copy {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.site-search-result__category {
    overflow: hidden;
    color: #68756e;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-search-result__copy strong {
    display: -webkit-box;
    overflow: hidden;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site-search-result__detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 12px;
    color: #46564d;
    font-size: 12px;
}

.site-search-result__price {
    font-variant-numeric: tabular-nums;
}

.site-search-result__stock {
    color: #9b2f2a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-search-result__arrow {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.3;
    transition: transform 180ms ease;
}

.site-search-result:hover .site-search-result__arrow,
.site-search-result.is-active .site-search-result__arrow {
    transform: translateX(3px);
}

.site-search-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 19px;
    color: #68756e;
    font-size: 12px;
}

.site-search-footer[hidden] {
    display: none;
}

.site-search-footer a {
    border-bottom: 1px solid currentcolor;
    color: #294536;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-search-footer a:hover {
    color: #1f352a;
}

.site-search-backdrop {
    position: fixed;
    inset: 0;
    z-index: 19;
    background: rgba(16, 35, 29, 0.32);
    opacity: 0;
    transition: opacity 220ms ease;
}

.site-search-backdrop.is-visible {
    opacity: 1;
}

.site-search-backdrop[hidden] {
    display: none;
}

body.site-search-is-open {
    overflow: hidden;
}

.site-search-panel ::selection {
    background: #a7b8a1;
    color: #10231d;
}

.catalogue-search-summary {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin: 8px 0 24px;
    padding: 14px 0;
    border-top: 1px solid rgba(29, 43, 34, 0.22);
    border-bottom: 1px solid rgba(29, 43, 34, 0.22);
}

.catalogue-search-summary p {
    margin: 0;
    color: #667169;
    font-size: 14px;
}

.catalogue-search-summary strong {
    margin-left: 4px;
    color: #1f352a;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
}

.catalogue-search-summary a {
    color: #294536;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes site-search-pulse {
    from {
        opacity: 0.35;
        transform: scale(0.78);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 760px) {
    .site-search-trigger {
        width: 44px;
        min-height: 52px;
        justify-content: center;
        padding: 14px 8px 11px;
    }

    .site-search-trigger__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .site-header--home.is-compact .site-search-trigger {
        min-height: 50px;
        padding: 13px 8px 10px;
    }

    .site-search-panel {
        max-height: calc(100vh - 128px);
    }

    .site-header--home.is-compact .site-search-panel {
        max-height: calc(100vh - 116px);
    }

    .site-search-panel__inner {
        width: min(100% - 28px, 1238px);
        padding: 23px 0 28px;
    }

    .site-search-field {
        gap: 10px;
    }

    .site-search-field input {
        height: 56px;
        font-size: clamp(21px, 6.3vw, 27px);
    }

    .site-search-results {
        grid-template-columns: minmax(0, 1fr);
    }

    .site-search-results > li:nth-child(odd) {
        border-right: 0;
    }

    .site-search-results > li:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .site-search-result,
    .site-search-results > li:nth-child(even) .site-search-result {
        min-height: 101px;
        grid-template-columns: 76px minmax(0, 1fr) auto;
        gap: 13px;
        padding: 10px 4px 10px 0;
    }

    .site-search-result__media {
        width: 76px;
        height: 76px;
    }

    .site-search-result__copy strong {
        font-size: 16px;
    }

    .site-search-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 430px) {
    .nav-primary-bar .main-nav {
        gap: 5px;
    }

    .site-header--home .nav-primary-bar .main-nav a {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 11px;
    }

    .site-search-trigger {
        width: 38px;
        padding-right: 5px;
        padding-left: 5px;
    }

    .site-search-field > svg {
        display: none;
    }

    .site-search-field {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .site-search-close {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-search-panel,
    .site-search-backdrop,
    .site-search-result,
    .site-search-result__arrow {
        transition: none;
    }

    .site-search-status[data-state="loading"]::before {
        animation: none;
    }
}
