:root {
  --accent: #1a3a2a;
  --accent-dark: #0d2218;
  --ink: #201a1b;
  --muted: #71686a;
  --line: #e9dfe0;
  --paper: #fff;
  --soft: #f8efec;
  --success: #167555;
  --danger: #bd2c3b;
  --shadow: 0 24px 70px rgba(55, 35, 39, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.container.narrow {
  width: min(820px, calc(100% - 32px));
}

.announcement {
  padding: 10px 16px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}

.store-header {
  position: relative;
  z-index: 40;
  padding: 13px 0 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 26px rgba(46, 31, 34, 0.05);
}

.store-header-main {
  display: grid;
  grid-template-columns: 48px minmax(150px, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.store-logo {
  display: block;
  justify-self: start;
  width: 130px;
  max-width: 100%;
}

.store-logo img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  object-position: center;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 9px;
  place-items: center;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: transparent;
  transition: color 160ms ease, background 160ms ease;
}

.header-icon-button:hover {
  color: var(--accent-dark);
  background: var(--soft);
}

.header-icon-button svg,
.store-search svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cart-button span {
  position: absolute;
  top: 1px;
  right: 0;
  display: grid;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  place-items: center;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--success);
  font-size: 10px;
  font-weight: 900;
}

.store-search {
  position: relative;
  margin-top: 11px;
}

.store-search input {
  width: 100%;
  height: 46px;
  padding: 0 58px 0 17px;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 999px;
  outline: none;
  background: #f5f4f4;
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.store-search input::placeholder {
  color: #9b9496;
}

.store-search input:focus {
  border-color: rgba(1, 24, 67, 0.35);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 24, 67, 0.09);
}

.store-search button {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 9px;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
}

.store-search button:hover {
  background: var(--accent-dark);
}

.header-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 35px rgba(45, 31, 34, 0.12);
}

.header-menu[hidden] {
  display: none;
}

.header-menu .container {
  display: flex;
  gap: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.header-menu a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.header-menu a:hover {
  color: var(--accent-dark);
}

.product-section {
  overflow: hidden;
  padding: 38px 0 18px;
  background: #fff;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.gallery {
  position: sticky;
  top: 24px;
  width: 100%;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(1, 24, 67, 0.12);
  border-radius: 30px;
  background: #eee;
  box-shadow: var(--shadow);
}

.gallery-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 500ms ease;
}

.gallery-main:hover > img {
  transform: scale(1.025);
}

.badge {
  position: absolute;
  top: 16px;
  padding: 7px 12px;
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-dark {
  left: 16px;
  background: var(--ink);
}

.badge-accent {
  right: 16px;
  background: var(--accent);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 32px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-main:hover .gallery-arrow,
.gallery-arrow:focus-visible {
  opacity: 1;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  margin-top: 16px;
  padding: 3px 2px 7px;
  scrollbar-width: thin;
}

.thumbnail {
  overflow: hidden;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  background: transparent;
  opacity: 0.66;
  transition: 160ms ease;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--accent);
  opacity: 1;
  transform: translateY(-2px);
}

.product-info {
  padding-top: 10px;
}

.breadcrumb {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.gallery-breadcrumb {
  margin-bottom: 12px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.eyebrow.centered {
  text-align: center;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.subtitle {
  margin: 20px 0;
  color: var(--muted);
  font-size: 17px;
}

.product-offer {
  display: inline-flex;
  margin: 18px 0 4px;
  padding: 8px 13px;
  color: #fff;
  border-radius: 8px;
  background: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.rating strong {
  color: var(--ink);
}

.stars {
  color: #b27034;
  letter-spacing: 0.08em;
}

.shipping-pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 13px;
  color: #fff;
  border-radius: 999px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

fieldset {
  min-width: 0;
}

.option-group {
  margin: 25px 0 0;
  padding: 0;
  border: 0;
}

.option-group legend {
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 800;
}

.option-group legend span {
  font-weight: 500;
}

.color-options,
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.color-swatch {
  width: 38px;
  height: 38px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px #cabfc0;
  transition: 150ms ease;
}

.color-swatch:hover,
.color-swatch.active {
  box-shadow: 0 0 0 3px var(--accent);
  transform: scale(1.05);
}

.choice {
  padding: 9px 20px;
  color: var(--ink);
  border: 1px solid #cfc4c5;
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
}

.choice:hover,
.choice.active {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.bundle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.special-offer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 34px;
  gap: 8px 12px;
  align-items: center;
  width: 100%;
  margin-top: 17px;
  padding: 24px 15px 15px;
  color: var(--ink);
  border: 1px solid #dce2ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(1, 24, 67, 0.08);
  text-align: left;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.special-offer:hover,
.special-offer.open {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(1, 24, 67, 0.13);
  transform: translateY(-1px);
}

.special-offer-badge {
  position: absolute;
  top: -12px;
  left: 14px;
  padding: 6px 10px;
  color: #fff;
  border-radius: 999px;
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.special-offer-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.special-offer-copy strong {
  font-size: 13px;
}

.special-offer-copy small {
  color: var(--muted);
  font-size: 11px;
}

.special-offer-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.05;
}

.special-offer-price s {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.special-offer-price b {
  color: var(--accent);
  font-size: 20px;
  white-space: nowrap;
}

.special-offer-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--accent);
  border-radius: 50%;
  background: rgba(1, 24, 67, 0.07);
}

.special-offer-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.special-offer.open .special-offer-arrow svg {
  transform: rotate(180deg);
}

.offer-color-selector {
  display: grid;
  gap: 7px;
  margin-top: 10px;
  padding: 13px;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  background: #fff;
}

.offer-color-selector[hidden] {
  display: none;
}

.offer-color-selector label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.offer-color-selector select {
  width: 100%;
  height: 45px;
  padding: 0 38px 0 12px;
  color: var(--ink);
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  outline: none;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.offer-color-selector select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(1, 24, 67, 0.08);
}

.bundle {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 88px;
  padding: 18px;
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  text-align: left;
}

.bundle:hover,
.bundle.active {
  border-color: var(--accent);
  background: rgba(1, 24, 67, 0.06);
}

.bundle small {
  position: absolute;
  top: -11px;
  right: 12px;
  padding: 3px 8px;
  color: white;
  border-radius: 999px;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
}

.bundle span {
  font-size: 14px;
  font-weight: 700;
}

.bundle strong {
  font-size: 20px;
}

.price-block {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  align-items: center;
  margin-top: 28px;
}

.price-block s {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 14px;
}

.price-block strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.price-block span {
  padding: 5px 9px;
  color: white;
  border-radius: 999px;
  background: var(--success);
  font-size: 11px;
  font-weight: 900;
}

.price-savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 0;
  padding: 8px 14px;
  color: #135d45;
  border: 1px solid #badbce;
  border-radius: 999px;
  background: #edf8f4;
  font-size: 14px;
  font-weight: 700;
}

.price-savings strong {
  font-weight: 900;
}

.product-actions {
  display: grid;
  gap: 11px;
  margin-top: 25px;
}

.shipping-calc {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.shipping-calc > label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.shipping-calc > label svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shipping-calc-row {
  display: flex;
  gap: 8px;
}

.shipping-calc-row input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f6f6;
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.shipping-calc-row input:focus {
  border-color: rgba(1, 24, 67, 0.35);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 24, 67, 0.09);
}

.shipping-calc-row button {
  flex: 0 0 auto;
  padding: 0 22px;
  color: #fff;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  font-size: 14px;
  font-weight: 800;
  transition: background 160ms ease;
}

.shipping-calc-row button:hover {
  background: var(--accent-dark);
}

.shipping-calc-row button:disabled {
  opacity: 0.6;
  cursor: default;
}

.shipping-calc-help {
  display: inline-block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  text-decoration: underline;
}

.shipping-calc-result {
  margin-top: 13px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.shipping-calc-result[hidden] {
  display: none;
}

.shipping-calc-result.is-success {
  color: #135d45;
  border: 1px solid #badbce;
  background: #edf8f4;
}

.shipping-calc-result.is-error {
  color: var(--danger);
  border: 1px solid #f0c2c6;
  background: #fdeef0;
}

.shipping-calc-result strong {
  font-weight: 900;
}

.shipping-calc-result .ship-free {
  color: var(--success);
  font-weight: 900;
}

.button {
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.button-large {
  min-height: 58px;
}

.button-primary {
  color: white;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(1, 24, 67, 0.24);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.purchase-guarantees {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 16px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.purchase-guarantees > div {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: center;
  color: #252525;
  font-size: 13px;
}

.purchase-guarantees svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #14b866;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.purchase-guarantees strong {
  font-weight: 700;
}

.section {
  padding: 64px 0;
}

.section h2 {
  margin: 0 0 42px;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.benefits {
  background: var(--paper);
}

.about-section {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-content .about-title {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: left;
}

.about-content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-lead {
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.about-more {
  margin-top: 4px;
}

.about-more summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-more summary::-webkit-details-marker {
  display: none;
}

.about-more summary:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.about-more-icon {
  transition: transform 0.25s ease;
}

.about-more[open] summary .about-more-icon {
  transform: rotate(180deg);
}

.about-more[open] .about-more-label {
  font-size: 0;
}

.about-more[open] .about-more-label::before {
  content: "Ver menos";
  font-size: 14px;
}

.about-more-content {
  margin-top: 22px;
  animation: aboutReveal 0.3s ease;
}

.about-more-content p:last-of-type {
  margin-bottom: 0;
}

@keyframes aboutReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-highlights li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.about-highlights strong {
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.about-highlights span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-content .about-title {
    text-align: center;
  }

  .about-content .eyebrow {
    text-align: center;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-highlights li {
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--accent-dark);
  border-radius: 50%;
  background: var(--soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
}

.feature-card h3 {
  margin: 30px 0 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.specifications {
  background: #251f20;
}

.specifications .eyebrow,
.specifications h2 {
  color: #fff;
}

.spec-list {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.spec-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 30px;
  padding: 21px 25px;
  color: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list strong {
  color: #fff;
}

.testimonials {
  background: #f7f1ee;
}

.testimonial {
  display: flex;
  flex-direction: column;
  min-height: 225px;
  padding: 26px;
  border: 1px solid rgba(1, 24, 67, 0.12);
  border-radius: var(--radius);
  background: #fff;
}

.testimonial p {
  flex: 1;
  color: #514849;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

.testimonial strong {
  font-size: 13px;
}

.testimonial strong span {
  display: block;
  margin-top: 3px;
  color: var(--success);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.reviews-section {
  padding-top: 28px;
  padding-bottom: 74px;
  background: #fff;
}

.reviews-container {
  width: min(720px, calc(100% - 32px));
}

.reviews-section h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 5vw, 38px);
  text-align: left;
}

.reviews-summary,
.review-card {
  border: 1px solid #dedede;
  border-radius: 20px;
  background: #fff;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.reviews-score > strong {
  font-size: 52px;
  line-height: 1;
}

.review-stars {
  color: #ff6b23;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
}

.reviews-score > span {
  margin-top: 4px;
  color: #555;
  font-size: 12px;
}

.rating-distribution {
  display: grid;
  gap: 9px;
}

.rating-row {
  display: grid;
  grid-template-columns: 18px 1fr 42px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.rating-row b {
  text-align: center;
}

.rating-row small {
  color: #666;
  text-align: right;
}

.rating-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #ededed;
}

.rating-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #ff6b23;
}

.reviews-column {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.reviews-disclosure {
  margin: 16px 2px 0;
  color: #667085;
  font-size: 11px;
  line-height: 1.5;
}

.review-card[hidden] {
  display: none;
}

.review-card {
  padding: 20px;
}

.review-author {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
}

.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #e64c25;
  border-radius: 50%;
  background: #ffe4dd;
  font-size: 12px;
  font-weight: 700;
}

.review-author > div:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.review-author strong {
  font-size: 14px;
}

.review-author small {
  overflow: hidden;
  color: #666;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card > p {
  margin: 15px 0;
  font-size: 14px;
  line-height: 1.7;
}

.review-photo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #e8e8e8;
}

.review-photo img {
  width: 100%;
  max-height: 480px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.review-photo span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  color: #fff;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.68);
  font-size: 10px;
  font-weight: 700;
}

.review-photo-gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-radius: 14px;
  background: transparent;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.review-photo-gallery img {
  width: 88%;
  max-height: 480px;
  flex: 0 0 88%;
  border-radius: 14px;
  scroll-snap-align: start;
}

.review-verified {
  margin-top: 12px;
  color: var(--success);
  font-size: 11px;
  font-weight: 700;
}

.review-card-external {
  border-color: #d9dee8;
}

.review-source {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
}

.review-source span {
  color: var(--success);
}

.review-source a {
  color: #1a3a2a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews-page-button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  color: #1a3a2a;
  border: 1px solid #dfe3eb;
  border-radius: 50%;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.reviews-page-button:hover:not(:disabled),
.reviews-page-button:focus-visible {
  border-color: #1a3a2a;
  outline: none;
}

.reviews-page-button.active {
  color: #fff;
  border-color: #1a3a2a;
  background: #1a3a2a;
}

.reviews-page-button:disabled {
  color: #a8afba;
  cursor: not-allowed;
  opacity: 0.55;
}

.reviews-page-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-description {
  padding-top: 74px;
  padding-bottom: 74px;
  background: #fff;
}

.description-container {
  width: min(720px, calc(100% - 32px));
  padding: 28px;
  border: 1px solid #ece5e6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(53, 36, 40, 0.09);
}

.product-description h2 {
  margin-bottom: 24px;
  color: #1a3a2a;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Arial, sans-serif;
  font-size: clamp(28px, 6vw, 52px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.description-images {
  display: grid;
  gap: 14px;
}

.description-images img,
.description-images video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  background: #f3f3f3;
}

.description-images video {
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 5px;
  cursor: pointer;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -6px 0 22px;
  padding-right: 50px;
  color: var(--muted);
}

.site-footer {
  padding: 55px 0 85px;
  color: rgba(255, 255, 255, 0.82);
  background: #1a3a2a;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 38px;
}

.footer-logo-circle {
  display: grid;
  width: 125px;
  height: 125px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.footer-logo-circle img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.footer-brand h2 {
  margin: 2px 0 10px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.footer-brand p {
  max-width: 310px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-section h3 {
  margin: 14px 0 16px;
  color: #fff;
  font-size: 15px;
}

.footer-section nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  text-decoration: none;
}

.footer-section a:hover {
  color: #d8b45d;
}

.footer-line {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-line svg {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  fill: none;
  stroke: #d8b45d;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
}

.footer-bottom small {
  color: inherit;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.payment-icons img {
  display: block;
  width: 39px;
  height: 26px;
}

.site-footer p,
.site-footer small {
  margin: 0;
}

.sticky-purchase {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.94);
  box-shadow: 0 -12px 40px rgba(40, 25, 29, 0.1);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: 220ms ease;
}

.sticky-purchase.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-purchase .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.sticky-purchase .container > div {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.sticky-purchase span {
  color: var(--accent-dark);
  font-weight: 800;
}

.sticky-purchase s {
  margin-right: 9px;
  color: var(--muted);
  font-weight: 400;
}

.cart-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  visibility: hidden;
}

.cart-layer.open {
  visibility: visible;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(26, 20, 22, 0.52);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cart-layer.open .cart-backdrop {
  opacity: 1;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  height: 100%;
  background: var(--paper);
  box-shadow: -20px 0 70px rgba(30, 20, 22, 0.18);
  transform: translateX(100%);
  transition: transform 250ms ease;
}

.cart-layer.open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 22px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 700;
}

.icon-button {
  width: 40px;
  height: 40px;
  color: var(--ink);
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  font-size: 25px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 20px;
}

.empty-cart {
  display: grid;
  height: 100%;
  place-content: center;
  color: var(--muted);
  text-align: center;
}

.empty-cart strong {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 14px;
  margin-bottom: 13px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.cart-item img {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
}

.cart-item > div {
  display: flex;
  flex-direction: column;
}

.cart-item strong {
  font-size: 13px;
  line-height: 1.3;
}

.cart-item span {
  color: var(--muted);
  font-size: 11px;
}

.cart-item b {
  margin-top: auto;
  color: var(--accent-dark);
}

.cart-item button {
  width: 28px;
  height: 28px;
  color: var(--muted);
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  font-size: 18px;
}

.cart-drawer > footer {
  padding: 20px;
  border-top: 1px solid var(--line);
}

.cart-drawer > footer > div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 16px;
}

.cart-drawer > footer strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
}

.cart-drawer > footer .button {
  width: 100%;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 88px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 17px;
  color: white;
  border-radius: 12px;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Checkout */
.checkout-body {
  min-height: 100vh;
  background: #fff;
}

.checkout-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  padding: 8px max(20px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(14px);
}

.checkout-header img {
  width: 130px;
  height: 56px;
  object-fit: contain;
}

.checkout-security {
  color: var(--success);
  font-size: 13px;
  font-weight: 800;
}

.timer-bar {
  padding: 9px 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 24px;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 70px;
}

.checkout-steps {
  display: grid;
  gap: 14px;
}

.checkout-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(60, 42, 45, 0.05);
}

.checkout-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 36px rgba(1, 24, 67, 0.08);
}

.checkout-card.locked {
  opacity: 0.55;
}

.checkout-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-card h2 {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-align: left;
}

.step-number {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--accent);
  font-size: 12px;
}

.edit-step {
  padding: 6px;
  color: var(--accent-dark);
  border: 0;
  background: none;
  font-size: 12px;
  font-weight: 800;
}

.step-content {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.step-content[hidden],
.edit-step[hidden] {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid.address-line {
  grid-template-columns: 2fr 0.7fr;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: #62595a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid #dcd2d3;
  border-radius: 12px;
  outline: none;
  background: #faf8f7;
  transition: 160ms ease;
}

.field input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 24, 67, 0.11);
}

.field input.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(189, 44, 59, 0.08);
}

.form-message {
  display: none;
  margin: 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.form-message.visible {
  display: block;
}

.payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-tab {
  min-height: 54px;
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 13px;
  background: #fff;
  font-weight: 900;
}

.payment-tab.active {
  color: var(--accent-dark);
  border-color: var(--accent);
  background: rgba(1, 24, 67, 0.05);
}

.payment-panel {
  padding: 20px;
  border: 1px dashed rgba(1, 24, 67, 0.4);
  border-radius: 16px;
  background: linear-gradient(#fff7f5, #fff);
  text-align: center;
}

.payment-panel[hidden] {
  display: none;
}

.payment-panel h3 {
  margin: 0 0 7px;
}

.payment-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.payment-hints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 15px;
  margin-top: 15px;
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
}

.qr-result {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.qr-result[hidden] {
  display: none;
}

.qr-result img {
  width: 190px;
  height: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  object-fit: contain;
}

.copy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  gap: 8px;
}

.copy-row input {
  min-width: 0;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.card-note {
  padding: 12px;
  color: #755314;
  border: 1px solid #e6d29d;
  border-radius: 11px;
  background: #fff9e8;
  font-size: 12px;
}

.order-summary {
  position: sticky;
  top: 104px;
}

.order-summary h2 {
  margin: 0 0 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-align: left;
}

.summary-items {
  display: grid;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.summary-item {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 13px;
}

.summary-item img {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  object-fit: cover;
}

.summary-item div {
  display: flex;
  flex-direction: column;
}

.summary-item strong {
  font-size: 12px;
  line-height: 1.35;
}

.summary-item span {
  color: var(--muted);
  font-size: 11px;
}

.summary-item b {
  margin-top: auto;
  color: var(--accent-dark);
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin: 18px 0;
}

.coupon-row input {
  min-width: 0;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #faf8f7;
}

.coupon-row button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font-weight: 800;
}

.summary-totals {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}

.summary-totals div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.summary-totals .grand-total {
  margin-top: 4px;
  padding-top: 13px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 16px;
  font-weight: 900;
}

.summary-totals .grand-total strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
}

.summary-totals .summary-discount,
.summary-totals .summary-discount strong {
  color: var(--success);
  font-weight: 800;
}

.summary-totals .summary-discount[hidden] {
  display: none;
}

.savings-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 16px;
  padding: 11px 12px;
  color: #135d45;
  border: 1px solid #badbce;
  border-radius: 11px;
  background: #edf8f4;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.savings-highlight[hidden] {
  display: none;
}

.finish-button {
  width: 100%;
}

.guarantee {
  margin: 13px 0 0;
  padding: 11px;
  color: #135d45;
  border: 1px solid #badbce;
  border-radius: 11px;
  background: #edf8f4;
  font-size: 11px;
  font-weight: 700;
}

.checkout-footer {
  padding: 25px 16px 45px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 950px) {
  .product-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .gallery,
  .order-summary {
    position: static;
  }

  .gallery {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  .card-grid.four {
    grid-template-columns: 1fr 1fr;
  }

  .order-summary {
    grid-row: 1;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .store-header {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .store-header-main {
    grid-template-columns: 42px 1fr auto;
    gap: 6px;
  }

  .store-logo {
    width: 110px;
  }

  .store-logo img {
    height: 90px;
  }

  .header-actions {
    gap: 0;
  }

  .header-icon-button {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .header-menu .container {
    flex-direction: column;
    gap: 14px;
  }

  .site-footer {
    padding: 34px 0 80px;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-logo-circle {
    width: 118px;
    height: 118px;
    margin-bottom: 6px;
  }

  .footer-logo-circle img {
    width: 102px;
    height: 102px;
  }

  .footer-brand h2 {
    font-size: 18px;
  }

  .footer-brand p {
    max-width: none;
    font-size: 13px;
  }

  .footer-section h3 {
    margin: 0 0 14px;
    font-size: 16px;
  }

  .footer-section a,
  .footer-line {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 34px;
  }

  .product-section {
    padding-top: 18px;
    padding-bottom: 0;
  }

  .product-layout {
    gap: 32px;
  }

  .thumbnails {
    justify-content: flex-start;
  }

  h1 {
    font-size: 39px;
  }

  .section {
    padding: 46px 0;
  }

  .reviews-section {
    padding-top: 18px;
    padding-bottom: 50px;
  }

  .product-description {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .description-container {
    width: min(100% - 20px, 720px);
    padding: 14px;
    border-radius: 18px;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .review-author {
    grid-template-columns: 44px 1fr;
  }

  .review-author .review-stars {
    grid-column: 2;
  }

  .card-grid.three,
  .card-grid.four {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .sticky-purchase .container > div {
    display: none;
  }

  .sticky-purchase .button {
    width: 100%;
  }

  .checkout-security {
    max-width: 130px;
    text-align: right;
  }

  .checkout-layout {
    width: min(100% - 20px, 1180px);
  }

  .checkout-card {
    padding: 19px;
  }

  .form-grid,
  .form-grid.address-line {
    grid-template-columns: 1fr;
  }

  .payment-tabs {
    grid-template-columns: 1fr;
  }

  .gallery-arrow {
    opacity: 1;
  }
}

@media (max-width: 440px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .gallery-main {
    border-radius: 20px;
  }

  .thumbnail {
    width: 51px;
    height: 51px;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .copy-row {
    grid-template-columns: 1fr;
  }
}

/* Faixa marquee entre garantias e descrição */
.marquee-strip {
  overflow: hidden;
  background: linear-gradient(90deg, #1a3a2a, #2d5a3d);
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  box-shadow: var(--shadow);
}

.marquee-track {
  display: flex;
  will-change: transform;
  animation: marqueeScroll 22s linear infinite;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 16px 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.marquee-sep {
  color: #ffd35c;
  font-size: 13px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===== Páginas institucionais / legais ===== */
.legal-header {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.legal-logo {
  display: block;
  width: 70px;
}

.legal-logo img {
  width: 100%;
  height: 56px;
  object-fit: contain;
}

.legal-back {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.legal-back:hover {
  text-decoration: underline;
}

.legal-main {
  padding: 56px 0 72px;
  background: var(--soft);
}

.legal-card {
  width: min(820px, calc(100% - 32px));
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card .eyebrow {
  margin-bottom: 8px;
}

.legal-card h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
}

.legal-card h2 {
  margin: 32px 0 12px;
  font-size: 20px;
  text-align: left;
  letter-spacing: -0.01em;
}

.legal-card p,
.legal-card li {
  color: #3f3a3b;
  font-size: 15px;
  line-height: 1.75;
}

.legal-card ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.legal-card li {
  margin-bottom: 6px;
}

.legal-card a {
  color: var(--accent);
  font-weight: 700;
}

/* Campo a preencher (dado sensível) — sem destaque visual */
.fill {
  display: inline;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
}

.legal-company {
  margin: 8px 0 28px;
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.legal-company dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px 16px;
  margin: 0;
}

.legal-company dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.legal-company dd {
  margin: 0;
  font-size: 14px;
}

.legal-note {
  margin-top: 28px;
  padding: 14px 16px;
  color: #7a5b00;
  background: #fff8e1;
  border: 1px solid #f0d98a;
  border-radius: 12px;
  font-size: 13px;
}

@media (max-width: 560px) {
  .legal-company dl {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }
  .legal-company dd {
    margin-bottom: 10px;
  }
}
