:root {
  --bg: #f8f4ef;
  --bg-soft: #fdf9f5;
  --surface: #ffffff;
  --surface-soft: #f6efe7;
  --surface-alt: #f9f5f0;
  --border: #eadfd4;
  --text: #2c3036;
  --muted: #68707a;
  --brand: #c9798a;
  --brand-2: #98a982;
  --accent: #2f3238;
  --success: #2f8f55;
  --radius: 16px;
  --shadow-soft: 0 12px 28px rgba(55, 38, 20, 0.08);
  --shadow-card: 0 22px 42px rgba(42, 26, 9, 0.1);
  --container: 1120px;
  --font-body: "Avenir Next", "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Didot", "Bodoni 72", "Times New Roman", serif;
  --tap-min: 44px;
  --section-padding-y: 20px;
  --container-padding: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(70rem 40rem at -15% -10%, rgba(201, 121, 138, 0.12), transparent 60%),
    radial-gradient(70rem 42rem at 120% 10%, rgba(152, 169, 130, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  font-family: var(--font-body);
  line-height: 1.55;
  padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-padding);
}

.skip {
  position: absolute;
  inset-inline-start: 12px;
  top: 10px;
  z-index: 100;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.topbar__items {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
}

.topbar__items::-webkit-scrollbar {
  display: none;
}

.topbar__marquee {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.topbar__marquee .trust {
  flex-shrink: 0;
}

@keyframes topbar-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.trust__icon {
  width: 16px;
  height: 16px;
  color: var(--brand);
}

.hero {
  padding: 20px 0 32px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.hero__copy {
  order: 2;
}

.hero__card {
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.hero__media {
  order: 1;
  align-self: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid #e8d0d7;
  background: #fff3f6;
  color: #9c5060;
  font-size: 12px;
  font-weight: 700;
}

.hero__title {
  margin: 8px 0;
  font-size: clamp(1.65rem, 6.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-family: var(--font-heading);
  font-weight: 700;
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__bullets {
  margin: 8px 0 0;
  padding: 0 0 0 18px;
  list-style: disc;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero__bullets li {
  margin-bottom: 4px;
}

.hero__bullets li:last-child {
  margin-bottom: 0;
}

.hero__price {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.hero__order .hero__price {
  margin-top: 0;
  padding: 10px 12px;
  gap: 8px;
  border-radius: 12px;
}

.hero__order .hero__price .price__now {
  font-size: 1.2rem;
}

.hero__order .hero__price .price__prefix,
.hero__order .hero__price .price__was {
  font-size: 0.82rem;
}

.hero__order .hero__price .price__note {
  font-size: 0.72rem;
}

.hero__order .hero__price .price__delivery {
  font-size: 0.7rem;
}

.hero__order .hero__price .countdown__label {
  font-size: 0.65rem;
}

.hero__order .hero__price .countdown__time {
  font-size: 0.78rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price__now {
  font-size: 1.6rem;
  font-weight: 850;
  color: var(--brand);
}

.price__was {
  color: #9b97a4;
  text-decoration: line-through;
  font-size: 0.95rem;
}

.price__prefix {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.price__note {
  color: #6a6f77;
  font-size: 0.82rem;
  font-weight: 600;
}

.price__delivery {
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 4px;
  width: 100%;
}

.hero__options {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__option {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__option-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.hero__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__swatches .color-swatch {
  padding: 8px;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
}

.hero__swatches .color-swatch__img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.hero__swatches .color-swatch__label {
  font-size: 0.68rem;
}

.hero__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-pill {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 16px;
  min-height: var(--tap-min);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.size-pill:hover {
  border-color: #d5c7b8;
}

.size-pill--active {
  border-color: var(--brand);
  background: #fff6f8;
  color: var(--brand);
}

.hero__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 10px;
  align-items: stretch;
}

.hero__cta .btn {
  white-space: nowrap;
  min-height: 48px;
  padding: 12px 16px;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  min-height: var(--tap-min);
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.08s ease,
    filter 0.2s ease,
    border-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), #aa6575);
  color: #fff;
  box-shadow: 0 10px 20px rgba(201, 121, 138, 0.26);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--accent);
}

.btn--ghost:hover {
  border-color: #d5c7b8;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border: 0;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  filter: brightness(1.05);
}

.btn--block {
  width: 100%;
}

.mini-proof {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: #565e68;
  font-size: 0.77rem;
  font-weight: 600;
}

.countdown {
  margin-top: 8px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid #f0d8de;
  background: #fff4f7;
}

.countdown__label {
  font-size: 0.72rem;
  color: #8c5a67;
  font-weight: 600;
}

.countdown__time {
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  font-size: 0.85rem;
  color: #934d5e;
}

.product-card {
  position: sticky;
  top: calc(60px + env(safe-area-inset-top, 0px));
  border-radius: 20px;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.product-card__img {
  width: 100%;
  max-height: 52vh;
  border-radius: 20px;
  object-fit: contain;
  aspect-ratio: 2 / 3;
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(62, 34, 7, 0.06);
}

.product-card__thumbs {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card__price {
  margin-top: 12px;
}

.product-card__color {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card__size {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__media-extra {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__media-extra .hero__cta {
  margin-top: 4px;
}

.product-card__thumbs--hidden {
  display: none;
}

.hero-thumb {
  appearance: none;
  border: 2px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  padding: 0;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-thumb:hover {
  border-color: #d5c7b8;
}

.hero-thumb--active {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.hero-thumb__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  display: block;
}

.product-card__badges {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.76rem;
  border: 1px solid var(--border);
  font-weight: 700;
}

.pill--brand {
  background: #fff1f5;
  color: #944f60;
  border-color: #ecd1d8;
}

.pill--dark {
  background: #f5efe8;
  color: #555f6a;
  border-color: #eadfd4;
}

.section {
  padding: var(--section-padding-y) 0;
}

.section--alt {
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--details {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section--details:not([style*="display"]) {
  display: block;
}

.details {
  display: grid;
  gap: 14px;
  max-width: 56ch;
}

.details__item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.details__item:last-child {
  border-bottom: 0;
}

.details__title {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.details__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.section__title {
  margin: 0 0 14px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-family: var(--font-heading);
  font-weight: 650;
}

.section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid--2,
.grid--3 {
  grid-template-columns: 1fr;
}

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

.sections-puzzle {
  display: block;
}

.testimonials-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.benefits-how-titles {
  display: block;
  margin-top: 24px;
  margin-bottom: 14px;
}

.benefits-how-titles .section__title:last-child {
  margin-top: 20px;
}

.benefits-how-grid {
  display: grid;
  gap: 14px;
}

.benefits-how-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .sections-puzzle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .puzzle-col--left {
    grid-column: 1;
  }

  .puzzle-col--right {
    grid-column: 2;
  }

  .sections-puzzle .grid--benefits,
  .sections-puzzle .grid--testimonials {
    grid-template-columns: 1fr;
  }

  .sections-puzzle .grid--benefits,
  .sections-puzzle .steps {
    gap: 14px;
  }

  .sections-puzzle .faq {
    grid-template-columns: 1fr;
  }

  .section--testimonials-full,
  .section--benefits-how-full {
    grid-column: 1 / -1;
  }

  .benefits-how-titles {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 14px;
    align-items: baseline;
  }

  .benefits-how-titles .section__title {
    flex: 1;
    min-width: 0;
  }

  .benefits-how-titles .section__title {
    text-align: center;
  }

  .benefits-how-titles .section__title:last-child {
    margin-top: 0;
  }

  .benefits-how-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .benefits-how-row .card,
  .benefits-how-row .step {
    min-height: 145px;
    align-items: center;
  }

  .testimonials-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.sections-puzzle .grid--benefits .card {
  min-height: 145px;
}

.card--icon-left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.card--icon-left .card__icon {
  margin-bottom: 0;
}

.card__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff4f6;
  border: 1px solid #ead3d8;
  color: var(--brand);
  margin-bottom: 8px;
}

.card__title {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

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

.ba__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.ba__img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.ba__overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: 55%;
  overflow: hidden;
  border-right: 2px solid #fff;
}

.ba__labels {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 6px;
}

.ba__slider {
  width: 100%;
  margin-top: 8px;
}

.ba__copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.color-section {
  display: grid;
  gap: 12px;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  appearance: none;
  font: inherit;
}

.color-swatch:hover {
  border-color: #d5c7b8;
}

.color-swatch--active {
  border-color: var(--brand);
  background: #fff6f8;
}

.color-swatch__img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.color-swatch__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.color-section__copy {
  color: var(--muted);
  font-size: 0.9rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  min-height: 145px;
}

.step__num {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #f6eef8;
  border: 1px solid #e8d8ec;
  color: #905a9d;
  font-weight: 900;
  font-size: 0.82rem;
}

.step__title {
  margin: 0 0 4px;
  font-weight: 800;
  font-size: 0.94rem;
}

.step__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.guarantee {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.guarantee__badge {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid #eadfd4;
}

.guarantee__badge span {
  color: #a15668;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

.guarantee__badge small {
  color: #6f7278;
  font-size: 0.72rem;
  font-weight: 700;
}

.guarantee--in-card {
  margin-top: 20px;
  padding: 16px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #fdf8f9 0%, #faf6f4 100%);
  border: 1px solid #eadfd4;
  border-radius: 14px;
}

.guarantee--in-card .guarantee__badge {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e8d0d7;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 2px 8px rgba(156, 80, 96, 0.08);
}

.guarantee--in-card .guarantee__badge span {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #9c5060;
}

.guarantee--in-card .guarantee__badge small {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
  color: #7a7e85;
}

.guarantee--in-card .guarantee__copy .section__title {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 800;
}

.guarantee--in-card .guarantee__copy .muted {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.muted {
  margin: 0;
  color: var(--muted);
}

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

.stars {
  color: #b46f7f;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 900;
}

.testimonial__name {
  font-weight: 850;
  font-size: 0.92rem;
}

.testimonial__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 0.91rem;
  padding: 4px 0;
  min-height: var(--tap-min);
  display: flex;
  align-items: center;
}

.faq p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero__order {
  margin-top: 24px;
}

.hero__summary {
  margin-top: 16px;
  position: relative;
  top: 0;
}

.order__intro {
  margin: 0 0 8px;
  font-size: 0.9rem;
}

.packs {
  margin: 14px 0;
  display: grid;
  gap: 10px;
}

.pack {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 14px;
  min-height: var(--tap-min);
  cursor: pointer;
  transition: border-color 0.18s ease;
}

.pack__img-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

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

.pack:hover {
  border-color: #d9c6bd;
}

.pack--active {
  border-color: #ddb4bf;
  background: #fff6f8;
}

.pack__title {
  margin: 0;
  font-weight: 850;
  font-size: 0.93rem;
}

.pack__meta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.pack__price {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.pack__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pack__now {
  color: #a65a6c;
  font-size: 1.03rem;
  font-weight: 900;
}

.pack__was {
  color: #a7a2ad;
  text-decoration: line-through;
  font-size: 0.76rem;
}

.pack__discount {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--success);
}

.tag {
  display: inline-flex;
  margin-top: 6px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #cedcc6;
  background: #f4faf0;
  color: #3c6a4c;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 5px 7px;
}

.form {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

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

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

.field__input-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.field__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background: var(--surface-soft);
  border: 1px solid #e1d7cb;
  border-inline-end: 0;
  border-radius: 11px 0 0 11px;
  color: var(--muted);
}

[dir="rtl"] .field__icon-wrap {
  border-inline-end: 1px solid #e1d7cb;
  border-inline-start: 0;
  border-radius: 0 11px 11px 0;
}

.field--with-icon .field__input {
  border-radius: 0 11px 11px 0;
  flex: 1;
}

[dir="rtl"] .field--with-icon .field__input {
  border-radius: 11px 0 0 11px;
}

.field--with-icon .field__input--area {
  border-radius: 0 11px 11px 0;
}

[dir="rtl"] .field--with-icon .field__input--area {
  border-radius: 11px 0 0 11px;
}

.field__icon-wrap .field__icon,
.field__icon-wrap .trust__icon {
  width: 18px;
  height: 18px;
}

.field__label {
  color: #4f5560;
  font-size: 0.8rem;
  font-weight: 760;
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  min-height: var(--tap-min);
  border-radius: 11px;
  border: 1px solid #e1d7cb;
  background: #fff;
  color: var(--text);
  outline: none;
  font: inherit;
  font-size: 16px;
}

.field__input:focus {
  border-color: #d4a4b1;
  box-shadow: 0 0 0 4px rgba(201, 121, 138, 0.14);
}

.field__input::placeholder {
  color: #9b96a3;
}

.field__input--area {
  resize: vertical;
  min-height: 88px;
}

.form__fineprint {
  margin-top: 10px;
  font-size: 0.75rem;
  color: #7c8088;
}

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

.form__status {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 650;
  color: #4d535d;
}

.summary {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 12px;
  position: sticky;
  top: 70px;
  align-self: start;
}

.summary__top {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.summary__img {
  width: 74px;
  height: 92px;
  border-radius: 12px;
  border: 1px solid #efe5dc;
  object-fit: cover;
}

.summary__name {
  font-weight: 900;
  font-size: 0.94rem;
}

.summary__meta {
  color: var(--muted);
  font-size: 0.76rem;
}

.summary__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #efe5dc;
  padding: 8px 0;
  color: #49505a;
  font-size: 0.82rem;
}

.summary__line--total {
  font-weight: 900;
  color: var(--accent);
}

.summary__badges {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.summary .hero__cta {
  margin-top: 16px;
}

.product-card__delivery-badge {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border: 1px solid #c8e6c9;
  color: #2e7d32;
  font-size: 0.9rem;
  font-weight: 800;
  width: 100%;
}

.product-card__delivery-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #4caf50;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.footer {
  margin-top: 0;
  border-top: 1px solid #ebe5dd;
  background: linear-gradient(180deg, #fdfbf9 0%, #f8f4ef 100%);
  padding: 28px 0 110px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.footer__brand {
  font-weight: 850;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #2d2a26;
}

.footer__brand .footer__phone {
  color: #8a5a64;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer__brand .footer__phone:hover {
  color: #9c5060;
  text-decoration: none;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer__links a,
.footer .linklike {
  padding: 8px 14px;
  border-radius: 10px;
  color: #5a5f68;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5dfd8;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer__links a:hover,
.footer .linklike:hover {
  color: #2d2a26;
  text-decoration: none;
  background: #fff;
  border-color: #d4cdc4;
}

.footer__legal {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #ebe5dd;
  color: #8a919a;
  font-size: 0.74rem;
  line-height: 1.5;
}

.whatsapp-float {
  position: fixed;
  bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  inset-inline-end: 16px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  border: 3px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 40;
  padding-inline: 10px;
  display: none;
}

.sticky--show {
  display: block;
}

.sticky__inner {
  max-width: var(--container);
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid #e8d9cc;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 30px rgba(62, 34, 7, 0.14);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sticky__price {
  display: grid;
  gap: 2px;
}

.sticky__name {
  font-size: 0.73rem;
  color: #69717b;
  font-weight: 700;
}

.sticky__pack {
  font-size: 0.72rem;
  color: #69717b;
  font-weight: 600;
}

.sticky__amount {
  color: #9f5364;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .hero__media {
    margin-inline: calc(-1 * var(--container-padding));
  }

  .hero__media .product-card {
    border-radius: 12px 12px 20px 20px;
    padding-inline: 0;
    padding-block: 12px;
  }

  .hero__media .product-card__img {
    border-radius: 12px 12px 0 0;
    width: 100%;
  }

  .hero__media .product-card__color,
  .hero__media .product-card__size,
  .hero__media .hero__media-extra,
  .hero__media .hero__summary {
    padding-inline: var(--container-padding);
  }

  .whatsapp-float {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    inset-inline-end: 12px;
    width: 54px;
    height: 54px;
    border-width: 2px;
  }

  .section {
    padding: 18px 0;
  }

  .topbar__items {
    padding: 8px 0;
    overflow: hidden;
    overflow-x: hidden;
  }

  .topbar__marquee {
    display: inline-flex;
    animation: topbar-marquee 20s linear infinite;
    width: max-content;
  }

  .trust {
    padding: 8px 10px;
    font-size: 12px;
    min-height: var(--tap-min);
  }

  .trust__icon {
    width: 14px;
    height: 14px;
  }

  .sticky__inner {
    padding: 8px 10px;
  }

  .sticky .btn {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .sticky__price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
  }

  .sticky__name,
  .sticky__pack {
    font-size: 0.65rem;
  }

  .sticky__amount {
    font-size: 0.85rem;
  }

  .icon-btn {
    min-width: var(--tap-min);
    min-height: var(--tap-min);
  }

  .footer__links a,
  .footer .linklike {
    padding: 8px 14px;
    min-height: var(--tap-min);
    display: inline-flex;
    align-items: center;
  }
}

.modal {
  border: 0;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(30, 24, 18, 0.5);
  backdrop-filter: blur(2px);
}

.modal__card {
  width: min(700px, calc(100% - 18px));
  margin: 10vh auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}

.modal__head h3 {
  margin: 0;
  font-size: 0.95rem;
}

.icon-btn {
  appearance: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: #5f6670;
  cursor: pointer;
}

.modal__body {
  padding: 12px;
  color: #545c66;
  font-size: 0.88rem;
}

.modal__body p {
  margin: 8px 0;
}

@media (min-width: 480px) {
  .container {
    padding-inline: 16px;
  }

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

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

  .section {
    padding: 24px 0;
  }
}

@media (min-width: 768px) {
  :root {
    --section-padding-y: 28px;
    --container-padding: 20px;
  }

  body {
    padding-bottom: 24px;
  }

  .topbar__items {
    flex-wrap: wrap;
    overflow: visible;
  }

  .topbar__marquee {
    animation: none;
  }

  .topbar__marquee-dup {
    display: none;
  }

  .hero {
    padding: 24px 0 28px;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .hero__media {
    grid-column: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }

  .hero__media .product-card {
    flex: 1;
    min-height: 0;
  }

  .hero__copy {
    grid-column: 2;
    display: flex;
    flex-direction: column;
  }

  .hero__card {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__card .hero__order {
    flex: 1;
  }

  .section:not(#order) .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .section:not(#order) .section__title {
    grid-column: 1 / -1;
  }

  .section:not(#order) .grid--2,
  .section:not(#order) .grid--3 {
    grid-column: 1 / -1;
  }

  .section--details .details {
    grid-column: 1 / -1;
  }

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

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

  .section .steps {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .section .guarantee {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
  }

  .section .faq {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section .details {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

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

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

  .hero__summary {
    top: 0;
  }

  .footer {
    padding-bottom: 30px;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer__links {
    justify-content: flex-end;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 20px;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
  }

  .section {
    padding: 28px 0;
  }

  .topbar__items {
    gap: 10px;
  }

  .trust {
    font-size: 15px;
  }

  .pack {
    padding: 14px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
