/* EL PALO retail: one page-specific system, independent of the former store layers. */
.store-page {
  --shop-ink: #16100c;
  --shop-muted: #6f655f;
  --shop-orange: #ff8500;
  --shop-gold: #f4c20d;
  --shop-paper: #fffefa;
  --shop-line: #ded9d2;
  --shop-container: min(100% - 64px, 1344px);
  background: var(--shop-paper);
  color: var(--shop-ink);
}
.store-page [hidden] { display: none !important; }
.store-page :is(button, input, select, summary) { font-family: 'Manrope', sans-serif; }
.store-page button { cursor: pointer; }
.store-page button:disabled { opacity: .45; cursor: not-allowed; }
.store-page :is(h1, h2, h3, p) { margin-top: 0; }
.store-page :is(a, button, input, select, summary):focus-visible { outline: 3px solid #a14b00; outline-offset: 3px; box-shadow: 0 0 0 6px var(--shop-paper); }
.store-page :is(.topbar, .footer) :is(a, button):focus-visible { outline-color: var(--shop-gold); box-shadow: 0 0 0 6px var(--shop-ink); }
.store-page :is(.topbar__inner, .hero__inner, .collection__inner, .shopping-guide__inner, .faq__inner, .footer__inner) { width: var(--shop-container); max-width: none; margin-inline: auto; }
.store-page :is(section[id], article[id]) { scroll-margin-top: 100px; }
.store-page .topbar { position: sticky; inset: 0 0 auto; background: var(--shop-ink); backdrop-filter: none; box-shadow: none; border-bottom: 1px solid #ffffff20; }
.store-page .topbar__inner { min-height: 64px; padding: 0; display: flex; gap: 32px; }
.store-page .brand { flex-shrink: 0; gap: 12px; }
.store-page .brand__dot { width: 12px; height: 12px; border-radius: 1px; box-shadow: none; }
.store-page .brand__name { font-size: 17px; letter-spacing: 0; }
.store-page .nav { display: flex; align-items: center; justify-content: center; margin-inline: auto; gap: 28px; }
.store-page .nav__link { display: inline-flex; align-items: center; min-height: 44px; padding: 10px 0; font-size: 13px; font-weight: 600; line-height: 1.4; color: #eee9e2; text-decoration: none; text-transform: none; letter-spacing: 0; background: none; border: 0; border-radius: 0; }
.store-page .nav a:hover { color: var(--shop-gold); }
.store-page .nav__link--active { color: #fff; box-shadow: inset 0 -2px var(--shop-orange); }
.store-page .topbar__actions { order: 3; display: flex; align-items: center; gap: 12px; margin: 0; }
.store-page .topbar__cart { gap: 10px; white-space: nowrap; }
.store-page .topbar__toggle { display: none; position: relative; width: 44px; height: 44px; background: none; border: 1px solid #ffffff50; border-radius: 5px; }
.store-page .topbar__toggle span { position: absolute; left: 11px; right: 11px; height: 2px; top: 20px; background: #fff; transition: transform 160ms ease; }
.store-page .topbar__toggle span:first-child { transform: translateY(-6px); }
.store-page .topbar__toggle span:last-child { transform: translateY(6px); }
.store-page .is-menu-open .topbar__toggle span:first-child { transform: rotate(45deg); }
.store-page .is-menu-open .topbar__toggle span:nth-child(2) { opacity: 0; }
.store-page .is-menu-open .topbar__toggle span:last-child { transform: rotate(-45deg); }
.store-page .hero { padding: 20px 0 24px; background: var(--shop-ink); color: var(--shop-paper); }
.store-page .hero__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.store-page .hero__content { min-width: 0; }
.store-page .hero__title { font-family: 'Archivo Black', sans-serif; font-size: clamp(32px, 3.65vw, 56px); line-height: 1.12; letter-spacing: -.035em; margin: 0; color: var(--shop-paper); }
.store-page .hero__subtitle { margin: 10px 0 0; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.5; color: #e1d9d0; }
.store-page .hero__price { margin: 0; flex-shrink: 0; display: grid; gap: 4px; text-align: right; }
.store-page .hero__price strong { color: var(--shop-gold); font-family: 'Archivo Black', sans-serif; font-size: clamp(30px, 3.4vw, 48px); letter-spacing: -.04em; line-height: 1.15; }
.store-page .hero__price span { color: #e1d9d0; font-size: 14px; }
.store-page .collection { padding: 32px 0 56px; }
.store-page .collection__header { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-bottom: 16px; }
.store-page .section-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(25px, 2.5vw, 36px); font-weight: 400; line-height: 1.16; letter-spacing: -.035em; margin: 0; color: var(--shop-ink); }
.store-page .section-subtitle { font-size: 15px; line-height: 1.7; color: var(--shop-muted); margin: 14px 0 0; max-width: 65ch; }
.store-page .collection__header .section-subtitle { display: none; }
.store-page .collection__meta { color: var(--shop-muted); font-size: 13px; white-space: nowrap; }
.store-page .filter-bar { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.store-page .tabs { display: flex; flex-shrink: 0; border: 1px solid var(--shop-line); border-radius: 6px; overflow: hidden; }
.store-page .tab { border: 0; background: none; color: var(--shop-ink); font-size: 13px; font-weight: 600; min-height: 44px; padding: 10px 24px; border-radius: 0; }
.store-page .tab + .tab { border-left: 1px solid var(--shop-line); }
.store-page .tab.is-active { background: var(--shop-ink); color: #fff; }
.store-page .tab:hover:not(.is-active) { background: #f7f1e4; }
.store-page .tab:focus-visible { outline-offset: -4px; box-shadow: none; }
.store-page .filters { display: grid; grid-template-columns: minmax(160px, 1.3fr) minmax(136px, .8fr) minmax(182px, 1fr); gap: 12px; max-width: 735px; flex: 1; }
.store-page .filter { display: grid; gap: 5px; min-width: 0; }
.store-page .filter > span { font-size: 11px; font-weight: 700; color: var(--shop-muted); }
.store-page .filter :is(input, select) { width: 100%; min-width: 0; height: 44px; border: 1px solid #bdb7b0; border-radius: 6px; background: var(--shop-paper); color: var(--shop-ink); padding: 10px 12px; font-size: 13px; line-height: 1.4; }
.store-page .filter input::placeholder { opacity: 1; color: var(--shop-muted); }
.store-page .catalog-notice { margin: 16px 0 24px; color: var(--shop-muted); font-size: 12px; line-height: 1.6; }
.store-page .catalog-notice a { color: var(--shop-ink); text-underline-offset: 3px; }
.store-page .products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px 24px; }
.store-page .product-card { min-width: 0; display: flex; flex-direction: column; }
.store-page .product-card__media { display: block; width: 100%; padding: 0; border: 0; background: #dedddb; border-radius: 6px; overflow: hidden; }
.store-page .product-card__image { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; transition: transform 220ms ease; }
@media (hover: hover) { .store-page .product-card__media:hover .product-card__image { transform: scale(1.035); } }
.store-page .product-card__body { padding-top: 12px; display: flex; flex: 1; flex-direction: column; }
.store-page .product-card__meta { font-size: 12px; line-height: 1.5; color: var(--shop-muted); margin: 0 0 5px; }
.store-page .product-card__buyline { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin: 0 0 14px; }
.store-page .product-card__title { font-size: 15px; line-height: 1.4; font-weight: 800; margin: 0; }
.store-page .product-card__price { font-size: 16px; font-weight: 800; white-space: nowrap; font-variant-numeric: tabular-nums; }
.store-page .btn { display: inline-flex; justify-content: center; align-items: center; gap: 8px; min-height: 44px; padding: 11px 20px; border: 1px solid transparent; border-radius: 5px; font-size: 14px; font-weight: 750; line-height: 1.5; text-decoration: none; transition: background 150ms ease, border-color 150ms ease; box-shadow: none; }
.store-page .btn--primary { background: var(--shop-orange); color: var(--shop-ink); border-color: var(--shop-orange); }
.store-page .btn--primary:hover:not(:disabled) { background: #ff9a28; border-color: #ff9a28; }
.store-page .btn--ghost { background: transparent; color: var(--shop-ink); border-color: var(--shop-ink); }
.store-page .btn--ghost:hover { background: #f7f1e4; }
.store-page .product-card__body .btn { width: 100%; margin-top: auto; font-size: 13px; font-weight: 650; }
.store-page .catalog-pagination { display: grid; justify-items: center; gap: 12px; padding-top: 40px; }
.store-page .catalog-pagination .btn { min-width: 256px; }
.store-page .catalog-pagination p { margin: 0; color: var(--shop-muted); font-size: 12px; }
.store-page .empty-products { grid-column: 1 / -1; padding: 48px 16px; text-align: center; border-block: 1px solid var(--shop-line); }
.store-page .empty-products h3 { font-size: 22px; margin-bottom: 8px; }
.store-page .empty-products p { color: var(--shop-muted); }
.store-page .shopping-guide { border-top: 1px solid var(--shop-line); padding-block: 56px; }
.store-page .shopping-guide__header { margin-bottom: 32px; }
.store-page .shopping-guide__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.store-page .shopping-guide__card { min-width: 0; padding: 0 28px 0 0; }
.store-page .shopping-guide__card + .shopping-guide__card { border-left: 1px solid var(--shop-line); padding-left: 28px; }
.store-page .shopping-guide__card h3 { font-size: 19px; line-height: 1.4; margin: 0 0 12px; }
.store-page :is(.shopping-guide__card, .shopping-guide__context, .shopping-guide__conditions) p { color: var(--shop-muted); font-size: 13px; line-height: 1.75; margin: 0 0 12px; }
.store-page .shopping-guide__options { color: var(--shop-ink) !important; font-size: 15px !important; font-weight: 800; display: flex; gap: 10px; }
.store-page .shopping-guide__options span { color: var(--shop-line); }
.store-page .shopping-guide__card .link-underline { display: inline-flex; align-items: center; min-height: 44px; font-size: 13px; font-weight: 700; color: #9a4500; text-decoration: underline; text-underline-offset: 4px; }
.store-page .shopping-guide__cart-link { border: 0; background: none; padding: 0; min-height: 44px; color: #9a4500; font-size: 13px; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }
.store-page .payment__badges { display: flex; flex-wrap: wrap; gap: 10px; font-size: 11px; font-weight: 700; color: var(--shop-muted); }
.store-page .shopping-guide__conditions { background: #f7f1e4; padding: 20px 24px; margin-top: 28px; border-radius: 6px; }
.store-page .shopping-guide__conditions > strong { display: block; margin-bottom: 4px; font-size: 13px; }
.store-page .shopping-guide__conditions p { margin: 0 0 8px; }
.store-page .shopping-guide__conditions nav { display: flex; flex-wrap: wrap; gap: 2px 24px; }
.store-page .shopping-guide__conditions a { display: inline-flex; align-items: center; min-height: 32px; font-size: 12px; }
.store-page .shopping-guide__context { display: flex; gap: 48px; padding-top: 28px; margin-top: 28px; border-top: 1px solid var(--shop-line); }
.store-page .shopping-guide__context > div { flex: 1; }
.store-page .shopping-guide__context h3 { font-size: 15px; margin: 0 0 8px; }
.store-page .shopping-guide__context p { margin: 0; }
.store-page .faq { padding: 24px 0 64px; }
.store-page .faq__inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.store-page .faq__items { display: grid; gap: 10px; min-width: 0; }
.store-page .faq details { border: 1px solid var(--shop-line); border-radius: 5px; padding: 0 20px; }
.store-page .faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; min-height: 56px; list-style: none; font-size: 13px; font-weight: 750; cursor: pointer; }
.store-page .faq summary::-webkit-details-marker { display: none; }
.store-page .faq summary::after { content: ''; flex: 0 0 14px; width: 14px; height: 14px; background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat, linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat; }
.store-page .faq details[open] summary::after { background-size: 100% 2px, 0 0; }
.store-page .faq__icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.store-page .faq details[open] .faq__icon { transform: rotate(45deg); }
.store-page .faq details p { margin: 0 0 20px; font-size: 13px; line-height: 1.7; color: var(--shop-muted); }
.store-page .footer { padding: 48px 0; background: var(--shop-ink); color: #cec5bb; }
.store-page .footer__inner { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.store-page .footer__brand { font-family: 'Archivo Black', sans-serif; font-size: 19px; color: var(--shop-gold); margin-bottom: 14px; }
.store-page .footer__heading { font-size: 14px; color: var(--shop-paper); margin: 0 0 18px; }
.store-page .footer__column { min-width: 0; }
.store-page .footer__tagline { margin: 0 0 18px; max-width: 32ch; font-size: 12px; }
.store-page :is(.footer__payments, .footer__copyright) { font-size: 11px; margin: 12px 0; }
.store-page .footer__links { display: grid; gap: 2px; }
.store-page .footer__links a { display: inline-flex; align-items: center; min-height: 36px; width: fit-content; max-width: 100%; font-size: 12px; text-decoration: none; }
.store-page .footer__links a:hover { text-decoration: underline; color: var(--shop-gold); }
.store-page .footer__top-link { display: inline-flex; gap: 4px; align-items: center; min-height: 44px; font-size: 12px; }
.store-page .footer__accordion-trigger { display: none; }
.store-page :is(.modal-overlay, .cart-overlay) { position: fixed; inset: 0; z-index: 2000; background: #16100caa; }
.store-page :is(.modal-overlay, .cart-overlay)[aria-hidden='true'] { display: none; }
.store-page .modal-overlay[aria-hidden='false'] { display: grid; place-items: center; padding: 20px; }
.store-page .modal-content { display: grid; grid-template-columns: 1fr 1fr; width: min(1080px, 100%); max-height: calc(100dvh - 40px); overflow-y: auto; overscroll-behavior: contain; background: var(--shop-paper); border-radius: 8px; }
.store-page .modal-toolbar { grid-column: 1 / -1; position: sticky; top: 0; z-index: 3; display: flex; justify-content: flex-end; padding: 8px 12px; background: var(--shop-paper); border-bottom: 1px solid var(--shop-line); }
.store-page :is(.close-modal, .close-cart) { display: grid; place-items: center; flex-shrink: 0; width: 44px; height: 44px; background: none; border: 1px solid var(--shop-line); border-radius: 5px; font-size: 24px; color: var(--shop-ink); }
.store-page .modal-image-col { display: flex; flex-direction: column; align-self: start; padding: 24px; background: #f3f0eb; min-width: 0; }
.store-page .modal-image-col .modal-image { width: 100%; height: auto; max-height: none; aspect-ratio: 1; object-fit: contain; border-radius: 5px; }
.store-page .modal-image-col .modal-image-note { margin: 14px 0 0; font-size: 11px; }
.store-page .modal-details-col { padding: 24px 32px 32px; min-width: 0; }
.store-page .modal-details-col .section-title { font-size: 32px; }
.store-page .section-eyebrow { color: var(--shop-muted); font-size: 13px; margin: 0 0 8px; }
.store-page .detail-price-row { margin: 16px 0 12px; }
.store-page .detail-price-row .product-card__price { font-size: 26px; }
.store-page .product-card__microcopy { font-size: 11px; color: var(--shop-muted); margin-top: 3px; }
.store-page .modal-details-col > .asset-caption { margin: 0 0 20px; font-size: 11px; }
.store-page .control-label { display: block; font-size: 12px; font-weight: 800; margin-bottom: 8px; }
.store-page .modal-colors { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 18px; }
.store-page .color-opt { width: 44px; height: 44px; padding: 7px; background: none; border: 1px solid transparent; border-radius: 50%; }
.store-page .color-opt span { display: block; width: 100%; height: 100%; border-radius: 50%; border: 1px solid #0002; }
.store-page .color-opt.is-active { border-color: var(--shop-ink); }
.store-page .modal-thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-bottom: 24px; }
.store-page .modal-thumb { padding: 3px; background: none; border: 1px solid var(--shop-line); border-radius: 5px; min-width: 0; min-height: 44px; }
.store-page .modal-thumb.is-active { border: 2px solid var(--shop-ink); padding: 2px; }
.store-page .modal-thumb img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 2px; }
.store-page .modal-purchase { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px 16px; }
.store-page .sizes-grid { display: flex; gap: 8px; }
.store-page .size-opt { min-width: 44px; min-height: 44px; padding: 8px; background: none; border: 1px solid #bdb7b0; border-radius: 4px; font-size: 13px; }
.store-page .size-opt.active { background: var(--shop-ink); color: #fff; border-color: var(--shop-ink); }
.store-page .product-card__size-guide-link { display: inline-flex; align-items: center; min-height: 36px; color: var(--shop-muted); font-size: 11px; }
.store-page .qty-control { display: flex; align-items: center; border: 1px solid #bdb7b0; border-radius: 4px; }
.store-page .qty-control button { width: 38px; height: 44px; padding: 0; border: 0; background: none; font-size: 18px; }
.store-page .qty-control strong { min-width: 26px; text-align: center; font-size: 13px; }
.store-page .modal-purchase > .btn { grid-column: 1 / -1; min-height: 50px; }
.store-page .product-card__checkout-note { grid-column: 1 / -1; margin: -10px 0 0; font-size: 11px; line-height: 1.6; color: var(--shop-muted); }
.store-page .detail-benefits { display: grid; gap: 10px; padding-top: 20px; border-top: 1px solid var(--shop-line); margin-top: 24px; font-size: 11px; color: var(--shop-muted); }
.store-page .detail-benefits strong { color: var(--shop-ink); margin-right: 4px; }
.store-page .cart-overlay[aria-hidden='false'] { display: flex; justify-content: flex-end; }
.store-page .cart-drawer { width: min(100%, 470px); height: 100dvh; display: flex; flex-direction: column; background: var(--shop-paper); }
.store-page .cart-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; border-bottom: 1px solid var(--shop-line); }
.store-page .cart-title { font-size: 22px; font-family: 'Archivo Black', sans-serif; }
.store-page .cart-items { flex: 1; min-height: 100px; overflow-y: auto; overscroll-behavior: contain; padding: 8px 24px; }
.store-page .cart-empty { color: var(--shop-muted); font-size: 14px; padding: 24px 0; }
.store-page .cart-item { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--shop-line); }
.store-page .cart-item__image { width: 82px; height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 4px; }
.store-page .cart-item__title { font-size: 13px; font-weight: 800; line-height: 1.5; margin: 0 0 6px; }
.store-page .cart-item__meta { font-size: 11px; color: var(--shop-muted); }
.store-page .cart-item__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px; margin-top: 10px; }
.store-page .cart-item__price { font-size: 14px; font-weight: 800; }
.store-page .cart-item__controls { display: flex; align-items: center; gap: 3px; }
.store-page .cart-item__controls button { width: 44px; height: 44px; padding: 0; background: none; border: 1px solid var(--shop-line); border-radius: 4px; font-size: 20px; }
.store-page .cart-item__controls strong { width: 24px; text-align: center; font-size: 13px; }
.store-page .cart-footer { padding: 20px 24px; border-top: 1px solid var(--shop-line); background: #f7f1e4; }
.store-page :is(.cart-summary-row, .cart-total) { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.store-page .cart-summary-row { font-size: 12px; color: var(--shop-muted); }
.store-page .cart-total { font-size: 19px; font-weight: 800; margin: 12px 0; }
.store-page :is(.cart-note, .cart-footer .journey-note) { font-size: 11px; line-height: 1.6; color: var(--shop-muted); margin: 8px 0; }
.store-page .cart-footer > .btn { width: 100%; margin-top: 12px; min-height: 50px; }
.store-page .checkout-message { border-left: 3px solid #ad291e; padding: 12px; font-size: 13px; background: #fffefa; }
.store-page .shop-toast { position: fixed; z-index: 3000; top: 18px; left: 50%; transform: translate(-50%, -16px); width: max-content; max-width: calc(100% - 32px); padding: 14px 20px; border-radius: 6px; background: var(--shop-ink); color: #fff; border: 1px solid #ffffff40; font-size: 13px; opacity: 0; pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.store-page .shop-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
@media (max-width: 1100px) {
  .store-page .nav { gap: 16px; }
  .store-page .brand__name { font-size: 15px; }
  .store-page .topbar__inner { gap: 24px; }
  .store-page .filter-bar { flex-wrap: wrap; }
  .store-page .filters { max-width: none; }
  .store-page .product-card__buyline { flex-direction: column; gap: 3px; }
  .store-page .modal-purchase { grid-template-columns: 1fr; gap: 16px; }
  .store-page .qty-control { width: fit-content; }
}
@media (max-width: 860px) {
  .store-page { --shop-container: min(100% - 40px, 1344px); }
  .store-page .topbar__inner { display: grid; grid-template-columns: 1fr auto; min-height: 68px; gap: 0 16px; padding: 10px 0; }
  .store-page .topbar__actions { grid-column: 2; grid-row: 1; }
  .store-page .topbar__toggle { display: block; }
  .store-page .nav { display: none; width: 100%; grid-column: 1 / -1; gap: 4px 20px; margin: 12px 0 0; border-top: 1px solid #ffffff30; padding-top: 10px; }
  .store-page .is-menu-open .nav { display: grid; grid-template-columns: 1fr 1fr; }
  .store-page .nav__link--active { box-shadow: none; color: var(--shop-gold); }
  .store-page .hero__inner { gap: 20px; }
  .store-page .hero__title { max-width: 16ch; font-size: 38px; }
  .store-page .hero__price strong { font-size: 36px; }
  .store-page .hero__price span { font-size: 12px; }
  .store-page .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 16px; }
  .store-page .filter-bar { display: grid; gap: 16px; }
  .store-page .tabs { width: fit-content; }
  .store-page .filters { width: 100%; }
  .store-page .shopping-guide__grid { gap: 20px; }
  .store-page .shopping-guide__card { padding-right: 0; }
  .store-page .shopping-guide__card + .shopping-guide__card { padding-left: 20px; }
  .store-page .faq__inner { gap: 32px; grid-template-columns: 1fr; }
  .store-page .footer__inner { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .store-page .footer__column--brand { grid-column: 1 / -1; }
  .store-page .footer__tagline { max-width: none; }
  .store-page .modal-details-col { padding: 24px; }
}
@media (max-width: 600px) {
  .store-page { --shop-container: calc(100% - 32px); }
  .store-page .brand { gap: 8px; }
  .store-page .brand__name { font-size: 13px; }
  .store-page .brand__dot { width: 9px; height: 9px; }
  .store-page .topbar__inner { gap: 0 10px; }
  .store-page .topbar__cart { font-size: 11px; gap: 6px; }
  .store-page .topbar__cart svg { width: 18px; }
  .store-page .topbar__actions { gap: 8px; }
  .store-page .topbar__toggle { width: 40px; }
  .store-page .hero { padding-block: 28px; }
  .store-page .hero__inner { display: block; }
  .store-page .hero__title { max-width: 16ch; font-size: clamp(30px, 8.7vw, 40px); }
  .store-page .hero__subtitle { margin-top: 10px; font-size: 15px; }
  .store-page .hero__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; text-align: left; margin-top: 18px; }
  .store-page .hero__price strong { font-size: 26px; }
  .store-page .hero__price span { font-size: 11px; }
  .store-page .collection { padding-block: 28px 40px; }
  .store-page .collection__header { gap: 12px; margin-bottom: 20px; align-items: center; }
  .store-page .collection__header .section-title { font-size: 23px; max-width: 16ch; }
  .store-page .collection__meta { font-size: 11px; white-space: normal; text-align: right; }
  .store-page .tabs { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .store-page .tab { padding: 10px 16px; }
  .store-page .filters { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
  .store-page .filter:first-child { grid-column: 1 / -1; }
  .store-page .filter :is(input, select) { font-size: 13px; }
  .store-page .catalog-notice { font-size: 11px; margin-bottom: 20px; }
  .store-page .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 12px; }
  .store-page .product-card__body { padding-top: 10px; }
  .store-page .product-card__meta { font-size: 10px; }
  .store-page .product-card__title { font-size: 13px; }
  .store-page .product-card__price { font-size: 14px; }
  .store-page .product-card__buyline { margin-bottom: 10px; }
  .store-page .product-card__body .btn { padding-inline: 6px; font-size: 12px; }
  .store-page .shopping-guide { padding-block: 36px; }
  .store-page .shopping-guide__grid { grid-template-columns: 1fr; gap: 24px; }
  .store-page .shopping-guide__card + .shopping-guide__card { border-left: 0; border-top: 1px solid var(--shop-line); padding: 24px 0 0; }
  .store-page .shopping-guide__conditions { padding: 18px; }
  .store-page .shopping-guide__conditions nav { display: grid; gap: 0; }
  .store-page .shopping-guide__conditions a { min-height: 44px; }
  .store-page .shopping-guide__context { flex-direction: column; gap: 24px; }
  .store-page .faq { padding: 0 0 40px; }
  .store-page .faq details { padding-inline: 16px; }
  .store-page .faq summary { font-size: 12px; }
  .store-page .footer { padding-block: 36px; }
  .store-page .footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
  .store-page .footer__links a { min-height: 44px; }
  .store-page .modal-overlay[aria-hidden='false'] { padding: 8px; }
  .store-page .modal-content { display: block; max-height: calc(100dvh - 16px); border-radius: 6px; }
  .store-page .modal-image-col { padding: 18px; }
  .store-page .modal-image-col .modal-image { width: min(100%, 300px); margin-inline: auto; }
  .store-page .modal-content .modal-details-col { padding: 24px 20px; }
  .store-page .modal-details-col .section-title { font-size: 28px; }
  .store-page .modal-purchase { grid-template-columns: 1fr; }
  .store-page .cart-header { padding: 16px; }
  .store-page .cart-items { padding: 0 16px; }
  .store-page .cart-footer { padding: 16px; }
  .store-page .cart-item { grid-template-columns: 66px minmax(0, 1fr); gap: 12px; }
  .store-page .cart-item__image { width: 66px; }
}
@media (max-height: 650px) {
  .store-page .cart-drawer { display: block; overflow-y: auto; }
  .store-page .cart-header { position: sticky; top: 0; z-index: 3; background: var(--shop-paper); }
  .store-page .cart-items { overflow: visible; }
}
@media (max-height: 500px) { .store-page .topbar { position: relative; } }
@media (prefers-reduced-motion: reduce) {
  .store-page *, .store-page *::before, .store-page *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
