:root {
  --black: #0b0b0c;
  --ink: #161518;
  --ivory: #fffaf7;
  --soft: #f3ede9;
  --wine: #641b2b;
  --wine-bright: #8e3145;
  --rose: #e7aeb9;
  --blue: #10283a;
  --muted: #746b68;
  --line: rgba(22, 21, 24, 0.14);
  --white-line: rgba(255, 250, 247, 0.2);
  --shadow: 0 24px 80px rgba(11, 11, 12, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --script: "Allura", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(11, 11, 12, 0.84);
  color: var(--ivory);
  display: flex;
  gap: 32px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, padding 180ms ease;
  z-index: 30;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 12, 0.96);
  padding-block: 12px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0;
}

.brand-mark {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(10px, 1.4vw, 20px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  color: #f4b8c4;
  opacity: 1;
}

.site-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.cart-toggle {
  align-items: center;
  background: rgba(255, 250, 247, 0.08);
  border: 1px solid rgba(255, 250, 247, 0.36);
  border-radius: 999px;
  color: var(--ivory);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 7px;
  justify-content: center;
  min-height: 40px;
  min-width: 58px;
  padding: 8px 12px;
}

.cart-toggle svg {
  height: 17px;
  width: 17px;
}

.cart-toggle span {
  align-items: center;
  background: var(--wine-bright);
  border-radius: 999px;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  min-width: 22px;
  padding: 0 6px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  color: var(--ivory);
  display: none;
  height: 36px;
  padding: 0;
  width: 36px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 24px;
}

.section-dark {
  background: var(--black);
  color: var(--ivory);
}

main section[id],
.site-footer[id] {
  scroll-margin-top: 92px;
}

.hero {
  min-height: 94vh;
  overflow: hidden;
  padding: 148px clamp(20px, 6vw, 92px) 42px;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(11, 11, 12, 0.93), rgba(11, 11, 12, 0.56), rgba(11, 11, 12, 0.12));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  width: 100%;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--wine-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #f0a7b5;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(4.5rem, 13vw, 12rem);
  margin-bottom: 6px;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 5rem);
  margin-bottom: 20px;
  max-width: 980px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.script-line {
  color: #f7ccd3;
  font-family: var(--script);
  font-size: clamp(2.2rem, 5.8vw, 5rem);
  line-height: 1;
  margin-bottom: 28px;
}

.hero-copy {
  color: rgba(255, 250, 247, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  letter-spacing: 0.06em;
  min-height: 48px;
  padding: 13px 22px;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button svg,
.floating-whatsapp svg {
  height: 17px;
  width: 17px;
}

.button:hover {
  box-shadow: 0 12px 30px rgba(11, 11, 12, 0.16);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ivory);
  color: var(--black);
}

.button-secondary {
  background: rgba(255, 250, 247, 0.08);
  border: 1px solid rgba(255, 250, 247, 0.52);
  color: var(--ivory);
}

.button-secondary:hover {
  background: rgba(255, 250, 247, 0.14);
}

.button-dark {
  background: var(--black);
  color: var(--ivory);
}

.button-outline-dark {
  background: transparent;
  border: 1px solid rgba(22, 21, 24, 0.32);
  color: var(--black);
}

.hero-next {
  border-top: 1px solid var(--white-line);
  bottom: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  left: clamp(20px, 6vw, 92px);
  padding: 18px 0;
  position: absolute;
  right: clamp(20px, 6vw, 92px);
  z-index: 2;
}

.hero-next span {
  color: rgba(255, 250, 247, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section,
.lirio-section,
.story-section {
  padding: clamp(72px, 8vw, 128px) clamp(20px, 6vw, 92px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  margin-bottom: 44px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p:last-child {
  color: var(--muted);
  margin: 0;
}

.section-heading.compact {
  display: block;
  max-width: 920px;
}

.catalog-section {
  background: var(--ivory);
}

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

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

.full-span {
  grid-column: 1 / -1;
  margin-top: 28px;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.shop-toolbar button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  min-height: 40px;
  padding: 10px 14px;
}

.shop-toolbar button.is-active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--ivory);
}

.catalog-card {
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(11, 11, 12, 0.07);
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-card:hover {
  border-color: rgba(100, 27, 43, 0.36);
  box-shadow: 0 26px 74px rgba(11, 11, 12, 0.14);
  transform: translateY(-5px);
}

.catalog-visual {
  border: 0;
  border-radius: 0;
  background-image: linear-gradient(180deg, rgba(11, 11, 12, 0.08), rgba(11, 11, 12, 0.42)), url("assets/astromelia-hero.png");
  background-size: 230%;
  cursor: pointer;
  display: block;
  min-height: 220px;
  padding: 0;
  position: relative;
  width: 100%;
}

.catalog-visual.has-upload {
  background-size: cover;
}

.card-conjuntos .catalog-visual {
  background-position: 80% 54%;
}

.card-bralettes .catalog-visual {
  background-position: 60% 62%;
}

.card-bodys .catalog-visual {
  background-position: 94% 44%;
}

.card-babydoll .catalog-visual {
  background-position: 26% 72%;
}

.card-complementos .catalog-visual {
  background-position: 46% 84%;
}

.card-lirio .catalog-visual {
  background-position: 16% 78%;
}

.catalog-ref {
  background: rgba(255, 250, 247, 0.9);
  border-radius: 999px;
  bottom: 18px;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 900;
  left: 18px;
  letter-spacing: 0.12em;
  padding: 8px 11px;
  position: absolute;
  text-transform: uppercase;
}

.catalog-copy {
  display: grid;
  padding: 24px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.product-badges span,
.detail-chips span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 8px;
  text-transform: uppercase;
}

.catalog-kicker {
  color: var(--wine-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.catalog-copy h3 {
  font-size: 1.65rem;
}

.catalog-copy > p:not(.catalog-kicker) {
  color: var(--muted);
}

.product-price {
  color: var(--wine);
  font-size: 1rem;
  font-weight: 900;
  margin: 6px 0 0;
}

.card-points {
  color: var(--ink);
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
}

.card-points li {
  border-left: 2px solid rgba(100, 27, 43, 0.28);
  padding-left: 12px;
}

.card-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 18px;
}

.swatches {
  display: flex;
  gap: 7px;
}

.swatch {
  border: 1px solid rgba(22, 21, 24, 0.18);
  border-radius: 999px;
  height: 18px;
  width: 18px;
}

.swatch-black {
  background: var(--black);
}

.swatch-wine {
  background: var(--wine);
}

.swatch-ivory {
  background: var(--ivory);
}

.swatch-blue {
  background: var(--blue);
}

.swatch-rose {
  background: var(--rose);
}

.card-footer a,
.card-footer button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  min-height: auto;
  padding: 0;
  text-transform: uppercase;
}

.empty-state {
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
}

.product-detail {
  background: var(--soft);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(72px, 8vw, 128px) clamp(20px, 6vw, 92px);
  scroll-margin-top: 92px;
}

.product-detail[hidden] {
  display: none;
}

.product-detail-media {
  background-image: linear-gradient(180deg, rgba(11, 11, 12, 0.08), rgba(11, 11, 12, 0.42)), url("assets/astromelia-hero.png");
  background-position: 80% 54%;
  background-size: 230%;
  border-radius: 8px;
  min-height: 560px;
  position: relative;
}

.product-detail-media.has-upload {
  background-size: cover;
}

.product-detail-copy {
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 4vw, 44px);
}

.detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.purchase-panel {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 24px;
  padding: 18px;
}

.purchase-fields {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 120px;
}

.purchase-fields label,
.checkout-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-fields input,
.purchase-fields select,
.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 44px;
  outline: none;
  padding: 10px 12px;
  text-transform: none;
  width: 100%;
}

.purchase-fields input:focus,
.purchase-fields select:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: rgba(100, 27, 43, 0.5);
  box-shadow: 0 0 0 3px rgba(100, 27, 43, 0.08);
}

.product-faq {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.immediate-section,
.kits-section,
.size-guide-section,
.trust-section,
.policies-section {
  background: var(--ivory);
}

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

.experience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-grid article {
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 300px;
  padding: 28px;
  position: relative;
}

.experience-grid article svg {
  color: var(--wine);
  height: 30px;
  margin-bottom: 26px;
  width: 30px;
}

.experience-grid span {
  color: var(--wine-bright);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.experience-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.testimonial-grid,
.policy-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid article,
.policy-grid article {
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 220px;
  padding: 28px;
}

.testimonial-grid p {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.22;
}

.testimonial-grid span {
  color: var(--wine-bright);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-top: 28px;
  text-transform: uppercase;
}

.policy-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.policy-grid article svg {
  color: var(--wine);
  height: 28px;
  margin-bottom: 22px;
  width: 28px;
}

.policy-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.social-panel {
  align-items: end;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.social-panel p {
  color: var(--muted);
  max-width: 680px;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.story-section {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
}

.story-copy p:last-child {
  color: rgba(255, 250, 247, 0.76);
  margin-bottom: 0;
  max-width: 720px;
}

blockquote {
  border-left: 1px solid rgba(240, 167, 181, 0.8);
  color: #f7ccd3;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.4rem);
  line-height: 1.25;
  margin: 0;
  padding-left: 28px;
}

.lirio-section {
  background: linear-gradient(135deg, var(--ivory), #eef4f7);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.lirio-panel {
  max-width: 660px;
}

.lirio-panel p {
  color: var(--muted);
}

.lirio-list {
  display: grid;
  gap: 14px;
}

.lirio-list span {
  align-items: center;
  background: rgba(255, 250, 247, 0.82);
  border: 1px solid rgba(16, 40, 58, 0.16);
  border-radius: 8px;
  display: flex;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 2rem);
  min-height: 96px;
  padding: 20px 24px;
}

.faq-section {
  background: var(--ivory);
}

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

details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.35rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 680px;
}

.site-footer {
  background: var(--black);
  color: var(--ivory);
  display: grid;
  gap: 34px;
  padding: 56px clamp(20px, 6vw, 92px) 92px;
}

.footer-grid {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(240px, 1.1fr) minmax(260px, 1.15fr) minmax(160px, 0.55fr) minmax(190px, 0.7fr);
}

.footer-brand {
  font-size: 1.35rem;
}

.footer-brand-block {
  max-width: 360px;
}

.site-footer p {
  color: rgba(255, 250, 247, 0.7);
  margin: 10px 0 0;
}

.footer-heading {
  color: #f0a7b5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.footer-column p:not(.footer-heading) {
  margin: 0;
}

.footer-about p:not(.footer-heading) {
  max-width: 430px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 250, 247, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: #f7ccd3;
}

.footer-bottom {
  border-top: 1px solid var(--white-line);
  color: rgba(255, 250, 247, 0.54);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.76rem;
  font-weight: 700;
  gap: 12px 24px;
  justify-content: space-between;
  letter-spacing: 0.04em;
  padding-top: 20px;
  text-transform: uppercase;
}

.floating-whatsapp {
  align-items: center;
  background: var(--wine);
  border-radius: 999px;
  bottom: 20px;
  box-shadow: var(--shadow);
  color: var(--ivory);
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 900;
  gap: 8px;
  left: 20px;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  position: fixed;
  right: auto;
  text-transform: uppercase;
  z-index: 22;
}

.cart-is-open {
  overflow: hidden;
}

.cart-backdrop {
  background: rgba(11, 11, 12, 0.44);
  inset: 0;
  position: fixed;
  z-index: 50;
}

.cart-drawer {
  background: #fffdfb;
  bottom: 0;
  box-shadow: -24px 0 72px rgba(11, 11, 12, 0.24);
  display: flex;
  flex-direction: column;
  max-width: 460px;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  right: 0;
  top: 0;
  width: min(460px, calc(100vw - 24px));
  z-index: 60;
}

.cart-backdrop[hidden],
.cart-drawer[hidden] {
  display: none;
}

.cart-head {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 28px 26px 22px;
}

.cart-head h2 {
  font-size: 2rem;
  margin: 0;
}

.cart-close {
  align-items: center;
  background: var(--black);
  border: 0;
  border-radius: 999px;
  color: var(--ivory);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.cart-close svg {
  height: 18px;
  width: 18px;
}

.cart-items {
  display: grid;
  gap: 12px;
  padding: 22px 26px;
}

.cart-line {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.cart-line small,
.cart-line span,
.cart-line em {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-style: normal;
}

.cart-line strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.15;
  margin: 2px 0 4px;
}

.quantity-control {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.quantity-control button {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.quantity-control span {
  color: var(--ink);
  font-weight: 900;
  min-width: 20px;
  text-align: center;
}

.cart-remove {
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--wine);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  justify-self: start;
  letter-spacing: 0.08em;
  padding: 0;
  text-transform: uppercase;
}

.checkout-form {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding: 20px 26px 26px;
}

.cart-total {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.cart-total span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-total strong {
  color: var(--wine);
  font-size: 1.15rem;
}

.cart-note,
.form-message {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

.payment-help {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.payment-help span {
  color: var(--wine);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.payment-help p {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0;
}

.form-message.is-error {
  color: #a04444;
}

.checkout-form .button {
  width: 100%;
}

.checkout-form .button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

@media (max-width: 1120px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 980px) {
  .section-heading,
  .story-section,
  .lirio-section,
  .product-detail,
  .social-panel {
    grid-template-columns: 1fr;
  }

  .social-actions {
    justify-content: flex-start;
  }

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

  .product-detail-media {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 18px;
    padding-inline: 18px;
  }

  main section[id],
  .site-footer[id] {
    scroll-margin-top: 112px;
  }

  .nav-toggle {
    display: block;
  }

  .cart-toggle {
    min-width: 52px;
    padding: 8px 10px;
  }

  .site-nav {
    background: rgba(11, 11, 12, 0.98);
    border-top: 1px solid var(--white-line);
    display: grid;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 12px 18px 18px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
  }

  .hero {
    max-width: 100vw;
    min-height: 92vh;
    overflow-x: hidden;
    padding-top: 126px;
  }

  .hero-content,
  .hero-copy,
  .hero-actions {
    max-width: calc(100vw - 60px);
    width: calc(100vw - 60px);
  }

  h1 {
    font-size: clamp(3rem, 11vw, 4.8rem);
    white-space: nowrap;
  }

  .script-line {
    font-size: clamp(2rem, 8vw, 3.5rem);
    max-width: 11ch;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(11, 11, 12, 0.9), rgba(11, 11, 12, 0.68), rgba(11, 11, 12, 0.24));
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-actions,
  .button {
    max-width: 100%;
    width: 100%;
  }

  .hero-next {
    grid-template-columns: 1fr;
    position: relative;
    left: auto;
    margin-top: 44px;
    padding-bottom: 0;
    right: auto;
  }

  .catalog-grid,
  .experience-grid,
  .testimonial-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .shop-toolbar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .shop-toolbar button {
    flex: 0 0 auto;
  }

  .catalog-card {
    grid-template-rows: 220px 1fr;
  }

  .product-detail {
    scroll-margin-top: 112px;
  }

  .product-detail-media {
    min-height: 310px;
  }

  .purchase-fields {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: min(430px, calc(100vw - 16px));
  }

  .floating-whatsapp {
    bottom: 16px;
    height: 52px;
    justify-content: center;
    left: 16px;
    padding: 0;
    width: 52px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp svg {
    height: 21px;
    width: 21px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .hero-content,
  .hero-copy,
  .hero-actions {
    max-width: min(330px, calc(100vw - 60px));
    width: min(330px, calc(100vw - 60px));
  }

  .brand {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 3rem;
  }

  .script-line {
    font-size: 2rem;
  }

  .section,
  .lirio-section,
  .story-section {
    padding-block: 60px;
  }

  .catalog-copy,
  .experience-grid article {
    padding: 22px;
  }

  .catalog-copy {
    padding-top: 30px;
  }

  .catalog-kicker {
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cart-drawer {
    max-width: none;
    width: 100vw;
  }

  .cart-head,
  .cart-items,
  .checkout-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
