:root {
  --store-bg: #08090b;
  --store-surface: #111216;
  --store-surface-2: #18191e;
  --store-line: rgba(255, 255, 255, 0.1);
  --store-text: #f7f4ee;
  --store-muted: #9a9aa4;
  --store-gold: #d7a83f;
  --store-gold-dark: #9b6c1c;
  --store-shell: 1240px;
}

.store-page {
  background: var(--store-bg);
  color: var(--store-text);
}

.store-page.store-cart-open {
  overflow: hidden;
}

.store-shell {
  width: min(calc(100% - 40px), var(--store-shell));
  margin-inline: auto;
}

/* Rótulos só para leitor de tela: fora do fluxo visual, mas ainda anunciados. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--store-line);
  background: rgba(11, 12, 15, 0.88);
  backdrop-filter: blur(18px);
}

.store-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.store-brand img {
  display: block;
  width: 152px;
  max-height: 44px;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.86rem;
  font-weight: 600;
}

.store-nav > a {
  color: var(--store-muted);
  transition: color 0.2s ease;
}

.store-nav > a:hover {
  color: var(--store-text);
}

.store-cart-button {
  border: 1px solid var(--store-line);
  border-radius: 999px;
  padding: 9px 12px 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--store-surface);
  color: var(--store-text);
  cursor: pointer;
  font-weight: 700;
}

.store-cart-button svg,
.store-icon-button svg,
.store-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-cart-count {
  min-width: 24px;
  height: 24px;
  padding-inline: 6px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: var(--store-gold);
  color: #111;
  font-size: 0.72rem;
}

.store-alerts {
  position: relative;
  z-index: 2;
  padding-top: 16px;
}

.store-alerts:empty {
  display: none;
}

.store-hero {
  overflow: hidden;
  min-height: 650px;
  border-bottom: 1px solid var(--store-line);
  background:
    radial-gradient(circle at 76% 43%, rgba(210, 170, 96, 0.14), transparent 26%),
    linear-gradient(115deg, #0b0c0f 45%, #121318 100%);
}

.store-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  align-items: center;
  min-height: 650px;
}

.store-eyebrow {
  display: block;
  color: var(--store-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.store-hero h1 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: 0.89;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.store-hero h1 em {
  color: var(--store-gold);
  font-style: normal;
}

.store-hero__content > p {
  max-width: 590px;
  margin-top: 28px;
  color: var(--store-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.store-hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.store-hero__actions > span {
  color: var(--store-muted);
  font-size: 0.78rem;
}

.store-button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.store-button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.store-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.store-button--primary {
  background: var(--store-gold);
  color: #101010;
}

.store-button--primary:hover:not(:disabled) {
  background: #e0bb75;
}

.store-button--secondary {
  border-color: var(--store-line);
  background: var(--store-surface-2);
  color: var(--store-text);
}

.store-hero__art {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.store-hero__art img {
  position: relative;
  z-index: 2;
  width: min(92%, 530px);
  height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.48));
}

.store-hero__ring {
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(210, 170, 96, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(210, 170, 96, 0.04);
}

.store-hero__ring::before,
.store-hero__ring::after {
  content: '';
  position: absolute;
  inset: 44px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: inherit;
}

.store-hero__ring::after {
  inset: 88px;
}

.store-hero__stamp {
  position: absolute;
  right: 0;
  bottom: 32px;
  color: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-align: right;
}

.store-benefits {
  border-bottom: 1px solid var(--store-line);
  background: #0e0f13;
}

.store-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.store-benefits__grid > div {
  padding: 25px 30px;
  border-right: 1px solid var(--store-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store-benefits__grid > div:first-child {
  border-left: 1px solid var(--store-line);
}

.store-benefits strong {
  font-size: 0.88rem;
}

.store-benefits span {
  color: var(--store-muted);
  font-size: 0.76rem;
}

.store-catalog {
  padding-block: 88px 110px;
}

.store-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.store-section-heading h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.055em;
}

.store-section-heading > p {
  color: var(--store-muted);
  font-size: 0.82rem;
}

.store-filters {
  margin-block: 34px 30px;
  padding: 12px;
  border: 1px solid var(--store-line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--store-surface);
}

.store-search {
  position: relative;
  flex: 1;
}

.store-search svg {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 19px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--store-muted);
  stroke-width: 1.8;
}

.store-filters input,
.store-filters select,
.store-checkout input,
.store-checkout textarea {
  width: 100%;
  border: 1px solid var(--store-line);
  border-radius: 7px;
  background: #0e0f13;
  color: var(--store-text);
  outline: none;
}

.store-filters input,
.store-filters select {
  height: 48px;
  padding-inline: 14px;
}

.store-search input {
  padding-left: 44px;
}

.store-filters input:focus,
.store-filters select:focus,
.store-checkout input:focus,
.store-checkout textarea:focus {
  border-color: var(--store-gold);
  box-shadow: 0 0 0 3px rgba(210, 170, 96, 0.12);
}

.store-clear-filter {
  padding: 10px;
  color: var(--store-muted);
  font-size: 0.78rem;
  text-decoration: underline;
}

.store-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.store-product-card {
  min-width: 0;
  border: 1px solid var(--store-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--store-surface);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.store-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 170, 96, 0.36);
}

.store-product-card__media {
  position: relative;
  aspect-ratio: 1.15;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent),
    var(--store-surface-2);
}

.store-product-card__media img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.store-product-card:hover .store-product-card__media img {
  transform: scale(1.035);
}

.store-product-card__category,
.store-product-card__soldout {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  border: 1px solid var(--store-line);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(11, 12, 15, 0.78);
  color: var(--store-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-product-card__audience {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  border: 1px solid rgba(215, 168, 63, 0.3);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(11, 12, 15, 0.78);
  color: #efd492;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-product-card__soldout {
  left: auto;
  right: 14px;
  top: 50px;
  color: #f2b8b5;
  border-color: rgba(239, 68, 68, 0.25);
}

.store-product-card__placeholder {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(210, 170, 96, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--store-gold);
  font-size: 3.5rem;
  font-weight: 900;
}

.store-product-card__body {
  padding: 22px;
}

.store-product-card__sku {
  color: var(--store-gold);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.store-product-card h3 {
  margin-top: 7px;
  min-height: 48px;
  font-size: 1.04rem;
  line-height: 1.45;
}

.store-product-card__description {
  margin-top: 9px;
  min-height: 60px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--store-muted);
  font-size: 0.78rem;
  line-height: 1.62;
}

.store-product-card__price {
  margin-block: 18px;
  font-size: 1.42rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.store-variant-label {
  display: block;
  margin-bottom: 7px;
  color: var(--store-muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.store-variant-select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--store-line);
  border-radius: 7px;
  background: #0e0f13;
  color: var(--store-text);
}

.store-add-button {
  width: 100%;
  margin-top: 12px;
}

.store-add-button svg {
  margin-left: auto;
}

.store-empty {
  min-height: 330px;
  border: 1px dashed var(--store-line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.store-empty > span,
.store-cart__empty > span {
  color: var(--store-gold);
  font-size: 2.6rem;
  font-weight: 900;
}

.store-empty p,
.store-cart__empty p {
  margin: 6px 0 20px;
  color: var(--store-muted);
  font-size: 0.84rem;
}

.store-cart-backdrop {
  position: fixed;
  z-index: 79;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
}

.store-cart {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  width: min(100%, 480px);
  height: 100dvh;
  padding: 26px;
  display: grid;
  grid-template-rows: auto minmax(100px, 1fr) auto;
  background: var(--store-surface);
  border-left: 1px solid var(--store-line);
  box-shadow: -18px 0 60px rgba(0, 0, 0, 0.45);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 0.28s ease, visibility 0.28s ease;
}

.store-cart.is-open {
  transform: translateX(0);
  visibility: visible;
}

.store-cart__header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--store-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-cart__header h2 {
  margin-top: 5px;
  font-size: 1.7rem;
}

.store-icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--store-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--store-text);
  cursor: pointer;
}

.store-cart__items {
  overflow-y: auto;
  padding-block: 6px;
}

.store-cart__empty {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.store-cart-item {
  padding-block: 16px;
  border-bottom: 1px solid var(--store-line);
}

.store-cart-item__info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
}

.store-cart-item__info strong {
  font-size: 0.87rem;
}

.store-cart-item__info span {
  color: var(--store-muted);
  font-size: 0.74rem;
}

.store-cart-item__info b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 0.88rem;
}

.store-cart-item__actions {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-quantity {
  height: 34px;
  border: 1px solid var(--store-line);
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.store-quantity button {
  width: 34px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--store-text);
  cursor: pointer;
}

.store-quantity button:disabled {
  color: var(--store-muted);
  opacity: 0.35;
}

.store-quantity span {
  min-width: 26px;
  text-align: center;
  font-size: 0.8rem;
}

.store-remove-item {
  border: 0;
  background: none;
  color: #d78d87;
  font-size: 0.71rem;
  cursor: pointer;
  text-decoration: underline;
}

.store-checkout {
  padding-top: 16px;
  border-top: 1px solid var(--store-line);
  max-height: min(64vh, 680px);
  overflow-y: auto;
  padding-right: 4px;
}

.store-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store-cart__total span {
  color: var(--store-muted);
  font-size: 0.8rem;
}

.store-cart__total strong {
  font-size: 1.2rem;
}

.store-cart__notice {
  margin-top: 5px;
  color: var(--store-muted);
  font-size: 0.68rem;
}

.store-checkout__fields {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.store-checkout label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--store-muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.store-checkout label:last-child,
.store-checkout label.store-field--wide {
  grid-column: 1 / -1;
}

.store-cep-status {
  min-height: 14px;
  color: var(--store-muted);
  font-size: 0.62rem;
  font-weight: 500;
  line-height: 1.35;
}

.store-cep-status.is-loading {
  color: var(--store-gold);
}

.store-cep-status.is-success {
  color: #7fc99a;
}

.store-cep-status.is-error {
  color: #e39a94;
}

.store-checkout input,
.store-checkout textarea {
  min-height: 40px;
  padding: 9px 10px;
  resize: vertical;
  font-size: 0.82rem;
}

.store-checkout__submit {
  width: 100%;
  margin-top: 12px;
}

.store-toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 24px;
  max-width: calc(100% - 32px);
  padding: 11px 16px;
  border: 1px solid rgba(210, 170, 96, 0.35);
  border-radius: 8px;
  background: #202119;
  color: var(--store-text);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  font-size: 0.8rem;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.store-order {
  min-height: calc(100vh - 250px);
  padding-block: 78px 100px;
}

.store-order__heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.store-order__check {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border: 1px solid rgba(210, 170, 96, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--store-gold);
}

.store-order__check svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.store-order__heading h1 {
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.store-order__heading p {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--store-muted);
}

.store-order__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.store-order__card {
  border: 1px solid var(--store-line);
  border-radius: 12px;
  padding: 26px;
  background: var(--store-surface);
}

.store-order__card h2 {
  margin-bottom: 20px;
  font-size: 1rem;
}

.store-order__item {
  padding-block: 16px;
  border-top: 1px solid var(--store-line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
}

.store-order__quantity {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(210, 170, 96, 0.12);
  color: var(--store-gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.store-order__item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.store-order__item div strong {
  font-size: 0.86rem;
}

.store-order__item div span {
  color: var(--store-muted);
  font-size: 0.73rem;
}

.store-order__item > strong {
  font-size: 0.86rem;
}

.store-order__total {
  padding-top: 20px;
  border-top: 1px solid var(--store-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.store-order__total span {
  color: var(--store-muted);
}

.store-order__total strong {
  color: var(--store-gold);
  font-size: 1.5rem;
}

.store-order__customer dl {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.store-order__customer dl div {
  display: grid;
  gap: 2px;
}

.store-order__customer dt {
  color: var(--store-muted);
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.store-order__customer dd {
  overflow-wrap: anywhere;
  font-size: 0.85rem;
}

.store-button--whatsapp {
  width: 100%;
  margin-top: 24px;
  background: #25d366;
  color: #07160d;
}

.store-order__help {
  margin-top: 9px;
  color: var(--store-muted);
  font-size: 0.69rem;
  line-height: 1.5;
  text-align: center;
}

.store-order__back {
  display: block;
  margin-top: 20px;
  color: var(--store-muted);
  font-size: 0.76rem;
  text-align: center;
  text-decoration: underline;
}

.store-order__config-warning {
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.08);
  color: #e9bd69;
  font-size: 0.76rem;
  line-height: 1.55;
}

.store-order__config-warning code {
  color: #fff1cf;
}

.store-footer {
  border-top: 1px solid var(--store-line);
  background: #08090b;
}

.store-footer__inner {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.store-footer__logo {
  width: 140px;
}

.store-footer p {
  margin-top: 10px;
  color: var(--store-muted);
  font-size: 0.76rem;
}

.store-footer__links {
  display: flex;
  gap: 22px;
  color: var(--store-muted);
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .store-hero,
  .store-hero__grid {
    min-height: auto;
  }

  .store-hero__grid {
    grid-template-columns: 1fr;
    padding-top: 82px;
  }

  .store-hero__content {
    position: relative;
    z-index: 3;
  }

  .store-hero__art {
    min-height: 420px;
  }

  .store-hero__art img {
    height: 390px;
  }

  .store-hero__ring {
    width: 340px;
    height: 340px;
  }

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

  .store-order__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .store-shell {
    width: min(calc(100% - 28px), var(--store-shell));
  }

  .store-header__inner {
    min-height: 66px;
  }

  .store-brand img {
    width: 124px;
  }

  .store-nav > a {
    display: none;
  }

  .store-cart-button > span:not(.store-cart-count) {
    display: none;
  }

  .store-hero__grid {
    padding-top: 64px;
  }

  .store-hero h1 {
    font-size: clamp(3.2rem, 17vw, 5.3rem);
  }

  .store-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-benefits__grid {
    grid-template-columns: 1fr;
  }

  .store-benefits__grid > div,
  .store-benefits__grid > div:first-child {
    border: 0;
    border-bottom: 1px solid var(--store-line);
    padding: 18px 8px;
  }

  .store-catalog {
    padding-block: 64px 80px;
  }

  .store-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-filters {
    align-items: stretch;
    flex-direction: column;
  }

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

  .store-product-card__media {
    aspect-ratio: 1.3;
  }

  .store-product-card h3,
  .store-product-card__description {
    min-height: 0;
  }

  .store-cart {
    padding: 20px 16px;
  }

  .store-checkout__fields {
    grid-template-columns: 1fr;
  }

  .store-checkout label:last-child {
    grid-column: auto;
  }

  .store-order {
    padding-block: 52px 70px;
  }

  .store-order__card {
    padding: 20px;
  }

  .store-order__item {
    grid-template-columns: auto 1fr;
  }

  .store-order__item > strong {
    grid-column: 2;
  }

  .store-footer__inner {
    padding-block: 45px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-product-card,
  .store-product-card__media img,
  .store-cart,
  .store-toast {
    transition: none;
  }

  .store-marquee__track {
    animation: none;
  }
}

/* ====================================================================
   IDENTIDADE HERA — GOLD CAMPAIGN
   ==================================================================== */
.store-brand {
  width: 208px;
  height: 58px;
  display: flex;
  align-items: center;
}

.store-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(215, 168, 63, 0.16));
}

.store-header {
  background: rgba(8, 9, 11, 0.9);
  border-bottom-color: rgba(215, 168, 63, 0.15);
}

.store-hero {
  position: relative;
  min-height: min(800px, calc(100vh - 76px));
  isolation: isolate;
  background: #07080a;
}

.store-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.store-hero__media::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0%, rgba(7, 8, 10, 0.92) 27%, rgba(7, 8, 10, 0.5) 53%, rgba(7, 8, 10, 0.05) 78%),
    linear-gradient(0deg, rgba(7, 8, 10, 0.68) 0%, transparent 32%);
}

.store-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.store-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.04);
}

.store-hero__inner {
  min-height: min(800px, calc(100vh - 76px));
  padding-block: 96px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.store-hero__content {
  max-width: 700px;
}

.store-hero h1 {
  max-width: 760px;
  font-size: clamp(4.2rem, 8.2vw, 8rem);
  line-height: 0.86;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.store-hero__content > p {
  max-width: 520px;
  color: rgba(247, 244, 238, 0.7);
}

.store-hero__text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(247, 244, 238, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(215, 168, 63, 0.45);
}

.store-hero__text-link span {
  color: var(--store-gold);
}

.store-hero__edition {
  position: absolute;
  right: 20px;
  bottom: 30px;
  color: rgba(247, 244, 238, 0.48);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.store-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(215, 168, 63, 0.2);
  background: var(--store-gold);
  color: #0a0a0a;
}

.store-marquee__track {
  width: max-content;
  display: flex;
  animation: store-marquee-scroll 30s linear infinite;
}

.store-marquee:hover .store-marquee__track {
  animation-play-state: paused;
}

/* Cada grupo cobre no mínimo a tela inteira: garante que a segunda cópia
   sempre preencha o vão ao deslocar, sem buraco em telas largas. */
.store-marquee__group {
  flex: 0 0 auto;
  min-width: 100vw;
  padding: 13px 22px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 28px;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

/* Duas cópias idênticas: -50% cai exatamente no início da segunda. */
@keyframes store-marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}

.store-marquee b {
  font-size: 0.65rem;
}

.store-benefits {
  background:
    linear-gradient(180deg, rgba(215, 168, 63, 0.025), transparent),
    #0d0e11;
}

.store-benefits strong {
  color: #f6e1af;
}

.store-manifesto {
  padding-block: 112px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
}

.store-manifesto__media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 63, 0.22);
  border-radius: 3px 90px 3px 3px;
  background: var(--store-surface);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.store-manifesto__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.store-manifesto__media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.store-manifesto__tag {
  position: absolute;
  left: 22px;
  bottom: 24px;
  padding: 9px 12px;
  border: 1px solid rgba(215, 168, 63, 0.36);
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(8px);
  color: var(--store-gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.store-manifesto__content h2 {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.store-manifesto__content > p {
  max-width: 590px;
  margin-top: 28px;
  color: var(--store-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.store-manifesto__pillars {
  margin-block: 34px;
  border-block: 1px solid var(--store-line);
}

.store-manifesto__pillars > div {
  min-height: 58px;
  border-bottom: 1px solid var(--store-line);
  display: flex;
  align-items: center;
}

.store-manifesto__pillars > div:last-child {
  border-bottom: 0;
}

.store-manifesto__pillars span {
  font-size: 0.82rem;
  font-weight: 700;
}

.store-catalog {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--store-shell)) / 2));
  background:
    radial-gradient(circle at 85% 10%, rgba(215, 168, 63, 0.06), transparent 22%),
    #0b0c0f;
  border-top: 1px solid var(--store-line);
}

.store-product-card {
  border-radius: 3px;
  background: #101115;
}

.store-product-card__media {
  background:
    radial-gradient(circle at 50% 45%, rgba(215, 168, 63, 0.09), transparent 44%),
    #17181d;
}

.store-product-card__price {
  color: #f2d48f;
}

.store-footer {
  position: relative;
  overflow: hidden;
}

.store-footer::before {
  content: '';
  position: absolute;
  right: -70px;
  top: -140px;
  width: 340px;
  height: 340px;
  background: url('/images/brand/hera-mark-gold.png') center / contain no-repeat;
  opacity: 0.035;
}

.store-footer__logo {
  width: 220px;
  max-height: 82px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .store-hero,
  .store-hero__inner {
    min-height: 720px;
  }

  .store-hero__media::before {
    background:
      linear-gradient(90deg, rgba(7, 8, 10, 0.96) 0%, rgba(7, 8, 10, 0.76) 54%, rgba(7, 8, 10, 0.15) 100%),
      linear-gradient(0deg, rgba(7, 8, 10, 0.78) 0%, transparent 48%);
  }

  .store-manifesto {
    gap: 42px;
  }

  .store-manifesto__media,
  .store-manifesto__media img {
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .store-brand {
    width: 152px;
    height: 48px;
  }

  .store-hero,
  .store-hero__inner {
    min-height: 700px;
  }

  .store-hero__inner {
    padding-block: 82px 46px;
    justify-content: flex-end;
  }

  .store-hero__media::before {
    background:
      linear-gradient(0deg, #07080a 0%, rgba(7, 8, 10, 0.94) 25%, rgba(7, 8, 10, 0.62) 49%, rgba(7, 8, 10, 0.12) 72%, rgba(7, 8, 10, 0.03) 100%),
      linear-gradient(90deg, rgba(7, 8, 10, 0.32) 0%, rgba(7, 8, 10, 0.06) 70%);
  }

  .store-hero__media img {
    object-position: center top;
    filter: saturate(0.9) contrast(1.06) brightness(0.92);
  }

  /* A palavra mais longa do h1 definia a largura do bloco inteiro e vazava a
     coluna, cortando título e parágrafo. Travar a largura e reduzir o corpo. */
  .store-hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .store-hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 15vw, 5.4rem);
    overflow-wrap: break-word;
  }

  .store-hero .store-eyebrow,
  .store-hero__content > p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .store-hero__content > p {
    font-size: 0.95rem;
  }

  .store-hero__edition {
    display: none;
  }

  .store-marquee__group {
    padding: 11px 14px;
    gap: 18px;
    font-size: 0.61rem;
  }

  .store-marquee__track {
    animation-duration: 18s;
  }

  .store-manifesto {
    padding-block: 72px;
    grid-template-columns: 1fr;
  }

  .store-manifesto__media {
    min-height: 520px;
    border-radius: 3px 54px 3px 3px;
  }

  .store-manifesto__media img {
    min-height: 520px;
  }

  .store-manifesto__content h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .store-footer__logo {
    width: 190px;
  }
}

/* ====================================================================
   PAGINAS LEGAIS (aviso de privacidade)
   ==================================================================== */
.store-legal {
  padding-block: 88px 104px;
  max-width: 820px;
}

.store-legal__heading h1 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.store-legal__heading > p {
  max-width: 62ch;
  margin-top: 16px;
  color: var(--store-muted);
  line-height: 1.75;
}

.store-legal__date {
  font-size: 0.82rem;
}

.store-legal__pending {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(215, 168, 63, 0.45);
  border-radius: 8px;
  background: rgba(215, 168, 63, 0.07);
  font-size: 0.88rem;
  line-height: 1.6;
}

.store-legal__pending span {
  display: block;
  margin-top: 8px;
  color: var(--store-muted);
  font-size: 0.78rem;
}

.store-legal__body {
  margin-top: 40px;
}

.store-legal__body h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--store-gold);
}

.store-legal__body p,
.store-legal__body li {
  max-width: 68ch;
  color: rgba(247, 244, 238, 0.78);
  font-size: 0.95rem;
  line-height: 1.8;
}

.store-legal__body p + p {
  margin-top: 14px;
}

.store-legal__body ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: disc;
}

.store-legal__body li + li {
  margin-top: 8px;
}

.store-legal__body a {
  color: var(--store-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.store-legal__body code {
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--store-surface-2);
  font-size: 0.86rem;
}

/* A tabela é larga: em tela pequena rola sozinha em vez de espremer o texto. */
.store-legal__table-wrap {
  margin-top: 14px;
  overflow-x: auto;
}

.store-legal__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.store-legal__table th,
.store-legal__table td {
  padding: 12px 14px;
  border: 1px solid var(--store-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.store-legal__table th {
  background: var(--store-surface);
  color: var(--store-text);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-legal__table td {
  color: rgba(247, 244, 238, 0.76);
}

.store-checkout__consent {
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--store-line);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--store-surface);
  cursor: pointer;
}

.store-checkout__consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--store-gold);
  cursor: pointer;
}

.store-checkout__consent span {
  color: rgba(247, 244, 238, 0.82);
  font-size: 0.8rem;
  line-height: 1.55;
}

.store-checkout__consent b {
  color: var(--store-gold);
  font-weight: 700;
}

.store-checkout__privacy {
  margin-top: 14px;
  color: var(--store-muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.store-checkout__privacy a {
  color: var(--store-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 720px) {
  .store-legal {
    padding-block: 56px 72px;
  }

  .store-legal__body h2 {
    margin-top: 34px;
  }
}
