/* ───────────────────────────────────────────────────────────────
   Aclimatar — Línea Blanca (showroom) styles
   ─────────────────────────────────────────────────────────────── */

.lb-page { background: var(--bg); }

/* ── HERO ── */
.lb-hero {
  padding-top: 120px;
  padding-bottom: var(--gap-xl);
  background:
    radial-gradient(60% 50% at 30% 30%, var(--brand-50) 0%, transparent 70%),
    radial-gradient(45% 45% at 85% 80%, #FBF4E9 0%, transparent 70%),
    var(--bg);
}
.lb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap-2xl);
  align-items: center;
  padding-top: 40px;
}
.lb-hero-copy { display: flex; flex-direction: column; gap: 22px; }
.lb-hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.lb-hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.lb-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.4;
}
.lb-badge strong { color: var(--ink-900); font-weight: 600; }
.lb-badge svg {
  color: var(--brand-700);
  flex-shrink: 0;
  margin-top: 2px;
}
.lb-badge span { font-size: 12.5px; }

/* HERO VISUAL */
.lb-hero-visual { position: relative; min-height: 560px; }
.lb-hero-stage { position: relative; height: 100%; }
.lb-hero-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* mock kitchen scene */
.mock-kitchen {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mk-counter {
  position: absolute;
  bottom: 28%;
  left: 8%;
  right: 8%;
  height: 6%;
  background: linear-gradient(180deg, #FAFAF7 0%, #E8E2D8 100%);
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}
.mk-fridge {
  position: absolute;
  bottom: 28%;
  left: 10%;
  width: 22%;
  height: 50%;
  background: linear-gradient(180deg, #FCFCFB 0%, #E8E5E0 100%);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.15), inset 0 -2px 4px rgba(0,0,0,0.05);
}
.mk-fridge-handle {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 3px;
  height: 26%;
  background: rgba(0,0,0,0.3);
  border-radius: 2px;
}
.mk-fridge-line {
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(0,0,0,0.15);
}
.mk-hob {
  position: absolute;
  bottom: 22%;
  left: 38%;
  width: 22%;
  height: 5%;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 6%;
}
.mk-hob i {
  width: 22%;
  height: 60%;
  background: radial-gradient(circle, #FF6B35 0%, #2A1410 70%);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,107,53,0.5);
}
.mk-microwave {
  position: absolute;
  top: 24%;
  left: 38%;
  width: 22%;
  height: 16%;
  background: linear-gradient(180deg, #2A2A2A 0%, #1A1A1A 100%);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}
.mk-microwave::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 6%;
  right: 24%;
  bottom: 10%;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
}

/* floating cards */
.lb-hero-floater {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
}
.lb-float-1 {
  left: -32px;
  top: 18%;
  min-width: 200px;
}
.lb-float-2 {
  right: -16px;
  bottom: 12%;
  text-align: center;
}
.lbf-tag {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-700);
}
.lbf-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 650;
  color: var(--brand-700);
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.lbf-fine {
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 4px;
}
.lbf-icon {
  font-size: 22px;
  color: #F5B82E;
  margin-bottom: 4px;
}

/* modern variant — 4-up image grid */
.lb-hero-stage-modern {
  display: block;
}
.lb-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 4 / 5;
}
.lb-modern-grid .ph {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 960px) {
  .lb-hero-grid { grid-template-columns: 1fr; gap: var(--gap-xl); }
  .lb-hero-visual { min-height: 440px; }
  .lb-float-1 { left: 12px; }
  .lb-float-2 { right: 12px; }
}

/* ── CATEGORY CHIPS ── */
.lb-cats {
  padding: 0;
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  z-index: 50;
}
[data-theme="dark"] .lb-cats { background: rgba(11,16,32,0.92); }
.lb-cats-scroll {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.lb-cats-scroll::-webkit-scrollbar { display: none; }
.lb-chip {
  padding: 9px 16px;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.15s;
  flex-shrink: 0;
}
.lb-chip:hover { color: var(--brand-700); background: var(--brand-50); }
.lb-chip.is-active {
  background: var(--brand-700);
  color: #fff;
  border-color: var(--brand-700);
}

/* ── FEATURED ── */
.lb-featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gap-md);
}
.lb-feat-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lb-feat-img {
  position: relative;
  aspect-ratio: 1;
  border-radius: 0;
}
.lb-feat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.lb-feat-meta {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}
.lb-brand {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-700);
}
.lb-feat-meta h3 { font-size: 22px; }
.lb-feat-meta p { font-size: 14.5px; }
.lb-feat-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 16px;
}
.lb-price-was {
  font-size: 14px;
  color: var(--ink-400);
  text-decoration: line-through;
}
.lb-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 650;
  color: var(--ink-900);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-top: 4px;
}
.lb-cuotas {
  font-size: 12.5px;
  color: var(--ink-500);
  margin-top: 6px;
}

.lb-feat-small {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lb-feat-img-sm {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}
.lb-feat-meta-sm {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lb-feat-meta-sm h4 { font-size: 16px; line-height: 1.3; }
.lb-feat-meta-sm .lb-price { font-size: 22px; margin-top: 8px; }

@media (max-width: 960px) {
  .lb-featured-grid { grid-template-columns: 1fr; }
  .lb-feat-big { grid-template-columns: 1fr; }
  .lb-feat-meta { padding: 24px; }
}

/* ── PRODUCT GRID ── */
.lb-grid-meta { display: flex; align-items: center; gap: 16px; }
.lb-sort {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink-900);
  cursor: pointer;
}
.lb-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}
.lb-products-modern { grid-template-columns: repeat(3, 1fr); }

.prod-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.22s cubic-bezier(.3,.7,.4,1);
  cursor: pointer;
}
.prod-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.prod-img {
  aspect-ratio: 1;
  border-radius: 0;
  position: relative;
}
.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-700);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.prod-off {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
}
.prod-fav {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.96);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-500);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.prod-card:hover .prod-fav { opacity: 1; transform: translateY(0); }
.prod-fav:hover { color: var(--accent); }

.prod-meta {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.prod-brand {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-700);
}
.prod-name {
  font-size: 14.5px;
  font-weight: 550;
  color: var(--ink-900);
  line-height: 1.3;
  margin: 4px 0;
  min-height: 2.6em;
}
.prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}
.prod-was {
  font-size: 12.5px;
  color: var(--ink-400);
  text-decoration: line-through;
}
.prod-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 650;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.prod-cuotas {
  font-size: 11.5px;
  color: var(--brand-700);
  font-weight: 500;
  margin-bottom: 10px;
}
.prod-cta {
  margin-top: auto;
  padding: 10px;
  background: var(--bg-soft);
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 550;
  color: var(--ink-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s;
}
.prod-cta:hover {
  background: var(--brand-700);
  color: #fff;
}

@media (max-width: 960px) {
  .lb-products, .lb-products-modern { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .lb-products, .lb-products-modern { grid-template-columns: 1fr; }
}

/* ── BRANDS GRID — premium/corporate minimal ── */
.lb-brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: var(--gap-xl);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.lb-brand-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s;
  cursor: default;
  background: transparent;
}
.lb-brand-item:last-child { border-right: 0; }
.lb-brand-item:hover { background: var(--bg-soft); }
.lb-brand-name {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 22px;
  color: var(--brand-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.lb-brand-sub {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-500);
  margin-top: 4px;
}

@media (max-width: 960px) {
  .lb-brands-grid { grid-template-columns: repeat(3, 1fr); }
  .lb-brand-item { border-right: 1px solid var(--border-soft); }
  .lb-brand-item:nth-child(3n) { border-right: 0; }
  .lb-brand-item:nth-child(-n+3) { border-bottom: 1px solid var(--border-soft); }
}
@media (max-width: 560px) {
  .lb-brands-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-brand-item:nth-child(2n) { border-right: 0; }
  .lb-brand-item:nth-child(2n+1) { border-right: 1px solid var(--border-soft); }
  .lb-brand-item:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--border-soft); }
}

/* ── WHY BUY ── */
.lb-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg);
}
.lb-why-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lb-why-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-700);
  margin-bottom: 8px;
}
.lb-why-icon svg { width: 26px; height: 26px; }
.lb-why-item h3 { font-size: 17px; }
.lb-why-item p { font-size: 14.5px; }

@media (max-width: 960px) {
  .lb-why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── CTA ── */
.lb-cta-section { padding-bottom: var(--section-y); }
.lb-cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--brand-700);
  padding: 80px 56px;
}
.lb-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% 50%, rgba(80, 135, 199, 0.5) 0%, transparent 60%),
    radial-gradient(40% 40% at 20% 80%, rgba(80, 135, 199, 0.3) 0%, transparent 70%),
    linear-gradient(135deg, var(--brand-900) 0%, var(--brand-700) 100%);
}
.lb-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lb-cta-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .lb-cta-card { padding: 48px 28px; }
}
