html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --soft: #f7f7f7;
    --ink: #171717;
    --muted: #767676;
    --line: #ececec;
    --shadow: 0 12px 30px rgba(23, 23, 23, 0.06);
    --brand-color: #111111;
    --store-bg: #ffffff;
    --store-text: #171717;
    --store-font: Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

body.storefront-page {
    --bg: var(--store-bg);
    --ink: var(--store-text);
    --surface: color-mix(in srgb, var(--store-bg) 94%, var(--store-text) 6%);
    --soft: color-mix(in srgb, var(--store-bg) 88%, var(--store-text) 12%);
    --muted: color-mix(in srgb, var(--store-text) 62%, transparent);
    --line: color-mix(in srgb, var(--store-text) 12%, transparent);
    font-family: var(--store-font);
    background: var(--store-bg);
    color: var(--store-text);
    padding-top: var(--storefront-topbar-height, 0px);
}

body.storefront-page h1,
body.storefront-page h2,
body.storefront-page h3,
body.storefront-page h4,
body.storefront-page .brand,
body.storefront-page .featured-product-title,
body.storefront-page .category-block-head h2,
body.storefront-page .product-card h3,
body.storefront-page .category-page-copy h1,
body.storefront-page .product-detail-copy h1 {
    font-family: var(--store-font);
}

.storefront-page a {
    color: inherit;
    text-decoration: none;
}

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

.storefront-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    transform: translateZ(0);
    will-change: transform;
}

.store-announcement-bar {
    background: var(--brand-color, #111);
    color: var(--brand-contrast, #fff);
    border-bottom: 1px solid color-mix(in srgb, var(--brand-contrast, #fff) 18%, transparent);
}

.store-announcement-shell {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.store-announcement-viewport {
    position: relative;
    width: min(100%, 820px);
    height: 24px;
    overflow: hidden;
}

.store-announcement-viewport::before,
.store-announcement-viewport::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 72px;
    pointer-events: none;
}

.store-announcement-viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--brand-color, #111), transparent);
}

.store-announcement-viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--brand-color, #111), transparent);
}

.store-announcement-message {
    position: absolute;
    inset: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    opacity: 0;
    transform: translateX(105%);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    will-change: transform, opacity;
}

.store-announcement-message::before {
    content: "•";
    margin-right: 9px;
    color: currentColor;
    opacity: 0.78;
    font-size: 16px;
    line-height: 1;
}

.store-announcement-message.is-marquee-active {
    animation: store-announcement-marquee var(--announcement-step-duration, 22s) linear 1 both;
}

@keyframes store-announcement-marquee {
    0% {
        opacity: 0;
        transform: translateX(105%);
    }

    8% {
        opacity: 1;
        transform: translateX(36%);
    }

    34% {
        opacity: 1;
        transform: translateX(0);
    }

    54% {
        opacity: 1;
        transform: translateX(0);
    }

    76% {
        opacity: 1;
        transform: translateX(-36%);
    }

    90%,
    100% {
        opacity: 0;
        transform: translateX(-105%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .store-announcement-message {
        animation: none;
        opacity: 0;
        transform: none;
    }

    .store-announcement-message.is-marquee-active {
        opacity: 1;
    }
}

.navbar {
    --nav-text: var(--store-nav-text, var(--store-text));
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--brand-color, #111) 10%, #ffffff);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(23, 23, 23, 0.04);
}

.navbar-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px 0 16px;
}

.brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--nav-text);
}

.brand-mark {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: var(--store-nav-text, var(--nav-text));
}

.brand-mark span {
    color: inherit;
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--brand-color, #111) 24%, transparent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3.2vw, 48px);
    font-size: 13px;
    color: var(--nav-text);
}

.nav-links > a {
    position: relative;
    font-weight: 600;
}

.nav-links > a::after,
.nav-dropdown-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-color, #111);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.nav-links > a:hover::after,
.nav-dropdown.is-open .nav-dropdown-button::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-button {
    position: relative;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-icon {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .2s ease;
}

.nav-dropdown.is-open .nav-dropdown-icon {
    transform: translateY(1px) rotate(225deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 220px;
    max-width: min(620px, calc(100vw - 32px));
    max-height: min(420px, calc(100vh - 120px));
    overflow-y: auto;
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: color-mix(in srgb, var(--brand-color, #111) 8%, #ffffff);
    box-shadow: var(--shadow);
    z-index: 60;
}

.nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
}

.nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--nav-text);
    font-size: 13px;
    font-weight: 600;
}

.nav-dropdown-menu a:hover {
    background: var(--soft);
    color: var(--brand-color, #111);
}

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

.mobile-nav-actions {
    display: none !important;
    align-items: center;
    gap: 10px;
}

.nav-panel {
    display: contents;
}

.nav-panel .nav-links {
    grid-column: 2;
    justify-self: center;
}

.nav-panel .nav-actions {
    grid-column: 3;
    justify-self: end;
}

.nav-panel-head,
.nav-close,
.nav-backdrop {
    display: none !important;
}

.nav-toggle {
    display: none !important;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.dashboard-link {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    background: var(--surface);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart-link {
    border: 1px solid var(--brand-color, #111);
    border-radius: 999px;
    padding: 11px 14px;
    font-size: 13px;
    background: var(--brand-color, #111);
    color: var(--brand-contrast, #fff);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 46px;
    box-shadow: 0 12px 26px color-mix(in srgb, var(--brand-color, #111) 24%, transparent);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.cart-link-icon {
    width: 18px;
    height: 18px;
    color: var(--brand-contrast, #fff);
    stroke: var(--brand-contrast, #fff);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex: 0 0 auto;
}

.cart-link:hover {
    opacity: 1;
    filter: brightness(0.97);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px color-mix(in srgb, var(--brand-color, #111) 30%, transparent);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--surface);
    color: var(--brand-color, #111);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--surface);
}

.page-head {
    padding: 34px 0 18px;
}

.breadcrumb {
    color: color-mix(in srgb, var(--store-text) 72%, transparent);
    font-size: 13px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--store-text) 72%, transparent);
}

.store-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 0;
    padding: 38px 0 26px;
}

.store-hero-products-action {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(92%, 620px);
    text-align: center;
}

.store-hero-short-copy {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(18px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

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

.hero-primary-link,
.hero-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.hero-primary-link {
    background: var(--brand-color, #111);
    color: var(--brand-contrast, #fff);
    box-shadow: 0 14px 28px color-mix(in srgb, var(--brand-color, #111) 22%, transparent);
}

.hero-secondary-link {
    border: 1px solid var(--line);
    background: #fff;
}

.hero-primary-link:hover,
.hero-secondary-link:hover,
.product-card button:hover {
    opacity: 0.85;
}

.store-hero-media {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    border-radius: 24px;
    overflow: hidden;
    background: var(--soft);
    box-shadow: var(--shadow);
}

.store-hero-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.hero-fallback {
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 24px;
}

.featured-product {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: 34px;
    align-items: stretch;
    padding: 18px 0 52px;
    scroll-margin-top: 128px;
}

.featured-product-media {
    background: #f3f1ee;
    border-radius: 22px;
    overflow: hidden;
    min-height: 560px;
}

.featured-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-product-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 32px;
    text-align: center;
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
}

.featured-product-panel {
    padding: 12px 0;
}

.featured-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.featured-product-panel h2 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.05em;
    line-height: 0.96;
}

.featured-price {
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
}

.featured-description {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.featured-quantity {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--ink);
}

.featured-quantity-box {
    width: 64px;
    height: 48px;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-weight: 600;
}

.featured-form,
.featured-buy-form {
    margin: 0 0 14px;
}

.product-options {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.product-options label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.product-options span {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-options select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    padding: 0 12px;
    font-size: 14px;
}

.product-options--card {
    gap: 10px;
    margin-bottom: 12px;
}

.featured-add-button,
.featured-buy-button,
.product-card button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: transform .2s ease, opacity .2s ease, filter .2s ease;
}

.featured-add-button,
.featured-buy-button {
    min-height: 54px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.featured-add-button {
    background: #ece8e1;
    color: #222;
}

.featured-buy-button {
    background: #1f1f1f;
    color: var(--brand-contrast, #fff);
}

.featured-add-button:hover,
.featured-buy-button:hover {
    opacity: 1;
    transform: translateY(-1px);
    filter: brightness(0.98);
}

.featured-preview-link,
.product-preview-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.featured-preview-link.featured-buy-button {
    color: var(--brand-contrast, #fff);
    background: #1f1f1f;
    border-color: #1f1f1f;
}

.product-preview-link {
    margin: 0;
    border-color: var(--brand-color, #111);
    background: var(--brand-color, #111);
    color: #fff !important;
    box-shadow: 0 12px 24px color-mix(in srgb, var(--brand-color, #111) 18%, transparent);
}

.product-stock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    width: 100%;
    margin: 0 0 10px;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
}

.product-stock-badge.is-sold-out {
    color: #991b1b;
}

.product-preview-link.is-disabled {
    opacity: 0.72;
    pointer-events: none;
}

.product-preview-link:visited,
.product-preview-link:hover,
.product-preview-link:focus {
    color: #fff !important;
}

.catalog-section {
    padding-bottom: 48px;
    scroll-margin-top: 128px;
}

.catalog-head {
    margin-bottom: 24px;
}

.catalog-head-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.catalog-head h2 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    letter-spacing: -0.04em;
    color: var(--store-text);
}

.category-showcase {
    display: grid;
    gap: 36px;
}

.category-block {
    scroll-margin-top: 128px;
}

.category-block-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
    justify-items: center;
    margin-bottom: 22px;
    padding: 24px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: center;
    color: var(--store-text);
}

.category-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 22px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    color: #111111;
}

.category-block-copy h2,
.category-page-copy h1 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.04em;
    color: inherit;
}

.category-block-copy h2 {
    font-size: 32px;
}

.category-page-copy h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 0.95;
}

.category-block-head img,
.category-page-media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

.category-block-head img {
    max-width: 360px;
}

.category-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    margin-inline: auto;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--brand-color, #111);
    border-radius: 999px;
    background: transparent;
    color: var(--brand-color, #111);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.catalog-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 7px;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.72),
        0 8px 28px rgba(0, 0, 0, 0.48);
    -webkit-text-stroke: 0.25px rgba(0, 0, 0, 0.35);
    transition: opacity .2s ease, transform .2s ease;
}

.catalog-all-link:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.category-more-link:hover {
    background: transparent;
    color: var(--brand-color, #111);
    opacity: 0.72;
}

.category-page-hero {
    margin: 26px 0 34px;
}

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

.product-search {
    width: min(100%, 760px);
    margin: 0 auto 34px;
}

.store-hero + .product-search {
    margin-top: 26px;
}

.product-search-label {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-search-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 54px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.product-search-control input {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
}

.product-search-control input::placeholder {
    color: #9ca3af;
}

.product-search-control button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-color, #111);
    color: var(--brand-contrast, #fff);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.product-search-clear {
    display: table;
    margin: 12px auto 0;
    color: var(--brand-color, #111);
    font-size: 13px;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 48px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: #111111;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
    overflow: hidden;
}

.product-image {
    aspect-ratio: 1 / 1.18;
    background: #f7f7f7;
    width: auto;
    margin: -14px -14px 22px;
    border-radius: 12px 12px 10px 10px;
    overflow: hidden;
}

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

.product-card h3 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.price {
    font-size: 16px;
    font-weight: 700;
}

.product-card button {
    background: var(--brand-color, #111);
    color: var(--brand-contrast, #fff);
    padding: 13px 16px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card button.is-loading {
    opacity: 0.75;
    cursor: wait;
}

.empty-state {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    color: #4b5563;
}

.store-pagination {
    display: flex;
    justify-content: center;
    padding: 0 0 28px;
    overflow-x: auto;
}

.store-pagination nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.store-pagination .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.store-pagination .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.store-pagination .page-link:hover {
    border-color: var(--brand-color, #111);
    color: var(--brand-color, #111);
}

.store-pagination .page-item.active .page-link {
    background: var(--brand-color, #111);
    color: var(--brand-contrast, #fff);
    border-color: var(--brand-color, #111);
}

.store-pagination .page-item.disabled .page-link {
    opacity: 0.45;
    cursor: not-allowed;
}

.store-pagination-nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.store-pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.store-pagination-list li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-pagination-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.store-pagination-link:hover {
    border-color: var(--brand-color, #111);
    color: var(--brand-color, #111);
}

.store-pagination-link.is-active {
    border-color: var(--brand-color, #111);
    background: var(--brand-color, #111);
    color: var(--brand-contrast, #fff);
}

.store-pagination-link.is-disabled,
.store-pagination-link--dots {
    opacity: 0.45;
    cursor: not-allowed;
}

.store-pagination-link--control {
    min-width: 92px;
}

.store-about {
    padding: 56px 0;
    scroll-margin-top: 128px;
}

.store-about-copy {
    width: min(100%, 760px);
    margin: 0 auto;
    text-align: center;
    color: var(--store-text);
}

.store-about-copy span {
    display: block;
    margin-bottom: 10px;
    color: color-mix(in srgb, var(--store-text) 72%, transparent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.store-about-copy h2 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.store-about-copy p {
    margin: 0;
    color: color-mix(in srgb, var(--store-text) 72%, transparent);
    font-size: 15px;
    line-height: 1.8;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.store-about-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 32px auto 0;
    width: min(100%, 860px);
}

.store-about-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 18px auto 0;
    width: min(100%, 860px);
}

.store-about-values article,
.store-about-contact article {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #111111;
}

.store-about-values h3,
.store-about-contact h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.store-about-values p,
.store-about-contact p,
.store-about-contact a {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.store-about-contact a {
    display: inline-flex;
    color: var(--brand-color, #111);
    font-weight: 700;
}

.footer {
    border-top: 1px solid #ececec;
    padding: 34px 0 42px;
    scroll-margin-top: 128px;
    background: #ffffff;
    color: #111111;
}

.footer .shell {
    width: min(1180px, calc(100% - 32px));
}

.store-footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
    gap: 24px;
    align-items: start;
    margin-bottom: 28px;
}

.store-footer-brand {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.store-footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #f7f7f7;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 22px;
    font-weight: 900;
}

.store-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-footer-brand strong,
.store-footer-contact strong {
    display: block;
    color: #111111;
    font-size: 16px;
    font-weight: 900;
}

.store-footer-brand p {
    max-width: 620px;
    margin: 7px 0 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.store-footer-contact {
    display: grid;
    gap: 8px;
    justify-items: start;
    text-align: left;
}

.store-footer-contact a,
.store-footer-contact span {
    color: #374151;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.store-footer-contact a:hover {
    color: #111111;
    opacity: 0.82;
}

.store-footer-contact-item {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.store-footer-contact-item img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    color: #111111;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.social-link svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.social-link .social-icon-fill {
    fill: currentColor;
    stroke: none;
}

.social-link:hover {
    background: var(--brand-color, #111);
    border-color: var(--brand-color, #111);
    color: var(--brand-contrast, #fff);
    opacity: 1;
    transform: translateY(-1px);
}

.store-footer-credit {
    margin: 18px 0 0;
    color: #4b5563;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.store-footer-credit a {
    color: #111111;
    font-weight: 800;
}

.store-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
    transition: transform .2s ease, box-shadow .2s ease;
}

.store-whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.42);
}

.store-whatsapp-float img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.cart-feedback {
    position: fixed;
    right: 22px;
    bottom: 88px;
    background: var(--brand-color, #111);
    color: var(--brand-contrast, #fff);
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(23, 23, 23, 0.18);
    font-size: 13px;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 50;
}

.cart-feedback.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .store-hero,
    .featured-product {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .store-hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .featured-product-media {
        min-height: 420px;
    }

    .store-hero-media {
        width: 100%;
        margin-inline: 0;
        order: 0;
    }

    .featured-product-panel {
        padding: 0;
    }

    .products-grid {
        grid-template-columns: repeat(var(--responsive-product-columns, 2), minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .storefront-page.is-menu-open {
        overflow: hidden;
    }

    .navbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .nav-toggle {
        display: inline-flex !important;
    }

    .mobile-nav-actions {
        display: inline-flex !important;
        margin-left: auto;
    }

    .mobile-cart-link {
        min-height: 46px;
        width: 46px;
        padding: 0;
        box-shadow: none;
        overflow: visible;
    }

    .nav-panel .desktop-cart-link {
        display: none;
    }

    .nav-panel {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 90;
        width: min(84vw, 340px);
        height: 100dvh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 22px;
        padding: 18px;
        border-radius: 0;
        background: color-mix(in srgb, var(--brand-color, #111) 10%, #ffffff);
        box-shadow: 18px 0 42px rgba(15, 23, 42, 0.18);
        overflow-y: auto;
        transform: translateX(-104%);
        transition: transform .24s ease;
        will-change: transform;
    }

    .navbar.is-open .nav-panel {
        transform: translateX(0);
    }

    .nav-panel-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        min-height: 46px;
        padding-bottom: 16px;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.03em;
    }

    .nav-close {
        display: inline-flex !important;
        position: relative;
        width: 42px;
        height: 42px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: #ffffff;
        cursor: pointer;
        flex: 0 0 auto;
    }

    .nav-close span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 17px;
        height: 2px;
        border-radius: 999px;
        background: var(--ink);
    }

    .nav-close span:first-child {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .nav-close span:last-child {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 80;
        display: block !important;
        background: rgba(15, 23, 42, 0.38);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
        cursor: pointer;
    }

    .navbar.is-open .nav-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .navbar.is-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navbar.is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .navbar.is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 14px;
        font-size: 15px;
    }

    .nav-links > a,
    .nav-dropdown-button,
    .nav-dropdown-menu a {
        min-height: 44px;
        align-items: center;
    }

    .nav-dropdown,
    .nav-dropdown-button,
    .nav-dropdown-menu {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        grid-template-columns: 1fr;
        margin-top: 10px;
        max-width: none;
        max-height: 320px;
        padding: 8px 0 0 12px;
        border-radius: 0;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: grid;
    }

    .dashboard-link,
    .nav-panel .cart-link {
        width: 100%;
        justify-content: center;
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .store-hero-media {
        aspect-ratio: auto;
        height: auto;
        min-height: 0;
    }

    .store-hero-media img {
        height: auto;
        object-fit: contain;
        object-position: center;
    }

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

    .featured-product-media {
        min-height: 360px;
    }

    .featured-product,
    .catalog-section,
    .footer {
        scroll-margin-top: 118px;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(100% - 24px, 1180px);
    }

    .store-hero-actions,
    .catalog-head-actions,
    .featured-quantity,
    .nav-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .store-hero-products-action {
        top: 50%;
        left: 50%;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .nav-panel {
        padding: 16px;
        border-radius: 0;
    }

    .dashboard-link,
    .nav-panel .cart-link {
        width: 100%;
        justify-content: center;
    }

    .brand {
        font-size: 24px;
        width: auto;
        min-width: 0;
        flex: 1;
    }

    .store-hero {
        padding-top: 24px;
        gap: 18px;
    }

    .featured-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .store-hero-actions {
        width: 100%;
    }

    .store-hero-media {
        height: auto;
        min-height: 0;
        border-radius: 18px;
    }

    .featured-product {
        gap: 20px;
        padding-bottom: 34px;
    }

    .featured-product-media {
        min-height: 300px;
        border-radius: 18px;
    }

    .featured-product-panel h2 {
        font-size: 34px;
    }

    .hero-primary-link,
    .hero-secondary-link,
    .featured-add-button,
    .featured-buy-button {
        width: 100%;
    }

    .featured-quantity {
        gap: 10px;
    }

    .featured-quantity-box {
        width: 100%;
        max-width: 88px;
    }

    .catalog-head {
        margin-bottom: 18px;
    }

    .catalog-head h2 {
        font-size: 28px;
    }

    .product-search {
        margin-bottom: 26px;
    }

    .product-search-control {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 8px;
        border-radius: 18px;
    }

    .product-search-control input {
        height: 44px;
        text-align: center;
    }

    .product-search-control button {
        width: 100%;
        min-height: 44px;
        border-radius: 14px;
    }

    .products-grid {
        grid-template-columns: repeat(var(--responsive-product-columns, 2), minmax(0, 1fr));
        gap: 18px;
    }

    .store-about-values,
    .store-about-contact {
        grid-template-columns: 1fr;
    }

    .category-page-hero {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .category-block-head {
        grid-template-columns: 1fr;
        padding: 18px 0;
    }

    .category-block-copy h2 {
        font-size: 26px;
    }

    .footer {
        padding-top: 20px;
    }

    .store-whatsapp-float {
        right: 12px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }

    .store-footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }

    .store-footer-contact {
        justify-items: start;
        text-align: left;
    }

    .store-footer-contact-item {
        justify-content: flex-start;
    }

    .cart-feedback {
        right: 12px;
        bottom: 76px;
        max-width: calc(100% - 24px);
    }
}

@media (max-width: 480px) {
    .shell {
        width: calc(100% - 18px);
    }

    .navbar-inner {
        padding: 14px 0 12px;
    }

    .brand {
        gap: 10px;
        font-size: 20px;
    }

    .mobile-cart-link {
        width: 46px;
        justify-content: center;
        padding: 0;
    }

    .mobile-cart-link .cart-badge {
        min-width: 18px;
        height: 18px;
        padding: 0 4px;
        font-size: 10px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .featured-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .store-hero-media {
        min-height: 0;
        border-radius: 14px;
    }

    .featured-product {
        gap: 16px;
        padding-bottom: 28px;
    }

    .featured-product-media {
        min-height: 240px;
        border-radius: 14px;
    }

    .featured-product-panel h2 {
        font-size: 28px;
    }

    .featured-price {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .hero-primary-link,
    .hero-secondary-link,
    .featured-add-button,
    .featured-buy-button {
        min-height: 46px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 11px;
    }

    .featured-quantity-box {
        height: 42px;
        max-width: 72px;
    }

    .catalog-head h2 {
        font-size: 24px;
    }

    .products-grid {
        gap: 14px;
    }

    .product-card h3 {
        font-size: 15px;
        line-height: 1.18;
    }

    .price {
        font-size: 14px;
    }

    .product-preview-link {
        min-height: 42px;
        font-size: 10px;
        letter-spacing: 0.06em;
    }

    .store-pagination {
        justify-content: flex-start;
        padding-bottom: 22px;
    }

    .store-pagination-nav {
        width: 100%;
    }

    .store-pagination-list {
        justify-content: flex-start;
        gap: 5px;
    }

    .store-pagination-link {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        border-radius: 7px;
        font-size: 11px;
    }

    .store-pagination-link--control {
        min-width: 78px;
    }

    .featured-product,
    .catalog-section,
    .footer {
        scroll-margin-top: 108px;
    }
}
