:root {
    --mk-red: #a30f1a;
    --mk-red-dark: #760811;
    --mk-red-bright: #d62927;
    --mk-cream: #fff8ee;
    --mk-cream-deep: #f3e5d2;
    --mk-paper: #fffdf9;
    --mk-ink: #301a17;
    --mk-muted: #766762;
    --mk-gold: #d49345;
    --mk-line: #e8dcd0;
    --mk-shadow: 0 24px 70px rgba(86, 24, 24, .12);
}

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

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

body.storefront-body {
    margin: 0;
    min-width: 320px;
    color: var(--mk-ink);
    background: var(--mk-paper);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.storefront-body h1,
.storefront-body h2,
.storefront-body h3 {
    color: var(--mk-ink);
    font-family: "Playfair Display", serif;
}

.storefront-body button,
.storefront-body input,
.storefront-body select,
.storefront-body textarea {
    font: inherit;
}

.storefront-body a:focus-visible,
.storefront-body button:focus-visible,
.storefront-body input:focus-visible,
.storefront-body select:focus-visible,
.storefront-body textarea:focus-visible {
    outline: 3px solid rgba(214, 41, 39, .28);
    outline-offset: 3px;
}

.store-header {
    position: sticky;
    z-index: 60;
    top: 0;
    height: 88px;
    padding: 0 clamp(22px, 6vw, 92px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(163, 15, 26, .08);
    background: rgba(255, 253, 249, .94);
    backdrop-filter: blur(14px);
    transition: height .2s ease, box-shadow .2s ease;
}

.store-header.is-scrolled {
    height: 76px;
    box-shadow: 0 8px 30px rgba(86, 24, 24, .08);
}

.store-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-logo img {
    width: 59px;
    height: 59px;
    object-fit: contain;
    transition: width .2s ease, height .2s ease;
}

.store-header.is-scrolled .store-logo img {
    width: 50px;
    height: 50px;
}

.store-logo > span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-logo strong {
    color: var(--mk-red-dark);
    font: 700 20px "Playfair Display", serif;
}

.store-logo small {
    margin-top: 3px;
    color: var(--mk-muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.store-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 42px);
}

.store-nav > a:not(.store-cart-button) {
    position: relative;
    color: var(--mk-ink);
    font-size: 14px;
    font-weight: 700;
}

.store-nav > a:not(.store-cart-button)::after {
    content: "";
    position: absolute;
    height: 2px;
    right: 0;
    bottom: -7px;
    left: 0;
    background: var(--mk-red-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}

.store-nav > a:not(.store-cart-button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.store-cart-button {
    min-height: 47px;
    padding: 9px 11px 9px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    color: white;
    background: var(--mk-red);
    box-shadow: 0 9px 20px rgba(163, 15, 26, .18);
    font-size: 13px;
    font-weight: 700;
}

.store-cart-button:hover {
    background: var(--mk-red-dark);
}

.store-cart-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.store-cart-button b {
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--mk-red-dark);
    background: white;
    font-size: 11px;
}

.store-toast {
    position: fixed;
    z-index: 70;
    top: 102px;
    left: 50%;
    width: min(440px, calc(100% - 32px));
    padding: 14px 18px;
    border: 1px solid;
    border-radius: 10px;
    box-shadow: var(--mk-shadow);
    background: white;
    font-size: 14px;
    font-weight: 700;
    transform: translateX(-50%);
}

.store-toast.success { color: #386541; border-color: #c9decf; }
.store-toast.error { color: #983b36; border-color: #edc8c3; }

.store-eyebrow {
    margin-bottom: 15px;
    color: var(--mk-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.store-eyebrow.red { color: var(--mk-red-bright); }
.store-eyebrow.light { color: #f7bf72; }

.store-button {
    min-height: 50px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.store-button.primary {
    color: white;
    background: var(--mk-red-bright);
    box-shadow: 0 12px 25px rgba(214, 41, 39, .2);
}

.store-button.primary:hover { background: var(--mk-red); }
.store-button.dark { color: white; background: var(--mk-red-dark); }
.store-button.dark:hover { background: #58060d; }
.store-button.secondary { color: var(--mk-red); border-color: var(--mk-line); background: white; }
.store-button.full { width: 100%; }

.home-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, .9fr);
    background: var(--mk-cream);
}

.hero-pattern {
    position: absolute;
    inset: 0 50% 0 0;
    opacity: .42;
    background-image: radial-gradient(rgba(163, 15, 26, .15) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to right, black, transparent 88%);
}

.home-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 125px clamp(40px, 7vw, 130px) 105px clamp(40px, 9vw, 165px);
    align-self: center;
}

.home-hero-copy h1 {
    margin: 0 0 26px;
    font-size: clamp(54px, 6vw, 86px);
    line-height: .99;
    letter-spacing: -.035em;
}

.home-hero-copy h1 em {
    color: var(--mk-red-bright);
    font-weight: 600;
}

.home-hero-copy > p {
    max-width: 610px;
    margin: 0 0 35px;
    color: var(--mk-muted);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.delivery-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mk-muted);
    font-size: 12px;
    font-weight: 600;
}

.delivery-pill svg,
.checkout-assurance svg,
.delivery-area-note svg,
.success-details svg,
.success-logo-wrap span svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.delivery-pill svg {
    padding: 4px;
    border-radius: 50%;
    color: white;
    background: var(--mk-red-bright);
}

.home-hero-visual {
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 46% 38%, rgba(255, 255, 255, .13), transparent 30%),
        linear-gradient(145deg, var(--mk-red), var(--mk-red-dark));
}

.home-hero-visual::before,
.home-hero-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
}

.home-hero-visual::before { width: 520px; height: 520px; }
.home-hero-visual::after { width: 640px; height: 640px; }

.logo-orbit {
    position: relative;
    z-index: 2;
    width: min(480px, 70%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    transition: transform .1s linear;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(255, 255, 255, .34);
    border-radius: 50%;
    animation: orbit-spin 32s linear infinite;
}

.orbit-ring::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 12%;
    left: 12%;
    border-radius: 50%;
    background: #f5be72;
    box-shadow: 0 0 0 8px rgba(245, 190, 114, .12);
}

.orbit-ring.two {
    inset: 28px;
    animation-direction: reverse;
    animation-duration: 24s;
}

.hero-logo-wrap {
    width: 72%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 35px 80px rgba(39, 2, 6, .42);
}

.hero-logo-wrap img {
    width: 98%;
    height: 98%;
    object-fit: contain;
}

.hero-note {
    position: absolute;
    z-index: 3;
    right: clamp(20px, 5vw, 80px);
    bottom: 45px;
    padding: 20px 24px;
    color: var(--mk-red-dark);
    background: var(--mk-cream);
    box-shadow: 0 18px 45px rgba(39, 2, 6, .2);
}

.hero-note span {
    display: block;
    color: var(--mk-red-bright);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-note strong {
    display: block;
    margin-top: 7px;
    font: 700 18px "Playfair Display", serif;
    line-height: 1.2;
}

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

.section-wrap,
.menu-section {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.featured-wrap {
    position: relative;
    z-index: 3;
    margin-top: -42px;
    display: grid;
    grid-template-columns: 52% 48%;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    box-shadow: var(--mk-shadow);
}

.featured-image {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: var(--mk-cream-deep);
}

.featured-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.featured-image:hover > img { transform: scale(1.035); }

.featured-image-label,
.store-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 7px 11px;
    border-radius: 999px;
    color: white;
    background: var(--mk-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.featured-copy {
    padding: clamp(45px, 6vw, 78px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-copy h2 {
    margin: 0 0 17px;
    font-size: clamp(40px, 4.2vw, 60px);
    line-height: 1.05;
}

.featured-copy > p {
    margin: 0;
    color: var(--mk-muted);
    line-height: 1.75;
}

.featured-action {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.featured-action > strong {
    font: 700 29px "Playfair Display", serif;
}

.featured-empty {
    margin-top: 45px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-radius: 18px;
    background: var(--mk-cream);
}

.featured-empty img { width: 110px; }
.featured-empty h2 { margin-bottom: 7px; font-size: 32px; }
.featured-empty p { margin: 0; color: var(--mk-muted); }

.menu-section {
    padding: 115px 0 125px;
}

.store-section-heading {
    margin-bottom: 42px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
}

.store-section-heading h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 60px);
}

.store-section-heading > p {
    max-width: 470px;
    margin: 0;
    color: var(--mk-muted);
    line-height: 1.7;
}

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

.store-product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mk-line);
    border-radius: 15px;
    background: white;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.store-product-card:hover {
    border-color: #ddc4b8;
    box-shadow: 0 22px 50px rgba(86, 24, 24, .11);
    transform: translateY(-7px);
}

.store-product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--mk-cream-deep);
}

.store-product-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.store-product-card:hover .store-product-image > img { transform: scale(1.045); }

.store-image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, white, var(--mk-cream-deep));
}

.store-image-placeholder img {
    width: min(72%, 280px);
    height: min(72%, 280px);
    object-fit: contain;
    opacity: .78;
}

.image-view-cue {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 10px;
    border-radius: 8px;
    color: var(--mk-ink);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .1);
    font-size: 11px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: .25s ease;
}

.store-product-card:hover .image-view-cue {
    opacity: 1;
    transform: translateY(0);
}

.store-product-body {
    min-height: 220px;
    padding: 24px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
}

.store-product-body h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.store-product-body p {
    margin: 0;
    color: var(--mk-muted);
    font-size: 14px;
    line-height: 1.65;
}

.store-product-action {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.store-product-action > strong {
    font: 700 22px "Playfair Display", serif;
}

.store-product-action button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: white;
    background: var(--mk-red);
    box-shadow: 0 8px 20px rgba(163, 15, 26, .18);
    transition: transform .2s ease, background .2s ease;
}

.store-product-action button:hover {
    background: var(--mk-red-bright);
    transform: rotate(90deg) scale(1.05);
}

.store-product-action button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
}

.store-empty {
    grid-column: 1 / -1;
    padding: 75px 30px;
    border: 1px dashed #d8c5b8;
    border-radius: 16px;
    background: var(--mk-cream);
    text-align: center;
}

.store-empty img { width: 130px; }
.store-empty h3 { margin: 20px 0 7px; font-size: 27px; }
.store-empty p { margin: 0; color: var(--mk-muted); }

.promise-section {
    padding: 100px max(30px, 8vw);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(50px, 8vw, 130px);
    color: white;
    background:
        radial-gradient(circle at 5% 10%, rgba(255, 255, 255, .09), transparent 24%),
        var(--mk-red-dark);
}

.promise-intro h2 {
    margin: 0 0 22px;
    color: white;
    font-size: clamp(44px, 5vw, 66px);
    line-height: 1.04;
}

.promise-intro p {
    max-width: 430px;
    margin: 0;
    color: #e5c9c6;
    line-height: 1.8;
}

.promise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.promise-cards article {
    padding: 20px 30px;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.promise-cards b { color: #f7bf72; font-size: 12px; }
.promise-cards h3 { margin: 18px 0 10px; color: white; font-size: 23px; }
.promise-cards p { margin: 0; color: #d9bbb8; font-size: 13px; line-height: 1.7; }

.store-footer {
    padding: 62px max(25px, 7vw);
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 40px;
    color: #d6c6bf;
    background: #291815;
}

.store-footer .footer-brand img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .2));
}

.store-footer .footer-brand p { max-width: 310px; }
.store-footer small { color: #f0aa55; font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.store-footer p { color: #bfa9a2; font-size: 13px; line-height: 1.8; }
.store-footer a:hover { color: white; }

.cart-drawer {
    position: fixed;
    z-index: 100;
    inset: 0;
    pointer-events: none;
}

.cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(45, 11, 14, .54);
    opacity: 0;
    transition: opacity .28s ease;
}

.cart-drawer-panel {
    position: absolute;
    width: min(470px, 100%);
    inset: 0 0 0 auto;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    background: var(--mk-paper);
    box-shadow: -24px 0 70px rgba(38, 4, 7, .22);
    transform: translateX(102%);
    transition: transform .32s cubic-bezier(.22, .7, .2, 1);
}

.cart-drawer.is-open {
    pointer-events: auto;
}

.cart-drawer.is-open .cart-drawer-backdrop { opacity: 1; }
.cart-drawer.is-open .cart-drawer-panel { transform: translateX(0); }

.cart-drawer-header {
    padding: 24px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--mk-line);
    background: white;
}

.cart-drawer-header span {
    color: var(--mk-red-bright);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.cart-drawer-header h2 {
    margin: 3px 0 0;
    font-size: 30px;
}

.cart-drawer-header button {
    width: 43px;
    height: 43px;
    border: 1px solid var(--mk-line);
    border-radius: 50%;
    color: var(--mk-muted);
    background: white;
    font-size: 25px;
}

#cart-drawer-content {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.drawer-items {
    padding: 8px 24px 18px;
    flex: 1;
    overflow: auto;
}

.drawer-item {
    padding: 19px 0;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border-bottom: 1px solid var(--mk-line);
}

.drawer-item-image {
    width: 76px;
    height: 84px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: white;
    background: var(--mk-red);
    font: 700 24px "Playfair Display", serif;
}

.drawer-item-image img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item-image .drawer-placeholder-logo { padding: 8px; object-fit: contain; background: var(--mk-cream); }
.drawer-item-details { min-width: 0; }
.drawer-item-heading { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.drawer-item h3 { margin: 1px 0 2px; font-size: 17px; line-height: 1.2; }
.drawer-item-heading > strong { color: var(--mk-ink); font-size: 13px; white-space: nowrap; }
.drawer-item p { margin: 0; color: var(--mk-muted); font-size: 11px; }

.drawer-item-actions {
    margin-top: 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.drawer-quantity-form {
    height: 34px;
    display: grid;
    grid-template-columns: 32px 39px 32px;
    overflow: hidden;
    border: 1px solid var(--mk-line);
    border-radius: 7px;
    background: white;
}

.drawer-quantity-form button,
.drawer-quantity-form input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
}

.drawer-quantity-form button { color: var(--mk-red); font-size: 15px; }
.drawer-quantity-form button:hover { background: #fff2e8; }
.drawer-quantity-form input {
    border-right: 1px solid var(--mk-line);
    border-left: 1px solid var(--mk-line);
    color: var(--mk-ink);
    font-size: 12px;
    font-weight: 700;
    appearance: textfield;
}
.drawer-quantity-form input::-webkit-inner-spin-button,
.drawer-quantity-form input::-webkit-outer-spin-button { margin: 0; appearance: none; }

.drawer-remove {
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    color: #9d6d69;
    background: transparent;
    font-size: 10px;
    font-weight: 700;
}

.drawer-remove:hover { color: var(--mk-red-bright); }
.drawer-remove svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.drawer-summary {
    padding: 23px 24px 28px;
    display: block;
    border-top: 1px solid var(--mk-line);
    background: white;
}

.drawer-summary > .drawer-subtotal {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    color: var(--mk-ink);
    font-size: 18px;
}

.drawer-summary > .drawer-subtotal span { color: var(--mk-ink); font-weight: 700; }
.drawer-summary > .drawer-subtotal strong { color: var(--mk-red-dark); font: 700 26px "Playfair Display", serif; }
.drawer-summary > p { margin: 8px 0 17px; color: var(--mk-muted); font-size: 12px; }

.drawer-basket-link {
    margin-top: 14px;
    display: block;
    color: var(--mk-red);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.drawer-empty {
    margin: auto;
    padding: 50px 30px;
    text-align: center;
}

.drawer-empty > img {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    display: block;
    object-fit: contain;
}

.drawer-empty h3 { margin: 0 0 7px; font-size: 25px; }
.drawer-empty p { margin: 0 0 22px; color: var(--mk-muted); }
body.cart-open { overflow: hidden; }

.basket-page { background: var(--mk-cream); }

.basket-hero {
    min-height: 320px;
    padding: 55px max(30px, 10vw) 75px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: white;
    background: linear-gradient(120deg, var(--mk-red-dark), #b51420 70%, #d62927);
}

.basket-hero > div { position: relative; z-index: 1; }
.basket-hero h1 {
    margin: 0 0 17px;
    color: white;
    font-size: clamp(43px, 5vw, 67px);
    line-height: 1;
}
.basket-hero p { max-width: 570px; margin: 0; color: #f6d8d4; font-size: 15px; }
.basket-hero > img {
    width: 215px;
    height: 215px;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(48, 0, 4, .28));
}

.basket-shell {
    width: min(1180px, calc(100% - 48px));
    min-height: 420px;
    margin: -42px auto 0;
    padding-bottom: 110px;
    position: relative;
    z-index: 2;
}

.basket-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 355px;
    gap: 26px;
    align-items: start;
}

.basket-card,
.basket-summary,
.basket-empty {
    border: 1px solid var(--mk-line);
    border-radius: 17px;
    background: var(--mk-paper);
    box-shadow: 0 20px 55px rgba(86, 24, 24, .09);
}

.basket-card > header {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--mk-line);
}
.basket-card > header span { color: var(--mk-red-bright); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.basket-card > header h2 { margin: 3px 0 0; font-size: 27px; }
.basket-card > header > a { color: var(--mk-red); font-size: 12px; font-weight: 700; }

.basket-items { padding: 0 28px; }
.basket-item {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    gap: 21px;
    align-items: center;
    border-bottom: 1px solid var(--mk-line);
}
.basket-item:last-child { border-bottom: 0; }
.basket-item-image {
    width: 112px;
    height: 112px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--mk-cream-deep);
}
.basket-item-image img { width: 100%; height: 100%; object-fit: cover; }
.basket-item-copy h3 { margin: 0 0 4px; font-size: 22px; }
.basket-item-copy > p { margin: 0 0 16px; color: var(--mk-muted); font-size: 12px; }

.basket-quantity-form {
    display: flex;
    align-items: center;
}
.basket-quantity-form > button:not(.basket-update),
.basket-quantity-form input {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--mk-line);
    background: white;
    text-align: center;
}
.basket-quantity-form > button:first-child { border-radius: 7px 0 0 7px; }
.basket-quantity-form > button:nth-of-type(2) { border-radius: 0 7px 7px 0; }
.basket-quantity-form input { border-right: 0; border-left: 0; color: var(--mk-ink); font-size: 12px; font-weight: 700; appearance: textfield; }
.basket-quantity-form input::-webkit-inner-spin-button,
.basket-quantity-form input::-webkit-outer-spin-button { margin: 0; appearance: none; }
.basket-quantity-form > button:not(.basket-update) { color: var(--mk-red); }
.basket-update {
    margin-left: 10px;
    padding: 8px 11px;
    border: 0;
    border-radius: 6px;
    color: var(--mk-red);
    background: #fff1e8;
    font-size: 10px;
    font-weight: 700;
}

.basket-item-total { align-self: stretch; display: flex; flex-direction: column; align-items: end; justify-content: space-between; }
.basket-item-total > strong { color: var(--mk-red-dark); font: 700 20px "Playfair Display", serif; }
.basket-item-total button {
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    color: #9d6d69;
    background: transparent;
    font-size: 10px;
    font-weight: 700;
}
.basket-item-total button:hover { color: var(--mk-red-bright); }
.basket-item-total svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.basket-summary {
    padding: 31px 28px;
    position: sticky;
    top: 98px;
}
.basket-summary-line { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--mk-line); }
.basket-summary-line span { color: var(--mk-ink); font-weight: 700; }
.basket-summary-line strong { color: var(--mk-red-dark); font: 700 23px "Playfair Display", serif; }
.basket-summary-line.muted span { color: var(--mk-muted); font-size: 12px; font-weight: 500; }
.basket-summary-line em { color: var(--mk-muted); font-size: 11px; font-style: normal; }
.basket-summary-total { padding: 24px 0; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.basket-summary-total span { font-size: 18px; font-weight: 700; }
.basket-summary-total strong { color: var(--mk-red-dark); font: 700 31px "Playfair Display", serif; }
.basket-summary-note { margin-top: 20px; padding-top: 18px; display: flex; gap: 10px; border-top: 1px solid var(--mk-line); }
.basket-summary-note b { color: var(--mk-red-bright); }
.basket-summary-note span { display: flex; flex-direction: column; }
.basket-summary-note strong { font-size: 11px; }
.basket-summary-note small { margin-top: 2px; color: var(--mk-muted); font-size: 10px; }

.basket-empty { padding: 75px 30px; text-align: center; }
.basket-empty > img { width: 115px; height: 115px; object-fit: contain; }
.basket-empty h2 { margin: 8px 0; font-size: 40px; }
.basket-empty p { margin: 0 auto 25px; max-width: 470px; color: var(--mk-muted); }

.checkout-page,
.order-success-page {
    background: var(--mk-cream);
}

.checkout-hero {
    min-height: 340px;
    padding: 60px max(30px, 10vw);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    background:
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, .12), transparent 25%),
        linear-gradient(125deg, var(--mk-red-dark), var(--mk-red));
}

.checkout-hero h1 {
    margin: 0 0 16px;
    color: white;
    font-size: clamp(46px, 5vw, 68px);
    line-height: 1.03;
}

.checkout-hero p {
    max-width: 560px;
    margin: 0;
    color: #ead0ce;
}

.checkout-hero > img {
    width: 230px;
    height: 230px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(40, 0, 5, .28));
}

.checkout-shell {
    width: min(1220px, calc(100% - 40px));
    margin: -45px auto 100px;
    position: relative;
    z-index: 2;
}

.checkout-errors {
    margin-bottom: 18px;
    padding: 17px 20px;
    border: 1px solid #e7b5af;
    border-radius: 11px;
    color: #933a35;
    background: #fff1ed;
}

.checkout-errors ul { margin: 6px 0 0; padding-left: 20px; font-size: 13px; }

.new-checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 24px;
    align-items: start;
}

.checkout-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checkout-section {
    padding: 29px;
    border: 1px solid var(--mk-line);
    border-radius: 16px;
    background: white;
    box-shadow: 0 5px 25px rgba(86, 24, 24, .04);
}

.checkout-section > header {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.checkout-section > header > span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--mk-red);
    font-size: 13px;
    font-weight: 700;
}

.checkout-section h2 {
    margin: 0 0 3px;
    font-size: 25px;
}

.checkout-section header p {
    margin: 0;
    color: var(--mk-muted);
    font-size: 13px;
}

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

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

.store-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: var(--mk-ink);
    font-size: 13px;
    font-weight: 700;
}

.store-field > small { color: var(--mk-muted); font-weight: 400; }

.store-field input,
.store-field select,
.store-field textarea {
    width: 100%;
    min-height: 51px;
    padding: 13px 14px;
    border: 1px solid #d9cec5;
    border-radius: 9px;
    color: var(--mk-ink);
    background: #fffefb;
}

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

.store-field input:focus,
.store-field select:focus,
.store-field textarea:focus {
    border-color: var(--mk-red-bright);
    box-shadow: 0 0 0 3px rgba(214, 41, 39, .1);
}

.delivery-area-note {
    margin-bottom: 17px;
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 9px;
    color: var(--mk-red);
    background: #fff3ed;
}

.delivery-area-note > span { display: flex; flex-direction: column; }
.delivery-area-note small { color: var(--mk-muted); font-size: 10px; text-transform: uppercase; }
.delivery-area-note strong { font-size: 13px; }

.checkout-order-card {
    position: sticky;
    top: 102px;
    overflow: hidden;
    border: 1px solid var(--mk-line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--mk-shadow);
}

.checkout-order-card > header {
    padding: 19px 21px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--mk-line);
    background: var(--mk-cream);
}

.checkout-order-card > header span {
    color: var(--mk-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.checkout-order-card > header a { color: var(--mk-muted); font-size: 12px; font-weight: 700; text-decoration: underline; }

.checkout-order-items { padding: 7px 20px; }

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

.checkout-order-image {
    position: relative;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: white;
    background: var(--mk-red);
    font: 700 20px "Playfair Display", serif;
}

.checkout-order-image img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.checkout-order-image b { position: absolute; width: 21px; height: 21px; top: -7px; right: -7px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--mk-ink); font: 700 10px "DM Sans", sans-serif; }
.checkout-order-item > span { display: flex; flex-direction: column; min-width: 0; }
.checkout-order-item > span strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.checkout-order-item small { color: var(--mk-muted); font-size: 11px; }
.checkout-order-item > strong { font-size: 12px; }

.checkout-total {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-total strong { font: 700 26px "Playfair Display", serif; }

.checkout-assurance {
    margin: 0 20px 16px;
    padding: 11px 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-radius: 8px;
    color: #58665d;
    background: #edf3ed;
    font-size: 11px;
}

.checkout-assurance svg { flex: 0 0 18px; color: #43804f; }
.checkout-order-card > .store-button { width: calc(100% - 40px); margin: 0 20px; }
.checkout-consent { padding: 12px 24px 21px; display: block; color: var(--mk-muted); font-size: 10px; line-height: 1.5; text-align: center; }

.success-shell {
    position: relative;
    min-height: calc(100vh - 88px);
    padding: 80px 20px 100px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 10%, rgba(214, 41, 39, .07), transparent 30%),
        var(--mk-cream);
}

.success-decoration {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(163, 15, 26, .14);
    border-radius: 50%;
}

.success-decoration.one { top: -170px; left: -120px; }
.success-decoration.two { right: -140px; bottom: -180px; }

.success-card {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    padding: 55px clamp(25px, 6vw, 72px);
    border: 1px solid var(--mk-line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--mk-shadow);
    text-align: center;
}

.success-logo-wrap {
    position: relative;
    width: 128px;
    height: 128px;
    margin: 0 auto 22px;
}

.success-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.success-logo-wrap > span {
    position: absolute;
    width: 38px;
    height: 38px;
    right: -2px;
    bottom: 3px;
    display: grid;
    place-items: center;
    border: 4px solid white;
    border-radius: 50%;
    color: white;
    background: #43804f;
}

.success-logo-wrap span svg { width: 19px; }

.success-card h1 {
    margin: 0 0 17px;
    font-size: clamp(46px, 6vw, 68px);
    line-height: 1;
}

.success-card > p {
    max-width: 560px;
    margin: 0 auto 27px;
    color: var(--mk-muted);
    line-height: 1.75;
}

.success-order-number {
    width: max-content;
    max-width: 100%;
    margin: 0 auto 27px;
    padding: 10px 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 999px;
    color: var(--mk-red-dark);
    background: #fff0eb;
    font-size: 12px;
}

.success-order-number span { color: var(--mk-muted); }

.success-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    text-align: left;
}

.success-details > div {
    padding: 17px;
    display: flex;
    gap: 12px;
    border: 1px solid var(--mk-line);
    border-radius: 11px;
    background: var(--mk-paper);
}

.success-details svg { flex: 0 0 23px; color: var(--mk-red-bright); }
.success-details span { display: flex; flex-direction: column; }
.success-details small { color: var(--mk-muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.success-details strong { margin: 3px 0; font-size: 13px; }
.success-details em { color: var(--mk-muted); font-size: 11px; font-style: normal; }

.success-next-step {
    margin: 16px 0 25px;
    padding: 15px 17px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    color: #556258;
    background: #edf3ed;
    font-size: 12px;
}

.success-next-step b { color: #386541; }

.reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .2, 1);
}

.reveal-ready [data-reveal][data-reveal-delay="1"] { transition-delay: .12s; }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
    .home-hero { grid-template-columns: 1fr 46%; }
    .home-hero-copy { padding-left: 55px; padding-right: 45px; }
    .home-hero-copy h1 { font-size: 61px; }
    .home-hero-visual::after { width: 500px; height: 500px; }
    .store-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .promise-section { grid-template-columns: 1fr; }
    .new-checkout-layout { grid-template-columns: 1fr 350px; }
    .basket-layout { grid-template-columns: 1fr; }
    .basket-summary { position: static; }
}

@media (max-width: 840px) {
    .store-header { padding-inline: 22px; }
    .store-nav > a:not(.store-cart-button) { display: none; }
    .home-hero { grid-template-columns: 1fr; }
    .home-hero-copy { padding: 85px 30px 75px; text-align: center; }
    .home-hero-copy > p { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .home-hero-visual { min-height: 510px; }
    .logo-orbit { width: 390px; max-width: 74%; }
    .home-hero-visual::before { width: 410px; height: 410px; }
    .home-hero-visual::after { width: 480px; height: 480px; }
    .featured-wrap { margin-top: 40px; grid-template-columns: 1fr; }
    .featured-image { min-height: 410px; }
    .store-section-heading { align-items: flex-start; flex-direction: column; }
    .new-checkout-layout { grid-template-columns: 1fr; }
    .checkout-order-card { position: static; }
    .checkout-hero > img { width: 170px; height: 170px; }
}

@media (max-width: 650px) {
    .store-header { height: 76px; }
    .store-logo img { width: 50px; height: 50px; }
    .store-logo strong { font-size: 17px; }
    .store-logo small { display: none; }
    .store-cart-button { min-height: 43px; padding-left: 12px; }
    .store-cart-button > span { display: none; }
    .home-hero-copy h1 { font-size: clamp(46px, 13vw, 60px); }
    .home-hero-copy > p { font-size: 16px; }
    .home-hero-visual { min-height: 430px; }
    .hero-note { right: 18px; bottom: 22px; }
    .section-wrap, .menu-section { width: min(100% - 32px, 1180px); }
    .featured-image { min-height: 320px; }
    .featured-copy { padding: 38px 25px; }
    .featured-action { align-items: stretch; flex-direction: column; }
    .featured-action .store-button { width: 100%; }
    .menu-section { padding: 80px 0; }
    .store-product-grid { grid-template-columns: 1fr; }
    .store-product-image { height: 330px; }
    .promise-section { padding: 75px 25px; }
    .promise-cards { grid-template-columns: 1fr; }
    .promise-cards article { padding: 23px 0; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .15); }
    .store-footer { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .checkout-hero { min-height: 330px; padding: 55px 25px 80px; }
    .checkout-hero > img { display: none; }
    .checkout-shell { width: calc(100% - 24px); margin-top: -35px; }
    .checkout-section { padding: 22px 18px; }
    .checkout-fields.two-columns { grid-template-columns: 1fr; }
    .checkout-fields .full-width { grid-column: auto; }
    .success-card { padding: 42px 20px; }
    .success-details { grid-template-columns: 1fr; }
    .basket-hero { min-height: 330px; padding: 55px 25px 78px; }
    .basket-hero > img { display: none; }
    .basket-shell { width: calc(100% - 24px); margin-top: -38px; padding-bottom: 75px; }
    .basket-card > header { padding: 21px 18px; align-items: flex-start; flex-direction: column; }
    .basket-items { padding: 0 18px; }
    .basket-item { grid-template-columns: 90px minmax(0, 1fr); gap: 15px; }
    .basket-item-image { width: 90px; height: 96px; }
    .basket-item-total { grid-column: 2; flex-direction: row; align-items: center; }
    .basket-summary { padding: 27px 21px; }
}

@media (max-width: 430px) {
    .store-logo > span { display: none; }
    .store-footer { grid-template-columns: 1fr; }
    .store-footer .footer-brand { grid-column: auto; }
    .cart-drawer-panel { width: 100%; }
    .checkout-order-item { grid-template-columns: 52px minmax(0, 1fr); }
    .checkout-order-item > strong { grid-column: 2; }
    .drawer-items { padding-inline: 18px; }
    .drawer-item { grid-template-columns: 66px minmax(0, 1fr); gap: 11px; }
    .drawer-item-image { width: 66px; height: 76px; }
    .drawer-item-heading { flex-direction: column; gap: 2px; }
    .drawer-item-actions { align-items: flex-end; flex-direction: column; gap: 5px; }
    .drawer-quantity-form { align-self: stretch; grid-template-columns: 1fr 42px 1fr; }
    .drawer-summary { padding: 20px 18px 23px; }
    .basket-item { grid-template-columns: 76px minmax(0, 1fr); }
    .basket-item-image { width: 76px; height: 84px; }
    .basket-quantity-form { flex-wrap: wrap; }
    .basket-update { margin: 8px 0 0; flex-basis: 114px; }
}
