:root {
  --bg: #f7f2ef;
  --paper: #ffffff;
  --ink: #111111;
  --ink-soft: #5f5a57;
  --olive: #7a846f;
  --olive-deep: #616a57;
  --rose: #b58d84;
  --rose-soft: #ead8d2;
  --line: #ece4e1;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 16px 40px rgba(34, 20, 15, 0.09);
  --shadow-strong: 0 26px 70px rgba(29, 16, 12, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  overflow-x: clip;
  background: radial-gradient(circle at 12% 8%, #fff5f0 0%, transparent 36%),
    radial-gradient(circle at 94% 12%, #f1ece6 0%, transparent 34%),
    linear-gradient(180deg, #f8f2ef 0%, #f3eeeb 100%);
  line-height: 1.55;
}

.site-bg-shape {
  position: fixed;
  right: -16vw;
  top: -12vh;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 141, 132, 0.18) 0%, rgba(181, 141, 132, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

img {
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.12;
}

p {
  margin: 0;
}

.section {
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 4.6rem 0;
}

.site-header {
  width: min(1160px, 94vw);
  margin: 0 auto;
  padding: 0.24rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  position: absolute;
  top: -0.45rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand-lockup a {
  display: inline-flex;
}

.brand-logo {
  width: clamp(86px, 9vw, 128px);
  height: auto;
  display: block;
  object-fit: contain;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--olive), var(--rose));
}

.brand-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.75);
}

.brand-lockup h1 {
  font-size: 1.14rem;
  color: #ffffff;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.mobile-menu-social {
  display: none;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.cart-link span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  color: #fff;
  background: var(--olive-deep);
}

.menu-toggle {
  display: none;
}

.hero {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.hero-stage {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  height: 100svh;
  min-height: 100svh;
}

.hero-stage > img {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  filter: saturate(1.06);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(24, 14, 12, 0.64) 0%, rgba(24, 14, 12, 0.16) 48%, rgba(24, 14, 12, 0.18) 100%);
}

.hero-overlay {
  position: absolute;
  left: clamp(1.2rem, 4vw, 2.8rem);
  top: 50%;
  transform: translateY(-50%);
  width: min(700px, 88%);
  z-index: 2;
  color: #fff;
}

.overline {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 0.55rem;
}

.hero-overlay .overline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9125rem;
  margin-bottom: 0.7rem;
}

.hero-overlay h2 {
  font-size: clamp(2.75rem, 6.75vw, 5rem);
  margin-bottom: 0.95rem;
}

.hero-overlay p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions .btn {
  font-size: 1.15rem;
  padding: 0.925rem 1.45rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.74rem 1.16rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #fff;
  color: #171717;
}

.btn-primary:hover {
  background: #f2f2f2;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-mini-cards {
  position: absolute;
  right: clamp(0.9rem, 3vw, 2rem);
  bottom: clamp(3.1rem, 8vh, 4.6rem);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 180px));
  gap: 0.6rem;
}

.hero-mini-cards article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.55rem;
  padding: 0.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
}

.hero-mini-cards img {
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-mini-cards p {
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-mini-cards small {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-tags {
  position: absolute;
  left: clamp(1rem, 4vw, 2.2rem);
  bottom: clamp(0.75rem, 3vh, 1.25rem);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
  flex-wrap: wrap;
}

.hero-tags span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.14);
}

.section-heading {
  margin-bottom: 1.4rem;
  max-width: 86ch;
}

.section-heading h3 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  margin-bottom: 0.45rem;
}

.section-heading p {
  color: var(--ink-soft);
}

.row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}

.awards-grid,
.needs-grid,
.cards-grid,
.before-after-grid,
.testimonials-grid,
.footer-top,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.awards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.awards-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: 1.4rem;
  width: 100%;
  align-items: center;
}

#reconocimientos {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#reconocimientos::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(17, 17, 17, 0.02) 0,
      rgba(17, 17, 17, 0.02) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(17, 17, 17, 0.015) 0,
      rgba(17, 17, 17, 0.015) 1px,
      transparent 1px,
      transparent 14px
    );
}

.awards-visual {
  padding: 0.35rem 0;
  align-self: start;
}

.awards-title-xl {
  color: #171311;
  font-size: clamp(2.7rem, 6.5vw, 5.4rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.awards-images {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 0.9rem;
  align-items: end;
}

.awards-images img {
  width: 100%;
  border-radius: 999px;
  object-fit: cover;
  border: none;
  box-shadow: none;
}

.awards-images img:first-child {
  aspect-ratio: 3 / 4;
}

.awards-images img:last-child {
  aspect-ratio: 4 / 5;
  border-radius: 40% 60% 46% 54% / 58% 44% 56% 42%;
}

.awards-right {
  display: grid;
  gap: 1.1rem;
  padding-left: clamp(0.4rem, 1.8vw, 1.6rem);
}

.awards-lead {
  margin: 0;
  color: #4c4742;
  font-size: 1.05rem;
  max-width: 52ch;
}

.awards-plain-list {
  display: grid;
  gap: 1.25rem;
}

.award-plain-item {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #d8d1cc;
}

.award-plain-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.award-year-plain {
  margin: 0 0 0.2rem;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #29211f;
}

.award-top {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: #6c675f;
  font-weight: 600;
}

.award-title-plain {
  margin: 0 0 0.45rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.1;
}

.award-plain-item p {
  color: #6a665f;
  font-size: 1.03rem;
}

.award-place-plain {
  margin: 0.5rem 0 0;
  color: #5e655a;
  font-weight: 700;
}

.award-card {
  background: linear-gradient(145deg, #ffffff, #faf6f3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.05rem;
  box-shadow: var(--shadow-soft);
}

.award-card .year {
  font-size: 1.65rem;
  font-weight: 800;
}

.award-top {
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.award-card h4 {
  font-size: 1.45rem;
  margin-bottom: 0.42rem;
}

.award-card p,
.award-card span {
  color: var(--ink-soft);
}

.award-card span {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 600;
}

.needs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.needs-banner {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 440px;
  overflow: hidden;
  background: #d8d3cf;
}

.needs-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 17, 15, 0.62) 0%, rgba(20, 17, 15, 0.36) 42%, rgba(20, 17, 15, 0.14) 100%);
}

.needs-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.needs-banner-copy {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  min-height: 440px;
  margin: 0 auto;
  padding: 3.2rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.75fr);
  align-items: center;
  gap: 2rem;
}

.needs-banner-main {
  max-width: 620px;
}

.needs-banner-side {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.needs-banner-copy h3 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  margin-bottom: 0.55rem;
}

.needs-banner-main p:last-child {
  max-width: 58ch;
}

.needs-banner-copy .overline {
  color: rgba(255, 255, 255, 0.78);
}

.needs-banner-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.needs-banner-tags {
  margin-top: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  max-width: 16ch;
  text-align: right;
  line-height: 1.8;
}

.need-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}

.need-card h4 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.need-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  text-align: center;
}

.need-icon {
  width: 2rem;
  height: 2rem;
  color: #505f4c;
  flex-shrink: 0;
}

.need-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.cards-grid.products,
.cards-grid.kits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-showcase-head {
  max-width: 760px;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.products-showcase-head h3 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  margin-bottom: 0.55rem;
}

.products-showcase-head p {
  color: var(--ink-soft);
}

.products-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-showcase-card {
  background: transparent;
}

.product-showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid #ece7e2;
}

.product-showcase-copy {
  padding-top: 0.75rem;
}

.product-showcase-copy h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.22rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.product-showcase-copy p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  margin-bottom: 0.3rem;
}

.product-showcase-copy strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.item-card {
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.cards-grid.kits .item-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.item-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.cards-grid.kits .item-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid #ece7e2;
}

.item-content {
  padding: 0.92rem;
}

.cards-grid.kits .item-content {
  padding: 0.82rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.chip {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--olive-deep);
  background: #f2f6ef;
  border-radius: 999px;
  padding: 0.24rem 0.52rem;
  margin-bottom: 0.45rem;
}

.item-content h4 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.cards-grid.kits .item-content h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.24rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.item-content p {
  color: var(--ink-soft);
}

.cards-grid.kits .item-content > p:not(.chip):not(.kit-price) {
  font-size: 0.95rem;
  margin-bottom: 0.32rem;
}

.cards-grid.kits .kit-description {
  color: #6d645f;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 34ch;
  min-height: 5.2em;
  margin-bottom: 0;
}

.item-foot {
  margin-top: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.item-foot strong,
.kit-price {
  font-size: 1.28rem;
  color: var(--ink);
}

.cards-grid.kits .kit-price {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0.35rem;
  white-space: nowrap;
}

.item-foot div {
  display: inline-flex;
  gap: 0.55rem;
}

.item-foot a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
}

.kit-tone {
  background: linear-gradient(160deg, #fff, #f9f4f1);
}

.cards-grid.kits .kit-tone {
  background: transparent;
}

.before-after-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.before-after-compare {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 21 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e7dfd8;
  box-shadow: 0 18px 40px rgba(36, 26, 22, 0.14);
  background: #ddd6d0;
}

.compare-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compare-before {
  position: absolute;
  inset: 0;
}

.compare-after-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - var(--compare-pos));
  overflow: hidden;
}

.compare-after {
  position: absolute;
  inset: 0;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--compare-pos);
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

.compare-handle::before,
.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.compare-handle::before {
  left: 10px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-handle::after {
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-labels {
  position: absolute;
  inset-inline: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.compare-labels span {
  background: rgba(20, 15, 13, 0.46);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.32rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.result-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.result-card div {
  padding: 0.95rem;
}

.result-tag {
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.38rem;
}

.result-card h4 {
  font-size: 1.45rem;
  margin-bottom: 0.34rem;
}

.result-card p {
  color: var(--ink-soft);
}

.reels-carousel {
  position: relative;
  width: 100%;
  margin-top: 1.1rem;
  padding: 0 2.4rem;
}

.reels-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.reel-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid #e8dfda;
  box-shadow: 0 14px 30px rgba(38, 25, 20, 0.14);
  background: #ebe5df;
  transform: scale(0.9);
  opacity: 0.72;
  transition: transform 260ms ease, opacity 260ms ease;
}

.reel-card.is-center {
  transform: scale(1.08);
  opacity: 1;
  z-index: 2;
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-audio-toggle {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(20, 15, 13, 0.55);
  color: #fff;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.reel-audio-toggle::before {
  content: "\1F507";
  font-size: 1rem;
  line-height: 1;
}

.reel-audio-toggle[aria-pressed="true"] {
  background: rgba(122, 132, 111, 0.94);
  border-color: rgba(235, 242, 226, 0.95);
}

.reel-audio-toggle[aria-pressed="true"]::before {
  content: "\1F50A";
}

.reels-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(20, 15, 13, 0.24);
  background: rgba(255, 255, 255, 0.88);
  color: #18120f;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
}

.reels-prev {
  left: 0;
}

.reels-next {
  right: 0;
}

.reels-nav:hover {
  background: #fff;
}

.about-block {
  border-radius: var(--radius-xl);
  padding: clamp(1.9rem, 5.6vw, 3.2rem);
  min-height: clamp(320px, 46vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  background: linear-gradient(115deg, rgba(18, 13, 11, 0.78) 6%, rgba(18, 13, 11, 0.54) 46%, rgba(18, 13, 11, 0.38) 100%),
    url("assets/img/nosotros-sumaq.jpg") center/cover no-repeat;
  color: #fefdfc;
  box-shadow: var(--shadow-strong);
}

.about-block .overline {
  color: #d7c0ba;
}

.about-block h3 {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.about-block p {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 1.1rem;
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.7;
}

.about-block .btn-primary {
  background: #ffffff;
}

.contact-grid {
  grid-template-columns: 1.05fr 1fr;
  align-items: start;
  gap: clamp(1rem, 2.8vw, 2.2rem);
}

#contacto {
  padding-top: 3.8rem;
  padding-bottom: 4.2rem;
}

.contact-intro {
  padding-top: 0.25rem;
  display: grid;
  gap: 0.75rem;
}

#contacto .contact-intro .overline {
  margin-bottom: 0.15rem;
}

#contacto .contact-intro h3 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  max-width: 18ch;
}

#contacto .contact-intro > p {
  color: var(--ink-soft);
  max-width: 55ch;
}

#contacto .contact-meta {
  color: var(--ink);
  max-width: 60ch;
}

#contacto .contact-meta strong {
  color: var(--ink);
}

.contact-form {
  background: #f8f8f8;
  border: 1px solid #ece9e6;
  border-radius: 18px;
  box-shadow: none;
  padding: clamp(1.1rem, 2.4vw, 1.45rem);
  display: grid;
  gap: 0.58rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.94rem;
  color: #4c4c4c;
  margin-top: 0.2rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  border: 1px solid #d8d6d3;
  border-radius: 12px;
  padding: 0.8rem;
  background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(40, 40, 40, 0.12);
  border-color: #6e6e6e;
}

.prefooter-ticker {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7a7bb;
  color: #221616;
  border-top: 1px solid rgba(34, 22, 22, 0.08);
  border-bottom: 1px solid rgba(34, 22, 22, 0.08);
  overflow: hidden;
  white-space: nowrap;
}

.prefooter-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 10rem;
  min-width: max-content;
  padding: 0.5rem 5rem;
  animation: prefooter-marquee 36s linear infinite;
}

.prefooter-ticker-track span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@keyframes prefooter-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

#contacto .contact-form .btn-primary {
  margin-top: 0.55rem;
  width: 100%;
  border-radius: 999px;
  background: #171717;
  border-color: #171717;
  color: #ffffff;
}

#visitanos {
  padding-top: 1.2rem;
  padding-bottom: 4.4rem;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
}

.visit-agenda,
.visit-location {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

#visitanos .visit-agenda h3,
#visitanos .visit-location h3 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  max-width: 17ch;
}

#visitanos .visit-agenda > p,
#visitanos .visit-location > p {
  color: var(--ink-soft);
  max-width: 58ch;
}

.visit-contact-line {
  color: #302925;
  font-size: 1.02rem;
}

.visit-contact-line strong {
  color: #171311;
}

.visit-agenda .btn {
  width: fit-content;
  min-height: 44px;
  margin-top: 0.35rem;
}

.visit-map-wrap {
  margin-top: 0.35rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d8d0cb;
  min-height: clamp(230px, 34vw, 320px);
}

.visit-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(230px, 34vw, 320px);
  border: 0;
  display: block;
}

.site-footer {
  width: 100%;
  margin: 0;
  background: #0b0b0b;
  color: #f7f7f7;
  border-radius: 0;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.footer-top {
  width: min(1160px, 92vw);
  margin: 0 auto;
  grid-template-columns: 1.9fr 1fr 1fr 1.35fr;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.footer-brand {
  max-width: 27ch;
}

.footer-logo {
  width: clamp(118px, 15vw, 170px);
  margin-bottom: 1rem;
  filter: brightness(0) invert(1) saturate(0);
}

.footer-top h5 {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: #8f8f8f;
  margin-bottom: 0.75rem;
}

.footer-top p,
.footer-top a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-top p {
  line-height: 1.65;
}

.footer-top a {
  display: block;
  margin-bottom: 0.52rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  place-items: center;
  margin: 0;
  color: #ffffff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.footer-contact {
  display: grid;
  gap: 0.85rem;
}

.footer-whatsapp-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(31, 143, 69, 0.65);
  background: linear-gradient(90deg, rgba(17, 67, 34, 0.76), rgba(13, 53, 30, 0.56));
  border-radius: 16px;
  padding: 0.85rem 0.9rem;
  margin-bottom: 0.2rem;
}

.footer-whatsapp-copy {
  display: grid;
  gap: 0.1rem;
}

.footer-whatsapp-card strong {
  color: #35db71;
  font-size: 1rem;
}

.footer-whatsapp-card small {
  color: rgba(214, 248, 225, 0.86);
  font-size: 0.92rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
  margin-right: 0.55rem;
  flex-shrink: 0;
}

.footer-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
}

.footer-bottom {
  width: min(1160px, 92vw);
  margin: 1.5rem auto 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copy {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

.floating-wa {
  position: fixed;
  right: max(2rem, env(safe-area-inset-right));
  bottom: 1.2rem;
  z-index: 250;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  background: #d7849a;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0;
  line-height: 0;
  box-shadow: 0 12px 25px rgba(215, 132, 154, 0.34);
}

.floating-wa::before {
  content: "";
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20.5 12a8.5 8.5 0 0 1-12.6 7.4L3 20.8l1.5-4.7A8.5 8.5 0 1 1 20.5 12zm-8.5-7a7 7 0 0 0-6.1 10.5l.3.5-.9 2.9 3-.9.5.3A7 7 0 1 0 12 5zm3.9 9.1c-.2-.1-1.4-.7-1.6-.8s-.4-.1-.6.1-.6.8-.8 1-.3.2-.6.1c-1.9-.9-3.1-2.7-3.3-3s0-.4.1-.5l.4-.4c.1-.1.2-.2.3-.4s0-.3 0-.4l-.7-1.7c-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.4.1-.6.3-.7.7-1 1.5-1 2.5s.7 2 1 2.4c1.5 2 3.4 3.4 5.8 4.1.8.3 1.4.2 1.9.1.6-.1 1.4-.6 1.6-1.2.2-.6.2-1 .1-1.1z'/%3E%3C/svg%3E");
}

.floating-wa[data-help]::after {
  content: attr(data-help);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  bottom: auto;
  background: #fff;
  color: #2a1d21;
  border: 1px solid rgba(215, 132, 154, 0.45);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(22, 16, 14, 0.2);
  pointer-events: none;
}

.floating-wa:hover {
  background: #cb738b;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Storefront: productos primero, filtros secundarios ─────────────────── */

body.page-productos {
  background: #ffffff;
}

body.page-productos .site-bg-shape {
  display: none;
}

body.page-kits {
  background: #ffffff;
}

body.page-kits .site-bg-shape {
  display: none;
}

.store-section {
  padding-top: 4.2rem;
  padding-bottom: 5.4rem;
}

.store-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.store-head h3 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  margin-bottom: 0.45rem;
}

.store-subtitle {
  color: var(--ink-soft);
  max-width: 65ch;
}

.store-kpi {
  flex-shrink: 0;
  min-width: 170px;
  background: #141414;
  color: #fff;
  border-radius: 16px;
  padding: 0.86rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 8px 10px 22px rgba(74, 43, 33, 0.14);
}

.store-kpi strong {
  display: block;
  font-size: 1.68rem;
  line-height: 1;
}

.store-kpi span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.store-filters {
  border: 1px solid #ece3de;
  border-radius: 22px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf9 100%);
  box-shadow: 0 18px 38px rgba(77, 51, 43, 0.07);
}

.store-filters > summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
}

.store-filters > summary::-webkit-details-marker {
  display: none;
}

.store-filters > summary span {
  font-size: 0.95rem;
  font-weight: 700;
}

.store-filters > summary small {
  color: #8d7c76;
  font-weight: 500;
}

.store-filters[open] > summary {
  border-bottom: 1px solid var(--line);
}

.store-filters-body {
  padding: 1rem 1.15rem 1.15rem;
  display: grid;
  gap: 1rem;
}

.store-search-wrap {
  position: relative;
}

.store-search-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: var(--ink-soft);
  pointer-events: none;
}

.store-search {
  width: 100%;
  border: 1px solid #e8dfda;
  border-radius: 999px;
  background: #fffdfc;
  color: var(--ink);
  font-size: 0.95rem;
  font-family: "Outfit", sans-serif;
  padding: 0.82rem 1.05rem 0.82rem 2.7rem;
  box-shadow: 0 8px 18px rgba(78, 48, 38, 0.05);
  outline: none;
}

.store-search:focus {
  border-color: #d8c3bc;
  box-shadow: 0 10px 24px rgba(109, 71, 57, 0.09);
}

.store-filter-toolbar {
  display: grid;
  gap: 0.85rem;
}

.store-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.store-pill {
  border: 1px solid #eaded8;
  border-radius: 999px;
  background: #fffdfc;
  color: #7c6560;
  font-family: "Outfit", sans-serif;
  font-size: 0.77rem;
  font-weight: 600;
  padding: 0.42rem 0.82rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.store-pill--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.store-pill-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-pill-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.store-pill-text {
  line-height: 1;
}

.store-pill:hover,
.store-pill.is-active {
  background: #c7a49d;
  border-color: #c7a49d;
  color: #fff;
}

.store-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  width: fit-content;
}

.store-sort span {
  font-size: 0.83rem;
  font-weight: 700;
}

.store-sort select {
  border: 1px solid #e8dfda;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-family: "Outfit", sans-serif;
  background: #fffdfc;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem 1rem;
}

.store-product-card {
  background: transparent;
  padding: 0.15rem;
}

.store-product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid #f0e5e1;
  background: #f6dce7;
}

.store-product-card .product-showcase-copy {
  display: grid;
  gap: 0.24rem;
  padding-top: 0.82rem;
  padding-inline: 0.1rem;
}

.store-meta {
  color: #596155;
  font-size: 0.67rem;
  margin-bottom: 0.08rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.store-product-card .product-showcase-copy h4 {
  font-size: 0.88rem;
  line-height: 1.3;
  margin-bottom: 0.08rem;
}

.store-product-card .product-showcase-copy p {
  font-size: 0.79rem;
  line-height: 1.55;
  margin-bottom: 0.18rem;
  color: #726a67;
}

.store-product-card .product-showcase-copy strong {
  font-size: 0.92rem;
  margin-top: 0.28rem;
}

.store-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.55rem;
}

.store-actions button,
.store-actions a {
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 0.42rem 0.76rem;
}

.store-view {
  border: 1px solid #d6cec8;
  background: #fbf7f5;
  color: #6e5b56;
}

.store-add {
  border: 1px solid #c7a49d;
  background: #c7a49d;
  color: #fff;
}

.store-add.is-added {
  background: #2f4332;
  border-color: #2f4332;
}

.store-empty {
  margin-top: 1rem;
  border: 1px dashed #8f8176;
  border-radius: 14px;
  padding: 1rem;
  color: #5e5752;
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1080px) {
  :root {
    --mobile-header-height: 60px;
  }

  body {
    text-align: center;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  p,
  small,
  label,
  li,
  dt,
  dd,
  span {
    text-align: center;
  }

  input,
  textarea,
  select {
    text-align: center;
  }

  .hero-actions,
  .store-actions,
  .needs-banner-side,
  .footer-social {
    justify-content: center;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    width: 100%;
    min-height: var(--mobile-header-height);
    margin: 0;
    padding: 0.68rem 0.9rem;
    border-radius: 0;
    left: 0;
    transform: none;
    position: fixed;
    top: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 320;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease;
    pointer-events: none;
  }

  .site-header.is-scrolled {
    opacity: 1;
    pointer-events: auto;
    background: rgba(234, 216, 210, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(181, 141, 132, 0.1);
  }

  body:not(.menu-open) .site-header {
    background: transparent !important;
    border-bottom: 0 !important;
  }

  .site-header.is-scrolled:not(.menu-open) {
    background: rgba(234, 216, 210, 0.95) !important;
    border-bottom: 1px solid rgba(181, 141, 132, 0.1) !important;
  }

  .brand-label {
    color: var(--ink-soft);
  }

  .brand-logo {
    width: clamp(86px, 19vw, 116px);
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.34));
  }

  .brand-lockup h1,
  .main-nav a {
    color: #ffffff;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    left: 0;
    right: 0;
    width: 100vw;
    min-height: 100svh;
    margin: 0;
    padding: 5.2rem 1.4rem 1.6rem;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.995);
    border: 0;
    box-shadow: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 315;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    text-align: center;
  }

  .main-nav.is-open {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    background: #fff;
    border-bottom: 1px solid #f0e8e5;
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .brand-logo {
    filter: none;
  }

  body.menu-open .menu-toggle {
    border-color: #e8cfd0;
    color: #b58d84;
    background: #fff;
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
  }

  .main-nav a {
    width: min(100%, 320px);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #b58d84;
    padding: 0.9rem 0;
    border-radius: 0;
    border-bottom: 1px solid #f2e5e2;
  }

  .main-nav a:last-of-type {
    border-bottom: 0;
  }

  .main-nav a:hover {
    background: transparent;
    color: #9f756d;
  }

  .main-nav .cart-link {
    background: transparent;
    border: 0;
    box-shadow: none;
    justify-content: center;
    padding-left: 0;
    gap: 0.5rem;
  }

  .main-nav .cart-link span {
    background: #b58d84;
    color: #fff;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(22, 16, 14, 0.35);
    color: #fff;
    font-size: 0.62rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 0.46rem;
  }

  .mobile-menu-social {
    margin-top: 2rem;
    padding-top: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.72rem;
  }

  .mobile-menu-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e8cfd0;
    display: grid;
    place-items: center;
    color: #b58d84;
    background: #fff;
    text-decoration: none;
    padding: 0;
  }

  .mobile-menu-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .hero,
  .hero-stage {
    margin-top: 0;
  }

  .hero {
    position: relative;
    top: 0;
    margin-top: calc(-1 * var(--mobile-header-height));
  }

  .hero-stage,
  .hero-stage > img {
    min-height: calc(100svh + var(--mobile-header-height));
  }

  .hero-overlay {
    top: 0;
    right: 1rem;
    left: 1rem;
    bottom: 0;
    width: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--mobile-header-height) + 0.75rem);
    padding-bottom: 1.5rem;
  }

  .hero-overlay .overline {
    display: none;
  }

  .hero-overlay p {
    display: none;
  }

  .hero-tags {
    display: none;
  }

  .hero-mini-cards {
    display: none;
  }

  .hero-stage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: linear-gradient(180deg, #cfb7c2 0%, #d7c2cb 72%, rgba(215, 194, 203, 0) 100%);
    z-index: 1;
    pointer-events: none;
  }

  .hero-stage > img {
    object-position: center top;
  }

  .hero-stage {
    top: 0;
    height: calc(100svh + var(--mobile-header-height));
    background: #cfb7c2;
    box-shadow: none;
  }

  .hero-mini-cards {
    grid-template-columns: 1fr;
    right: 1rem;
    bottom: 4.3rem;
  }

  .awards-grid,
  .needs-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .visit-layout {
    grid-template-columns: 1fr;
  }

  .visit-agenda .btn {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
    width: 100%;
  }

  .products-showcase-grid {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .products-showcase-grid .product-showcase-card {
    flex: 0 0 clamp(200px, 80vw, 300px);
    scroll-snap-align: center;
  }

  body.page-productos .products-showcase-grid.store-grid,
  body.page-kits .products-showcase-grid.store-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.8rem;
    overflow: visible;
    scroll-snap-type: none;
    margin: 0;
    padding: 0;
  }

  body.page-productos .products-showcase-grid.store-grid .product-showcase-card,
  body.page-kits .products-showcase-grid.store-grid .product-showcase-card {
    flex: initial;
    scroll-snap-align: none;
  }

  .cards-grid.kits {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .cards-grid.kits .item-card {
    flex: 0 0 clamp(200px, 80vw, 300px);
    scroll-snap-align: center;
  }

  .cards-grid.products,
  .reels-carousel {
    padding: 0;
  }

  .reels-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.2rem 0.1rem;
  }

  .reel-card {
    flex: 0 0 clamp(150px, 32vw, 210px);
    transform: none;
    opacity: 1;
    scroll-snap-align: center;
  }

  .reel-audio-toggle {
    width: 34px;
    height: 34px;
  }

  .reel-card.is-center {
    transform: none;
  }

  .reels-nav {
    display: none;
  }

  .before-after-compare {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .compare-handle {
    width: 40px;
    height: 40px;
  }

  .awards-layout {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .needs-banner {
    min-height: 360px;
  }

  .needs-banner-copy {
    min-height: 360px;
    padding: 2.4rem 0;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .needs-banner-side {
    justify-content: flex-start;
  }

  .needs-banner-tags {
    max-width: none;
    text-align: left;
    line-height: 1.6;
  }

  .needs-banner-main p:last-of-type {
    display: none;
  }

  .about-block {
    min-height: auto;
    padding: 2.2rem 1.5rem;
    background-size: cover;
    background-position: center bottom;
  }

  .about-block .overline {
    display: none;
  }

  .about-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    max-width: none;
  }

  .about-block p {
    display: none;
  }

  .about-block .btn-primary {
    display: none;
  }

  #contacto .contact-intro {
    gap: 0.45rem;
  }

  #contacto .contact-intro h3 {
    font-size: clamp(1.65rem, 7.6vw, 2.2rem);
    line-height: 1.08;
    max-width: 14ch;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  #contacto .contact-intro > p {
    display: none;
  }

  #contacto .contact-meta:last-of-type {
    display: none;
  }

  #visitanos .visit-agenda h3,
  #visitanos .visit-location h3 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
  }

  #visitanos .visit-agenda > p,
  #visitanos .visit-location > p,
  .visit-contact-line {
    font-size: 0.95rem;
  }

  .awards-right {
    padding-left: 0;
  }

  .award-plain-item p:not(.award-top):not(.award-place-plain) {
    display: none;
  }

  #reconocimientos {
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .awards-visual {
    padding: 0;
  }

  .awards-title-xl {
    font-size: clamp(2.15rem, 10vw, 3.5rem);
    margin-bottom: 0.75rem;
  }

  .awards-images {
    grid-template-columns: 1fr 1fr;
  }

  .award-year-plain {
    font-size: 1.6rem;
  }

  .store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem 0.9rem;
  }

  .store-filter-toolbar {
    grid-template-columns: 1fr;
  }

  .row-head {
    display: grid;
    gap: 0.8rem;
  }
}

@media (max-width: 740px) {
  :root {
    --mobile-header-height: 56px;
  }

  .section {
    padding: 3.3rem 0;
  }

  .site-header {
    padding: 0.52rem 0.7rem;
  }

  .brand-logo {
    width: clamp(82px, 28vw, 102px);
  }

  .main-nav {
    padding: 4.45rem 1rem 1.2rem;
  }

  .main-nav a {
    font-size: 0.98rem;
    padding: 0.82rem 0;
  }

  .mobile-menu-social a {
    width: 36px;
    height: 36px;
  }

  .hero-stage,
  .hero-stage > img {
    min-height: 100svh;
  }

  .hero-mini-cards {
    display: none;
  }

  .hero-overlay {
    right: 0.95rem;
    left: 0.95rem;
    padding-top: calc(var(--mobile-header-height) + 0.7rem);
    padding-bottom: 1.15rem;
  }

  .hero-tags {
    display: none;
  }

  .floating-wa {
    right: max(1.6rem, env(safe-area-inset-right));
    bottom: 0.95rem;
    width: 58px;
    height: 58px;
  }

  .floating-wa::before {
    width: 31px;
    height: 31px;
  }

  .floating-wa[data-help]::after {
    right: calc(100% + 8px);
    top: 50%;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
    font-size: 0.84rem;
    padding: 0.5rem 0.84rem;
  }

  .store-head {
    flex-direction: column;
    align-items: stretch;
  }

  .store-kpi {
    width: fit-content;
    min-width: 0;
  }

  .store-filters > summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.18rem;
  }

  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.8rem;
  }

  .store-actions {
    flex-wrap: wrap;
  }
}

/* =====================================================
   PRODUCT DETAIL PAGE  (producto.html)
   ===================================================== */

/* Nav links dark – banner is light so white on white would disappear */
body.page-producto .main-nav a {
  color: #ffffff !important;
}

body.page-producto .main-nav a:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

body.page-producto .cart-link {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

body.page-producto .cart-link span {
  background: var(--rose) !important;
}

/* Menu toggle restyle */
body.page-producto .menu-toggle {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

body.page-producto .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Hero banner – full-width soft gradient framing the header */
.product-hero-banner {
  width: 100%;
  height: clamp(260px, 36vh, 420px);
  position: relative;
  overflow: hidden;
  background: #cfb7c2;
}

.product-hero-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 8s ease;
}

.product-hero-banner:hover .product-hero-banner-bg {
  transform: scale(1.04);
}

/* dark gradient overlay so breadcrumb text is always readable */
.product-hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 10, 8, 0.48) 0%,
    rgba(18, 10, 8, 0.18) 55%,
    rgba(18, 10, 8, 0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* breadcrumb anchored to top-left inside banner */
.product-breadcrumb--banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 1.3rem 0 0;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.88);
}

.product-breadcrumb--banner a {
  color: rgba(255, 255, 255, 0.82) !important;
}

.product-breadcrumb--banner a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.product-breadcrumb--banner span[aria-current] {
  color: #fff;
  font-weight: 600;
}

.product-breadcrumb--banner > span[aria-hidden] {
  color: rgba(255, 255, 255, 0.5);
}

/* Breadcrumb */
.product-breadcrumb-wrap {
  padding-top: 2rem !important;
  padding-bottom: 0 !important;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.product-breadcrumb a {
  color: var(--rose);
  text-decoration: none;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
}

/* Detail section top padding override */
.product-detail-section {
  padding-top: 1.8rem !important;
  padding-bottom: 4rem !important;
}

/* Two-column layout: image left, info right */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-img-wrap {
  position: sticky;
  top: 5.5rem;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f6dce7;
}

.product-detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-detail-img-wrap:hover img {
  transform: scale(1.03);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-top: 0.4rem;
}

.product-detail-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-detail-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--rose-soft);
  color: var(--rose);
  border-radius: 999px;
  padding: 0.28em 0.92em;
}

.product-detail-category {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.product-detail-name {
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  line-height: 1.08;
  color: var(--ink);
}

.product-detail-description {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.68;
}

.product-detail-price {
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
}

.product-detail-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding-top: 0.3rem;
}

.product-detail-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.35rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.product-detail-wa:hover {
  background: #1fba58;
  transform: translateY(-1px);
}

.product-detail-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.45rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: "Outfit", sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.15s;
}

.product-detail-cart:hover {
  background: #3a3330;
  transform: translateY(-1px);
}

.product-detail-cart.is-added {
  background: var(--rose);
}

/* ── Indicado para ──────────────────────────── */
.product-detail-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-detail-benefits-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.product-detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-detail-chip {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.32em 0.9em;
  border-radius: 999px;
  background: var(--rose-soft);
  color: #7a4f48;
  border: 1px solid rgba(181, 141, 132, 0.22);
  letter-spacing: 0.01em;
}

/* ── Specs table ────────────────────────────── */
.product-detail-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.1rem;
  margin: 0;
  padding: 1rem 1.2rem;
  background: #faf7f5;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-size: 0.84rem;
}

.product-detail-specs dt {
  color: var(--ink-soft);
  font-weight: 500;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.product-detail-specs dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-specs dt:last-of-type,
.product-detail-specs dd:last-of-type {
  border-bottom: none;
}

/* ── Trust badges ───────────────────────────── */
.product-trust-badges {
  list-style: none;
  margin: 0;
  padding: 0.85rem 1.1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-top: 0.3rem;
}

.product-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.product-trust-badge svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  fill: var(--rose);
  color: var(--rose);
}

/* Recommendations section */
.product-recs-section {
  border-top: 1px solid var(--line);
  padding-top: 3.5rem !important;
  padding-bottom: 5rem !important;
}

.product-recs-head {
  margin-bottom: 2rem;
}

.product-recs-head h3 {
  margin-top: 0.3rem;
}

.product-recs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Responsive */
@media (max-width: 1080px) {
  .product-hero-banner {
    height: clamp(200px, 32vw, 300px);
  }

  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail-img-wrap {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }

  .product-recs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* On mobile dark text still needed when menu opens */
  body.page-producto.menu-open .main-nav a {
    color: var(--ink) !important;
  }
}

@media (max-width: 740px) {
  .product-hero-banner {
    height: clamp(160px, 45vw, 240px);
  }

  .product-detail-img-wrap {
    max-width: 100%;
  }

  .product-detail-actions {
    flex-direction: column;
  }

  .product-detail-wa,
  .product-detail-cart {
    justify-content: center;
    width: 100%;
  }

  .product-recs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* =====================================================
   CART + CHECKOUT PAGES
   ===================================================== */
body.page-pago .main-nav a {
  color: var(--ink) !important;
}

body.page-pago .main-nav a:hover {
  background: rgba(0, 0, 0, 0.06) !important;
}

body.page-pago .cart-link {
  color: var(--ink) !important;
  background: rgba(0, 0, 0, 0.07) !important;
  border-color: rgba(0, 0, 0, 0.13) !important;
}

body.page-pago .cart-link span {
  background: var(--rose) !important;
}

body.page-pago .menu-toggle {
  color: var(--ink);
  background: transparent;
  border-color: rgba(0, 0, 0, 0.22);
}

body.page-pago .menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.page-carrito main {
  padding-top: 0;
}

body.page-pago main {
  padding-top: 0;
}

.cart-hero-banner {
  width: 100%;
  height: 60vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cart-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18, 12, 10, 0.68) 0%, rgba(18, 12, 10, 0.4) 45%, rgba(18, 12, 10, 0.12) 100%);
}

.cart-hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(5.5rem, 11vh, 7rem);
  padding-bottom: clamp(2rem, 4vh, 3rem);
}

.cart-hero-content .overline {
  color: rgba(255, 255, 255, 0.76);
}

.cart-hero-content h1 {
  margin-top: 0.45rem;
  margin-bottom: 0.95rem;
  font-size: clamp(2.75rem, 6.75vw, 5rem);
  color: #fff;
  max-width: 18ch;
}

.cart-hero-content p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  font-size: 1.25rem;
  line-height: 1.6;
}

.checkout-hero-banner {
  width: 100%;
  height: 60vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.checkout-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout-hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(18, 12, 10, 0.68) 0%, rgba(18, 12, 10, 0.4) 45%, rgba(18, 12, 10, 0.12) 100%);
}

.checkout-hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(5.5rem, 11vh, 7rem);
  padding-bottom: clamp(2rem, 4vh, 3rem);
}

.checkout-hero-content .overline {
  color: rgba(255, 255, 255, 0.76);
}

.checkout-hero-content h1 {
  margin-top: 0.45rem;
  margin-bottom: 0.95rem;
  font-size: clamp(2.75rem, 6.75vw, 5rem);
  color: #fff;
  max-width: 18ch;
}

.checkout-hero-content p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  font-size: 1.25rem;
  line-height: 1.6;
}

.checkout-hero {
  padding-bottom: 1.5rem;
}

.checkout-hero h1 {
  margin-top: 0.45rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
}

.checkout-hero p {
  color: var(--ink-soft);
  max-width: 68ch;
}

body.page-pago .main-nav a {
  color: #fff !important;
}

body.page-pago .main-nav a:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}

body.page-pago .cart-link {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

body.page-pago .cart-link span {
  background: rgba(14, 58, 30, 0.88) !important;
}

body.page-pago .menu-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
}

body.page-pago .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

body.page-carrito .main-nav a {
  color: #fff !important;
}

body.page-carrito .main-nav a:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}

body.page-carrito .cart-link {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

body.page-carrito .cart-link span {
  background: rgba(14, 58, 30, 0.88) !important;
}

body.page-carrito .menu-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
}

body.page-carrito .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cart-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.8fr);
  gap: 1.4rem;
  align-items: start;
  padding-top: 1.2rem;
  padding-bottom: 4.2rem;
}

.cart-list-wrap,
.cart-summary,
.checkout-form,
.checkout-summary {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
}

.cart-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.cart-list-head h2,
.checkout-form h2,
.cart-summary h3,
.checkout-summary h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

#cartClearBtn,
.cart-item-remove {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
}

.cart-items-list {
  display: grid;
  gap: 0.8rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.cart-item img {
  width: 94px;
  height: 94px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg);
}

.cart-item-info h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.cart-item-info p {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.cart-item-unit {
  margin-top: 0.2rem;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.55rem;
}

.cart-item-controls button {
  border: 0;
  background: #fff;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1rem;
}

.cart-item-controls span {
  min-width: 30px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.cart-item-price {
  font-size: 1rem;
}

.cart-summary {
  position: sticky;
  top: 5.4rem;
}

.cart-summary-line,
.cart-summary-total,
.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}

.cart-summary-total,
.checkout-total-row {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  margin-top: 0.9rem;
}

.cart-summary-total strong,
.checkout-total-row strong {
  font-size: 1.12rem;
}

.cart-note {
  margin-top: 0.95rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.cart-checkout-btn,
.cart-continue-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.8rem;
}

.cart-checkout-btn {
  background: #171717;
  color: #ffffff;
  border-color: #171717;
}

.cart-checkout-btn:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.cart-checkout-btn.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.cart-empty {
  margin-top: 1rem;
  border: 1px dashed #d3c2bc;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1.5rem;
  display: grid;
  gap: 0.6rem;
  justify-items: start;
}

.cart-empty p,
.checkout-empty {
  color: var(--ink-soft);
}

.checkout-form {
  display: grid;
  gap: 0.5rem;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.72rem 0.82rem;
  font-family: "Outfit", sans-serif;
}

.checkout-form label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.checkout-soon {
  margin-top: 0.7rem;
  background: #faf5f3;
  border: 1px solid #ead8d2;
  border-radius: 12px;
  padding: 0.82rem;
  display: grid;
  gap: 0.25rem;
  font-size: 0.86rem;
  color: #6b5048;
}

.shipping-alert {
  margin-top: 0.35rem;
  border: 1px solid #d8ccc7;
  border-left: 4px solid #171717;
  border-radius: 12px;
  background: #fff;
  padding: 0.8rem 0.9rem 0.84rem;
  display: grid;
  gap: 0.32rem;
}

.shipping-alert-title {
  font-weight: 700;
  color: #1f1a18;
  font-size: 0.92rem;
}

.shipping-alert-days {
  color: #5d4f4a;
  font-size: 0.84rem;
}

.shipping-alert ul {
  margin: 0.08rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.25rem;
  color: #5f5550;
  font-size: 0.83rem;
}

.checkout-summary .checkout-soon,
.checkout-summary .shipping-alert {
  margin-top: 0.75rem;
}

.checkout-soon[data-tone="success"] {
  background: #ecf8ef;
  border-color: #b9e3c2;
  color: #1f5f34;
}

.checkout-soon[data-tone="warning"] {
  background: #fff7e9;
  border-color: #f2d5a1;
  color: #8a5b05;
}

.checkout-soon[data-tone="error"] {
  background: #fdeeee;
  border-color: #efc2c2;
  color: #8f2222;
}

.checkout-submit-btn {
  width: 100%;
  margin-top: 0.85rem;
  background: #171717;
  color: #ffffff;
  border-color: #171717;
}

.checkout-submit-btn:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
}

.checkout-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.checkout-summary .btn-ghost {
  width: 100%;
  margin-top: 0.55rem;
  background: #f2ece8;
  color: #1f1a18;
  border-color: #d9cdc7;
}

.checkout-summary .btn-ghost:hover {
  background: #e9dfda;
  color: #171311;
  border-color: #cfc1bb;
}

.checkout-items {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.checkout-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
}

.checkout-item p,
.checkout-item small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .cart-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .cart-hero-banner {
    min-height: 380px;
  }

  .checkout-hero-banner {
    min-height: 380px;
  }

  .cart-summary {
    position: static;
  }

  body.page-carrito.menu-open .main-nav a,
  body.page-pago.menu-open .main-nav a {
    color: var(--ink) !important;
  }
}

@media (max-width: 740px) {
  body.page-carrito main {
    padding-top: 0;
  }

  body.page-pago main {
    padding-top: 0;
  }

  .cart-hero-banner {
    height: 60vh;
    min-height: 320px;
  }

  .checkout-hero-banner {
    height: 60vh;
    min-height: 320px;
  }

  .cart-hero-content {
    padding-top: 5.2rem;
  }

  .checkout-hero-content {
    padding-top: 5.2rem;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .cart-item-price,
  .cart-item-remove {
    grid-column: 2;
    justify-self: start;
  }
}
