@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

:root {
  --store-header-height: 6.75rem;
}

html {
  scrollbar-gutter: stable;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--store-background, #f4f7f9);
  color: #111827;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Banner principal da home ── */
.home-banner-wrap {
  width: 100%;
  padding: 1.25rem 1rem 1.25rem;
  background: var(--store-background, #f4f7f9);
  box-sizing: border-box;
}
.home-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: min(1360px, calc(var(--store-max-width, 1440px) - 1.5rem));
  height: var(--home-banner-height, 560px);
  min-height: 20rem;
  margin-inline: auto;
  border-radius: 0.75rem;
  background: #111827;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12);
}
.home-banner__viewport {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-banner__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}
.home-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.home-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 42%,
    rgba(0, 0, 0, 0.18) 100%
  );
}
.home-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.85rem;
  width: min(100%, 42rem);
  height: 100%;
  padding: 2rem 1.25rem;
  text-align: left;
}
.home-banner__content--center {
  align-items: center;
  margin-inline: auto;
  text-align: center;
}
.home-banner__content--right {
  align-items: flex-end;
  margin-left: auto;
  text-align: right;
  padding-left: 38%;
}
@media (min-width: 640px) {
  .home-banner__content--right {
    padding-left: 45%;
  }
}
@media (min-width: 1024px) {
  .home-banner__content--right {
    padding-left: 50%;
  }
}
@media (min-width: 640px) {
  .home-banner__content {
    padding: 2.5rem 2rem;
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .home-banner__content {
    padding: 3rem 3.5rem;
    max-width: 52rem;
  }
  .home-banner__content--right {
    max-width: none;
    width: 100%;
  }
}
.home-banner__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.home-banner__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}
.home-banner__copy {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  line-height: 1.55;
}
.home-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.home-banner__cta:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.home-banner__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.15rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: none;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.65));
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.home-banner__nav:hover {
  background: transparent;
  transform: translateY(-50%) scale(1.12);
  opacity: 0.85;
}
.home-banner__nav svg {
  width: 1.6rem;
  height: 1.6rem;
}
.home-banner__nav--prev {
  left: 0.85rem;
}
.home-banner__nav--next {
  right: 0.85rem;
}
.home-banner__dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.35);
  backdrop-filter: blur(6px);
}
.home-banner__dot {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.home-banner__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}
@media (min-width: 1024px) {
  .home-banner-wrap {
    padding-inline: 2rem;
  }
}
@media (max-width: 639px) {
  .home-banner-wrap {
    padding-inline: 0.75rem;
  }
  .home-banner {
    height: min(var(--home-banner-height, 560px), 28rem);
    min-height: 18rem;
  }
  .home-banner__nav {
    display: none;
  }
}

/* ── Categorias logo abaixo do banner ── */
.home-categories {
  width: 100%;
  padding: 2.5rem 1rem 0.25rem;
  background: var(--store-background, #f4f7f9);
  box-sizing: border-box;
  overflow: visible;
}
.home-categories__inner {
  width: 100%;
  max-width: min(1360px, calc(var(--store-max-width, 1440px) - 1.5rem));
  margin-inline: auto;
  padding-inline: 0;
  overflow: visible;
}
.home-categories .category-carousel--home {
  --category-card-size: 7.75rem;
  --category-card-gap: 1.5rem;
  position: relative;
  width: 100%;
  gap: 0;
  overflow: visible;
}
.home-categories .category-carousel--home .category-carousel__viewport {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding-block: 0.85rem 1.35rem;
}
.home-categories .category-carousel--home .category-carousel__nav {
  position: absolute;
  top: calc(50% - 0.75rem);
  z-index: 3;
  margin: 0;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
}
.home-categories .category-carousel--home .category-carousel__nav--prev {
  left: -0.35rem;
}
.home-categories .category-carousel--home .category-carousel__nav--next {
  right: -0.35rem;
}
.home-categories .category-carousel--home.category-carousel--start .category-carousel__nav--prev,
.home-categories .category-carousel--home.category-carousel--end .category-carousel__nav--next {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.home-categories .category-carousel--home .category-carousel__nav {
  transition: opacity 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;
}
.home-categories .category-carousel--home .category-card {
  scroll-snap-align: start;
}
.home-categories .category-carousel__track.category-cards--home {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: max-content;
  gap: var(--category-card-gap, 1.5rem);
  padding: 0.15rem 0.35rem 0.35rem;
}
.category-cards--home {
  flex-wrap: nowrap;
  justify-content: flex-start;
  width: max-content;
}
.category-cards--home .category-card {
  flex: 0 0 auto;
  width: calc(var(--category-card-size) + 0.75rem);
  gap: 0.65rem;
}
.category-cards--home .category-card__media {
  width: var(--category-card-size);
  height: var(--category-card-size);
  border-radius: 1.15rem;
  border-width: 2px;
}
.category-cards--home .category-card:hover .category-card__media,
.category-cards--home .category-card:focus-visible .category-card__media {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}
.category-cards--home .category-card__label {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  white-space: nowrap;
}
@media (min-width: 640px) {
  .home-categories .category-carousel--home {
    --category-card-size: 9rem;
    --category-card-gap: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .home-banner-wrap {
    padding-bottom: 1.5rem;
  }
  .home-categories {
    padding-top: 3.5rem;
    padding-inline: 2rem;
  }
  .home-categories .category-carousel--home {
    --category-card-size: 10.5rem;
    --category-card-gap: 1.75rem;
  }
  .category-cards--home .category-card__label {
    font-size: 0.9rem;
  }
}
@media (max-width: 639px) {
  .home-categories {
    padding-inline: 0.75rem;
  }
}
.home-page__sections {
  background: var(--store-background, #f4f7f9);
}

.banner-slide {
  display: none;
}
.banner-slide.active {
  display: block;
}

.spinner {
  border: 3px solid #e5e7eb;
  border-top-color: #1e3a5f;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.sidebar-link {
  color: #374151;
  transition: background-color 0.15s, color 0.15s;
  text-decoration: none;
}
.sidebar-link:hover {
  background-color: #f3f4f6;
  color: #111827;
}
.sidebar-link-active {
  background-color: #000000;
  color: #fff;
  font-weight: 600;
}
.sidebar-link-active:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.sidebar-menu-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: block;
}
.sidebar-menu-icon--sm {
  width: 1.65rem;
  height: 1.65rem;
}
.sidebar-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  border: 0;
  background: transparent;
  color: #111827;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sidebar-icon-btn:hover {
  opacity: 0.65;
}

.store-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.store-shell {
  display: flex;
  flex: 1;
  align-items: stretch;
  min-height: auto;
  position: relative;
  overflow: visible;
}
#site-sidebar {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 0;
}
@media (min-width: 1024px) {
  .store-shell.sidebar-collapsed #site-sidebar {
    width: auto;
    min-width: 0;
  }
  .store-shell:not(.sidebar-collapsed) #site-sidebar {
    width: 16rem;
  }
}
.store-main {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  overflow: visible;
}

.store-main:has(.catalog-base) {
  display: block;
  height: auto;
  min-height: auto;
  overflow: visible;
}

#site-header {
  min-height: 6.75rem;
}
@media (min-width: 640px) {
  #site-header {
    min-height: 8.5rem;
  }
}
@media (min-width: 1024px) {
  #site-header {
    min-height: 10.75rem;
  }
  .store-shell.sidebar-collapsed .store-main {
    padding-left: 3.25rem;
  }
}

.store-shell.store-shell--animate.sidebar-collapsed .store-main {
  transition: padding-left 0.25s ease;
}

.sidebar-desktop-wrap {
  width: 16rem;
  flex-shrink: 0;
  overflow: visible;
}
.store-shell.store-shell--animate .sidebar-desktop-wrap {
  transition: width 0.25s ease, opacity 0.25s ease;
}
.sidebar-desktop-wrap.is-collapsed {
  position: absolute;
  width: 0;
  height: 0;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
}
@media (min-width: 1024px) {
  .sidebar-desktop-wrap:not(.is-collapsed) {
    width: 16rem;
    flex-shrink: 0;
  }
  .sidebar-desktop-wrap:not(.is-collapsed) .store-sidebar {
    position: fixed;
    left: 0;
    top: var(--store-header-height, 6.75rem);
    width: 16rem;
    height: calc(100vh - var(--store-header-height, 6.75rem));
    z-index: 45;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
  }
  .store-sidebar__panel {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .sidebar-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
  }
}

/* Mobile drawer: alinha com a altura real do header */
.store-sidebar-mobile {
  top: var(--store-header-height, 6.75rem);
  height: calc(100vh - var(--store-header-height, 6.75rem));
  height: calc(100dvh - var(--store-header-height, 6.75rem));
}
.store-body {
  overflow-x: clip;
}

.store-shell:not(.sidebar-collapsed) .sidebar-expand-btn {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
  max-width: 2.85rem !important;
  padding: 0.45rem !important;
}
.sidebar-expand-btn {
  position: fixed;
  left: 0;
  top: var(--store-header-height, 6.75rem);
  z-index: 45;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 2.85rem;
  padding: 0.45rem;
  background: #000;
  color: #fff;
  border: 0;
  border-radius: 0 9999px 9999px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition:
    max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.35s ease,
    gap 0.35s ease,
    background-color 0.2s ease;
}
@media (min-width: 1024px) {
  .store-shell.sidebar-collapsed .sidebar-expand-btn {
    display: inline-flex;
  }
}
.sidebar-expand-btn.hidden {
  display: none !important;
}
.sidebar-expand-btn .sidebar-menu-icon {
  color: #fff;
  flex-shrink: 0;
}
.sidebar-expand-btn__label {
  display: block;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  transition: max-width 0.35s ease, opacity 0.22s ease;
}
.store-shell.sidebar-collapsed .sidebar-expand-btn:hover,
.store-shell.sidebar-collapsed .sidebar-expand-btn:focus-visible {
  max-width: 15rem;
  padding: 0.45rem 0.9rem 0.45rem 0.45rem;
  gap: 0.55rem;
  justify-content: flex-start;
  background: #111;
  outline: none;
}
.store-shell.sidebar-collapsed .sidebar-expand-btn:hover .sidebar-expand-btn__label,
.store-shell.sidebar-collapsed .sidebar-expand-btn:focus-visible .sidebar-expand-btn__label {
  max-width: 11rem;
  opacity: 1;
}
.sidebar-expand-btn:focus:not(:focus-visible) {
  outline: none;
}
.sidebar-icon-btn:focus,
.sidebar-icon-btn:focus-visible,
.category-carousel__nav:focus,
.category-carousel__nav:focus-visible {
  outline: none;
}
.sidebar-icon-btn:focus-visible {
  opacity: 0.65;
}
.store-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.store-sidebar__head-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f172a;
}
.sidebar-dept-list.hidden {
  display: none;
}

/* ── Cards circulares de categoria ── */
.category-carousel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}
.category-carousel__viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.category-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.category-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1.75rem 2rem;
  padding: 0.9rem 0.35rem 0.75rem;
}
.category-carousel__nav {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #111827;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.category-carousel__nav svg {
  width: 1.15rem;
  height: 1.15rem;
}
.category-carousel__nav:hover:not(:disabled) {
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
}
.category-carousel__nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.category-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2rem;
  align-items: flex-start;
}
.category-cards--catalog {
  flex-wrap: nowrap;
}
.category-cards--home.category-cards {
  flex-wrap: nowrap;
}
.category-card {
  --category-card-size: 7.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: calc(var(--category-card-size) + 0.75rem);
  flex: 0 0 auto;
  text-decoration: none;
  color: #374151;
  transition: color 0.2s ease;
}
.category-card:hover {
  color: #111827;
}
.category-card__media {
  display: block;
  width: var(--category-card-size);
  height: var(--category-card-size);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(17, 24, 39, 0.1);
  background: #f3f4f6;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.22s ease, transform 0.22s ease;
  will-change: transform;
}
.category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.category-card__label {
  display: block;
  max-width: calc(var(--category-card-size) + 1.25rem);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.category-card:hover .category-card__media,
.category-card:focus-visible .category-card__media {
  border-color: rgba(17, 24, 39, 0.35);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
  transform: translateY(-5px) scale(1.04);
}
.category-card--active .category-card__media {
  border-color: #111827;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.18);
}
.category-card--active:hover .category-card__media,
.category-card--active:focus-visible .category-card__media {
  border-color: #111827;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
  transform: translateY(-5px) scale(1.04);
}
.category-card--active .category-card__label {
  color: #111827;
}
.category-card:focus-visible {
  outline: none;
}
.category-card:focus-visible .category-card__label {
  text-decoration: underline;
}
@media (min-width: 640px) {
  .category-card {
    --category-card-size: 9rem;
  }
  .category-card__label {
    font-size: 0.82rem;
  }
  .category-carousel__nav {
    width: 2.75rem;
    height: 2.75rem;
  }
}
/* ── Banner de categoria (catálogo) ── */
.catalog-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.catalog-toolbar__categories {
  width: 100%;
  min-width: 0;
}
.catalog-toolbar__sort-row {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.catalog-toolbar--category {
  gap: 0;
}
.catalog-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.store-body:has(.catalog-page) .store-shell {
  align-items: flex-start;
  flex: none;
  min-height: auto;
}
.store-body:has(.catalog-page) .store-main {
  min-height: auto;
  overflow: visible;
}

/* ── Catálogo: container-base (sidebar + produtos) ── */
.catalog-page {
  overflow: visible;
}
.catalog-page__body {
  width: 100%;
  overflow: visible;
}
.catalog-base {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  overflow: visible;
}
.catalog-base__body {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  column-gap: 1.5rem;
  align-items: start;
  width: 100%;
}
.catalog-base__sidebar {
  width: 220px;
  grid-column: 1;
  grid-row: 1;
}
.catalog-base__sort {
  min-width: 0;
}
.catalog-base__sort .catalog-toolbar {
  margin: 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.catalog-base__products {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  width: 100%;
}
.catalog-base__content--solo {
  min-width: 0;
  width: 100%;
}
.catalog-subcategory-sidebar {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0;
  background: #fff;
  box-sizing: border-box;
}
.catalog-subcategory-sidebar__title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.catalog-subcategory-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.catalog-filter-type + .catalog-filter-type {
  margin-top: 0.15rem;
}
.catalog-filter-type__label {
  font-weight: 700;
  color: #0f172a;
}
.catalog-filter-type__subs {
  margin: 0.4rem 0 0 0.85rem;
  padding-left: 0.75rem;
  border-left: 2px solid #e2e8f0;
}
.catalog-filter-sub + .catalog-filter-sub {
  margin-top: 0.55rem;
}
.catalog-filter-sub__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}
.catalog-filter-sub__options {
  margin: 0.3rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}
.catalog-filter-option {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  white-space: nowrap;
}
.catalog-filter-option input {
  width: 0.85rem;
  height: 0.85rem;
  accent-color: #000;
}
.catalog-subcategory-filter {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.2rem;
  font-size: 0.875rem;
  color: #334155;
  cursor: pointer;
}
.catalog-subcategory-filter input {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: #000;
}
.catalog-subcategory-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.catalog-subcategory-group__title {
  margin: 0.5rem 0 0.15rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.catalog-subcategory-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  padding-left: 1.35rem;
}
.catalog-subcategory-option {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: #475569;
  cursor: pointer;
}
.catalog-subcategory-option input {
  width: 0.9rem;
  height: 0.9rem;
  accent-color: #000;
}
@media (max-width: 1024px) {
  .catalog-base__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .catalog-base__sidebar {
    width: 100%;
    grid-column: auto;
    grid-row: auto;
    order: -1;
  }
  .catalog-base__products {
    grid-column: auto;
    grid-row: auto;
  }
  .catalog-subcategory-sidebar {
    width: 100%;
  }
  .catalog-filter-sub__options {
    gap: 0.35rem 0.65rem;
  }
}
.category-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 14rem;
  margin-bottom: 2rem;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}
@media (min-width: 640px) {
  .category-banner {
    min-height: 18rem;
  }
}
@media (min-width: 1024px) {
  .category-banner {
    min-height: 22rem;
    margin-bottom: 2.5rem;
  }
}
.category-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.category-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.category-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: 2rem 1.25rem;
}
@media (min-width: 640px) {
  .category-banner__content {
    padding: 2.75rem 2rem;
  }
}
@media (min-width: 1024px) {
  .category-banner__content {
    padding: 3.25rem 2.5rem;
  }
}
.category-banner__back {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.category-banner__back:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.65);
  transform: translateX(-2px);
}
.category-banner__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.category-banner__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.category-banner__copy {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}
.category-banner__meta {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
@media (min-width: 640px) {
  .category-banner__copy {
    font-size: 1rem;
  }
}

.catalog-sort {
  min-width: 10.5rem;
  border-radius: 0;
  cursor: pointer;
}

.store-logo-link {
  line-height: 0;
  color: #111111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
}

/* Logo provisória De Tudo — Permanent Marker */
.store-logo-wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-family: 'Permanent Marker', cursive;
  color: #111111;
}

.store-logo-wordmark__de {
  font-size: 2rem;
  margin-bottom: 0.55rem;
}

.store-logo-wordmark__tudo {
  font-size: 2.45rem;
}

.store-logo-wordmark__sep {
  margin: 0 0.35rem;
  display: inline-flex;
  align-items: center;
  transform: rotate(-5deg);
}

.store-logo-wordmark__sep svg {
  width: 1.35rem;
  height: 0.8rem;
  display: block;
}

.store-logo-wordmark--header .store-logo-wordmark__de {
  font-size: 1.65rem;
  margin-bottom: 0.45rem;
}

.store-logo-wordmark--header .store-logo-wordmark__tudo {
  font-size: 2rem;
}

.store-logo-wordmark--header .store-logo-wordmark__sep {
  margin: 0 0.3rem;
}

.store-logo-wordmark--header .store-logo-wordmark__sep svg {
  width: 1.15rem;
  height: 0.68rem;
}

/* Header mobile: logo um pouco menor */
@media (max-width: 767px) {
  .store-logo-wordmark--header .store-logo-wordmark__de {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
  }
  .store-logo-wordmark--header .store-logo-wordmark__tudo {
    font-size: 1.45rem;
  }
  .store-logo-wordmark--header .store-logo-wordmark__sep {
    margin: 0 0.15rem;
  }
  .store-logo-wordmark--header .store-logo-wordmark__sep svg {
    width: 0.8rem;
    height: 0.48rem;
  }
  .store-logo-link img.store-logo {
    height: 1.65rem;
    max-width: 7rem;
  }
}

.store-logo-wordmark--footer .store-logo-wordmark__de {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.store-logo-wordmark--footer .store-logo-wordmark__tudo {
  font-size: 1.65rem;
}

.store-logo-wordmark--footer .store-logo-wordmark__sep svg {
  width: 1rem;
  height: 0.6rem;
}

/* ===== Grid de produtos (cards menores e centralizados) ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem 1.25rem;
  justify-items: center;
}
@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.75rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.25rem 1.75rem;
  }
}

/* ===== Card de produto ===== */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: visible;
  width: 100%;
  max-width: 280px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

/* Área da imagem — proporção quadrada */
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: visible;
  flex-shrink: 0;
}
.product-card__media:has(.product-card__sale-tag) {
  z-index: 2;
}
.product-card__link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  border-radius: 0;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.7s ease;
}
.product-card__img.is-fading {
  opacity: 0;
}
.product-card__media:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__sale-tag {
  position: absolute;
  top: 0.22rem;
  left: -0.14rem;
  z-index: 16;
  width: 3.35rem;
  height: 4.5rem;
  pointer-events: none;
  transform: rotate(-14deg);
  transform-origin: top left;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.24));
}
.product-card__sale-tag__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.product-card__sale-tag__body {
  fill: #ea580c;
  stroke: #c2410c;
  stroke-width: 0.75;
  stroke-linejoin: round;
}
.product-card__sale-tag__loop {
  stroke: #ea580c;
  stroke-width: 2.6;
  stroke-linecap: round;
}
.product-card__sale-tag__label {
  position: absolute;
  left: 0;
  right: 0;
  top: 1.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  line-height: 1;
}
.product-card__sale-tag__pct {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.product-card__sale-tag__off {
  margin-top: 0.06rem;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.96;
}

.product-card__rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.2rem;
  min-width: 0;
  flex-shrink: 0;
}
.product-card__rating--empty {
  pointer-events: none;
}
.product-card__rating .product-stars {
  gap: 0.05rem;
  height: 0.78rem;
  align-items: center;
}
.product-card__rating .product-stars__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.78rem;
  height: 0.78rem;
  font-size: 0.78rem;
  line-height: 1;
  flex-shrink: 0;
}
.product-card__rating .product-stars__star--full {
  color: #dc2626;
  -webkit-text-stroke: 0.35px #000;
  paint-order: stroke fill;
}
.product-card__rating .product-stars__star--empty {
  color: rgba(0, 0, 0, 0.18);
  -webkit-text-stroke: 0.35px #000;
  paint-order: stroke fill;
}
.product-card__rating .product-stars__star--half {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.78rem;
  height: 0.78rem;
  font-size: 0.78rem;
  line-height: 1;
  vertical-align: top;
  overflow: hidden;
}
.product-card__rating .product-stars__star-outline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.78rem;
  line-height: 1;
  color: rgba(0, 0, 0, 0.18);
  -webkit-text-stroke: 0.35px #000;
  paint-order: stroke fill;
}
.product-card__rating .product-stars__star-half-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.product-card__rating .product-stars__star-half-inner {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.78rem;
  height: 0.78rem;
  line-height: 1;
  color: #dc2626;
  -webkit-text-stroke: 0.35px #000;
  paint-order: stroke fill;
}
.product-card__rating-count {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

/* Nome, preço e carrinho */
.product-card__info {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  box-sizing: border-box;
  width: 100%;
  padding: 0.15rem 0.55rem 0;
  background: transparent;
  border: 0;
  overflow: visible;
  text-align: left;
}
.product-card__title {
  display: -webkit-box;
  box-sizing: border-box;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.01em;
  text-align: left;
}
.product-card__title:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #000000;
}
.product-card__prices {
  margin-top: 0.08rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding-right: 0.1rem;
  box-sizing: border-box;
  overflow: visible;
}
.product-card__price-group {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.2rem 0.35rem;
  min-width: 0;
  grid-column: 1;
  text-align: left;
}
.product-card__old {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  text-decoration: line-through;
  white-space: nowrap;
  flex-shrink: 0;
}
.product-card__price {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #000000;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Setas para alternar imagens (apenas ícone, sem fundo) */
.product-card__nav-layer {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}
.product-card__nav {
  position: absolute;
  top: 50%;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  pointer-events: auto;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.65));
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.product-card__nav svg {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}
.product-card__nav:hover {
  transform: translateY(-50%) scale(1.12);
  opacity: 0.85;
}
.product-card__nav--prev {
  left: 0.2rem;
}
.product-card__nav--next {
  right: 0.2rem;
}

/* Coração (favoritar) — canto superior direito */
.product-card__fav {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
  transition: transform 0.2s ease, color 0.2s ease;
}
.product-card__fav:hover {
  transform: scale(1.12);
}
.product-card__fav.is-active {
  color: #ef4444;
}
.product-card__fav svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke-width: 1.8;
  transition: fill 0.2s ease, stroke 0.2s ease;
}
.product-card__fav.is-active svg {
  fill: #ef4444;
  stroke: #ef4444;
}
.product-card__fav.pop {
  animation: favPop 0.35s ease;
}
@keyframes favPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Botão comprar */
.product-card__footer {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0;
  background: transparent;
  border: 0;
}
.product-card__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84%;
  max-width: 14rem;
  min-height: 2.75rem;
  padding: 0.72rem 0.85rem;
  border: 2px solid #000000;
  border-radius: 9999px;
  background: #ffffff;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.product-card__buy:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.product-card__cart {
  grid-column: 2;
  justify-self: end;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin: 0;
  padding: 0.15rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000000;
  cursor: pointer;
  overflow: visible;
}
.product-card__cart:active {
  transform: translateY(1px);
  opacity: 0.7;
}
.product-card__cart svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
  flex-shrink: 0;
}

/* ===== Galeria na página do produto ===== */
.product-gallery {
  position: relative;
  align-self: start;
  width: 100%;
}
.product-gallery__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f9fafb;
}
.product-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}
.product-gallery__img.is-fading {
  opacity: 0;
}
.product-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 0 0;
}
.product-gallery__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d1d5db;
  cursor: pointer;
}
.product-gallery__dot.is-active {
  background: #000;
}

.product-seller {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.25rem;
  padding: 0.875rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  max-width: 100%;
}
.product-seller__label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #737373;
}
.product-seller__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}
.product-seller__link {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.product-seller__link:hover {
  color: #000;
}

.store-rating {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}
.store-rating__label {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #737373;
}
.store-rating__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.store-rating__count {
  font-size: 0.75rem;
  color: #64748b;
}

.storefront-header-rating .store-rating {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  align-items: center;
}

.cart-shipping {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.cart-shipping__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.cart-shipping__title {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #475569;
}
.shipping-cep {
  margin-bottom: 0.75rem;
}
.shipping-cep__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.shipping-cep__row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
.shipping-cep__input {
  flex: 1;
  min-width: 0;
  border: 1px solid #000;
  border-radius: 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  background: #fff;
}
.shipping-cep__input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.shipping-cep__input--error {
  border-color: #dc2626;
}
.shipping-cep__ok {
  flex-shrink: 0;
  min-width: 3rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.shipping-cep__ok:hover:not(:disabled) {
  opacity: 0.72;
}
.shipping-cep__ok:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.shipping-cep__hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}
.shipping-cep__hint.hidden {
  display: none;
}
.cart-shipping__empty {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}
.cart-shipping__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.cart-shipping__field span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.cart-shipping__field input {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.cart-shipping__field--inline {
  margin-bottom: 0;
  min-width: 8rem;
}
.cart-shipping__hint,
.cart-shipping__error {
  font-size: 0.8125rem;
  color: #64748b;
}
.cart-shipping__error {
  color: #b45309;
}
.cart-shipping__options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cart-shipping__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  cursor: pointer;
}
.cart-shipping__option.is-selected {
  border-color: #111;
  background: #fafafa;
}
.cart-shipping__option input {
  accent-color: #111;
}
.cart-shipping__option-main {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
}
.cart-shipping__option-main strong {
  font-size: 0.8125rem;
  color: #0f172a;
}
.cart-shipping__option-main small {
  font-size: 0.75rem;
  color: #64748b;
}
.cart-shipping__option-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}
.product-shipping {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
}
.product-shipping .cart-shipping {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-detail-media-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-detail-back {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  text-decoration: none;
  align-self: flex-start;
}
.product-detail-back:hover {
  color: #000;
  text-decoration: underline;
}
.product-detail-description {
  padding-top: 0.25rem;
}
.product-detail-description__title {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
}
.product-detail-description__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #475569;
  white-space: pre-line;
}
.product-detail-stock {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
}
.product-detail-variant-group + .product-detail-variant-group {
  margin-top: 1rem;
}
.product-detail-variants__label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}
.product-detail-variants__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-detail-variant {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  min-width: 3.25rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid #d1d5db;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
}
.product-detail-variant small {
  font-size: 0.625rem;
  font-weight: 600;
  color: #64748b;
}
.product-detail-variant.is-active {
  border-color: #000;
  background: #000;
  color: #fff;
}
.product-detail-variant.is-active small {
  color: #e2e8f0;
}
.product-detail-variant.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.product-detail-stock__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.product-detail-stock__label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}
.product-detail-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product-detail-qty__label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}
.product-detail-qty__control {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid #d1d5db;
}
.product-detail-qty__btn {
  width: 2.25rem;
  border: 0;
  background: #fff;
  font-size: 1rem;
  line-height: 1;
  color: #0f172a;
  cursor: pointer;
}
.product-detail-qty__btn:hover:not(:disabled) {
  background: #f3f4f6;
}
.product-detail-qty__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.product-detail-qty__value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  padding: 0.45rem 0.5rem;
  border-left: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.product-payment {
  margin: 0;
  padding: 1.25rem 0 0;
  container-type: inline-size;
  container-name: payment;
}
.product-payment__head {
  margin-bottom: 0.85rem;
}
.product-payment__title {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0f172a;
}
.product-payment__headline {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
}
.product-payment__loading {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
}
.product-payment__body {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.product-payment__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 0 0 auto;
}
.product-payment__list > li {
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}
.product-payment__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 4.25rem;
  min-height: 3.25rem;
  padding: 0.4rem 0.3rem 0.35rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
  overflow: visible;
}
.product-payment__option.is-selected {
  border-color: #111;
  background: #fafafa;
}
.product-payment__option-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.5rem;
}
.product-payment__logo {
  display: block;
  width: auto;
  height: 1.35rem;
  max-width: 2.75rem;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}
.product-payment__logo--pix {
  height: 1.4rem;
  width: 1.4rem;
}
.product-payment__logo--card {
  height: 1.35rem;
  width: 1.35rem;
}
.product-payment__logo--single {
  height: 1.35rem;
  max-width: 2.5rem;
}
.product-payment__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 0.95rem;
  padding: 0 0.15rem;
  font-size: 0.4375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid #e5e7eb;
  border-radius: 0.3rem;
  color: #0f172a;
}
.product-payment__icon--pix {
  background: #32bcad;
  border-color: #32bcad;
  color: #fff;
}
.product-payment__icon--card {
  font-size: 0.375rem;
  letter-spacing: 0.08em;
  color: #64748b;
}
.product-payment__icon--boleto {
  font-size: 0.5rem;
  letter-spacing: -0.05em;
  color: #64748b;
}
.product-payment__option-label {
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
}
.product-payment__badge {
  position: absolute;
  top: -0.35rem;
  right: -0.3rem;
  z-index: 1;
  padding: 0.1rem 0.28rem;
  font-size: 0.4375rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 0 0 2px #fff;
}
.product-payment__option:has(.product-payment__badge) {
  position: relative;
}
.product-payment__brands {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.7rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid #eef2f7;
  border-radius: 0.5rem;
  background: #f8fafc;
}
.product-payment__brand {
  display: block;
  height: 1.35rem;
  width: auto;
  max-width: 2.75rem;
  object-fit: contain;
}
.product-payment__note {
  margin: 0.65rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #94a3b8;
}

.product-payment--credit .product-payment__body {
  align-items: center;
}
.product-payment--checkout .product-payment__body {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.product-payment--checkout .product-payment__list {
  width: 100%;
}
.product-payment--checkout .product-payment-installments {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
  width: 100%;
  flex: none;
}
.product-payment-installments {
  flex: 1 1 auto;
  min-width: 0;
  margin-left: 0.35rem;
  padding-left: 1.25rem;
  border-left: 1px solid #e5e7eb;
}
.product-payment-installments__select {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0.55rem 2rem 0.55rem 0.65rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23111' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.65rem center;
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  text-overflow: ellipsis;
}
@container payment (max-width: 28rem) {
  .product-payment--credit:not(.product-payment--checkout) .product-payment__body {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  .product-payment--credit:not(.product-payment--checkout) .product-payment-installments {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    flex: none;
  }
}
.product-payment-installments__select:hover {
  border-color: #9ca3af;
}
.product-payment-installments__select:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1);
}
.product-payment-installments__select option {
  color: #0f172a;
  font-size: 0.8125rem;
}
.product-payment-installments__loading,
.product-payment-installments__empty {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
}
.product-payment__error {
  margin: 0;
  font-size: 0.8125rem;
  color: #b91c1c;
}

.cart-payment-selected-wrap {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.cart-payment-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}
.cart-payment-summary__label {
  font-size: 0.8125rem;
  color: #64748b;
}
.cart-payment-summary__value {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  max-width: 100%;
  word-break: break-word;
}

.product-detail-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.product-detail-actions__primary,
.product-detail-actions__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.product-detail-actions__primary {
  background: #000;
  color: #fff;
  transition: opacity 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.product-detail-actions__primary:hover {
  opacity: 0.72;
}
.product-detail-actions__secondary {
  background: transparent;
  color: #111;
  border: 1px solid #111;
}
.product-detail-actions__secondary:hover {
  background: #111;
  color: #fff;
}

/* ===== Header search ===== */
.header-search {
  max-width: 15.5rem;
}
.header-search__input::-webkit-search-decoration,
.header-search__input::-webkit-search-results-button,
.header-search__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}
.header-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 0.875rem;
  height: 0.875rem;
  margin-left: 0.25rem;
  cursor: pointer;
  background: center / 0.75rem 0.75rem no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.75' stroke-linecap='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
  opacity: 1;
}
.header-search__input::-ms-clear {
  width: 0.875rem;
  height: 0.875rem;
  color: #000;
}

/* ===== Header top bar / social ===== */
.header-top-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  min-height: 2.25rem;
}
.header-top-bar__text {
  margin: 0;
  padding: 0 6.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
  text-align: center;
}
.header-top-bar__social {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  color: #475569;
  border-radius: 9999px;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.header-social-link:hover {
  color: #000;
  background-color: #e5e7eb;
}
.header-social-link__icon {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
}
@media (max-width: 639px) {
  .header-top-bar__inner {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem 0.55rem;
  }
  .header-top-bar__text {
    padding: 0;
    font-size: 0.625rem;
    line-height: 1.35;
  }
  .header-top-bar__social {
    position: static;
    transform: none;
  }
}

/* ===== Header CEP ===== */
.store-header-row {
  min-width: 0;
}
.store-header-side {
  min-width: 0;
}
.store-header-brand {
  position: relative;
  z-index: 1;
}
.header-left-tools {
  margin-left: -2.25rem;
}
.header-cep-wrap--desktop {
  display: none;
}
@media (min-width: 768px) {
  .header-cep-wrap--desktop {
    display: block;
  }
}
.header-mobile-toolbar {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  margin-top: 0.85rem;
  min-width: 0;
}
.header-cep-wrap--mobile {
  flex-shrink: 0;
  min-width: 0;
}
.header-mobile-toolbar__search {
  flex: 1 1 auto;
  min-width: 0;
}
.header-cep {
  position: relative;
  flex-shrink: 0;
  min-width: 0;
  margin-left: -0.75rem;
  margin-right: 4.5rem;
}
@media (max-width: 767px) {
  .header-left-tools {
    margin-left: 0;
  }
  .header-cep {
    margin: 0;
  }
  .header-cep--toolbar .header-cep-label {
    display: flex;
    max-width: 6.5rem;
  }
  .header-cep--toolbar .header-cep-label__city,
  .header-cep--toolbar .header-cep-label__placeholder {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .header-cep--toolbar .header-cep-trigger {
    gap: 0.4rem;
  }
  .header-cep--toolbar .header-cep-icon {
    width: 1.65rem;
    height: 1.65rem;
  }
  .header-cep--toolbar .header-cep-panel {
    left: 0;
    right: auto;
    min-width: min(18rem, calc(100vw - 2rem));
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .header-cep--toolbar .header-cep-label {
    max-width: 8rem;
  }
}
.header-cep-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.15s ease;
}
.header-cep-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 9rem;
}
@media (min-width: 768px) {
  .header-cep-label {
    max-width: 11rem;
  }
  .header-cep-label__city {
    font-size: 0.875rem;
  }
}
.header-cep-label__stack {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}
.header-cep-label__city {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-cep-label__cep {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #64748b;
  line-height: 1.2;
}
.header-cep-label__cep--solo {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #000;
}
.header-cep-label__placeholder {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #000;
  white-space: nowrap;
}
.header-cep-trigger:hover {
  opacity: 0.72;
}
.header-cep-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .header-cep-icon {
    width: 2.35rem;
    height: 2.35rem;
  }
}
.header-cep-icon__pin {
  fill: #000;
}
.header-cep-icon__hole {
  fill: #fff;
}
.header-cep-trigger:hover .header-cep-icon__pin {
  fill: #000;
}
.header-cep-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  z-index: 50;
  min-width: 12.5rem;
  padding: 0.65rem 0.75rem;
  background: #fff;
  border: 1px solid #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.header-cep-panel[hidden] {
  display: none !important;
}
.header-cep-panel-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
.header-cep-input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #000;
  background: transparent;
  padding: 0.35rem 0;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000;
  outline: none;
}
.header-cep-ok {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.header-cep-ok:hover:not(:disabled) {
  opacity: 0.72;
}
.header-cep-ok:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.header-cep-input::placeholder {
  color: #737373;
  font-weight: 600;
}
.header-cep-input--error {
  color: #dc2626;
  border-bottom-color: #dc2626;
}
.header-cep-hint {
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
}
.header-cep-hint.hidden {
  display: none;
}
.header-cep-panel .header-cep-hint:not(.hidden) {
  color: #000;
}
.header-cep-panel-row:has(.header-cep-input--error) + .header-cep-hint:not(.hidden) {
  color: #dc2626;
}

.sacola-checkout-btn {
  display: block;
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.sacola-checkout-btn:hover:not(:disabled) {
  opacity: 0.72;
}
.sacola-checkout-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.store-modal__panel--wide {
  max-width: 28rem;
}
.payment-result-modal .store-modal__title {
  margin-bottom: 0.25rem;
}

/* ── PIX result ── */
.payment-pix-header {
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.payment-pix-header__logo {
  display: block;
  width: auto;
  height: 1.75rem;
  max-width: 5.5rem;
  object-fit: contain;
}
.payment-pix-timer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.75rem;
  text-align: center;
}
.payment-pix-timer.is-expired {
  background: #fef2f2;
  border-color: #fecaca;
}
.payment-pix-timer__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: #166534;
  line-height: 1.4;
}
.payment-pix-timer.is-expired .payment-pix-timer__label {
  color: #991b1b;
}
.payment-pix-timer__value {
  font-size: 0.9375rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  color: #14532d;
  line-height: 1.4;
}
.payment-pix-timer__value.is-expired,
.payment-pix-timer.is-expired .payment-pix-timer__value {
  color: #991b1b;
}

.payment-result__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.payment-result__hint {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}
.payment-result__qr-wrap {
  display: flex;
  justify-content: center;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
}
.payment-result__qr {
  display: block;
  width: 100%;
  max-width: 11rem;
  height: auto;
}
.payment-result__pix-box {
  position: relative;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
}
.payment-result__pix-code {
  display: block;
  width: 100%;
  min-height: 4.5rem;
  font-size: 0.625rem;
  line-height: 1.45;
  padding: 0.65rem 2.5rem 0.65rem 0.65rem;
  border: none;
  border-radius: 0;
  resize: none;
  font-family: ui-monospace, monospace;
  background: transparent;
  color: #0f172a;
  box-sizing: border-box;
}
.payment-result__copy-btn--inline {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0.2rem;
  border: none;
  background: transparent;
  color: #000;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: color 0.15s ease, background 0.15s ease;
}
.payment-result__copy-icon {
  display: block;
  width: 1rem;
  height: 1rem;
}
.payment-result__copy-btn--inline:hover:not(:disabled) {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
}
.payment-result__copy-btn--inline:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.payment-result__copy-btn--inline.is-copied {
  color: #166534;
  background: rgba(22, 101, 52, 0.1);
}
.payment-result__copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.payment-result__copy-btn.is-copied {
  background: #166534;
  border-color: #166534;
  color: #fff;
}

.payment-result__meta-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid #e5e7eb;
}
.payment-result__meta-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
}
.payment-result__meta-list dt {
  color: #64748b;
  font-weight: 500;
}
.payment-result__meta-list dd {
  margin: 0;
  font-weight: 700;
  color: #0f172a;
  text-align: right;
}
.payment-result__meta-list--highlight {
  padding: 0.875rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  border-top: 1px solid #e5e7eb;
}

.payment-result__barcode-box {
  padding: 0.875rem;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 0.75rem;
}
.payment-result__barcode-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.5rem;
}
.payment-result__barcode {
  word-break: break-all;
  font-family: ui-monospace, monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.payment-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.payment-result__actions .store-modal__btn {
  flex: 1;
  min-width: 8rem;
  text-decoration: none;
  text-align: center;
}

/* ── Card status result ── */
.payment-card-status {
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
}
.payment-card-status.is-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.payment-card-status.is-waiting {
  background: #fffbeb;
  border: 1px solid #fde68a;
}
.payment-card-status.is-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.payment-card-status__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.payment-card-status__message {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

/* ── Card form inline (resumo do pedido) ── */
.cart-card-form-root {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.cart-card-form-root[hidden] {
  display: none !important;
}
.payment-card-inline {
  padding: 0.75rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}
.payment-card-inline__title {
  margin: 0 0 0.65rem;
  padding: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
  background: transparent;
  border-bottom: none;
}
.payment-card-form__hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: #64748b;
  font-weight: 500;
}
.payment-card-inline .payment-card-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 0.65rem 0.85rem;
}
.payment-card-inline .payment-card-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.payment-card-inline .payment-card-form__field span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.payment-card-inline .payment-card-form__field input {
  width: 100%;
  border: 1px solid #000;
  border-radius: 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  background: #fff;
}
.payment-card-inline .payment-card-form__field input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}
.payment-card-inline .payment-card-form__field input:focus {
  outline: none;
  border-color: #000;
  box-shadow: inset 0 0 0 1px #000;
}
.payment-card-inline .payment-card-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: end;
}
@media (max-width: 380px) {
  .payment-card-inline .payment-card-form__row {
    grid-template-columns: 1fr;
  }
  .payment-card-inline .payment-card-form__field--cvv {
    width: 100%;
  }
}
.payment-card-inline .payment-card-form__field--cvv {
  width: 5.25rem;
}
.payment-card-inline .payment-card-form__exp {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.payment-card-inline .payment-card-form__exp input {
  width: 3rem;
  text-align: center;
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}
.payment-card-inline .payment-card-form__exp input[name="expYear"] {
  width: 4.25rem;
}
.payment-card-inline .payment-card-form__exp span {
  color: #000;
  font-weight: 700;
}
.payment-card-inline .payment-card-form__error {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: #dc2626;
  line-height: 1.4;
}

.payment-card-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.payment-card-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.payment-card-form__field span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.payment-card-form__field input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem 0.875rem;
  font-size: 0.9375rem;
  color: #0f172a;
  background: #fff;
}
.payment-card-form__field input:focus {
  outline: none;
  border-color: #0f172a;
}
.payment-card-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: end;
}
@media (max-width: 380px) {
  .payment-card-form__row {
    grid-template-columns: 1fr;
  }
  .payment-card-form__field--cvv {
    width: 100%;
  }
}
.payment-card-form__field--cvv {
  width: 5.5rem;
}
.payment-card-form__exp {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.payment-card-form__exp input {
  width: 3.25rem;
  text-align: center;
}
.payment-card-form__exp input[name="expYear"] {
  width: 4.5rem;
}
.payment-card-form__exp span {
  color: #94a3b8;
  font-weight: 600;
}
.payment-card-form__error {
  margin: 0;
  font-size: 0.8125rem;
  color: #dc2626;
  line-height: 1.4;
}
.payment-card-form__actions {
  margin-top: 0.25rem;
}

.cart-coupon {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.cart-coupon__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.cart-coupon__row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}
.cart-coupon__input {
  flex: 1;
  min-width: 0;
  border: 1px solid #000;
  padding: 0.55rem 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  background: #fff;
  text-transform: uppercase;
}
.cart-coupon__input::placeholder {
  color: #94a3b8;
  font-weight: 500;
  text-transform: none;
}
.cart-coupon__ok {
  flex-shrink: 0;
  min-width: 3rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.cart-coupon__ok:hover:not(:disabled) {
  opacity: 0.72;
}
.cart-coupon__ok:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.cart-coupon__msg {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}
.cart-coupon__msg.hidden {
  display: none;
}
.cart-coupon__msg--error {
  color: #dc2626;
}
.cart-coupon__applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.cart-coupon__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border: 1px solid #000;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-coupon__remove {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
}
.cart-coupon__remove:hover {
  color: #000;
}
.cart-summary__discount {
  color: #059669;
}

/* ===== Modal Quem somos ===== */
body.store-modal-open {
  overflow: hidden;
}
.store-modal[hidden] {
  display: none !important;
}
.store-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.store-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.store-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  background: #fff;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}
.store-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
}
.store-modal__close:hover {
  color: #111;
}
.store-modal__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.store-modal__title {
  margin-top: 0.35rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
}
.store-modal__body {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #475569;
}
.store-modal__btn {
  margin-top: 1.5rem;
  width: 100%;
  border: 0;
  background: #000;
  color: #fff;
  padding: 0.85rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}
.store-modal__btn:hover {
  background: #262626;
}
.store-modal__actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.store-modal__actions .store-modal__btn {
  margin-top: 0;
}
@media (min-width: 480px) {
  .store-modal__actions {
    flex-direction: row;
  }
  .store-modal__actions .store-modal__btn {
    flex: 1;
  }
}
.store-modal__btn--ghost {
  background: #fff;
  color: #111;
  border: 1px solid #000;
}
.store-modal__btn--ghost:hover {
  background: #f3f4f6;
}

/* ===== Cupom via link / QR ===== */
.coupon-landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 40vh;
  text-align: center;
  padding: 2rem 1rem;
}
.coupon-landing--error p {
  color: #64748b;
  font-size: 1rem;
}
.coupon-landing__hint {
  color: #475569;
  font-size: 0.9375rem;
}
.coupon-landing__btn {
  display: inline-block;
  width: auto;
  min-width: 12rem;
  text-decoration: none;
  text-align: center;
}
.coupon-reveal-modal .store-modal__title {
  text-align: center;
}
.coupon-reveal__message {
  text-align: center;
  margin-bottom: 0.75rem;
}
.coupon-reveal__benefit {
  text-align: center;
  color: #059669;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.coupon-reveal__code-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.coupon-reveal__code {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 1rem 0.75rem;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  color: #111;
}
.coupon-reveal__copy {
  border: 1px solid #000;
  background: #fff;
  color: #111;
  padding: 0.65rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}
.coupon-reveal__copy:hover {
  background: #f3f4f6;
}
.coupon-reveal__meta {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
}
.coupon-reveal__actions {
  margin-top: 1.25rem;
}

.store-modal__btn--danger {
  background: #dc2626;
}
.store-modal__btn--danger:hover {
  background: #b91c1c;
}

/* ===== Avaliações do produto ===== */
.product-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  line-height: 1;
}
.product-stars--sm .product-stars__star { font-size: 0.85rem; }
.product-stars--lg .product-stars__star { font-size: 1.35rem; }
.product-stars__star {
  font-size: 1rem;
  color: #d1d5db;
}
.product-stars__star--full {
  color: #000;
}
.product-stars__star--empty {
  color: #d1d5db;
}
.product-stars__star--half {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: middle;
}
.product-stars__star-outline {
  display: block;
  width: 1em;
  line-height: 1;
  color: #d1d5db;
}
.product-stars__star-half-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.product-stars__star-half-inner {
  display: block;
  width: 1em;
  line-height: 1;
  color: #000;
}
.product-stars__value {
  margin-left: 0.45rem;
  font-size: 1.125rem;
  font-weight: 800;
  color: #111;
}
.product-rating-block {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e5e7eb;
}
.product-rating-block__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}
.product-rating-block__count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}
.product-rating-block__cta {
  margin-left: auto;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  padding: 0.45rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.product-rating-block__cta:hover {
  background: #000;
  color: #fff;
}
.product-reviews-section {
  scroll-margin-top: 6rem;
}

/* Produtos similares (página do produto) */
.product-similar-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}
.product-similar-section__head {
  margin-bottom: 2rem;
}
.product-similar-section__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}
.product-similar-section__sub {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}

.product-reviews-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.product-reviews-section__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}
.product-reviews-section__summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
}
.product-reviews-section__layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .product-reviews-section__layout {
    grid-template-columns: 16rem 1fr;
    gap: 3rem;
  }
}
.product-reviews-dist {
  display: grid;
  gap: 0.5rem;
}
.product-reviews-dist__row {
  display: grid;
  grid-template-columns: 2rem 1fr 2rem;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}
.product-reviews-dist__bar {
  height: 0.45rem;
  background: #e5e7eb;
  overflow: hidden;
}
.product-reviews-dist__bar span {
  display: block;
  height: 100%;
  background: #000;
}
.product-reviews-dist__count {
  text-align: right;
  color: #94a3b8;
}
.product-reviews-section__list {
  display: grid;
  gap: 1rem;
}
.product-review-card {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 1rem 1.15rem;
}
.product-review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.product-review-card__author {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111;
}
.product-review-card__date {
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-review-card__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #475569;
}

/* ===== Minha Conta ===== */
.account-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}
.account-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.account-header__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}
.account-header__title {
  margin: 0.25rem 0 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: #111;
}
.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
}
.account-tab {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: 0.35rem;
}
.account-tab.is-active,
.account-tab:hover {
  color: #111;
  background: #f3f4f6;
}
.account-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1.25rem;
}
.account-alert {
  margin-bottom: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #fde68a;
  background: #fffbeb;
  color: #92400e;
  font-size: 0.875rem;
  line-height: 1.5;
}
.account-alert strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #78350f;
}
.account-panel--highlight {
  border-color: #111;
}
.account-panel__title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.account-panel__title-sm {
  font-weight: 700;
  color: #111;
}
.account-panel__sub {
  margin: -0.5rem 0 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}
.account-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.account-panel__meta {
  font-size: 0.6875rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.account-panel__value {
  font-size: 1.125rem;
  font-weight: 800;
  margin-top: 0.15rem;
}
.account-form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .account-form-grid { grid-template-columns: 1fr; }
}
.account-field--wide { grid-column: 1 / -1; }
.account-field span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.35rem;
}
.account-field input,
.account-field select,
.account-field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  padding: 0.6rem 0.75rem;
  font: inherit;
  background: #fff;
}
.account-field input:focus,
.account-field select:focus,
.account-field textarea:focus {
  outline: none;
  border-color: #111;
}
.account-btn {
  margin-top: 1rem;
  border: 0;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.account-btn:hover { background: #262626; }
.account-btn--ghost {
  background: transparent;
  color: #111;
  border: 1px solid #111;
}
.account-btn--ghost:hover { background: #111; color: #fff; }
.account-msg {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
}
.account-msg--ok { color: #15803d; }
.account-msg--err { color: #dc2626; }
.account-msg.hidden { display: none; }
.account-stack { display: grid; gap: 1rem; }
.account-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  color: #475569;
}
.account-empty {
  color: #64748b;
  font-size: 0.875rem;
}
.account-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
}
.account-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}
.account-reply {
  margin-top: 0.85rem;
  padding: 0.75rem;
  background: #f9fafb;
  border-left: 3px solid #111;
  font-size: 0.8125rem;
}
.account-reply__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.25rem;
}
.account-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
}
.account-badge--confirmado,
.account-badge--entregue,
.account-badge--respondida,
.account-badge--aprovada,
.account-badge--concluida {
  background: #dcfce7;
  color: #166534;
}
.account-badge--pendente,
.account-badge--aberta,
.account-badge--analisando {
  background: #fef9c3;
  color: #854d0e;
}
.account-badge--cancelado,
.account-badge--recusada {
  background: #fee2e2;
  color: #991b1b;
}
.account-fav-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.account-fav-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
  color: inherit;
}
.account-fav-card img,
.account-fav-card__ph {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
  background: #f3f4f6;
  flex-shrink: 0;
}
.account-fav-card__name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #111;
}
.account-fav-card__price {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.15rem;
}

/* Carrinho — badge e toast ao adicionar */
.cart-counter.is-pop {
  animation: cartBadgePop 0.45s ease;
}
@keyframes cartBadgePop {
  0% { transform: scale(1); }
  35% { transform: scale(1.4); }
  70% { transform: scale(0.92); }
  100% { transform: scale(1); }
}
.cart-counter--wide {
  min-width: 1.25rem;
  width: auto;
  padding: 0 0.25rem;
}

/* Cronômetro promocional — faixa de urgência */
.promo-countdown--flash {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 48%, #111827 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.promo-countdown--flash::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(234, 88, 12, 0.12) 50%,
    transparent 65%
  );
  animation: promo-countdown-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
.promo-countdown__glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.35) 0%, transparent 68%);
  pointer-events: none;
  filter: blur(8px);
}
.promo-countdown__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem 1.1rem;
}
.promo-countdown__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
}
.promo-countdown__icon {
  display: inline-flex;
  width: 1.15rem;
  height: 1.15rem;
  color: #fb923c;
  flex-shrink: 0;
}
.promo-countdown__icon svg {
  width: 100%;
  height: 100%;
}
.promo-countdown__deal {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fb923c 0%, #ea580c 100%);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.45);
}
.promo-countdown__label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}
.promo-countdown__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.35rem;
}
.promo-countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 3rem;
}
.promo-countdown__slot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.85rem;
  min-height: 2.85rem;
  padding: 0.35rem 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.35);
}
.promo-countdown__slot--seconds {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(220, 38, 38, 0.14);
}
.promo-countdown__slot.is-tick {
  animation: promo-countdown-pulse 0.45s ease;
}
.promo-countdown__num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}
.promo-countdown__slot--seconds .promo-countdown__num {
  color: #fecaca;
}
.promo-countdown__cap {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.promo-countdown__colon {
  align-self: center;
  margin-top: 0.55rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: #f87171;
  animation: promo-countdown-blink 1.2s step-end infinite;
  user-select: none;
}
@keyframes promo-countdown-shimmer {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  45% { opacity: 1; }
  55% { transform: translateX(30%); opacity: 0; }
}
@keyframes promo-countdown-pulse {
  0% { transform: scale(1); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.35); }
  40% { transform: scale(1.06); box-shadow: 0 0 18px rgba(248, 113, 113, 0.35); }
  100% { transform: scale(1); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.35); }
}
@keyframes promo-countdown-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
.promo-countdown.is-expired {
  opacity: 0.75;
  filter: grayscale(0.4);
}
.promo-countdown.is-expired .promo-countdown__num {
  color: #94a3b8;
}
.catalog-promo-countdown,
.home-promo-countdown,
.product-detail-countdown {
  display: block;
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
}
.catalog-promo-countdown {
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}
.home-promo-countdown {
  margin-bottom: 2rem;
}
.product-detail-countdown {
  align-self: center;
  margin-top: 1rem;
}
.product-detail-countdown .promo-countdown__inner {
  padding: 0.85rem 1rem;
  gap: 0.7rem;
}
.product-detail-countdown .promo-countdown__slot {
  min-width: 2.5rem;
  min-height: 2.5rem;
}
.product-detail-countdown .promo-countdown__num {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}
@media (max-width: 480px) {
  .promo-countdown__inner {
    padding: 0.85rem 0.65rem 0.95rem;
  }
  .promo-countdown__cell {
    min-width: 2.55rem;
  }
  .promo-countdown__slot {
    min-width: 2.45rem;
    min-height: 2.45rem;
  }
  .promo-countdown__colon {
    margin-top: 0.45rem;
    font-size: 1.1rem;
  }
}
.product-detail-sale-tag .product-card__sale-tag {
  position: static;
  display: inline-flex;
}
