:root {
  --home-gutter: clamp(24px, 6vw, 96px);
  --home-ivory: #f7f7f4;
  --home-wine: #091d0c;
}

.home-page { background: #fff; overflow-x: hidden; }
.home-page main { overflow: hidden; padding-top: 132px; }
.home-page h1,
.home-page h2,
.home-page h3 { text-wrap: balance; }
.home-page .site-header.scrolled { box-shadow: 0 8px 28px rgba(0, 0, 0, .16); }

.skip-link {
  background: var(--cream);
  color: var(--ink);
  font-size: 12px;
  left: 20px;
  padding: 12px 16px;
  position: fixed;
  top: -60px;
  transition: top .2s ease;
  z-index: 100;
}
.skip-link:focus { top: 16px; }

.home-kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.home-button {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  justify-content: space-between;
  letter-spacing: .13em;
  min-height: 50px;
  min-width: 205px;
  padding: 0 18px;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.home-button:hover { transform: translateY(-3px); }
.home-button span { font-size: 17px; margin-left: 24px; }
.home-button-light { border: 1px solid rgba(255, 255, 255, .72); color: #fff; }
.home-button-light:hover { background: #fff; color: var(--ink); }
.home-button-dark { background: var(--ink); color: #fff; }
.home-button-dark:hover { background: var(--accent); }
.home-text-link,
.home-inline-link {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-text-link { border-bottom: 1px solid var(--accent); padding-bottom: 8px; }
.home-text-link span,
.home-inline-link span { font-size: 15px; transition: transform .2s ease; }
.home-text-link:hover span,
.home-inline-link:hover span { transform: translate(3px, -2px); }

.home-categories {
  background: #fff;
  padding: clamp(32px, 3vw, 44px) var(--home-gutter) clamp(34px, 3.6vw, 54px);
}
.home-categories-heading { text-align: center; }
.home-categories-heading h2 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}
.home-category-list {
  display: grid;
  gap: clamp(22px, 3vw, 54px);
  grid-template-columns: repeat(7, minmax(0, 1fr));
  list-style: none;
  margin: clamp(42px, 4.5vw, 66px) auto 0;
  max-width: 1380px;
  padding: 0;
}
.home-category-list > li:nth-child(2) { transition-delay: .05s; }
.home-category-list > li:nth-child(3) { transition-delay: .1s; }
.home-category-list > li:nth-child(4) { transition-delay: .15s; }
.home-category-list > li:nth-child(5) { transition-delay: .2s; }
.home-category-list > li:nth-child(6) { transition-delay: .25s; }
.home-category-list > li:nth-child(7) { transition-delay: .3s; }
.home-category {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}
.home-category-placeholder {
  align-items: center;
  aspect-ratio: 1;
  background: var(--paper);
  border: 1px solid rgba(9, 29, 12, .08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  max-width: 138px;
  overflow: visible;
  position: relative;
  transition: background-color .3s ease, border-color .3s ease, transform .35s cubic-bezier(.2, .7, .2, 1);
  width: 100%;
}
.home-category-placeholder::after {
  background: var(--accent);
  bottom: 0;
  content: '';
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform .3s ease;
  width: 42%;
  z-index: 2;
}
.home-category-placeholder img {
  bottom: 0;
  filter: saturate(.92) contrast(1.02);
  height: 120%;
  left: 50%;
  mix-blend-mode: multiply;
  object-fit: contain;
  position: absolute;
  transition: filter .3s ease, transform .35s cubic-bezier(.2, .7, .2, 1);
  transform: translateX(-50%);
  transform-origin: center bottom;
  width: 112%;
  z-index: 1;
}
.home-category-list > li:nth-child(2) .home-category-placeholder img {
  transform: translateX(-50%) scale(1.1);
}
.home-category-name {
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.home-category:hover .home-category-placeholder,
.home-category:focus-visible .home-category-placeholder { background: #f2ede8; border-color: rgba(184, 120, 92, .36); transform: translateY(-7px); }
.home-category:hover .home-category-placeholder::after,
.home-category:focus-visible .home-category-placeholder::after { transform: translateX(-50%) scaleX(1); }
.home-category:hover .home-category-placeholder img,
.home-category:focus-visible .home-category-placeholder img { filter: saturate(1) contrast(1.04); transform: translateX(-50%) scale(1.045); }
.home-category-list > li:nth-child(2) .home-category:hover .home-category-placeholder img,
.home-category-list > li:nth-child(2) .home-category:focus-visible .home-category-placeholder img { transform: translateX(-50%) scale(1.15); }
.home-category:hover .home-category-name,
.home-category:focus-visible .home-category-name { color: var(--accent); }
.home-category:focus-visible { outline: 1px solid var(--accent); outline-offset: 7px; }

.home-recommended {
  background: #fff;
  padding: clamp(36px, 4vw, 58px) var(--home-gutter) clamp(46px, 4.8vw, 72px);
}
.home-recommended-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1540px;
}
.home-recommended-heading h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(39px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
  margin: 0;
}
.home-recommended-actions { align-items: center; display: flex; gap: clamp(28px, 4vw, 58px); }
.home-recommended-actions .home-slider-controls { margin: 0; }
.home-slider-controls button:disabled { cursor: default; opacity: .28; }
.home-recommended-track {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
  grid-auto-columns: clamp(244px, 22vw, 318px);
  grid-auto-flow: column;
  margin: clamp(38px, 4vw, 58px) auto 0;
  max-width: 1540px;
  outline: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 18px;
  scroll-behavior: smooth;
  scroll-padding-left: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.home-recommended-track::-webkit-scrollbar { display: none; }
.home-recommended-track .lc-product-card { scroll-snap-align: start; }
.home-recommended-skeleton {
  background: #fff;
  border: 1px solid rgba(9, 29, 12, .1);
  border-radius: 16px;
  min-width: 0;
  overflow: hidden;
  padding: 0 20px 20px;
}
.home-recommended-skeleton span,
.home-recommended-skeleton i {
  animation: homeSkeleton 1.4s ease-in-out infinite;
  background: linear-gradient(100deg, #e8e6e0 25%, #f4f3ef 45%, #e8e6e0 65%);
  background-size: 220% 100%;
  display: block;
}
.home-recommended-skeleton span { height: clamp(278px, 24vw, 350px); margin-left: -20px; margin-right: -20px; }
.home-recommended-skeleton i { height: 9px; margin-top: 14px; width: 58%; }
.home-recommended-skeleton i:nth-child(3) { height: 21px; width: 82%; }
.home-recommended-skeleton i:nth-child(4) { width: 42%; }

.home-benefits {
  background: #fff;
  padding: clamp(40px, 4vw, 60px) var(--home-gutter);
}
.home-benefits-grid {
  display: grid;
  gap: clamp(10px, 1vw, 16px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1540px;
}
.home-benefit {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(9, 29, 12, .18);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(9, 29, 12, .055), inset 0 1px 0 rgba(255, 255, 255, .8);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(272px, 21vw, 340px);
  padding: clamp(32px, 3vw, 48px) clamp(18px, 1.8vw, 28px) 30px;
  position: relative;
  text-align: center;
  transform-origin: center;
}
.home-benefit.reveal { transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1), box-shadow .3s ease; }
.home-benefit:nth-child(2) { transition-delay: .05s; }
.home-benefit:nth-child(3) { transition-delay: .1s; }
.home-benefit:nth-child(4) { transition-delay: .15s; }
.home-benefit:nth-child(5) { transition-delay: .2s; }
.home-benefit:nth-child(6) { transition-delay: .25s; }
@media (hover: hover) and (pointer: fine) {
  .home-benefit.reveal.visible:hover {
    box-shadow: 0 20px 42px rgba(9, 29, 12, .1), inset 0 1px 0 rgba(255, 255, 255, .9);
    transform: scale(1.025);
    z-index: 1;
  }
}
.home-benefit-icon-wrap {
  align-items: center;
  background: #efebe3;
  border-radius: 50%;
  display: flex;
  height: clamp(104px, 8vw, 126px);
  justify-content: center;
  width: clamp(104px, 8vw, 126px);
}
.home-benefit-icon {
  background: var(--ink);
  display: block;
  height: clamp(52px, 4vw, 62px);
  -webkit-mask: var(--benefit-icon) center / contain no-repeat;
  mask: var(--benefit-icon) center / contain no-repeat;
  width: clamp(52px, 4vw, 62px);
}
.home-benefit-icon--delivery { --benefit-icon: url('recursos/simbolos/tabler/truck-delivery.svg'); }
.home-benefit-icon--whatsapp { --benefit-icon: url('recursos/simbolos/tabler/brand-whatsapp.svg'); }
.home-benefit-icon--lock { --benefit-icon: url('recursos/simbolos/tabler/lock.svg'); }
.home-benefit-icon--bottle { --benefit-icon: url('recursos/simbolos/tabler/bottle.svg'); }
.home-benefit-icon--glass { --benefit-icon: url('recursos/simbolos/tabler/glass.svg'); }
.home-benefit-icon--gift { --benefit-icon: url('recursos/simbolos/tabler/gift.svg'); }
.home-benefit-rule {
  background: var(--accent);
  border-radius: 999px;
  height: 3px;
  margin: clamp(28px, 2.2vw, 36px) 0 22px;
  width: 42px;
}
.home-benefit-copy { display: flex; flex-direction: column; }
.home-benefits .home-benefit h2 {
  font-family: var(--sans);
  font-size: clamp(16px, 1.18vw, 19px);
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.35;
  margin: 0;
  max-width: 13ch;
  text-transform: none;
}
.home-benefits .home-benefit p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
  margin: 8px 0 0;
}
.home-benefits .home-benefit p strong { color: var(--ink); font-weight: 700; }
.home-section-heading {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.2fr .8fr;
  margin: 0 auto 62px;
  max-width: 1280px;
}
.home-section-heading h2{ font-size: clamp(48px, 5.3vw, 78px); line-height: .92; margin: 0; }
.home-section-heading > p { color: var(--ink-soft); font-size: 13px; line-height: 1.8; margin: 0 0 6px; max-width: 430px; }
.home-slider-controls { align-items: center; display: flex; gap: 10px; margin-bottom: 11px; }
.home-slider-controls button {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(9, 29, 12, .22);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
  width: 44px;
}
.home-slider-controls button img { height: 19px; transition: filter .2s ease; width: 19px; }
.home-slider-controls button:not(:disabled):hover { background: var(--ink); border-color: var(--ink); }
.home-slider-controls button:not(:disabled):hover img { filter: invert(1); }
.home-slider-controls button:not(:disabled):active { transform: scale(.96); }
.home-product-empty { border: 1px solid rgba(9, 29, 12, .16); color: var(--ink-soft); grid-column: 1 / -1; padding: 50px; text-align: center; }

.home-brands {
  background: #fff;
  overflow: hidden;
  padding: clamp(48px, 4vw, 66px) 0 clamp(54px, 5vw, 74px);
}
.home-brands-heading {
  margin: 0 auto 45px;
  padding: 0 var(--home-gutter);
  text-align: center;
}
.home-brands-heading .home-kicker { margin-bottom: 12px; }
.home-brands-heading h2 {
  font-size: clamp(35px, 3.4vw, 50px);
  line-height: 1;
  margin: 0 auto;
  max-width: 760px;
}
.home-logo-loop {
  --logo-gap: clamp(54px, 5.5vw, 92px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  overflow: hidden;
  padding: 9px 0;
  width: 100%;
}
.home-logo-loop-track {
  align-items: center;
  display: flex;
  gap: var(--logo-gap);
  transform: translate3d(0, 0, 0);
  width: max-content;
  will-change: transform;
}
.home-logo-loop-group {
  align-items: center;
  display: flex;
  flex: none;
  gap: var(--logo-gap);
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-logo-loop-group li {
  align-items: center;
  display: flex;
  flex: 0 0 clamp(185px, 15.6vw, 239px);
  height: 109px;
  justify-content: center;
  overflow: hidden;
}
.home-logo-loop-group img {
  display: block;
  height: auto;
  max-height: 94px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.home-logo-loop-group img[src$="black-and-white.png"],
.home-logo-loop-group img[src$="buchanans.png"],
.home-logo-loop-group img[src$="j-and-b.jpg"],
.home-logo-loop-group img[src$="mezcal-union.png"],
.home-logo-loop-group img[src$="old-parr.png"] {
  flex: none;
  height: 88px;
  max-height: none;
  max-width: none;
  width: auto;
}
.home-logo-loop-group img[src$="pampero.svg"] { max-height: 96px; }
.home-logo-loop-group .home-brand-logo--on-dark {
  background: var(--ink);
  height: 88px;
  padding: 13px 18px;
}
.home-logo-loop-group img[src$="cardhu.svg"],
.home-logo-loop-group img[src$="talisker.svg"],
.home-logo-loop-group img[src$="the-singleton.svg"],
.home-logo-loop-group img[src$="zacapa.svg"] { max-width: 226px; }

.home-page :where(a, button, [tabindex]):focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

@keyframes homeRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes homeSkeleton { from { background-position: 100% 0; } to { background-position: -100% 0; } }

@media (min-width: 1200px) {
  .home-recommended-track {
    gap: 18px;
    grid-auto-columns: calc(20% - 14.4px);
  }
  .home-recommended-track { --product-card-media-height: clamp(230px, 18vw, 290px); }
  .home-recommended-skeleton { padding: 0 16px 16px; }
  .home-recommended-skeleton span { margin-left: -16px; margin-right: -16px; }
}

@media (max-width: 1180px) {
  .home-benefits-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-benefit { min-height: 306px; }
}

@media (max-width: 1000px) {
  .home-category-list { gap: 25px; }
}

@media (max-width: 700px) {
  .home-benefits { padding: 36px 0 30px; }
  .home-benefits-grid {
    gap: 14px;
    grid-auto-columns: minmax(252px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    margin: 0;
    max-width: none;
    overflow-x: auto;
    padding: 6px var(--home-gutter) 24px;
    scroll-padding-left: var(--home-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-benefits-grid::-webkit-scrollbar { display: none; }
  .home-benefit { min-height: 318px; padding: 36px 24px 30px; scroll-snap-align: start; }
  .home-benefit-icon-wrap { height: 116px; width: 116px; }
  .home-benefit-icon { height: 58px; width: 58px; }
  .home-benefits .home-benefit h2 { font-size: 18px; }
}

@media (max-width: 800px) {
  :root { --home-gutter: 7vw; }
  .home-page main { padding-top: 116px; }
  .home-categories { padding-left: 0; padding-right: 0; }
  .home-categories-heading { padding: 0 var(--home-gutter); }
  .home-category-list {
    display: grid;
    gap: 21px;
    grid-auto-columns: clamp(122px, 34vw, 154px);
    grid-auto-flow: column;
    grid-template-columns: none;
    margin-top: 12px;
    max-width: none;
    overflow-x: auto;
    padding: 42px var(--home-gutter) 14px;
    scroll-padding-left: var(--home-gutter);
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .home-category-list::-webkit-scrollbar { display: none; }
  .home-category-list > li { scroll-snap-align: start; }
  .home-category-placeholder { max-width: 126px; width: calc(100% - 8px); }
  .home-recommended { padding-right: 0; }
  .home-recommended-heading { align-items: flex-start; flex-direction: column; padding-right: var(--home-gutter); }
  .home-recommended-actions { justify-content: space-between; margin-top: 28px; width: 100%; }
  .home-recommended-track { grid-auto-columns: minmax(260px, 72vw); margin-right: 0; max-width: none; padding-right: var(--home-gutter); }
  .home-section-heading { display: block; margin-bottom: 42px; }
  .home-section-heading > p { margin-top: 28px; }
  .home-slider-controls { flex: 0 0 auto; }
  .home-brands { padding: 48px 0 54px; }
  .home-brands-heading { margin-bottom: 37px; }
  .home-logo-loop { --logo-gap: 52px; }
  .home-logo-loop-group li { flex-basis: 192px; height: 96px; }
  .home-logo-loop-group img { max-height: 83px; }
  .home-logo-loop-group img[src$="black-and-white.png"],
  .home-logo-loop-group img[src$="buchanans.png"],
  .home-logo-loop-group img[src$="j-and-b.jpg"],
  .home-logo-loop-group img[src$="mezcal-union.png"],
  .home-logo-loop-group img[src$="old-parr.png"] { height: 81px; max-height: none; }
  .home-logo-loop-group .home-brand-logo--on-dark { height: 81px; padding: 12px 16px; }
}

@media (max-width: 520px) {
  .home-recommended-heading h2 { font-size: clamp(38px, 11vw, 51px); }
  .home-recommended-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .home-recommended-actions .home-slider-controls { align-self: flex-end; }
  .home-recommended-track { grid-auto-columns: 82vw; margin-top: 34px; }
  .home-recommended-track { --product-card-media-height: 350px; }
  .home-recommended-skeleton span { height: 350px; }
  .home-section-heading h2{ font-size: clamp(45px, 13vw, 61px); }
  .home-slider-controls { justify-content: flex-end; margin: 12px 0 8px; }
  .home-brands { padding: 40px 0 48px; }
  .home-brands-heading { margin-bottom: 30px; }
  .home-brands-heading h2 { font-size: 34px; max-width: 320px; }
  .home-logo-loop {
    --logo-gap: 38px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  }
  .home-logo-loop-group li { flex-basis: 166px; height: 87px; }
  .home-logo-loop-group img { max-height: 74px; }
  .home-logo-loop-group img[src$="black-and-white.png"],
  .home-logo-loop-group img[src$="buchanans.png"],
  .home-logo-loop-group img[src$="j-and-b.jpg"],
  .home-logo-loop-group img[src$="mezcal-union.png"],
  .home-logo-loop-group img[src$="old-parr.png"] { height: 73px; max-height: none; }
  .home-logo-loop-group img[src$="pampero.svg"] { max-height: 78px; }
  .home-logo-loop-group .home-brand-logo--on-dark { height: 73px; padding: 10px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-benefit { transition-delay: 0s !important; }
  .home-benefit.reveal.visible:hover { transform: none; }
  .home-category-list { scroll-behavior: auto; }
  .home-recommended-track { scroll-behavior: auto; }
  .home-recommended-skeleton span,
  .home-recommended-skeleton i { animation: none; }
  .home-logo-loop {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    padding: 9px var(--home-gutter) 15px;
    scrollbar-width: thin;
  }
  .home-logo-loop-track { transform: none !important; will-change: auto; }
  .home-logo-loop-group[aria-hidden="true"] { display: none; }
}

/* Portada comercial: campaña y vitrinas que comparten las tarjetas del catálogo. */
.home-commerce-hero { background: var(--ink); color: #fff; position: relative; }
.home-commerce-hero-inner { align-items: center; display: grid; gap: 48px; grid-template-columns: 1.3fr 1fr; margin: auto; max-width: 1540px; min-height: 330px; padding: 30px var(--home-gutter); }
.home-commerce-hero-copy { max-width: 630px; }
.home-commerce-eyebrow { color: #ddaf99; font-size: 12px; font-weight: 600; margin: 0 0 12px; }
.home-commerce-hero #hero-title { color: #fff; font-size: clamp(28px, 3.1vw, 46px); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; margin: 0; text-wrap: pretty; }
.home-commerce-detail { color: #d4ddd5; font-size: 13px; line-height: 1.5; margin: 14px 0 0; }
.home-commerce-price { color: #fff; font-size: 23px; font-weight: 650; margin: 12px 0 0; }
.home-commerce-cta { align-items: center; background: #fff; border-radius: 8px; color: var(--ink); display: inline-flex; font-size: 14px; font-weight: 650; gap: 30px; min-height: 44px; margin-top: 18px; padding: 11px 20px; transition: background .2s ease; }
.home-commerce-cta:hover { background: #e8eee8; }
.home-commerce-cta img { height: 20px; width: 20px; }
.home-commerce-visual { height: 260px; justify-self: center; max-width: 360px; overflow: hidden; width: 100%; }
.home-commerce-visual > img { height: 100%; object-fit: contain; width: 100%; }
.home-commerce-visual picture, .home-commerce-visual picture img { display: block; height: 100%; object-fit: contain; width: 100%; }
.home-commerce-visual .lc-product-card__placeholder { background: #142b19; border-radius: 12px; padding-top: 28px; }
.home-commerce-visual .lc-product-card__placeholder small { color: #c4d0c6; font-size: 10px; margin-top: 25px; }
.home-commerce-visual .lc-product-card__placeholder-bottle { height: 52%; width: 19%; }
.home-categories { padding-top: 28px; padding-bottom: 28px; }
.home-recommended { padding-top: 30px; padding-bottom: 30px; }
.home-recommended-heading h2, .home-categories-heading h2 { font-size: clamp(25px, 2.6vw, 36px); line-height: 1.2; }
.home-recommended-track { --product-card-media-height: 230px; gap: 18px; grid-auto-columns: clamp(244px, 23vw, 310px); margin-top: 24px; }
.home-recommended-skeleton span { height: 230px; }
.home-benefits { padding-top: 25px; padding-bottom: 35px; }
.home-benefit { border-radius: 12px; box-shadow: none; min-height: 195px; padding: 22px 14px; }
.home-benefit-icon-wrap { height: 46px; width: 46px; }
.home-benefit-icon { height: 38px; width: 38px; }
.home-benefit-rule { margin: 16px 0; }
.home-benefits .home-benefit h2 { font-size: 16px; line-height: 1.35; }
.home-benefits .home-benefit p { font-size: 12px; }
.home-shelf { padding: 40px var(--home-gutter) 46px; }
.home-budget { background: var(--paper); }
.home-commerce-heading { align-items: center; display: flex; gap: 24px; justify-content: space-between; margin: 0 auto 26px; max-width: 1540px; }
.home-commerce-heading h2 { font-size: clamp(26px, 2.7vw, 38px); font-weight: 550; letter-spacing: -.035em; line-height: 1.15; margin: 0; }
.home-commerce-heading p { color: var(--ink-soft); font-size: 14px; margin: 8px 0 0; }
.home-commerce-heading .home-text-link { flex-shrink: 0; }
.home-commerce-grid { display: grid; gap: 20px; margin: 0 auto; max-width: 1540px; --product-card-media-height: 230px; }
.home-budget-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-discovery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-commerce-grid[aria-busy="true"] { min-height: 380px; background: var(--paper); }
.home-page .lc-product-card { box-shadow: none; border-radius: 12px; }
.home-page .lc-product-card__title { font-size: clamp(19px, 1.6vw, 23px); line-height: 1.18; letter-spacing: -.025em; text-wrap: pretty; }
.home-page .lc-product-card__body { padding: 16px; }
.home-page .lc-product-card__meta { margin-bottom: 10px; }
.home-page .lc-product-card__footer { align-items: flex-start; flex-direction: column; gap: 14px; }
.home-page .lc-product-card__cart { align-self: flex-end; }
.home-page .lc-product-card__producer { font-size: 12px; min-height: 0; }
.home-page .lc-product-card__media .lc-product-card__placeholder { padding-top: 25px; }
.home-page .lc-product-card__media .lc-product-card__placeholder-bottle { height: 45%; width: clamp(30px, 18%, 52px); }
.home-commerce-tabs { border-bottom: 1px solid var(--line); display: flex; gap: 28px; margin: 0 auto 26px; max-width: 1540px; overflow-x: auto; padding: 2px 2px 0; scrollbar-width: thin; }
.home-commerce-tabs button { background: transparent; border: 0; border-bottom: 3px solid transparent; color: var(--ink-soft); cursor: pointer; flex-shrink: 0; font-size: 15px; font-weight: 550; min-height: 48px; padding: 12px 2px; }
.home-commerce-tabs button[aria-selected="true"] { border-bottom-color: var(--accent); color: var(--ink); }
.home-commerce-tabs button:hover { color: var(--accent-ink); }
.home-commerce-tabs button:focus-visible { outline-offset: -3px; }
.home-commerce-grid .home-product-empty { grid-column: 1 / -1; padding: 36px 0; }
.home-recommended-track:focus-visible, #discovery-panel:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.home-brands { padding-top: 34px; padding-bottom: 40px; }
.home-brands-heading h2 { font-size: clamp(26px, 2.7vw, 36px); }
@media (max-width: 1000px) {
  .home-budget-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-commerce-hero-inner { gap: 24px; }
}
@media (max-width: 700px) {
  .home-commerce-hero-inner { gap: 22px; grid-template-columns: 1fr; min-height: 0; padding-top: 26px; padding-bottom: 26px; }
  .home-commerce-hero-copy { max-width: 520px; }
  .home-commerce-hero #hero-title { font-size: 30px; max-width: 370px; }
  .home-commerce-visual { height: 150px; max-width: none; }
  .home-commerce-visual .lc-product-card__placeholder { padding-top: 20px; }
  .home-commerce-visual .lc-product-card__placeholder-bottle { width: 36px; height: 50%; }
  .home-commerce-visual .lc-product-card__placeholder small { margin-top: 17px; }
  .home-categories { padding-top: 25px; padding-bottom: 20px; }
  .home-recommended-actions { align-items: center; flex-direction: row; gap: 16px; margin-top: 15px; }
  .home-recommended-actions .home-slider-controls { align-self: center; }
  .home-recommended-track { --product-card-media-height: 230px; grid-auto-columns: minmax(244px, 75vw); margin-top: 20px; }
  .home-recommended-heading h2 { font-size: 28px; }
  .home-benefits { padding-left: var(--home-gutter); padding-right: var(--home-gutter); }
  .home-benefits-grid { grid-auto-columns: auto; grid-auto-flow: row; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; padding: 0; scroll-snap-type: none; }
  .home-benefit { min-height: 174px; padding: 18px 12px; }
  .home-benefits .home-benefit h2 { font-size: 15px; }
  .home-shelf { padding-top: 32px; padding-bottom: 34px; }
  .home-commerce-heading { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 22px; }
  .home-commerce-heading h2 { font-size: 28px; }
  .home-commerce-heading p { font-size: 13px; }
  .home-commerce-grid { --product-card-media-height: 185px; gap: 12px; }
  .home-discovery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-commerce-grid .lc-product-card__body { padding: 12px; }
  .home-commerce-grid .lc-product-card__title { font-size: 17px; overflow-wrap: anywhere; }
  .home-commerce-grid .lc-product-card__price { font-size: 16px; letter-spacing: 0; }
  .home-commerce-grid .lc-product-card__price small { display: block; font-size: 9px; margin: 5px 0 0; }
  .home-commerce-grid .lc-product-card__meta { font-size: 9px; letter-spacing: .04em; }
  .home-commerce-grid .lc-product-card__cart { align-self: stretch; justify-content: space-between; }
  .home-commerce-grid .lc-product-card__cart button { min-height: 40px; width: 32px; }
  .home-commerce-grid .lc-product-card__cart-count { flex: 1; min-width: 23px; padding: 0 2px; }
  .home-commerce-grid .lc-product-card__placeholder small { font-size: 8px; letter-spacing: .04em; }
  .home-commerce-tabs { gap: 22px; }
  .home-commerce-tabs button { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .home-commerce-cta { transition: none; }
}

/* Carrusel de promociones: un único banner interactivo a la vez. */
.home-commerce-hero-inner { height: 340px; min-height: 340px; }
.home-commerce-hero-copy { min-width: 0; }
.home-commerce-hero [data-campaign-panel] { touch-action: pan-y pinch-zoom; }
.home-commerce-hero .home-commerce-detail { min-height: 40px; }
.home-campaign-controls:not([hidden]) { background: transparent; pointer-events: none; bottom: 8px; display: flex; justify-content: center; left: 50%; margin: auto; max-width: 1540px; padding: 0 var(--home-gutter); position: absolute; transform: translateX(-50%); width: 100%; z-index: 4; }
.home-campaign-dots { pointer-events: auto; align-items: center; display: flex; flex-wrap: wrap; gap: 2px; justify-content: center; }
.home-campaign-controls button { background: transparent; border: 0; color: #fff; cursor: pointer; min-height: 44px; }
.home-campaign-controls button:focus-visible { outline: 2px solid #ddaf99; outline-offset: 1px; }
.home-campaign-dot { align-items: center; display: flex; justify-content: center; padding: 0; width: 28px; }
.home-campaign-dot::before { background: #ffffffcc; box-shadow: 0 1px 4px #0009; border-radius: 50%; content: ''; height: 7px; transition: background .2s, width .2s; width: 7px; }
.home-campaign-dot[aria-current="true"]::before { background: #ddaf99; border-radius: 4px; width: 23px; }
.home-commerce-hero [data-campaign-layout="artwork"] { display: block; height: auto; isolation: isolate; max-width: none; min-height: 0; overflow: hidden; padding: 0; position: relative; width: 100%; }
.home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-visual { height: auto; max-width: none; position: relative; width: 100%; z-index: 0; }
.home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-visual picture,
.home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-visual picture img { height: auto; object-fit: contain; object-position: center; }
.home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-hero-copy { align-self: end; display: flex; grid-column: 1 / -1; justify-content: center; justify-self: start; margin: 0; max-width: none; padding: 0 0 clamp(48px, 5vw, 88px); bottom: 0; left: 0; position: absolute; width: 50%; z-index: 2; }
.home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-eyebrow,
.home-commerce-hero [data-campaign-layout="artwork"] [data-campaign-title],
.home-commerce-hero [data-campaign-layout="artwork"] [data-campaign-detail],
.home-commerce-hero [data-campaign-layout="artwork"] [data-campaign-price] { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; white-space: nowrap; width: 1px; }
.home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-cta { box-shadow: 0 8px 28px #07140d4d; font-size: 16px; justify-content: center; margin-top: 0; min-height: 54px; min-width: 180px; padding: 14px 34px; }
@media (max-width: 700px) {
  .home-commerce-hero-inner { align-content: start; gap: 12px; height: 480px; min-height: 480px; padding-bottom: 12px; }
  .home-commerce-hero-copy { display: flex; flex-direction: column; min-height: 275px; }
  .home-commerce-hero .home-commerce-detail { min-height: 0; }
  .home-commerce-hero .home-commerce-cta { align-self: flex-start; margin-top: auto; }
  .home-commerce-hero .home-commerce-price { margin-bottom: 14px; }
  .home-commerce-visual { height: 145px; }
  .home-campaign-controls:not([hidden]) { background: transparent; pointer-events: none; bottom: 5px; padding: 0 var(--home-gutter); }
  .home-campaign-dot { width: 22px; }
  .home-commerce-hero [data-campaign-layout="artwork"] { height: auto; min-height: 0; }
  .home-commerce-hero [data-campaign-layout="artwork"]::after { background: linear-gradient(180deg, transparent 42%, #0a1a10ed 100%); content: ''; inset: 0; pointer-events: none; position: absolute; z-index: 1; }
  .home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-visual picture,
  .home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-visual picture img { height: auto; object-fit: contain; object-position: center; }
  .home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-hero-copy { align-items: center; align-self: end; display: flex; flex-direction: column; grid-column: 1; justify-self: stretch; min-height: 0; padding: 28px var(--home-gutter) 62px; text-align: center; width: 100%; }
  .home-commerce-hero [data-campaign-layout="artwork"] [data-campaign-title],
  .home-commerce-hero [data-campaign-layout="artwork"] [data-campaign-price] { clip: auto; height: auto; margin: 0; overflow: visible; padding: 0; position: static; white-space: normal; width: auto; }
  .home-commerce-hero [data-campaign-layout="artwork"] [data-campaign-title] { max-width: 320px; text-shadow: 0 2px 18px #07140db3; }
  .home-commerce-hero [data-campaign-layout="artwork"] [data-campaign-price] { margin-top: 10px; }
  .home-commerce-hero [data-campaign-layout="artwork"] .home-commerce-cta { margin-top: 14px; min-width: 190px; }
  .home-commerce-hero [data-campaign-id="buchanans-pineapple"] [data-campaign-title],
  .home-commerce-hero [data-campaign-id="buchanans-pineapple"] [data-campaign-price] { display: none; }
  .home-commerce-hero [data-campaign-id="buchanans-pineapple"] .home-commerce-cta { align-self: center; margin-top: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .home-campaign-dot::before { transition: none; }
}

/* La campaña de vinos conserva el arte completo y sitúa el CTA bajo su texto. */
.home-commerce-hero [data-campaign-id="brinda-por-los-tuyos"] .home-commerce-hero-copy { padding: 0 0 clamp(32px, 3vw, 64px); width: 60%; }
.home-commerce-hero [data-campaign-id="brinda-por-los-tuyos"] .home-commerce-cta { font-size: clamp(11px, 1.2vw, 16px); min-height: 0; min-width: 0; padding: clamp(7px, 1vw, 14px) clamp(16px, 2.4vw, 34px); }
@media (max-width: 700px) {
  .home-commerce-hero [data-campaign-id="brinda-por-los-tuyos"]::after { display: none; }
  .home-commerce-hero [data-campaign-id="brinda-por-los-tuyos"] .home-commerce-hero-copy { padding: 28px var(--home-gutter) 62px; width: 100%; }
  .home-commerce-hero [data-campaign-id="brinda-por-los-tuyos"] [data-campaign-title] { display: none; }
  .home-commerce-hero [data-campaign-id="brinda-por-los-tuyos"] .home-commerce-cta { align-self: center; font-size: 16px; margin-top: 0; min-height: 54px; min-width: 190px; padding: 14px 34px; }
}

/* No mostrar el contenido provisional mientras llegan catálogo e imagen. */
.home-commerce-hero[aria-busy="true"] { aspect-ratio: 3 / 1; background: var(--home-ivory); overflow: hidden; }
.home-commerce-hero[aria-busy="true"] > * { visibility: hidden; }
@media (max-width: 700px) {
  .home-commerce-hero[aria-busy="true"] { aspect-ratio: 4 / 5; }
}
