:root {
    --bg: #fffdf9;
    --surface: #ffffff;
    --surface-warm: #fff4ec;
    --surface-green: #f1f8ef;
    --ink: #252525;
    --muted: #6c675f;
    --line: #eaded4;
    --orange: #ea5e18;
    --orange-strong: #ff6a1f;
    --orange-soft: #ffe4d4;
    --green: #418734;
    --green-dark: #2f6b26;
    --white: #ffffff;
    --shadow: 0 14px 36px rgba(57, 38, 23, 0.09);
    --radius: 8px;
    --nav-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    overflow-x: clip;
    background: var(--bg);
    color: var(--ink);
    font-family: "Onest", "Segoe UI", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    touch-action: manipulation;
}

body {
    min-height: 100dvh;
    margin: 0;
    overflow-x: clip;
    padding: 0 0 calc(var(--nav-height) + 22px + env(safe-area-inset-bottom));
    background:
        linear-gradient(180deg, rgba(234, 94, 24, 0.07), rgba(255, 253, 249, 0) 260px),
        var(--bg);
    -webkit-tap-highlight-color: rgba(234, 94, 24, 0.18);
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(65, 135, 52, 0.36);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 500;
    transform: translateY(-150%);
    border-radius: var(--radius);
    background: var(--green-dark);
    color: var(--white);
    padding: 9px 12px;
}

.skip-link:focus {
    transform: translateY(0);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.store-head,
main {
    width: min(100% - 28px, 430px);
    margin: 0 auto;
}

.store-head {
    display: grid;
    gap: 12px;
    padding: 14px 0 8px;
}

.brand-row {
    display: grid;
    gap: 8px;
}

.brand-logo-link {
    display: block;
    width: min(300px, 78vw);
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
}

.brand-tagline,
.section-kicker {
    margin: 0;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
}

.notice-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.notice-panel p {
    display: grid;
    gap: 3px;
    min-width: 0;
    margin: 0;
    border: 1px solid rgba(65, 135, 52, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    padding: 9px 8px;
    box-shadow: 0 8px 20px rgba(57, 38, 23, 0.05);
}

.notice-panel strong {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    white-space: normal;
}

.notice-panel span {
    min-width: 0;
    color: var(--muted);
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.2;
}

.desktop-nav {
    display: none;
}

.screen {
    display: none;
}

.screen.active {
    display: block;
}

.toolbar {
    display: grid;
    gap: 12px;
    margin: 12px 0 8px;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
    text-wrap: balance;
}

h1 {
    margin-top: 2px;
    color: var(--ink);
    font-size: 29px;
    font-weight: 800;
    line-height: 1.04;
}

.last-update {
    min-height: 20px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.search-box {
    display: grid;
    grid-template-columns: 21px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    min-width: 0;
    border: 1px solid rgba(65, 135, 52, 0.24);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 12px 13px;
    box-shadow: 0 10px 26px rgba(57, 38, 23, 0.07);
}

.search-box:focus-within {
    border-color: rgba(65, 135, 52, 0.55);
    box-shadow: 0 0 0 4px rgba(65, 135, 52, 0.11);
}

.search-box svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
}

.search-box input {
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    outline: 0;
}

.search-box input::placeholder {
    color: #948a80;
}

.sticky-filter {
    position: sticky;
    top: 0;
    z-index: 60;
    margin: 0 -14px;
    padding: 8px 14px 10px;
    border-bottom: 1px solid rgba(65, 135, 52, 0.16);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 248, 239, 0.96));
    backdrop-filter: blur(16px);
    box-shadow: 0 14px 28px rgba(57, 38, 23, 0.08);
}

.categories-bar {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(234, 94, 24, 0.13);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    padding: 7px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.supercategories-bar {
    display: flex;
    gap: 7px;
    margin-bottom: 7px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border: 1px solid rgba(65, 135, 52, 0.22);
    border-radius: 18px;
    background: rgba(65, 135, 52, 0.08);
    padding: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.supercategories-bar::-webkit-scrollbar,
.categories-bar::-webkit-scrollbar {
    display: none;
}

.cat-chip,
.super-chip {
    flex: 0 0 auto;
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.super-chip {
    min-height: 42px;
    border-color: rgba(65, 135, 52, 0.22);
    background: rgba(255, 255, 255, 0.72);
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 800;
}

.cat-chip {
    min-height: 36px;
    border-color: rgba(136, 119, 99, 0.16);
    background: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 700;
}

.cat-chip:hover,
.super-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(234, 94, 24, 0.42);
}

.cat-chip.active,
.super-chip.active {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}

.super-chip.active {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 8px 18px rgba(65, 135, 52, 0.22);
}

.cat-chip.active {
    box-shadow: 0 8px 18px rgba(234, 94, 24, 0.18);
}

.cat-chip.sale-chip {
    border-color: rgba(234, 94, 24, 0.5);
    color: var(--orange);
}

.cat-chip.sale-chip.active {
    background: var(--orange-strong);
    color: var(--white);
}

.products-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.category-section {
    display: contents;
}

.category-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    border-top: 1px solid var(--line);
    background: linear-gradient(90deg, var(--surface-green), var(--surface));
    padding: 11px 12px 9px;
}

.category-header:first-child {
    border-top: 0;
}

.category-name {
    min-width: 0;
    color: var(--green-dark);
    font-size: 19px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.category-count {
    border-radius: 999px;
    background: var(--white);
    padding: 4px 8px;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.product-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 108px;
    align-items: center;
    gap: 10px;
    min-height: 74px;
    border: 0;
    border-top: 1px solid var(--line);
    background: var(--surface);
    padding: 10px 10px 10px 12px;
    transition: background-color 160ms ease;
}

.product-card:hover,
.product-card.in-cart {
    background: #fffaf6;
}

.product-card.sale-card {
    background: linear-gradient(90deg, rgba(255, 106, 31, 0.16), #fffaf6 58%);
}

.product-card.price-missing-card {
    border-color: #171717;
    background: #171717;
    color: var(--white);
}

.product-card.price-missing-card:hover,
.product-card.price-missing-card.in-cart {
    background: #111111;
}

.product-card.sale-card::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--orange-strong);
    content: "";
}

.product-media {
    display: grid;
    position: relative;
    justify-items: center;
    align-items: center;
}

.product-image-btn {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
}

.product-placeholder {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-green);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
}

.product-image {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--white);
}

.photo-lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(17, 17, 17, 0.72);
    padding: 18px;
}

.photo-lightbox[hidden] {
    display: none;
}

.photo-lightbox-frame {
    position: relative;
    display: grid;
    width: min(92vw, 560px);
    max-height: 88vh;
    place-items: center;
    border-radius: var(--radius);
    background: var(--white);
    padding: 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.photo-lightbox-image {
    display: block;
    width: 100%;
    max-height: calc(88vh - 32px);
    object-fit: contain;
}

.photo-lightbox-close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.82);
    color: var(--white);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

body.lightbox-open {
    overflow: hidden;
}

.sale-card .product-placeholder {
    background: var(--orange-soft);
    color: var(--orange);
}

.price-missing-card .product-placeholder,
.price-missing-card .product-image {
    background: #2a2a2a;
    color: var(--white);
}

.sale-pill,
.missing-price-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 18px;
    border-radius: 999px;
    background: var(--orange-strong);
    color: var(--white);
    padding: 0 7px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    position: absolute;
    left: -2px;
    bottom: -7px;
}

.missing-price-pill {
    display: none;
    background: #ffffff;
    color: #111111;
    text-transform: none;
}

.unit-pill {
    display: none;
}

.product-info {
    min-width: 0;
    padding: 0;
}

.product-name {
    display: -webkit-box;
    min-height: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.24;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow-wrap: anywhere;
}

.product-price {
    margin-top: 5px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.sale-card .product-price {
    color: var(--orange);
}

.price-missing-card .product-name,
.price-missing-card .product-price,
.price-missing-card .counter-val {
    color: var(--white);
}

.price-missing-card .counter-value-wrap {
    border-color: rgba(255, 255, 255, 0.22);
    background: #2a2a2a;
}

.price-missing-card .counter-btn.minus {
    background: #2a2a2a;
    color: var(--white);
}

.price-missing-card .counter-btn.plus {
    background: var(--orange-strong);
}

.counter {
    display: grid;
    grid-template-columns: 29px minmax(42px, 1fr) 29px;
    align-items: center;
    gap: 4px;
}

.counter-btn {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--surface-green);
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

.counter-btn:hover {
    transform: translateY(-1px);
}

.counter-btn.plus {
    background: var(--green);
    color: var(--white);
}

.sale-card .counter-btn.plus {
    background: var(--orange-strong);
}

.counter-value-wrap {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    padding: 5px 3px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.counter-val {
    color: var(--ink);
}

.counter-unit {
    color: var(--muted);
    font-size: 11px;
}

.product-card .counter-unit {
    display: none;
}

.cart-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0 12px;
}

.ghost-btn {
    min-height: 40px;
    border: 1px solid rgba(65, 135, 52, 0.24);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--green-dark);
    padding: 0 13px;
    font-weight: 700;
    transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.ghost-btn:hover {
    border-color: var(--green);
    background: var(--surface-green);
}

.cart-items {
    display: grid;
    gap: 9px;
}

.cart-item,
.cart-summary,
.cart-empty,
.empty-state {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 12px;
    box-shadow: 0 8px 22px rgba(57, 38, 23, 0.06);
}

.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    align-items: center;
    gap: 8px;
}

.cart-item .counter {
    justify-self: end;
    width: 132px;
    grid-template-columns: 30px minmax(52px, 1fr) 30px;
}

.cart-item .counter-btn {
    width: 30px;
    height: 30px;
}

.cart-item .counter-value-wrap {
    font-size: 13px;
}

.cart-item-name {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: 15px;
    font-weight: 700;
}

.cart-item-price {
    display: block;
    margin-top: 5px;
    color: var(--green-dark);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.cart-summary,
.cart-empty,
.empty-state {
    margin-top: 12px;
}

.summary-head,
.cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
}

.cart-text {
    overflow-x: auto;
    margin: 12px 0;
    border-radius: var(--radius);
    background: #fff8f2;
    padding: 11px;
    color: var(--ink);
    font-family: "Onest", "Segoe UI", system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.55;
    white-space: pre-wrap;
}

.cart-total-row {
    border-top: 1px solid var(--line);
    padding-top: 11px;
}

.cart-total-row strong {
    color: var(--orange);
    font-size: 20px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.cart-note {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.cart-empty,
.empty-state {
    text-align: center;
    color: var(--muted);
    font-weight: 600;
}

.empty-emoji {
    display: grid;
    width: 46px;
    height: 46px;
    margin: 0 auto 8px;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-green);
    color: var(--green-dark);
    font-size: 24px;
    font-weight: 800;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    margin-top: 12px;
    border-radius: var(--radius);
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(65, 135, 52, 0.22);
    transition: transform 150ms ease, background-color 150ms ease;
}

.whatsapp-btn:hover {
    transform: translateY(-1px);
    background: var(--green-dark);
}

.whatsapp-btn svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.bottom-nav {
    position: fixed;
    left: 50%;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    width: min(430px, calc(100% - 24px));
    transform: translateX(-50%);
    border: 1px solid rgba(65, 135, 52, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    padding: 6px;
    box-shadow: 0 12px 28px rgba(57, 38, 23, 0.15);
    backdrop-filter: blur(12px);
}

.nav-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-weight: 800;
    transition: background-color 150ms ease, color 150ms ease;
}

.nav-btn:hover {
    color: var(--green-dark);
}

.nav-btn.active {
    background: var(--green);
    color: var(--white);
}

.nav-btn svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: 18px;
    display: grid;
    min-width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: var(--orange-strong);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

[hidden] {
    display: none !important;
}

@media (min-width: 760px) {
    .store-head,
    main {
        width: min(100% - 56px, 1100px);
    }

    .store-head {
        grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
        align-items: end;
        gap: 20px;
        padding-top: 22px;
    }

    .brand-logo-link {
        width: min(360px, 100%);
    }

    .brand-tagline {
        font-size: 13px;
    }

    .notice-panel {
        justify-self: end;
        width: min(100%, 600px);
        gap: 10px;
    }

    .notice-panel p {
        padding: 12px;
    }

    .notice-panel strong {
        font-size: 15px;
    }

    .notice-panel span {
        font-size: 12px;
    }

    .toolbar {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
        align-items: end;
        margin-top: 20px;
    }

    h1 {
        font-size: 36px;
    }

    .products-list {
        max-width: 780px;
    }

    .product-card {
        grid-template-columns: auto minmax(0, 1fr) 152px;
        min-height: 78px;
        padding-right: 12px;
    }

    .product-name {
        font-size: 15.5px;
    }

    .counter {
        grid-template-columns: 32px minmax(56px, 1fr) 32px;
    }

    .counter-btn {
        width: 32px;
        height: 32px;
    }

    .cart-item {
        grid-template-columns: minmax(0, 1fr) minmax(158px, 210px);
        gap: 12px;
    }
}

@media (min-width: 900px) {
    body {
        padding-bottom: 48px;
    }

    .store-head,
    main {
        width: min(100% - 72px, 1380px);
    }

    .store-head {
        grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
        align-items: start;
        gap: 12px 28px;
    }

    .brand-logo-link {
        width: min(440px, 100%);
    }

    .notice-panel {
        grid-column: 2;
        align-self: start;
        justify-self: stretch;
        width: min(100%, 760px);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .notice-panel p {
        min-height: 94px;
        align-content: center;
        padding: 16px;
    }

    .notice-panel strong {
        white-space: normal;
    }

    .desktop-nav {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        display: inline-grid;
        grid-template-columns: repeat(2, minmax(132px, 1fr));
        gap: 8px;
        width: min(100%, 320px);
        border: 1px solid rgba(65, 135, 52, 0.18);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        padding: 6px;
        box-shadow: 0 12px 28px rgba(57, 38, 23, 0.08);
    }

    .desktop-nav .nav-btn {
        min-height: 42px;
    }

    .bottom-nav {
        display: none;
    }

    .toolbar {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
        align-items: center;
        margin-top: 18px;
    }

    .search-box {
        box-shadow: 0 14px 32px rgba(57, 38, 23, 0.07);
    }

    .sticky-filter {
        top: 0;
        margin: 0 -18px;
        padding: 10px 18px;
    }

    .products-list {
        max-width: none;
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .category-section {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(218px, 1fr));
        gap: 14px;
    }

    .category-header {
        grid-column: 1 / -1;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.86);
        padding: 12px 14px;
    }

    .product-card {
        display: grid;
        grid-template-columns: 1fr;
        align-content: start;
        gap: 10px;
        min-height: 0;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface);
        padding: 10px;
        box-shadow: 0 12px 30px rgba(57, 38, 23, 0.07);
    }

    .product-card.sale-card {
        background: linear-gradient(180deg, rgba(255, 106, 31, 0.13), var(--surface) 52%);
    }

    .product-card.price-missing-card {
        background: #171717;
    }

    .product-card.price-missing-card.sale-card {
        background: linear-gradient(180deg, #171717, #111111);
    }

    .product-card.sale-card::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        width: auto;
        height: 4px;
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .product-media {
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: var(--radius);
        background:
            linear-gradient(135deg, rgba(65, 135, 52, 0.12), rgba(234, 94, 24, 0.1)),
            var(--surface-green);
    }

    .product-image-btn {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .product-image {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .product-placeholder {
        width: 74px;
        height: 74px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.78);
    }

    .sale-pill,
    .missing-price-pill {
        left: 10px;
        bottom: 10px;
        min-height: 24px;
        padding: 0 9px;
        box-shadow: 0 6px 14px rgba(234, 94, 24, 0.22);
    }

    .missing-price-pill {
        display: inline-flex;
        box-shadow: none;
    }

    .product-info {
        min-height: 68px;
    }

    .product-name {
        min-height: 38px;
        font-size: 15px;
        line-height: 1.25;
    }

    .product-price {
        font-size: 14px;
    }

    .counter {
        grid-template-columns: 34px minmax(58px, 1fr) 34px;
    }

    .counter-btn {
        width: 34px;
        height: 34px;
    }

    .counter-value-wrap {
        padding: 7px 4px;
    }

    #cart-screen {
        max-width: 760px;
    }
}

@media (min-width: 1180px) {
    .store-head {
        grid-template-columns: minmax(300px, 440px) minmax(440px, 1fr) minmax(280px, 320px);
        gap: 28px;
    }

    .desktop-nav {
        grid-column: 3;
        grid-row: 1;
        justify-self: stretch;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}
