:root {
    --bg: #efefef;
    --surface: rgba(255, 252, 246, 0.88);
    --surface-strong: #fffdfa;
    --text: #191919;
    --text-soft: #60706c;
    --line: rgba(23, 49, 45, 0.08);
    --primary: #d65100;
    --primary-dark: #a80e00;
    --accent: #5e0000;
    --accent-soft: #d8e2dc;
    --warning: #f2c078;
    --shadow: 0 18px 50px rgba(44, 51, 49, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #efefef;
}

html.skip-home-loader .home-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body {
    margin: 0;
    min-height: 100dvh;
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top, rgba(214, 81, 0, 0.1), transparent 26%),
        linear-gradient(180deg, #f7f4ef 0%, var(--bg) 42%, #e7e4de 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    overscroll-behavior-y: none;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

body.is-loading-home {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

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

.site-main {
    min-height: calc(100dvh - 140px);
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
}

.home-loader {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at top, rgba(214, 81, 0, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(239, 239, 239, 0.98));
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.home-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.home-loader__panel {
    display: grid;
    justify-items: center;
    gap: 18px;
    width: min(100%, 360px);
}

.home-loader__logo-wrap {
    width: 112px;
    height: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(23, 49, 45, 0.08);
    box-shadow: 0 20px 44px rgba(25, 25, 25, 0.08);
    animation: homeLoaderFloat 1.6s ease-in-out infinite;
}

.home-loader__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-loader__brand {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.home-loader__meter {
    width: 100%;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(23, 49, 45, 0.1);
}

.home-loader__meter-fill {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), #f18d42);
    transition: width 0.14s linear;
}

.home-loader__value {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1;
}

@keyframes homeLoaderFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.announcement-bar {
    padding-top: env(safe-area-inset-top);
    background: #292929;
    color: #f7f3ec;
    font-size: 0.92rem;
    padding: 10px;
}

.announcement-bar__inner,
.site-header__inner,
.page-intro__inner,
.section-heading,
.summary-row,
.product-card__footer,
.hero-actions,
.purchase-box__actions,
.summary-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.announcement-bar__inner {
    padding: 12px 0;
    flex-wrap: wrap;
}

.announcement-bar__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.announcement-bar__actions a {
    color: #fff;
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(5px);
    background: rgb(255 255 255 / 78%);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    padding: 18px 0;
    flex-wrap: wrap;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand__mark {
    /* width: 71px; */
    height: 56px;
    border-radius: 18px;
    overflow: hidden;
    /* background: #fff; */
    /* box-shadow: var(--shadow); */
    flex-shrink: 0;
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand__text {
    display: grid;
    gap: 4px;
}

.brand__text strong,
h1,
h2,
h3,
h4 {
    font-family: 'Lato', sans-serif;
}

.brand__text small,
.text-link,
.field span,
.product-card p,
.detail-description,
.delivery-note,
.empty-state p,
.info-chip span,
.category-card__content small,
.footer-list,
.social-links,
.checkout-summary {
    color: var(--text-soft);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--text-soft);
    transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--text);
    background: rgba(23, 49, 45, 0.06);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-strong);
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    margin: 6px auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    padding: 7px 11px;
    border-radius: 999px;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 28px rgba(195, 111, 60, 0.28);
}

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

.btn--ghost {
    background: var(--surface-strong);
    color: var(--text);
    border: 1px solid rgb(57 57 57 / 44%);
    font-size: 13px;
}

.btn--wide {
    width: 100%;
}

.text-link {
    font-weight: 700;
}

.hero-section,
.page-intro,
.section-block {
    padding: 40px 0;
}

.section-block--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.section-block--tight {
    padding-top: 24px;
}

.hero-grid,
.detail-grid,
.commerce-layout,
.footer-grid {
    display: grid;
    gap: 26px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}

.hero-copy,
.detail-content,
.commerce-main,
.commerce-summary,
.card-surface,
.toolbar-card,
.category-card,
.product-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: var(--shadow);
}

.hero-copy,
.hero-card,
.card-surface,
.toolbar-card,
.page-intro__inner,
.commerce-summary,
.product-card,
.category-card,
.site-footer {
    border-radius: var(--radius-xl);
}

.hero-copy {
    padding: 38px;
}

.hero-copy--banner {
    padding: 0;
    overflow: hidden;
}

.hero-banner {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.brands-section {
    display: grid;
    gap: 22px;
    padding: 28px;
}

.brands-section__header {
    display: grid;
    gap: 8px;
}

.brands-section__header h2 {
    max-width: 22ch;
}

.brands-section__media {
    padding: clamp(16px, 3vw, 24px);
    border-radius: calc(var(--radius-xl) - 8px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(232, 236, 233, 0.62));
    border: 1px solid rgba(23, 49, 45, 0.06);
}

.brands-section__image {
    display: block;
    width: 100%;
    height: auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
}

h1 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: 1.04;
}

h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2.4rem);
}

h3,
h4,
p {
    margin-top: 0;
}

.hero-copy p,
.page-intro__inner p {
    font-size: 1.04rem;
    max-width: 56ch;
    color: var(--text-soft);
}

.hero-highlights,
.category-grid,
.product-grid,
.badge-cloud,
.social-links,
.footer-list,
.toolbar-card__filters,
.form-grid {
    display: grid;
    gap: 16px;
}

.hero-highlights {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin: 28px 0;
}

.info-chip,
.delivery-note {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(23, 49, 45, 0.06);
}

.info-chip strong,
.delivery-note strong {
    display: block;
    margin-bottom: 8px;
}

.hero-card {
    padding: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(232, 236, 233, 0.72));
}

.hero-card img,
.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) - 10px);
    min-height: 320px;
}

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

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.category-card {
    padding: 16px;
    display: grid;
    gap: 14px;
}

.category-card__image-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
}

.category-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card__content {
    display: grid;
    gap: 6px;
}

.toolbar-card,
.page-intro__inner,
.purchase-box,
.commerce-summary,
.commerce-main,
.detail-content,
.site-footer {
    padding: 26px;
}

.toolbar-card {
    margin-bottom: 24px;
    overflow: hidden;
}

.toolbar-card__search {
    display: grid;
    gap: 10px;
    margin-bottom: 10px;
}

.toolbar-card__search input,
.field input,
.field select,
.field textarea,
.quantity-selector input {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(23, 49, 45, 0.12);
    background: #fff;
    padding: 14px 16px;
    color: var(--text);
    margin-bottom: 0;
}

.toolbar-card__filters {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.toolbar-card__filters--scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    padding-inline: 18px;
    margin-inline: -18px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
}

.toolbar-card__filters--scroll::-webkit-scrollbar {
    display: none;
}

.filter-pill,
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    border-radius: 999px;
    border: 1px solid rgba(23, 49, 45, 0.1);
    background: #fff;
    color: var(--text-soft);
    padding: 10px 14px;
}

.secure-pill {
    width: max-content;
    max-width: 100%;
    justify-self: start;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-color: rgba(23, 49, 45, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 232, 0.92));
    color: var(--text);
    box-shadow: 0 10px 24px rgba(25, 25, 25, 0.06);
}

.secure-pill__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(214, 81, 0, 0.12);
    border: 1px solid rgba(214, 81, 0, 0.16);
    font-size: 14px;
    line-height: 1;
    color: var(--primary);
}

.secure-pill--delivery .secure-pill__icon {
    background: rgba(56, 113, 143, 0.12);
    border-color: rgba(56, 113, 143, 0.18);
    color: var(--accent);
}

.secure-pill__label {
    line-height: 1.2;
}

.social-pill {
    position: relative;
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    justify-self: start;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(23, 49, 45, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 232, 0.92));
    color: var(--text);
    box-shadow: 0 10px 24px rgba(25, 25, 25, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(25, 25, 25, 0.1);
    border-color: rgba(23, 49, 45, 0.14);
}

.social-pill__icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(214, 81, 0, 0.12);
    border: 1px solid rgba(214, 81, 0, 0.16);
    font-size: 14px;
    line-height: 1;
}

.social-pill--instagram {
    color: #8f3e73;
}

.social-pill--instagram .social-pill__icon {
    background: rgba(143, 62, 115, 0.12);
    border-color: rgba(143, 62, 115, 0.18);
}

.social-pill--facebook {
    color: #2d5f97;
}

.social-pill--facebook .social-pill__icon {
    background: rgba(45, 95, 151, 0.12);
    border-color: rgba(45, 95, 151, 0.18);
}

.social-pill--tiktok {
    color: #1f2b33;
}

.social-pill--tiktok .social-pill__icon {
    background: rgba(31, 43, 51, 0.1);
    border-color: rgba(31, 43, 51, 0.16);
}

.social-pill--youtube {
    color: #c83e34;
}

.social-pill--youtube .social-pill__icon {
    background: rgba(200, 62, 52, 0.11);
    border-color: rgba(200, 62, 52, 0.18);
}

.social-pill--maps {
    color: #4c6f7e;
}

.social-pill--maps .social-pill__icon {
    background: rgba(76, 111, 126, 0.12);
    border-color: rgba(76, 111, 126, 0.18);
}

.social-pill--whatsapp {
    color: #287a54;
}

.social-pill--whatsapp .social-pill__icon {
    background: rgba(40, 122, 84, 0.11);
    border-color: rgba(40, 122, 84, 0.18);
}

.social-pill__label {
    line-height: 1.2;
    font-weight: 700;
}

.filter-pill.is-active,
.pill {
    color: var(--text);
}

.filter-pill.is-active {
    background: var(--accent);
    border-color: transparent;
    color: #fff;
}

.pill--muted {
    background: rgba(63, 108, 99, 0.12);
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 280px));
    justify-content: center;
}

.product-card {
    overflow: hidden;
}

.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 4.4;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgb(255 77 0);
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
}

.product-card__body,
.purchase-box,
.detail-content {
    display: grid;
    gap: 18px;
}

.product-card__body {
    padding: 22px;
}

.product-card__actions {
    display: grid;
    gap: 10px;
}

.price-stack {
    display: grid;
    gap: 4px;
}

.price-stack strong,
.detail-price strong,
.summary-row strong {
    font-size: 1.36rem;
    font-family: 'Lato', sans-serif;
}

.price-stack__old,
.detail-price span {
    text-decoration: line-through;
    color: var(--text-soft);
}

.detail-grid,
.commerce-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.detail-content {
    align-self: start;
    padding: 26px;
    border-radius: var(--radius-xl);
    box-shadow: none;
}

.detail-title {
    margin-bottom: 8px;
    font-size: clamp(1.9rem, 2.6vw, 3rem);
    line-height: 1.08;
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.quantity-selector {
    display: grid;
    grid-template-columns: 46px 3fr 46px;
    align-items: center;
    max-width: 220px;
}

.detail-description {
    color: var(--text-soft);
    line-height: 1.72;
}

.detail-description p:last-child,
.detail-description ul:last-child,
.detail-description ol:last-child {
    margin-bottom: 0;
}

.detail-description ul,
.detail-description ol {
    padding-left: 20px;
}

.detail-description li + li {
    margin-top: 8px;
}

.quantity-selector__button {
    border: none;
    background: var(--accent-soft);
    color: var(--text);
    height: 48px;
    border-radius: 14px;
    font-size: 1.3rem;
}

.quantity-selector input {
    text-align: center;
}

.commerce-main,
.commerce-summary,
.checkout-summary,
.cart-list {
    display: grid;
    gap: 18px;
}

.cart-item,
.checkout-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item:last-child,
.checkout-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item__image,
.checkout-item__image {
    width: 92px;
    height: 92px;
    border-radius: 20px;
    overflow: hidden;
}

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

.cart-item__content,
.checkout-item__content,
.field {
    display: grid;
    gap: 10px;
}

.cart-item__actions,
.checkout-item__meta,
.summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #fff;
    border-radius: 999px;
    border: 1px solid var(--line);
}

.qty-stepper button {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: var(--accent-soft);
}

.summary-row {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.summary-row--total {
    border-bottom: none;
}

.empty-state,
.empty-results {
    text-align: center;
    padding: 46px 24px;
}

.catalog-load-more {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

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

.field--full {
    grid-column: 1 / -1;
}

.field span {
    font-weight: 700;
}

.checkout-summary {
    margin-bottom: 8px;
}

.badge-cloud,
.social-links {
    grid-template-columns: repeat(auto-fit, max-content);
    justify-content: flex-start;
}

.social-links a {
    text-decoration: none;
}

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

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.floating-cart {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 35;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #20312d;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(23, 49, 45, 0.28);
}

.floating-cart__count {
    min-width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 999px;
    font-weight: 700;
}

.toast-stack {
    position: fixed;
    top: 98px;
    right: 18px;
    z-index: 40;
    display: grid;
    gap: 12px;
}

.toast {
    min-width: 260px;
    max-width: 320px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #20312d;
    color: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: 0.24s ease;
}

[hidden] {
    display: none !important;
}

@media (max-width: 980px) {
    .page-intro__inner,
    .section-heading,
    .summary-row,
    .product-card__footer,
    .hero-actions,
    .purchase-box__actions,
    .summary-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-grid,
    .detail-grid,
    .commerce-layout,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .site-nav,
    .header-actions {
        display: none;
    }

    .site-nav.is-open {
        display: grid;
        width: 100%;
        padding-top: 16px;
    }

    .header-actions.is-open {
        display: grid;
        width: 100%;
    }

    .nav-toggle {
        display: inline-block;
    }

    .toolbar-card__filters {
        gap: 10px;
    }

    .site-header__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .announcement-bar__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px 16px;
    }

    .site-nav a,
    .header-actions .btn {
        width: 100%;
    }

    .summary-actions .btn,
    .page-intro__inner .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-section,
    .page-intro,
    .section-block {
        padding: 28px 0;
    }

    .hero-copy,
    .toolbar-card,
    .page-intro__inner,
    .brands-section,
    .purchase-box,
    .commerce-summary,
    .commerce-main,
    .site-footer {
        padding: 20px;
    }

    .brand__text small,
    .announcement-bar__actions span {
        display: none;
    }

    .announcement-bar {
        font-size: 0.82rem;
    }

    .home-loader__logo-wrap {
        width: 88px;
        height: 88px;
        border-radius: 24px;
    }

    .home-loader__panel {
        gap: 16px;
    }

    .site-header__inner {
        padding: 10px 0;
        gap: 10px;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
        gap: 10px;
    }

    .brand__mark {
        width: 56px;
        border-radius: 14px;
    }

    .brand__text {
        gap: 2px;
    }

    .brand__text strong {
        font-size: 0.98rem;
    }

    .nav-toggle {
        flex: 0 0 auto;
        margin-left: auto;
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .announcement-bar__inner {
        display: inline-flex;
        width: 100%;
        padding: 7px 0;
        gap: 8px 12px;
    }

    .announcement-bar__actions {
        margin-left: auto;
        gap: 12px;
    }

    .announcement-bar__inner,
    .header-actions,
    .site-nav.is-open {
        grid-template-columns: 1fr;
    }

    .page-intro__inner {
        text-align: left;
    }

    .summary-row {
        gap: 6px;
    }

    .summary-row strong {
        font-size: 1.18rem;
    }

    .commerce-summary,
    .commerce-main,
    .card-surface,
    .product-card,
    .category-card {
        border-radius: 22px;
    }

    .toolbar-card {
        padding-inline: 16px;
    }

    .toolbar-card__search input {
        margin-bottom: 13px;
    }

    .toolbar-card__filters--scroll {
        width: 100%;
        margin-inline: 0;
        padding-inline: 0;
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    }

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

    .cart-item,
    .checkout-item {
        grid-template-columns: 1fr;
    }

    .cart-item__image,
    .checkout-item__image {
        width: 100%;
        height: 220px;
    }

    .floating-cart {
        left: 16px;
        right: 16px;
        justify-content: space-between;
    }
}