/* ========================================
   DALET — Storefront (catálogo, produto, listagens)
   Padrão corporateweb — Casa Avance
======================================== */

:root {
  --store-bg: #ffffff;
  --store-border: #e5e7eb;
  --store-border-soft: #f1f5f9;
  --store-muted: #6b7280;
  --store-radius: 12px;
  --store-radius-lg: 16px;
  --catalog-sticky-top: 118px;
  --loading-ink: var(--ink, #111);
  --loading-ring: #e5e7eb;
  --loading-ring-active: var(--ink, #111);
  --primary-color: var(--primary, var(--brand-orange, #fe860f));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.font-display {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

/* ===== Page shells ===== */
.page-catalog .catalog,
.page-product .product-detail,
.page-product .product-related,
.page-product .about-choose,
.page-brands .brands-list,
.page-departments .dept-list,
.error-page {
  background: var(--store-bg);
}

.page-catalog .catalog,
.page-brands .brands-list,
.page-departments .dept-list,
.page-pricelist .store-page,
.page-about .store-page--about,
.page-contact .store-page--contact,
.page-faq .store-page--faq {
  padding: 0 0 40px;
}

.store-page > .container,
.store-page__shell {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: var(--site-gutter, 1rem);
}

.page-about .store-page__shell,
.page-contact .store-page__shell,
.page-faq .store-page__shell,
.page-brands .brands-list__shell {
  padding-top: 1.5rem;
}

.page-contact .store-page__shell {
  padding-top: 1.75rem;
}

.page-catalog .catalog > .container {
  padding-top: 16px;
}

.page-catalog .catalog > .catalog-home-card-banner + .container,
.page-catalog .catalog > .catalog-page-banner-slider + .container,
.page-catalog .catalog > .catalog-home-card-banner + .mx-auto.max-w-7xl,
.page-catalog .catalog > .catalog-page-banner-slider + .mx-auto.max-w-7xl {
  padding-top: 1.5rem;
}

.page-pricelist .store-page {
  background: var(--store-bg);
}

.page-product .product-detail {
  padding-top: 0;
  padding-bottom: 0;
}

.catalog__sep {
  color: #cbd5e1;
  margin: 0 0.35rem;
}

/* ===== Catalog ===== */
.catalog__breadcrumb {
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--store-muted);
}

.catalog__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.catalog__breadcrumb a:hover {
  color: var(--primary-color);
}

.catalog__header {
  margin-bottom: 18px;
}

.catalog__title {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  color: var(--primary-color);
}

.catalog__summary {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.35;
  color: var(--store-muted);
  white-space: nowrap;
}

.catalog-page-head__row {
  align-items: center;
}

.catalog-page-head__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
  text-align: right;
}

.catalog-page-head__aside .catalog-page-head__actions:not([hidden]) {
  display: flex;
}

@media (max-width: 767px) {
  .catalog-page-head__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .catalog-page-head__aside {
    align-items: flex-start;
    margin-left: 0;
    width: 100%;
    text-align: left;
  }

  .catalog__summary {
    white-space: normal;
  }
}

.catalog__shop {
  position: relative;
}

.catalog__toolbar {
  margin-bottom: 18px;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  overflow: visible;
  --catalog-toolbar-pad-x: 12px;
}

.catalog__toolbar-subcats {
  padding: 10px var(--catalog-toolbar-pad-x);
  margin-bottom: 0;
  background: #fff;
  border-radius: 0.75rem 0.75rem 0 0;
}

.catalog__toolbar-subcats:not([hidden]) {
  border-bottom: 1px solid var(--border, #e5e7eb);
}

.catalog--departamento .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])),
.catalog--categoria .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])),
.catalog--categorias .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])),
.catalog--produtos .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])) {
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 0.75rem;
  overflow: hidden;
}

.catalog--departamento .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])) .catalog__toolbar-subcats,
.catalog--categoria .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])) .catalog__toolbar-subcats,
.catalog--categorias .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])) .catalog__toolbar-subcats,
.catalog--produtos .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])) .catalog__toolbar-subcats {
  border-radius: 0;
}

.catalog--departamento .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])) .catalog__bar-inner,
.catalog--categoria .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])) .catalog__bar-inner,
.catalog--categorias .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])) .catalog__bar-inner,
.catalog--produtos .catalog__toolbar:has(.catalog__toolbar-subcats:not([hidden])) .catalog__bar-inner {
  border: 0;
  border-radius: 0;
}

.catalog__toolbar-subcats[hidden] {
  display: none;
}

.catalog__bar-sentinel {
  height: 1px;
}

.catalog__bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 0;
  padding: 8px var(--catalog-toolbar-pad-x);
  border: 0;
  border-radius: 0 0 0.75rem 0.75rem;
  background: #fff;
  overflow: visible;
}

.catalog__toolbar:not(:has(.catalog__toolbar-subcats:not([hidden]))) .catalog__bar-inner {
  border-radius: 0.75rem;
}

.catalog--departamento .catalog__bar-inner,
.catalog--categoria .catalog__bar-inner,
.catalog--categorias .catalog__bar-inner,
.catalog--produtos .catalog__bar-inner,
.catalog--busca .catalog__bar-inner,
.catalog--marca .catalog__bar-inner {
  border: 1px solid var(--border, #e5e7eb);
}

.catalog__bar-inner.is-pinned {
  position: fixed;
  top: var(--catalog-sticky-top, 118px);
  left: 0;
  right: 0;
  z-index: 40;
  margin: 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.catalog--departamento .catalog__bar-inner.is-pinned,
.catalog--categoria .catalog__bar-inner.is-pinned,
.catalog--categorias .catalog__bar-inner.is-pinned,
.catalog--produtos .catalog__bar-inner.is-pinned,
.catalog--busca .catalog__bar-inner.is-pinned,
.catalog--marca .catalog__bar-inner.is-pinned {
  border-bottom: 1px solid var(--border, #e5e7eb);
}

.catalog__bar-inner.has-sort-open {
  z-index: 1200;
}

.catalog__bar-inner.is-pinned.has-sort-open {
  z-index: 1200;
}

.catalog-filter-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--ink, #111);
  border-radius: 999px;
  background: var(--ink, #111);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.catalog-filter-open:hover,
.catalog-filter-open:focus-visible {
  background: var(--primary, #f97316);
  border-color: var(--primary, #f97316);
  color: #fff;
}

.catalog-filter-open__ico {
  display: grid;
  place-items: center;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: currentColor;
}

.catalog-filter-open__ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.catalog-filter-open__badge {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--primary, #f97316);
  color: var(--primary-foreground, #111);
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
}

.catalog__active {
  flex: 1 1 auto;
  min-width: 0;
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.catalog-sort.is-open {
  z-index: 1300;
}

.catalog-sort__control {
  position: relative;
  z-index: 1;
}

.catalog-sort__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.catalog-sort.is-open .catalog-sort__chev,
.catalog-sort__trigger[aria-expanded="true"] .catalog-sort__chev {
  color: #111;
}

.catalog-sort__value {
  min-width: 0;
}

.catalog-sort__chev {
  display: inline-flex;
  flex-shrink: 0;
  color: #64748b;
  transition: transform 0.2s ease;
}

.catalog-sort.is-open .catalog-sort__chev {
  transform: rotate(180deg);
}

.catalog-sort__menu {
  position: fixed;
  z-index: 9999;
  min-width: 220px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  isolation: isolate;
}

.catalog-sort__menu[hidden] {
  display: none !important;
}

.catalog-sort.is-open .catalog-sort__menu {
  display: block;
}

.catalog-sort__option-wrap {
  margin: 0;
  padding: 0;
}

.catalog-sort__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.catalog-sort__option-text {
  flex: 1 1 auto;
  min-width: 0;
}

.catalog-sort__option-check {
  display: inline-flex;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: #111;
  opacity: 0;
  transition: opacity 0.12s ease;
}

.catalog-sort__option-check svg {
  display: block;
}

.catalog-sort__option:hover {
  background: #f3f4f6;
  color: var(--text-dark);
}

.catalog-sort__option:hover .catalog-sort__option-check {
  color: #111;
}

.catalog-sort__option.is-selected,
.catalog-sort__option.is-selected:hover {
  background: var(--brand-orange, #fe860f);
  color: #111;
}

.catalog-sort__option.is-selected .catalog-sort__option-check {
  opacity: 1;
}

/* Dropdown aberto — cards não devem sobrepor o menu de ordenação */
.catalog__toolbar:has(.catalog__bar-inner.has-sort-open) ~ .catalog-grid .home-card-product__wishlist,
.catalog__toolbar:has(.catalog__bar-inner.has-sort-open) ~ .catalog-grid .wishlist-btn,
.catalog__toolbar:has(.catalog__bar-inner.has-sort-open) ~ .catalog-grid .prod-card [data-add-favorite] {
  z-index: 0 !important;
  pointer-events: none;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}

.catalog-grid .home-card-product {
  flex: none;
  width: 100%;
  min-width: 0;
  scroll-snap-align: unset;
}

/* ===== Subcategory navigation (links, not filters) ===== */
.catalog-subcats {
  margin: 0 0 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.catalog-subcats::-webkit-scrollbar {
  display: none;
}

.catalog-subcats__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 2px 0 4px;
}

.catalog-subcats__link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid var(--store-border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.catalog-subcats__link:hover {
  border-color: var(--brand-orange, #fe860f);
  color: var(--primary-color);
  text-decoration: none;
}

.catalog-subcats__link.is-active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 14px rgba(17, 61, 200, 0.22);
}

.catalog-subcats__filter {
  cursor: pointer;
  font-family: inherit;
  appearance: none;
}

.catalog-subcats--loading {
  pointer-events: none;
}

.catalog-subcats__list--skeleton {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 2px 0 4px;
}

.skeleton-catalog-subcat-pill {
  flex: 0 0 auto;
  height: 36px;
  min-height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.65);
}

@media (min-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 16px;
  }
}

@media (min-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px 14px;
  }
}

.catalog__empty {
  grid-column: 1 / -1;
  padding: 48px 16px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--store-muted);
}

.catalog-feed-more {
  margin-top: 20px;
  text-align: center;
}

.catalog-feed-more__count {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  color: var(--store-muted);
}

.catalog-feed-more__loader {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--loading-ink);
}

.catalog-feed-more__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--loading-ring);
  border-top-color: var(--loading-ring-active);
  border-radius: 50%;
  animation: store-spin 0.7s linear infinite;
}

@keyframes store-spin {
  to { transform: rotate(360deg); }
}

.catalog-pagination__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.catalog-pagination__btn,
.catalog-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--store-border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.catalog-pagination__page.is-current {
  border-color: var(--brand-orange, #fe860f);
  background: var(--brand-orange, #fe860f);
  color: #111;
  cursor: default;
}

.catalog-pagination__btn:hover,
.catalog-pagination__page:hover {
  border-color: var(--brand-orange, #fe860f);
  color: var(--brand-orange, #fe860f);
  text-decoration: none;
}

.catalog-pagination__page.is-current:hover {
  border-color: var(--brand-orange, #fe860f);
  background: var(--brand-orange, #fe860f);
  color: #111;
}

.catalog-pagination__btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.catalog-pagination__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.catalog-pagination__ellipsis {
  padding: 0 4px;
  color: #94a3b8;
}

.catalog-pagination-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Active filter chips */
.catalog-active-box {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.catalog-active-box__label {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--store-muted);
}

.catalog-active-box__scroller {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
}

.catalog-active-box__track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-active-box__track::-webkit-scrollbar {
  display: none;
}

.catalog__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 7px 12px 7px 14px;
  border: 1px solid var(--secondary, #f4f4f4);
  border-radius: 999px;
  background: var(--card, #fff);
  color: var(--foreground, #111);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    transform 0.12s ease;
}

.catalog__chip:hover,
.catalog__chip:focus-visible {
  background: var(--secondary, #f4f4f4);
  border-color: var(--secondary, #f4f4f4);
  color: var(--primary);
}

.catalog__chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: color-mix(in oklab, var(--foreground, #111) 8%, transparent);
  color: currentColor;
  opacity: 1;
  transition: background 0.18s ease, color 0.18s ease;
}

.catalog__chip:hover .catalog__chip-remove,
.catalog__chip:focus-visible .catalog__chip-remove {
  background: color-mix(in oklab, var(--primary) 14%, transparent);
  color: var(--primary);
}

.catalog__chip-remove svg,
.catalog__chip-remove-icon {
  display: block;
  width: 12px;
  height: 12px;
}

/* Filter sidebar */
.sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 1040;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.sheet-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.catalog-filters-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  width: min(400px, 100vw);
  height: 100%;
  height: 100dvh;
  background: #fff;
  box-shadow: -12px 0 40px rgba(17, 61, 200, 0.12);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.catalog-filters-sidebar.is-open {
  transform: translateX(0);
}

.catalog-filters-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--store-border-soft);
}

.catalog-filters-sidebar__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.catalog-filters-sidebar__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--store-border);
  border-radius: 50%;
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.catalog-filters-sidebar__close:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: var(--primary-color);
}

.catalog-filters-sidebar__close svg {
  display: block;
  width: 18px;
  height: 18px;
}

.catalog-filters-sidebar__body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 6px 18px 16px;
  scroll-padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.catalog-filters-sidebar__body::-webkit-scrollbar {
  width: 6px;
}

.catalog-filters-sidebar__body::-webkit-scrollbar-track {
  background: transparent;
}

.catalog-filters-sidebar__body::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.catalog-filters-sidebar__body::-webkit-scrollbar-thumb:hover {
  background-color: #94a3b8;
}

.catalog-filters-sidebar__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex-shrink: 0;
  padding: 12px 18px max(12px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--store-border-soft);
  background: #fff;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.06);
}

.catalog-filters-sidebar__btn {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.12s ease;
}

.catalog-filters-sidebar__btn:active {
  transform: scale(0.98);
}

.catalog-filters-sidebar__btn--secondary {
  background: #f3f4f6;
  color: var(--text-dark);
}

.catalog-filters-sidebar__btn--secondary:hover {
  background: #e5e7eb;
}

.catalog-filters-sidebar__btn--primary {
  background: var(--ink, #111);
  color: #fff;
}

.catalog-filters-sidebar__btn--primary:hover {
  background: color-mix(in oklab, var(--ink, #111) 88%, #fff);
}

/* Espaçamento entre grupos do sidebar de filtros */
.catalog-filters-sidebar__body > .catalog-filter-group + .catalog-filter-group {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--store-border-soft);
}

.catalog-filters-sidebar__body > .catalog-filter-group[hidden] + .catalog-filter-group {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

#catalog-filter-brands ~ #catalog-filter-characteristics .catalog-filter-group:first-child,
#catalog-filter-brands ~ #catalog-filter-characteristics .catalog-filter-group + .catalog-filter-group,
#catalog-filter-brands ~ #catalog-filter-price {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--store-border-soft);
}

.catalog-filter-group__label {
  margin: 0 0 8px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.catalog-filter-group__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.catalog-check__text {
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8125rem;
  font-weight: 600;
}

.catalog-price-range {
  padding: 2px 0 4px;
}

.catalog-price-range__value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 2px solid var(--border, var(--store-border));
  border-radius: 12px;
  background: #fff;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.catalog-price-range__prefix {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--store-muted);
}

.catalog-price-range__value strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.catalog-price-range__track {
  position: relative;
  height: 40px;
  padding: 0 2px;
}

.catalog-price-range__track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--border, var(--store-border)) 75%, #fff);
}

.catalog-price-range__fill {
  position: absolute;
  left: 0;
  top: 50%;
  height: 4px;
  margin-top: -2px;
  border-radius: 999px;
  background: var(--brand-orange, #fe860f);
  pointer-events: none;
  width: 100%;
}

.catalog-price-range__input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0;
  background: none;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
}

.catalog-price-range__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--brand-orange, #fe860f);
  box-shadow: 0 2px 8px color-mix(in oklab, var(--brand-orange, #fe860f) 42%, transparent);
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.catalog-price-range__input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--brand-orange, #fe860f);
  box-shadow: 0 2px 8px color-mix(in oklab, var(--brand-orange, #fe860f) 42%, transparent);
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.catalog-price-range__input:hover::-webkit-slider-thumb,
.catalog-price-range__input:focus-visible::-webkit-slider-thumb {
  background: color-mix(in oklab, var(--brand-orange, #fe860f) 88%, black);
  box-shadow: 0 3px 12px color-mix(in oklab, var(--brand-orange, #fe860f) 50%, transparent);
}

.catalog-price-range__input:hover::-moz-range-thumb,
.catalog-price-range__input:focus-visible::-moz-range-thumb {
  background: color-mix(in oklab, var(--brand-orange, #fe860f) 88%, black);
  box-shadow: 0 3px 12px color-mix(in oklab, var(--brand-orange, #fe860f) 50%, transparent);
}

.catalog-price-range__input::-webkit-slider-runnable-track,
.catalog-price-range__input::-moz-range-track {
  height: 4px;
  background: transparent;
}

.catalog-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin: 0;
  padding: 5px 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.12s ease;
}

.catalog-check:hover {
  background: #f8fafc;
}

.catalog-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.catalog-check:has(input:focus-visible) {
  outline: 2px solid var(--brand-orange, #fe860f);
  outline-offset: 1px;
}

.catalog-check__box {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border, #d1d5db);
  border-radius: 5px;
  background: #fff;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.catalog-check:hover .catalog-check__box {
  border-color: #94a3b8;
}

.catalog-check:has(input:checked) .catalog-check__box {
  border-color: var(--brand-orange, #fe860f);
  background: var(--brand-orange, #fe860f);
  box-shadow: none;
}

.catalog-check:has(input:checked) .catalog-check__box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 5px;
  height: 9px;
  margin-left: -3px;
  margin-top: -5px;
  border: 2px solid var(--ink, #111);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.catalog-sidebar-active {
  margin-bottom: 4px;
  padding: 16px;
  border: 1px solid var(--store-border-soft);
  border-radius: 12px;
  background: #f8fafc;
}

.catalog-sidebar-active__label {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--store-muted);
}

.catalog-sidebar-active__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

body.catalog-filters-open {
  overflow: hidden;
}

/* ===== Product grid card ===== */
.product-card--grid {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card--grid:hover {
  border-color: var(--brand-orange, #fe860f);
  box-shadow: 0 8px 22px rgba(248, 200, 28, 0.16);
  transform: translateY(-2px);
}

.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 14px;
  background: #fff;
}

.product-card__media img,
.product-card__media .lazy-img__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-card__tags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
}

.tag.tag--promo {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--brand-orange, #fe860f);
  color: #111;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 4px;
  padding: 12px 14px 14px;
}

.product-card__brand {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--store-muted);
}

.product-card__name {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}

.product-card__old {
  font-size: 0.75rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.product-card__now {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--primary-color);
}

.product-card__now--consult {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.product-card__ref {
  font-size: 0.6875rem;
  color: var(--store-muted);
}

.product-card__btn {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding: 10px 12px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}

.product-card__btn:hover {
  background: #1ebe57;
  color: #fff;
}

@media (max-width: 767.98px) {
  .product-card__btn {
    display: none !important;
  }
}

/* ===== Product detail ===== */
.product-detail__breadcrumb {
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: var(--store-muted);
}

.product-detail__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.product-detail__breadcrumb a:hover {
  color: var(--primary-color);
}

.product-detail__grid,
.product-detail__layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

@media (min-width: 768px) {
  .product-detail__grid,
  .product-detail__layout {
    gap: 1.75rem;
  }
}

@media (min-width: 992px) {
  .product-detail__grid,
  .product-detail__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
  }

  .product-detail__layout--no-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-product .product-detail__info {
    position: sticky;
    top: calc(var(--header-height-slim, 72px) + 20px);
    align-self: start;
    max-width: 100%;
  }
}

@media (min-width: 1280px) {
  .product-detail__grid,
  .product-detail__layout {
    gap: 2.5rem;
  }
}

.product-detail__main {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  overflow: hidden;
  cursor: zoom-in;
}

.product-detail__main-photo {
  position: relative;
  display: block;
  width: 100%;
  line-height: 0;
}

.product-detail__main-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
}

.product-detail__main-img--full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: opacity;
}

.product-detail__main-photo.is-full-ready .product-detail__main-img--full {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .product-detail__main-img--full {
    transition: none;
  }
}

.product-detail__gallery-brand {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 148px;
  max-height: 60px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff;
  border: 0;
  box-shadow: none;
  transition: opacity 0.15s ease;
}

.product-detail__gallery-brand:hover {
  opacity: 0.92;
}

.product-detail__gallery-brand-logo {
  display: block;
  max-width: 128px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-detail__thumbs {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.product-detail__thumbs--slots-2 { grid-template-columns: repeat(2, 1fr); }
.product-detail__thumbs--slots-3 { grid-template-columns: repeat(3, 1fr); }
.product-detail__thumbs--slots-4 { grid-template-columns: repeat(4, 1fr); }
.product-detail__thumbs--slots-5 { grid-template-columns: repeat(5, 1fr); }

.product-detail__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.product-detail__thumb.is-active {
  border-color: var(--primary-color);
}

.product-detail__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail__thumb--more {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f8fafc;
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.product-detail__thumb--more:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: var(--primary-color);
}

.product-detail__brand {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.product-detail__title {
  margin: 0 0 18px;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  line-height: 1.2;
  color: var(--text-dark);
}

.product-detail__buy {
  margin-bottom: 20px;
}

.product-detail__purchase {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.product-detail__price-box {
  flex: 1 1 180px;
  padding: 16px 18px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #f8fafc;
}

.product-detail__price-box--consult {
  background: #eef2ff;
  border-color: #dbeafe;
}

.product-detail__price-old {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.product-detail__price {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.product-detail__price--consult {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
}

.product-detail__price-note {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--store-muted);
}

.product-detail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: var(--store-radius);
  background: #25d366;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.product-detail__cta:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
}

.product-detail__legal {
  max-width: 42rem;
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--store-muted);
}

.product-detail__legal-line {
  display: block;
}

.product-detail__legal-line + .product-detail__legal-line {
  margin-top: 0.1em;
}

.product-detail__legal-section {
  padding: 0.625rem 0;
  border-top: 1px solid var(--border, #e5e7eb);
  border-bottom: 1px solid var(--border, #e5e7eb);
}

.product-detail__legal-section + .product-detail__info-footer {
  border-top: 0;
  margin-top: 0;
  padding-top: 0.625rem;
}

.product-detail__desc {
  margin-top: 18px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.product-detail__panels {
  margin-top: 18px;
}

.product-panel {
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
  overflow: hidden;
}

.product-panel + .product-panel {
  margin-top: 10px;
}

.product-panel__head {
  padding: 14px 16px;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none;
}

.product-panel__head::-webkit-details-marker {
  display: none;
}

.product-panel__body {
  padding: 0 16px 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.product-panel__list {
  margin: 0;
  padding-left: 18px;
}

.product-panel__link {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.product-panel__link:hover {
  text-decoration: underline;
}

.product-share {
  margin-top: 16px;
}

.product-share__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--store-muted);
}

.product-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--store-border);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.product-share__btn:hover {
  border-color: var(--primary-color);
  transform: translateY(-1px);
}

.product-share__feedback {
  margin: 8px 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Lightbox — fullscreen branco */
.product-lightbox[hidden] {
  display: none !important;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #fff;
}

.product-lightbox__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 16px 24px;
  background: #fff;
}

.product-lightbox__meta {
  position: relative;
  flex: 0 0 auto;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0 12px;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  text-align: left;
}

.product-lightbox__meta-text {
  flex: 1 1 auto;
  min-width: 0;
}

.product-lightbox__name {
  margin: 0;
  font-size: clamp(0.9375rem, 2.4vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.35;
  color: #0f172a;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-lightbox__sku {
  margin: 4px 0 0;
  font-size: 0.8125rem;
  line-height: 1.3;
  color: #64748b;
  font-variant-numeric: tabular-nums;
}

.product-lightbox__close {
  position: relative;
  top: auto;
  right: auto;
  flex: 0 0 auto;
  z-index: 1;
}

.product-lightbox__stage {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 72rem);
  min-height: 0;
  margin: 0 auto;
}

.product-lightbox__viewport {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  max-height: calc(100vh - 120px);
  overflow: hidden;
  touch-action: none;
  cursor: zoom-in;
}

.product-lightbox__dialog:not(.product-lightbox__dialog--single) .product-lightbox__viewport {
  cursor: grab;
}

.product-lightbox__stage.is-zoomed .product-lightbox__viewport {
  cursor: zoom-out;
}

.product-lightbox__stage.is-panning .product-lightbox__viewport,
.product-lightbox__stage.is-swiping .product-lightbox__viewport {
  cursor: grabbing;
}

.product-lightbox__loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.product-lightbox__loader::after {
  content: '';
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--loading-ring);
  border-top-color: var(--loading-ring-active);
  border-radius: 50%;
  animation: product-gallery-spin 0.65s linear infinite;
}

.product-lightbox__stage.is-loading .product-lightbox__loader {
  opacity: 1;
  visibility: visible;
}

.product-lightbox__stage.is-loading .product-lightbox__viewport {
  opacity: 0;
}

.product-lightbox__stage.is-loading .product-lightbox__img {
  opacity: 0;
}

@keyframes product-gallery-spin {
  to {
    transform: rotate(360deg);
  }
}

.product-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 172px);
  margin: 0 auto;
  object-fit: contain;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center center;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.18s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}

.product-lightbox__stage.is-panning .product-lightbox__img,
.product-lightbox__stage.is-swiping .product-lightbox__img {
  transition: transform 0s;
}

.product-lightbox__nav {
  position: fixed;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #eef0f4;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.product-lightbox__nav:hover {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.product-lightbox__nav--prev { left: 12px; }
.product-lightbox__nav--next { right: 12px; }

.product-lightbox__counter {
  margin-top: 12px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.06em;
  color: var(--store-muted);
}

.product-lightbox__thumbs {
  display: flex;
  gap: 8px;
  width: min(100%, 72rem);
  margin-top: 16px;
  padding: 4px 2px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-lightbox__thumbs::-webkit-scrollbar {
  display: none;
}

.product-lightbox__thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.product-lightbox__thumb.is-active {
  border-color: var(--primary-color);
}

.product-lightbox__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.product-lightbox-open {
  overflow: hidden;
}

/* Related products — mesmo padrão da home (home-products-section) */
.page-product .product-related {
  margin-top: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--store-border-soft, #eef0f4);
  background: var(--store-bg);
}

@media (min-width: 768px) {
  .page-product .product-related {
    margin-top: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.page-product .product-related .home-section-head {
  margin-bottom: 1.5rem;
}

.page-product .product-related .home-products-carousel {
  overflow: hidden;
}

.nav-arrow:hover {
  border-color: var(--primary-color);
  background: #eef2ff;
}

.carousel--products {
  overflow: hidden;
}

.carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
  will-change: transform;
  padding: 4px 2px 12px;
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

.carousel__track .product-card {
  flex: 0 0 220px;
  width: 220px;
}

.nav-arrow::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

/* Seguimento block */
.about-choose {
  padding: 48px 0;
  background: #f8fafc;
}

.about-choose__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-choose__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
  }
}

.about-choose__photo {
  display: block;
  width: 100%;
  border-radius: var(--store-radius-lg);
  object-fit: cover;
}

.about-choose__eyebrow {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--store-muted);
}

.about-choose__title {
  margin: 0 0 18px;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.about-choose__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.about-choose__menu a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--store-border);
  border-radius: 10px;
  background: #fff;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.about-choose__menu a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: #eef2ff;
}

.about-choose__search {
  margin-top: 16px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.about-choose__search:hover {
  background: var(--primary-dark);
}

/* ===== Brands list ===== */
.page-brands .brands-list {
  background: var(--store-bg);
}

.page-departments .dept-list {
  padding-top: 1.75rem;
  padding-bottom: 2.5rem;
}

.page-departments .dept-list__shell {
  padding-top: 0;
}

.page-departments .dept-list__breadcrumb,
.page-departments .dept-list .catalog-page-breadcrumb {
  margin: 0 0 1.5rem;
}

.page-departments .dept-list__page-head {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .page-departments .dept-list__page-head {
    margin-bottom: 2.5rem;
  }
}

.brands-list__breadcrumb,
.dept-list__breadcrumb {
  margin-bottom: 16px;
  font-size: 0.8125rem;
  color: var(--store-muted);
}

.brands-list__breadcrumb a,
.dept-list__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.brands-list__breadcrumb a:hover,
.dept-list__breadcrumb a:hover {
  color: var(--brand-orange, #fe860f);
}

.brands-list__header,
.dept-list__header {
  margin-bottom: 22px;
  max-width: 40rem;
}

.brands-list__title,
.dept-list__title {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.page-brands .brands-list__title.font-display,
.page-departments .dept-list__title.font-display {
  color: var(--text-dark);
}

.brands-list__count,
.dept-list__count {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--store-muted);
}

.brands-list__toolbar {
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.brands-list__alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0;
}

.brands-list__alpha-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--store-border);
  border-radius: 8px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.brands-list__alpha-btn.is-active,
.brands-list__alpha-btn:hover:not(.is-disabled) {
  border-color: var(--brand-orange, #fe860f);
  background: var(--brand-orange, #fe860f);
  color: #111;
}

.brands-list__alpha-btn.is-disabled {
  opacity: 0.35;
  cursor: default;
}

/* Mobile — lista telefônica (agrupada por letra + índice lateral) */
@media (max-width: 767px) {
  .page-brands .brands-list__toolbar {
    display: none;
  }

  .brands-list__mobile {
    display: none;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
  }

  .page-brands .brands-list__mobile:not([hidden]) {
    display: flex;
  }

  .page-brands #brands-list-mobile:not([hidden]) ~ #brands-list-grid {
    display: none !important;
  }

  .brands-list__phone {
    flex: 1 1 auto;
    min-width: 0;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  }

  .brands-list__section-letter {
    position: sticky;
    top: calc(var(--header-height-slim, 72px) + 0px);
    z-index: 2;
    margin: 0;
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: color-mix(in srgb, var(--store-bg) 92%, #fff);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--store-border);
  }

  .brands-list__phone-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--store-border-soft);
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: background 0.15s ease;
  }

  .brands-list__phone-row:last-child {
    border-bottom: 0;
  }

  .brands-list__phone-row:active {
    background: #f8fafc;
  }

  .brands-list__phone-thumb {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--store-border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
  }

  .brands-list__phone-thumb img {
    max-width: 88%;
    max-height: 88%;
    object-fit: contain;
  }

  .brands-list__phone-initial {
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    color: var(--brand-orange, #fe860f);
    padding: 2px 4px;
    word-break: break-word;
  }

  .brands-list__phone-meta {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brands-list__phone-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brands-list__phone-count {
    display: block;
    margin-top: 2px;
    font-size: 0.75rem;
    color: var(--store-muted);
  }

  .brands-list__index {
    display: none;
    position: sticky;
    top: calc(var(--header-height-slim, 72px) + 8px);
    flex: 0 0 30px;
    z-index: 5;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    max-height: calc(100vh - var(--header-height-slim, 72px) - 96px);
    padding: 8px 4px;
    border: 1px solid var(--store-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .page-brands #brands-list-index:not([hidden]) {
    display: flex;
  }

  .brands-list__index::-webkit-scrollbar {
    display: none;
  }

  .brands-list__index-btn {
    border: 0;
    background: transparent;
    color: #cbd5e1;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.1;
    padding: 3px 6px;
    min-width: 22px;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, opacity 0.16s ease;
  }

  .brands-list__index-btn.is-passed {
    color: color-mix(in srgb, var(--brand-orange, #fe860f) 72%, #64748b);
    font-weight: 800;
  }

  .brands-list__index-btn.is-active {
    background: var(--brand-orange, #fe860f);
    color: #111;
    font-weight: 800;
    transform: scale(1.12);
    box-shadow: 0 2px 8px rgba(254, 134, 15, 0.35);
  }

  .brands-list__index-btn:active {
    transform: scale(1.05);
  }
}

.brands-list__grid,
.dept-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 768px) {
  .brands-list__grid,
  .dept-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1200px) {
  .brands-list__grid,
  .dept-list__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.brand-grid-card,
.dept-grid-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.brand-grid-card:hover,
.dept-grid-card:hover {
  border-color: var(--brand-orange, #fe860f);
  box-shadow: 0 8px 22px rgba(248, 200, 28, 0.14);
  transform: translateY(-2px);
  color: inherit;
}

.brand-grid-card__media,
.dept-grid-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  padding: 18px;
  background: #f8fafc;
}

.brand-grid-card__media {
  padding: 22px 20px;
  min-height: 112px;
  background: #fff;
}

.dept-grid-card__media {
  padding: 22px 20px;
  min-height: 112px;
  background: #fff;
}

.brand-grid-card__media--text {
  background: #fff;
}

.brand-grid-card__media img,
.dept-grid-card__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-grid-card__media img {
  max-width: 92%;
  max-height: 88px;
}

.dept-grid-card__media img {
  max-width: 92%;
  max-height: 88px;
}

/* Departamentos — grid de cards (página /departamento/) */
.page-departments .dept-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

@media (min-width: 768px) {
  .page-departments .dept-list__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 1200px) {
  .page-departments .dept-list__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.page-departments .dept-list__grid .taxonomy-card--tile {
  width: 100%;
  max-width: none;
  aspect-ratio: auto;
}

.page-departments .dept-list__grid .taxonomy-card__media {
  aspect-ratio: 4 / 3;
  flex: none;
}

/* Departamentos — carrossel taxonomy-card (legado; só catálogo) */
.page-departments .dept-list__grid.catalog-subcats__track {
  display: flex;
  flex-wrap: nowrap;
  grid-template-columns: unset;
}

.page-departments .dept-grid-card__media {
  aspect-ratio: 4 / 3;
  min-height: 180px;
  padding: 28px 24px;
}

@media (min-width: 768px) {
  .page-departments .dept-grid-card__media {
    min-height: 220px;
    padding: 32px 28px;
  }
}

@media (min-width: 1200px) {
  .page-departments .dept-grid-card__media {
    min-height: 260px;
    padding: 36px 32px;
  }
}

.page-departments .dept-grid-card__media img,
.page-departments .dept-grid-card__media .lazy-img__img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.page-departments .dept-grid-card__body {
  padding: 16px 18px 18px;
}

.page-departments .dept-grid-card__name {
  font-size: 1.0625rem;
}

.brand-grid-card__initial {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-width: 100%;
  font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
  color: var(--primary-color);
  padding: 0 10px;
  word-break: break-word;
}

.brand-grid-card__body,
.dept-grid-card__body {
  padding: 14px 16px 16px;
}

.brand-grid-card__body {
  background: #f3f5f8;
  border-top: 1px solid var(--store-border-soft);
}

.dept-grid-card__body {
  background: #f3f5f8;
  border-top: 1px solid var(--store-border-soft);
}

.brand-grid-card__name,
.dept-grid-card__name {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text-dark);
}

.brand-grid-card__count,
.dept-grid-card__count {
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--store-muted);
}

.dept-list__search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 0 14px;
  border: 1px solid var(--store-border);
  border-radius: 999px;
  background: #fff;
}

.dept-list__search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  padding: 12px 0;
  font-size: 0.875rem;
  outline: none;
}

.brands-list__empty,
.dept-list__empty {
  margin: 0;
  padding: 24px 20px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--store-muted);
}
.dept-list__empty {
  padding: 40px 16px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--store-muted);
}

/* ===== Skeletons (storefront) ===== */
.skeleton-home-card-product {
  pointer-events: none;
}

.skeleton-home-card-product__media {
  width: 100%;
  height: 240px;
  border-radius: 0;
}

.skeleton-home-card-product__name {
  height: 14px;
  width: 92%;
  margin-bottom: 6px;
}

.skeleton-home-card-product__brand {
  height: 10px;
  width: 55%;
  margin-bottom: 8px;
}

.skeleton-home-card-product__price {
  height: 18px;
  width: 70%;
}

.skeleton-home-card-product__ref {
  height: 12px;
  width: 48%;
}

.skeleton-home-card-product__quote {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skeleton-product-card,
.skeleton-brand-grid-card,
.skeleton-dept-grid-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--store-border-soft);
  border-radius: var(--store-radius);
  overflow: hidden;
  background: #fff;
  pointer-events: none;
}

.skeleton-dept-grid-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
  background: #f3f5f8;
  border-top: 1px solid var(--store-border-soft);
}

.skeleton-dept-grid-card__title {
  height: 14px;
  width: 78%;
  border-radius: 6px;
}

.skeleton-dept-grid-card__count {
  height: 10px;
  width: 42%;
  border-radius: 5px;
}

.dept-list__grid--loading .skeleton-dept-grid-card,
.brands-list__grid--loading .skeleton-brand-grid-card {
  min-height: 100%;
}

.skeleton-product-card__media,
.skeleton-brand-grid-card__media,
.skeleton-dept-grid-card__media {
  aspect-ratio: 1;
}

.skeleton-brand-grid-card__media,
.skeleton-dept-grid-card__media {
  aspect-ratio: 16 / 10;
  min-height: 112px;
}

.page-departments .skeleton-dept-grid-card__media {
  aspect-ratio: 4 / 3;
  min-height: 180px;
}

@media (min-width: 768px) {
  .page-departments .skeleton-dept-grid-card__media {
    min-height: 220px;
  }
}

@media (min-width: 1200px) {
  .page-departments .skeleton-dept-grid-card__media {
    min-height: 260px;
  }
}

.skeleton-product-card__body {
  padding: 12px 14px 14px;
}

.skeleton-text.short {
  width: 68%;
}

.skeleton-product-card__btn {
  height: 38px;
  margin-top: 10px;
  border-radius: 8px;
}

/* ===== 404 ===== */
.error-page {
  min-height: 50vh;
  padding: 56px 0 72px;
}

.error-page__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.error-page__code {
  margin: 0 0 8px;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-orange, #fe860f);
}

.error-page__title {
  margin: 0 0 12px;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.error-page__text {
  margin: 0 0 24px;
  color: var(--store-muted);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--primary-color);
  border-radius: 999px;
  background: transparent;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.btn--outline:hover {
  background: #eef2ff;
  color: var(--primary-color);
}

@media (max-width: 767.98px) {
  :root {
    --catalog-sticky-top: 108px;
  }

  .catalog__toolbar {
    --catalog-toolbar-pad-x: 16px;
  }

  .catalog__bar-inner.is-pinned {
    padding-left: var(--catalog-toolbar-pad-x);
    padding-right: var(--catalog-toolbar-pad-x);
  }

  .catalog__bar-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 10px;
    align-items: center;
  }

  .catalog-filter-open {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .catalog__active:empty {
    display: none;
  }

  .catalog__active:not(:empty) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .catalog-sort {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-width: 0;
    margin-left: 0;
  }

  .catalog__bar-inner:not(.is-pinned).has-sort-open {
    position: relative;
  }

  .catalog__toolbar:has(.catalog__bar-inner.has-sort-open) ~ .catalog-grid .home-card-product__wishlist,
  .catalog__toolbar:has(.catalog__bar-inner.has-sort-open) ~ .catalog-grid .wishlist-btn,
  .catalog__toolbar:has(.catalog__bar-inner.has-sort-open) ~ .catalog-grid .prod-card [data-add-favorite] {
    z-index: 0 !important;
    pointer-events: none;
  }

  .catalog-filter-open[hidden] ~ .catalog-sort {
    grid-column: 1 / -1;
  }

  .catalog-sort__control {
    width: 100%;
    min-width: 0;
  }

  .catalog-sort__trigger {
    width: 100%;
    justify-content: space-between;
    min-width: 0;
  }

  .catalog-sort__value {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* ===== Product detail v2 (galeria inset, specs, commerce) ===== */
.product-detail__gallery-frame {
  display: flex;
  align-items: stretch;
  min-width: 0;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  overflow: hidden;
}

.product-detail__gallery-frame--multi .product-detail__stage {
  flex: 1 1 auto;
  min-width: 0;
}

.product-detail__gallery-frame--single .product-detail__stage {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  align-items: stretch;
}

.product-detail__gallery-frame--single .product-detail__main {
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail__gallery-frame--single .product-detail__main-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center center;
  padding: 24px;
  box-sizing: border-box;
}

.product-detail__gallery-frame--single .product-detail__gallery-brand {
  right: 16px;
  bottom: 16px;
  z-index: 2;
}

.product-detail__gallery-frame--single .product-detail__gallery-brand {
  z-index: 3;
}

.product-detail__thumbs-panel {
  flex: 0 0 84px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-right: 1px solid var(--store-border);
  background: #fff;
}

.product-detail__thumbs-viewport {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-detail__thumbs-viewport::-webkit-scrollbar {
  display: none;
}

.product-detail__thumbs-viewport::before,
.product-detail__thumbs-viewport::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 18px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.product-detail__thumbs-viewport::before {
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 100%);
}

.product-detail__thumbs-viewport::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 100%);
}

.product-detail__thumbs-panel.is-can-scroll-up .product-detail__thumbs-viewport::before,
.product-detail__thumbs-panel.is-can-scroll-down .product-detail__thumbs-viewport::after {
  opacity: 1;
}

.product-detail__thumbs--inset {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 8px;
}

.product-detail__thumbs--inset .product-detail__thumb {
  flex: 0 0 68px;
  width: 68px;
  scroll-snap-align: start;
}

.product-detail__thumbs-nav {
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--store-muted);
  cursor: pointer;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.product-detail__thumbs-nav:not(:disabled):hover {
  color: var(--primary-color);
}

.product-detail__thumbs-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.product-detail__stage {
  position: relative;
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
}

.page-product .product-detail__main {
  border: 0;
  border-radius: 0;
}

@media (max-width: 575px) {
  .product-detail__gallery-frame--multi {
    flex-direction: column;
  }

  .product-detail__thumbs-panel {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    order: 2;
    width: 100%;
    border-right: 0;
    border-top: 1px solid var(--store-border);
    background: #fff;
  }

  .product-detail__thumbs-viewport {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
  }

  .product-detail__thumbs-viewport::before,
  .product-detail__thumbs-viewport::after {
    top: 0;
    bottom: 0;
    left: auto;
    right: auto;
    width: 18px;
    height: auto;
  }

  .product-detail__thumbs-viewport::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .product-detail__thumbs-viewport::after {
    right: 0;
    left: auto;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 100%);
  }

  .product-detail__thumbs-panel.is-can-scroll-up .product-detail__thumbs-viewport::before,
  .product-detail__thumbs-panel.is-can-scroll-down .product-detail__thumbs-viewport::after {
    opacity: 1;
  }

  .product-detail__thumbs--inset {
    flex-direction: row;
    padding: 8px;
  }

  .product-detail__thumbs--inset .product-detail__thumb {
    flex: 0 0 64px;
    width: 64px;
    scroll-snap-align: center;
  }

  .product-detail__thumbs-panel.is-mobile-carousel .product-detail__thumbs-nav {
    display: none !important;
  }

  .product-detail__thumbs-panel.is-mobile-carousel .product-detail__thumbs-viewport {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
  }

  .product-detail__thumbs-panel.is-mobile-carousel .product-detail__thumbs--inset {
    gap: 12px;
    padding: 10px 14px;
  }

  .product-detail__thumbs-panel.is-mobile-carousel .product-detail__thumb {
    flex: 0 0 72px;
    width: 72px;
    scroll-snap-align: center;
  }

  .product-detail__thumbs-panel.is-mobile-carousel .product-detail__thumb img {
    aspect-ratio: 1;
  }

  .product-detail__thumbs-nav {
    flex: 0 0 32px;
  }
}

.product-detail__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-detail__section {
  padding: 0.625rem 0 0;
  border-top: 0;
}

.product-detail__section:first-child {
  padding-top: 0;
}

.page-product .product-detail__title-row {
  margin-bottom: 0.5rem;
}

.page-product .product-detail__section.product-detail__meta {
  padding-top: 0.25rem;
}

.page-product .product-detail__section.product-detail__commerce {
  padding-top: 0.875rem;
}

.page-product .product-detail__section.product-detail__highlights-section {
  padding-top: 1rem;
}

.page-product .product-detail__section.product-detail__legal-section {
  padding-top: 0.875rem;
  padding-bottom: 0.5rem;
}

.page-product .product-detail__section.product-detail__info-footer {
  padding-top: 0.625rem;
}

.product-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 0;
  font-size: 0.8125rem;
  color: var(--store-muted);
}

.product-detail__meta-item {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}

.product-detail__code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.product-detail__meta-value--code {
  font-weight: 600;
  color: var(--text-dark);
}

.product-detail__meta-link {
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.product-detail__meta-link--category {
  color: var(--text-dark);
}

.product-detail__meta-link--category:hover {
  color: var(--brand-orange, #fe860f);
}

.product-detail__meta-link--brand {
  color: var(--text-dark);
}

.product-detail__meta-link--brand:hover {
  color: var(--brand-orange, #fe860f);
}

.product-detail__commerce {
  margin-bottom: 0;
}

.product-detail__price-col {
  min-width: 0;
}

.product-detail__conversions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--store-border-soft);
}

.product-detail__conversion {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.product-detail__conversion + .product-detail__conversion {
  margin-top: 4px;
}

.product-detail__conversion-note {
  display: block;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--store-muted);
}

.product-detail__brand-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 88px;
  padding: 14px 18px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius);
  background: #fff;
}

.product-detail__brand-logo {
  display: block;
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
}

.product-detail__brand-name {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-color);
  text-decoration: none;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
  width: 100%;
  align-items: stretch;
}

.product-detail__actions--no-price {
  margin-top: 0;
}

@media (max-width: 575px) {
  .product-detail__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.product-detail__actions .product-share--action {
  display: flex;
  align-self: stretch;
  margin-top: 0;
  min-width: 0;
}

.product-detail__quote-btn,
.product-detail__favorite-btn,
.product-detail__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: var(--store-radius);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

.product-detail__actions .product-detail__share-btn {
  flex: 1 1 auto;
  width: 100%;
}

.product-detail__actions .product-detail__share-btn .product-share__toggle-ico,
.product-detail__favorite-btn .bi,
.product-detail__quote-btn .bi {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
  line-height: 1;
}

.product-detail__quote-btn {
  width: auto;
  flex: 0 0 auto;
  max-width: 100%;
  border: 1px solid transparent;
  background: var(--ink, #111);
  color: var(--brand-orange, #fe860f);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-detail__quote-btn:hover {
  background: color-mix(in oklab, var(--ink, #111) 88%, white);
  color: var(--brand-orange, #fe860f);
}

.product-detail__quote-btn.is-loading {
  opacity: 0.88;
  transform: scale(0.98);
  pointer-events: none;
}

.product-detail__quote-btn.is-loading .bi {
  animation: quote-cart-pop 0.45s ease-in-out infinite;
}

.product-detail__quote-btn.is-in-quote {
  background: #fff;
  color: var(--brand-orange, #fe860f);
  border-color: var(--store-border);
}

.product-detail__quote-btn.is-in-quote:hover {
  background: #fff;
  color: var(--brand-orange, #fe860f);
  border-color: color-mix(in oklab, var(--brand-orange, #fe860f) 40%, var(--store-border));
}

.product-detail__quote-btn.is-just-added {
  animation: product-quote-added 0.55s ease;
}

@keyframes product-quote-added {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(254, 134, 15, 0.4);
  }

  45% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(254, 134, 15, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

.product-detail__favorite-btn {
  border: 1px solid var(--store-border);
  background: #fff;
  color: var(--text-dark);
  flex: 0 0 auto;
}

.product-detail__favorite-btn:hover,
.product-detail__favorite-btn.active {
  border-color: #fecaca;
  color: #ef4444;
}

.product-detail__share-btn {
  border: 1px solid var(--store-border);
  background: #fff;
  color: var(--text-dark);
}

.product-detail__share-btn:hover,
.product-share--action.is-open .product-detail__share-btn {
  border-color: #cbd5e1;
  color: var(--text-dark);
}

.product-share--action .product-share__menu {
  right: 0;
  left: auto;
}

.product-share--action .product-share__feedback {
  right: 0;
  left: auto;
}

.product-detail__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.375rem;
}

.product-detail__highlights li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  padding: 0.25rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-dark);
}

.product-detail__highlights-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 999px;
  background: #0f172a;
  color: var(--brand-orange, #fe860f);
}

.product-detail__highlights-ico svg {
  display: block;
  width: 12px;
  height: 12px;
}

.product-detail__highlights-text {
  flex: 1 1 auto;
  min-width: 0;
}

.product-detail__highlights li::before {
  content: none;
  display: none;
}

.product-detail__info-footer {
  margin-top: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border, #e5e7eb);
}

.product-share--inline {
  margin-top: 0;
}

.product-share--inline .product-share__label {
  margin: 0 0 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-dark);
}

.product-share--inline .product-share__buttons {
  gap: 0.5rem;
}

.product-share--inline .product-share__btn {
  width: 2.5rem;
  height: 2.5rem;
  border-color: var(--border, #e5e7eb);
  color: var(--store-muted);
}

.product-share--inline .product-share__btn:hover {
  transform: none;
}

.product-share--inline .product-share__feedback {
  margin-top: 0.625rem;
}

.product-share__btn--whatsapp:hover {
  border-color: #22c55e;
  color: #16a34a;
  background: #f0fdf4;
}

.product-share__btn--facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
  background: #eff6ff;
}

.product-share__btn--x:hover {
  border-color: #0f172a;
  color: #0f172a;
  background: #f8fafc;
}

.product-share--inline .product-share__btn:not([class*="--"]):hover,
.product-share__btn--native:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: #f8fafc;
}

.product-detail__download {
  margin: 0;
}

.product-specs {
  margin-top: 1.75rem;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  overflow: hidden;
}

.product-specs__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  border-bottom: 1px solid transparent;
}

.product-specs[open] .product-specs__head {
  border-bottom-color: var(--store-border-soft);
}

.product-specs__head::-webkit-details-marker {
  display: none;
}

.product-specs__title {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.product-specs__chev {
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--store-muted);
  border-bottom: 2px solid var(--store-muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.product-specs[open] .product-specs__chev {
  transform: rotate(-135deg);
}

.product-specs__body {
  padding: 0 20px 20px;
}

.product-specs__list {
  margin: 0;
}

.product-specs__row {
  display: grid;
  grid-template-columns: minmax(120px, 220px) minmax(0, 1fr);
  gap: 12px 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--store-border-soft);
}

.product-specs__row:last-child {
  border-bottom: 0;
}

.product-specs__row dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.product-specs__row dd {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--store-muted);
}

.product-specs__html {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .product-specs__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.page-product .product-detail__title-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.page-product .product-detail__title {
  margin: 0;
  width: 100%;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

.page-product .product-detail__availability-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  border: 1px solid transparent;
  white-space: nowrap;
}

.page-product .product-detail__availability-badge--in {
  background: #ecfdf5;
  color: #047857;
  border-color: #bbf7d0;
}

.page-product .product-detail__availability-badge--out {
  background: #fef2f2;
  color: #b91c1c;
  border-color: #fecaca;
}

.page-product .product-detail__price {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.page-product .product-detail__desc {
  margin-top: 0;
  margin-bottom: 16px;
}

.product-detail__desc-teaser {
  margin-bottom: 16px;
}

.product-detail__desc-excerpt {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.product-detail__desc-excerpt .product-detail__desc-more {
  display: inline;
  margin-left: 0.35em;
  white-space: nowrap;
  font-size: inherit;
  font-weight: 700;
  vertical-align: baseline;
}

.product-detail__desc-more {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.15s ease;
}

.product-detail__desc-more:hover {
  color: var(--brand-orange, #fe860f);
  text-decoration: underline;
}

.product-description {
  margin-top: 1.75rem;
  padding: 20px 22px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  scroll-margin-top: calc(var(--header-height-slim, 72px) + 24px);
}

.product-description.is-highlighted {
  animation: product-description-highlight 1.2s ease;
}

@keyframes product-description-highlight {
  0% { box-shadow: 0 0 0 0 rgba(17, 61, 200, 0.35); }
  40% { box-shadow: 0 0 0 4px rgba(17, 61, 200, 0.18); }
  100% { box-shadow: none; }
}

.product-description__title {
  margin: 0 0 14px;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.product-description__body {
  margin: 0;
}

.product-description__body p:last-child {
  margin-bottom: 0;
}

/* ===== Product topbar + share dropdown + price polish ===== */
.product-detail__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.product-detail__topbar .product-detail__breadcrumb {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.product-share--dropdown {
  position: relative;
  flex: 0 0 auto;
}

.product-share--action {
  position: relative;
}

.product-share__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--store-border);
  border-radius: 999px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-share__toggle:hover,
.product-share--dropdown.is-open .product-share__toggle {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.product-share__toggle-ico {
  flex-shrink: 0;
}

.product-share__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  min-width: 190px;
  padding: 6px;
  border: 1px solid var(--store-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.product-share__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.product-share__option:hover {
  background: #f8fafc;
  color: var(--text-dark);
  text-decoration: none;
}

.product-share__option svg {
  flex-shrink: 0;
  color: var(--store-muted);
}

.product-share--dropdown .product-share__feedback {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  margin: 0;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.75rem;
  white-space: nowrap;
  pointer-events: none;
}

.page-product .product-detail__price-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.page-product .product-detail__price-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 4px;
}

.page-product .product-detail__price-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.page-product .product-detail__price-current {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}

.page-product .product-detail__price-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 140px;
}

.page-product .product-detail__price-brand .product-detail__brand-logo {
  display: block;
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.page-product .product-detail__price-brand .product-detail__brand-name {
  font-size: 0.75rem;
  line-height: 1.25;
  text-align: right;
}

@media (max-width: 575px) {
  .page-product .product-detail__price-head--has-brand {
    flex-wrap: wrap;
    gap: 12px;
  }

  .page-product .product-detail__price-brand {
    max-width: none;
    justify-content: flex-start;
  }

  .page-product .product-detail__price-brand .product-detail__brand-name {
    text-align: left;
  }
}

.page-product .product-detail__price-old {
  line-height: 1.2;
  font-size: 0.875rem;
  color: #94a3b8;
}

.page-product .product-detail__price-primary {
  display: block;
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.page-product .product-detail__price-secondary {
  display: block;
  margin-top: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--store-muted);
  line-height: 1.2;
}

.page-product .product-detail__iva {
  display: block;
  margin-top: 2px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--store-muted);
  line-height: 1.2;
}

.page-product .product-detail__price--consult {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.15;
}

.page-product .product-detail__price-note {
  margin-top: 2px;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--store-muted);
}

.page-product .product-detail__actions {
  margin-top: 0;
}

@media (max-width: 767px) {
  .product-detail__topbar {
    flex-wrap: wrap;
  }

  .product-detail__topbar .product-share--dropdown {
    margin-left: auto;
  }

  .product-detail__actions .product-share--dropdown {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }

  .product-detail__actions .product-share--action {
    width: 100%;
  }

  .product-detail__actions .product-detail__share-btn {
    width: 100%;
    min-height: 44px;
    height: 44px;
  }
}

/* ===== Institutional pages ===== */
.store-page {
  padding: 24px 0 56px;
}

.store-page__breadcrumb {
  margin-bottom: 12px;
  font-size: 0.8125rem;
  color: var(--store-muted);
}

.store-page__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.store-page__breadcrumb a:hover {
  color: var(--primary-color);
}

.store-page__header {
  margin-bottom: 28px;
  max-width: 42rem;
}

.store-page__title {
  margin: 0 0 8px;
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  color: var(--primary-color);
}

.store-page__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--store-muted);
}

.store-page__empty {
  margin: 0 0 24px;
  padding: 20px;
  border-radius: var(--store-radius-lg);
  background: #f8fafc;
  color: var(--store-muted);
}

.store-page__prose {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.store-page__prose h2,
.store-page__prose h3 {
  margin: 1.5rem 0 0.75rem;
  color: var(--primary-color);
}

.store-page__prose p {
  margin: 0 0 1rem;
}

.store-page__prose ul,
.store-page__prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.store-page__prose a {
  color: var(--primary-color);
}

.store-page__cta-wrap {
  margin-top: 32px;
}

.store-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.store-page__btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* About */
.about-page__grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 992px) {
  .about-page__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 28px;
    align-items: start;
  }
}

.about-page__content {
  padding: 28px 24px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
  .about-page__content {
    padding: 32px 36px;
  }
}

.about-page__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-page__card {
  padding: 20px 22px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.about-page__card + .about-page__card {
  margin-top: 0;
}

.about-page__card-title {
  margin: 0 0 10px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.about-page__card-text {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-dark);
}

.about-page__card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-orange, #fe860f);
  text-decoration: none;
}

.about-page__card-link:hover {
  text-decoration: underline;
}

.about-page__meta {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-page__meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
}

.about-page__meta a {
  color: var(--primary-color);
}

.about-page__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-page__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--brand-orange, #fe860f) 12%, #fff);
  color: var(--brand-orange, #fe860f);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.about-page__social-link:hover {
  background: var(--brand-orange, #fe860f);
  color: #111;
  transform: translateY(-1px);
}

.about-page__social-link svg {
  width: 18px;
  height: 18px;
}

.about-page__card--action {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.about-page__card--action:hover {
  border-color: color-mix(in srgb, var(--brand-orange, #fe860f) 28%, var(--store-border));
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.about-page__card--action .about-page__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-page__card--action .about-page__card-link::after {
  content: '→';
}

.about-page__content :where(p, li, span, div, h1, h2, h3, h4, h5, h6) {
  color: inherit;
}

.page-about .about-page__content.store-page__prose {
  line-height: 1.7;
  font-size: 1rem;
  color: var(--text-dark);
}

.page-about .about-page__content p {
  margin: 0 0 0.85rem;
}

.page-about .about-page__content p:last-child {
  margin-bottom: 0;
}

.page-about .about-page__content p:empty {
  display: none;
  margin: 0;
}

.page-about .about-page__content p:has(> br:only-child) {
  display: none;
  margin: 0;
}

.page-about .store-page__header {
  margin-bottom: 24px;
  max-width: 40rem;
}

.page-about .store-page__header--about {
  padding-bottom: 4px;
}

.page-about .store-page__title {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-about .store-page__lead {
  font-size: 1.0625rem;
  line-height: 1.6;
}

.about-page__faq {
  margin-top: 32px;
}

.about-page__faq-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 16px;
}

.about-page__faq-intro {
  flex: 1 1 220px;
  min-width: 0;
}

.about-page__faq-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.about-page__faq-lead {
  margin: 6px 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--store-muted);
}

.about-page__faq-more {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-orange, #fe860f);
  text-decoration: none;
  white-space: nowrap;
}

.about-page__faq-more:hover {
  text-decoration: underline;
}

.about-page__faq-card {
  padding: 18px 20px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
  .about-page__faq {
    margin-top: 40px;
  }

  .about-page__faq-card {
    padding: 22px 24px;
  }
}

.faq-page--compact .faq-page__list {
  gap: 10px;
}

.faq-page--compact .faq-page__item {
  border-radius: calc(var(--store-radius-lg) - 2px);
}

.faq-page--compact .faq-page__question {
  padding: 14px 16px;
}

.faq-page--compact .faq-page__answer-inner {
  padding: 0 16px 14px 3.25rem;
}

.page-about .store-page--about,
.page-contact .store-page--contact {
  background: var(--store-bg);
  padding: 0 0 56px;
  min-height: calc(100vh - var(--header-height-full, 120px) - 80px);
}

.page-about .store-page__breadcrumb,
.page-contact .store-page__breadcrumb {
  margin: 0 0 1.25rem;
  color: var(--store-muted);
}

.page-contact .store-page__breadcrumb {
  margin-bottom: 1.5rem;
}

.page-contact .store-page__header {
  margin-bottom: 2rem;
}

.page-about .font-display,
.page-contact .font-display {
  color: inherit;
}

.contact-page__cards {
  display: grid;
  gap: 16px;
  max-width: 42rem;
}

.contact-page__product-link {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.contact-page__product-link:hover {
  text-decoration: underline;
}

/* Contact modal */
body.contact-modal-open {
  overflow: hidden;
}

.contact-modal[hidden] {
  display: none !important;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: grid;
  place-items: center;
  padding: 16px;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.52);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: 24px 22px 22px;
  border-radius: var(--store-radius-lg);
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.22);
}

.contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}

.contact-modal__header {
  padding-right: 40px;
  margin-bottom: 18px;
}

.contact-modal__title {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--primary-color);
}

.contact-modal__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--store-muted);
}

.contact-modal__body {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .contact-modal__body {
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
    align-items: start;
  }
}

.contact-modal__aside {
  display: grid;
  gap: 12px;
}

.contact-modal__channel {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--store-border-soft);
  border-radius: var(--store-radius);
  background: #f8fafc;
}

.contact-modal__channel-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  color: var(--primary-color);
  font-size: 1rem;
}

.contact-modal__channel-ico--wa {
  color: #25d366;
}

.contact-modal__channel-label {
  display: block;
  margin-bottom: 2px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--store-muted);
}

.contact-modal__channel-value {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--text-dark);
}

.contact-modal__channel-link {
  color: var(--primary-color);
  text-decoration: none;
  word-break: break-word;
}

.contact-modal__channel-link:hover {
  text-decoration: underline;
}

.contact-form__row {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--store-border);
  border-radius: 10px;
  background: #fff;
  color: var(--text-dark);
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--primary-color) 45%, var(--store-border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 12%, transparent);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 112px;
}

.contact-form__actions {
  margin-top: 4px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: 100%;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form__submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .contact-form__submit {
    width: auto;
  }
}

/* FAQ */
.page-faq .store-page--faq {
  background: var(--store-bg);
  padding: 16px 0 48px;
  min-height: calc(100vh - var(--header-height-full, 120px) - 80px);
}

.page-faq .store-page__breadcrumb {
  color: var(--store-muted);
}

.page-faq .store-page__title,
.page-faq .font-display {
  color: var(--primary-color);
}

.faq-page__layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 992px) {
  .faq-page__layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 32px;
  }
}

.faq-page__header {
  margin-bottom: 20px;
}

.faq-page__toolbar {
  margin-bottom: 16px;
}

.faq-page__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  min-height: 48px;
  border: 1px solid var(--store-border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.faq-page__search:focus-within {
  border-color: color-mix(in srgb, var(--primary-color) 45%, var(--store-border));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 12%, transparent);
}

.faq-page__search-icon {
  flex: 0 0 auto;
  color: var(--store-muted);
  line-height: 0;
}

.faq-page__search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--text-dark);
}

.faq-page__search-input:focus {
  outline: none;
}

.faq-page__search-input::placeholder {
  color: #94a3b8;
}

.faq-page__search-empty {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: var(--store-radius);
  background: #f8fafc;
  color: var(--store-muted);
  font-size: 0.9375rem;
}

.faq-page__list {
  display: grid;
  gap: 10px;
}

.faq-page__item {
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-page__item:hover {
  border-color: color-mix(in srgb, var(--primary-color) 22%, var(--store-border));
}

.faq-page__item.is-open {
  border-color: color-mix(in srgb, var(--primary-color) 35%, var(--store-border));
  box-shadow: 0 8px 24px rgba(17, 61, 200, 0.08);
}

.faq-page__question-wrap {
  margin: 0;
}

.faq-page__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1.45;
}

.faq-page__question:hover,
.faq-page__question[aria-expanded="true"] {
  color: var(--primary-color);
}

.faq-page__index {
  flex: 0 0 auto;
  min-width: 2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--primary-color) 70%, #64748b);
}

.faq-page__question-text {
  flex: 1 1 auto;
  min-width: 0;
}

.faq-page__icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--primary-color);
}

.faq-page__icon::before,
.faq-page__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  margin-left: -6px;
  margin-top: -1px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.faq-page__icon::after {
  transform: rotate(90deg);
}

.faq-page__item.is-open .faq-page__icon {
  background: color-mix(in srgb, var(--primary-color) 12%, #fff);
}

.faq-page__item.is-open .faq-page__icon::after {
  transform: rotate(0deg);
}

.faq-page__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-page__item.is-open .faq-page__answer {
  grid-template-rows: 1fr;
}

.faq-page__answer-inner {
  overflow: hidden;
  padding: 0 18px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--store-muted);
}

.faq-page__item.is-open .faq-page__answer-inner {
  padding-bottom: 18px;
}

.faq-page__aside {
  position: relative;
}

@media (min-width: 992px) {
  .faq-page__aside {
    position: sticky;
    top: calc(var(--catalog-sticky-top, 118px) + 8px);
  }
}

.faq-page__help-card {
  padding: 22px 20px;
  border: 1px solid var(--store-border);
  border-radius: var(--store-radius-lg);
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  box-shadow: 0 8px 24px rgba(17, 61, 200, 0.06);
}

.faq-page__help-title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--primary-color);
}

.faq-page__help-text {
  margin: 0 0 18px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--store-muted);
}

.faq-page__help-btn {
  width: 100%;
  justify-content: center;
  background: #fff;
  color: var(--text-dark, #111827);
  border: 1px solid var(--store-border);
  box-shadow: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.faq-page__help-btn:hover,
.faq-page__help-btn:focus-visible {
  background: #fff;
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: none;
}

.page-faq .store-page__empty {
  background: #fff;
  border: 1px solid var(--store-border);
}

/* Price list */
.store-page__header--pricelist {
  max-width: none;
  margin-bottom: 12px;
}

.store-page--pricelist .store-page__title {
  margin: 0;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

.pricelist-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pricelist-hero__count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--store-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricelist-app {
  display: grid;
  gap: 10px;
}

.pricelist-toolbar {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--store-border-soft);
  border-radius: var(--store-radius);
  background: #fff;
}

.pricelist-toolbar__field--search {
  min-width: 0;
}

.pricelist-toolbar__search {
  position: relative;
}

.pricelist-toolbar__search-ico {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--store-muted);
  font-size: 0.875rem;
  pointer-events: none;
}

.pricelist-toolbar__input,
.pricelist-toolbar__select {
  width: 100%;
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid var(--store-border-soft);
  border-radius: 8px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.875rem;
}

.pricelist-toolbar__input {
  padding-left: 34px;
}

.pricelist-toolbar__input:focus,
.pricelist-toolbar__select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(17, 61, 200, 0.1);
}

.pricelist-toolbar__filters {
  display: grid;
  gap: 8px;
}

.pricelist-toolbar__field {
  display: grid;
  gap: 4px;
}

.pricelist-toolbar__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--store-muted);
}

.pricelist-toolbar__clear {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--store-border-soft);
  border-radius: 8px;
  background: #fff;
  color: var(--store-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.pricelist-toolbar__clear:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.pricelist-panel {
  border: 1px solid var(--store-border-soft);
  border-radius: var(--store-radius);
  background: #fff;
  overflow: hidden;
}

.pricelist-panel__head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 12px;
  border-bottom: 1px solid var(--store-border-soft);
  background: #fafbfc;
}

.pricelist-export {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pricelist-export__label {
  font-size: 0.75rem;
  color: var(--store-muted);
  font-weight: 600;
}

.pricelist-export__btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--store-border-soft);
  border-radius: 6px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.pricelist-export__btn:hover {
  border-color: var(--primary-color);
  background: #f8faff;
  color: var(--primary-color);
}

.pricelist-panel__status {
  margin: 0;
  padding: 6px 12px 0;
  font-size: 0.8125rem;
  color: var(--primary-color);
}

.pricelist-table-wrap {
  max-height: min(68vh, 720px);
  overflow: auto;
}

.pricelist-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.pricelist-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 8px 12px;
  border-bottom: 1px solid var(--store-border-soft);
  background: #f8fafc;
  color: var(--store-muted);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}

.pricelist-table tbody td {
  padding: 7px 12px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  color: var(--text-dark);
}

.pricelist-table tbody tr:hover td {
  background: #fafcff;
}

.pricelist-table__col-thumb,
.pricelist-table__thumb {
  width: 52px;
  padding-left: 10px;
  padding-right: 4px;
}

.pricelist-table__thumb {
  text-align: center;
}

.pricelist-table__thumb img {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #eef2f7;
}

.pricelist-table__code {
  width: 96px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  color: var(--store-muted);
  white-space: nowrap;
}

.pricelist-table__name {
  min-width: 180px;
  font-weight: 500;
}

.pricelist-table__brand {
  width: 120px;
  color: var(--store-muted);
  font-size: 0.8125rem;
}

.pricelist-table__usd,
.pricelist-table__local {
  width: 96px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.pricelist-table__usd {
  font-weight: 600;
  color: var(--primary-color);
}

.pricelist-panel__empty {
  margin: 0;
  padding: 20px 12px 24px;
  text-align: center;
  color: var(--store-muted);
  font-size: 0.875rem;
}

.pricelist-note {
  margin: 0;
  padding: 10px 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--store-muted);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--store-border-soft);
}

@media (min-width: 768px) {
  .pricelist-toolbar {
    grid-template-columns: minmax(200px, 1.2fr) minmax(0, 2fr) auto;
    align-items: end;
    gap: 12px;
  }

  .pricelist-toolbar__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricelist-toolbar__actions {
    display: flex;
    justify-content: flex-end;
  }
}

@media (max-width: 767px) {
  .pricelist-table thead {
    display: none;
  }

  .pricelist-table tbody tr {
    display: grid;
    gap: 3px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--store-border-soft);
  }

  .pricelist-table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
    border: 0;
  }

  .pricelist-table tbody td::before {
    content: attr(data-label);
    color: var(--store-muted);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .pricelist-table__thumb {
    justify-content: flex-start;
  }

  .pricelist-table__thumb::before {
    align-self: center;
  }

  .pricelist-table__thumb img {
    margin: 0;
  }

  .pricelist-table__name {
    font-size: 0.875rem;
  }

  .pricelist-table__usd,
  .pricelist-table__local {
    text-align: right;
  }
}

/* Vendedores */
.page-vendedores .sellers-page {
  padding: 1.5rem 0 3rem;
  color: #fff;
}

.page-vendedores .sellers-page__breadcrumb {
  margin-bottom: 1rem;
}

.page-vendedores .sellers-page__breadcrumb,
.page-vendedores .sellers-page__breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
}

.page-vendedores .sellers-page__breadcrumb a:hover {
  color: #fff;
}

.page-vendedores .sellers-page__header {
  margin-bottom: 1.75rem;
}

.page-vendedores .sellers-page__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
}

.page-vendedores .sellers-page__empty {
  margin: 2rem 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.sellers-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.sellers-page__filter {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.sellers-page__filter:hover,
.sellers-page__filter:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  outline: none;
}

.sellers-page__filter.is-active {
  background: #ffd400;
  border-color: #ffd400;
  color: #0a1f5c;
  box-shadow: 0 8px 24px rgba(255, 212, 0, 0.25);
}

.sellers-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
}

@media (min-width: 768px) {
  .sellers-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .sellers-page__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
  }
}

.sellers-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sellers-card.is-hidden {
  display: none;
}

.sellers-card__avatar-wrap {
  position: relative;
  width: min(100%, 9.5rem);
  margin-bottom: 0.875rem;
}

.sellers-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.sellers-card__status {
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  transform: translateX(-50%);
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  border: 2px solid var(--primary-dark, #0d2f9e);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

.sellers-card__status--active {
  background: #22c55e;
}

.sellers-card__status--vacation {
  background: #94a3b8;
}

.sellers-card__name {
  margin: 0 0 0.375rem;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
}

.sellers-card__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin: 0 0 0.875rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
}

.sellers-card__phone .bi {
  font-size: 0.875rem;
  opacity: 0.85;
}

.sellers-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 9.5rem;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sellers-card__cta--wa {
  background: #22c55e;
  color: #fff;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.28);
}

.sellers-card__cta--wa:hover,
.sellers-card__cta--wa:focus-visible {
  background: #16a34a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.34);
  outline: none;
}

.sellers-card__cta--vacation {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: default;
}

.sellers-card--vacation .sellers-card__photo {
  filter: grayscale(0.15);
  opacity: 0.92;
}
