/* ============================================================
   Extras — 404, search, mobile drawer, mini-cart flyout
   ============================================================ */

/* ── 404 page ─────────────────────────────────────────── */
.lenas-404 { padding: 60px 0 100px; }
.lenas-404__wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.lenas-404__code {
  font-size: clamp(96px, 16vw, 160px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #C4561A 0%, #A8461A 60%, #3D2010 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}
.lenas-404__title {
  font-size: clamp(24px, 4vw, 34px);
  color: #3D2010; font-weight: 700; margin: 0 0 12px;
}
.lenas-404__lead {
  color: #7A6A5A; font-size: 16px; line-height: 1.6; margin: 0 0 32px;
}
.lenas-404__search {
  display: flex; gap: 8px; margin: 0 0 24px;
}
.lenas-404__search input {
  flex: 1; padding: 12px 16px;
  border: 1px solid #F0E6D3; border-radius: 10px;
  background: white; font-size: 14px; color: #2C1A0E;
  outline: none;
}
.lenas-404__search input:focus { border-color: #C4561A; box-shadow: 0 0 0 3px rgba(196,86,26,0.20); }
.lenas-404__search button {
  padding: 12px 22px;
  background: #C4561A; color: white;
  border: none; border-radius: 10px;
  font-weight: 600; cursor: pointer;
  transition: background 0.15s;
}
.lenas-404__search button:hover { background: #A8461A; }

.lenas-404__ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin: 0 0 40px;
}
.lenas-404__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: white; border: 1px solid #F0E6D3;
  color: #3D2010; font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.lenas-404__btn:hover { border-color: #C4561A; color: #C4561A; }
.lenas-404__btn--primary { background: #C4561A; color: white; border-color: #C4561A; }
.lenas-404__btn--primary:hover { background: #A8461A; border-color: #A8461A; color: white; }

.lenas-404__cats { padding: 24px; background: #FAF3EB; border-radius: 14px; }
.lenas-404__cats-title {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: #7A6A5A; font-weight: 700; margin: 0 0 12px;
}
.lenas-404__cats ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
}
.lenas-404__cats a {
  display: inline-block;
  padding: 8px 14px;
  background: white; border: 1px solid #F0E6D3; border-radius: 999px;
  color: #3D2010; font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
}
.lenas-404__cats a:hover { border-color: #C4561A; color: #C4561A; }

/* ── Search results ───────────────────────────────────── */
.lenas-search { padding: 0 0 80px; }
.lenas-search__head { margin: 0 0 32px; }
.lenas-search__head h1 {
  font-size: clamp(24px, 3vw, 32px);
  color: #3D2010; margin: 0 0 8px;
}
.lenas-search__head p { color: #7A6A5A; font-size: 14px; margin: 0; }

.lenas-search__section { margin: 0 0 48px; }
.lenas-search__section-title {
  font-size: 18px; font-weight: 700; color: #3D2010;
  padding-bottom: 8px;
  border-bottom: 2px solid #FAF3EB;
  margin: 0 0 20px;
}

.lenas-search__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px) { .lenas-search__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .lenas-search__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .lenas-search__grid { grid-template-columns: repeat(5, 1fr); } }

.lenas-search__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.lenas-search__list a {
  display: block;
  padding: 14px 18px;
  background: white; border: 1px solid #F0E6D3; border-radius: 12px;
  text-decoration: none; color: #2C1A0E;
  transition: all 0.15s;
}
.lenas-search__list a:hover { border-color: #C4561A; background: #FBF8F2; }
.lenas-search__list-type {
  display: inline-block;
  padding: 2px 8px; margin-bottom: 6px;
  border-radius: 4px;
  background: #C4561A15; color: #C4561A;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.lenas-search__list strong { display: block; font-size: 15px; margin-bottom: 4px; }
.lenas-search__list-excerpt { display: block; font-size: 13px; color: #7A6A5A; }

.lenas-search__empty { padding: 60px 20px; text-align: center; }
.lenas-search__empty h2 { color: #3D2010; margin: 0 0 12px; }
.lenas-search__empty p { color: #7A6A5A; margin: 0 0 20px; }

/* ── Mobile menu drawer ───────────────────────────────── */
.lenas-drawer {
  position: fixed; inset: 0;
  z-index: 60;
  display: none;
}
.lenas-drawer.is-open { display: block; }
.lenas-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(26,12,5,0.55);
  animation: lenasFadeIn 0.2s;
}
.lenas-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: white;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  display: flex; flex-direction: column;
  animation: lenasSlideIn 0.25s;
}
@keyframes lenasFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lenasSlideIn { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.lenas-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid #F0E6D3;
}
.lenas-drawer__head strong { color: #3D2010; font-size: 16px; }
.lenas-drawer__close {
  width: 36px; height: 36px;
  background: none; border: none;
  color: #3D2010; cursor: pointer;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.lenas-drawer__close:hover { background: #FAF3EB; }

.lenas-drawer__body {
  flex: 1; overflow-y: auto;
  padding: 12px 0;
}
.lenas-drawer__nav {
  list-style: none; padding: 0; margin: 0;
}
.lenas-drawer__nav li a {
  display: block;
  padding: 12px 20px;
  color: #2C1A0E; font-size: 15px; font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #FBF8F2;
  transition: background 0.15s;
}
.lenas-drawer__nav li a:hover { background: #FAF3EB; color: #C4561A; }

.lenas-drawer__foot {
  padding: 16px 20px;
  border-top: 1px solid #F0E6D3;
  display: flex; flex-direction: column; gap: 8px;
}
.lenas-drawer__foot a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #3D2010; text-decoration: none; font-size: 14px; font-weight: 600;
  transition: background 0.15s;
}
.lenas-drawer__foot a:hover { background: #FAF3EB; }

/* Hide drawer on desktop */
@media (min-width: 768px) {
  .lenas-drawer { display: none !important; }
}

/* ── Newsletter section ───────────────────────────────── */
.newsletter-section {
  background: white; padding: 80px 0 100px;
  border-top: 1px solid rgba(212,196,176,0.30);
}
.newsletter-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(196,86,26,0.10); color: #C4561A;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.newsletter-title {
  font-size: clamp(24px, 3vw, 34px);
  color: #2C1A0E; font-weight: 700;
  margin: 0 0 12px; letter-spacing: -0.01em;
}
.newsletter-sub { color: #7A6A5A; font-size: 15px; margin: 0 0 24px; }
.newsletter-form {
  display: flex; gap: 8px; margin: 0 0 16px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.newsletter-form input[type=email] {
  flex: 1; padding: 14px 18px;
  border: 1px solid #F0E6D3; border-radius: 12px;
  background: white; font-size: 15px; color: #2C1A0E;
  outline: none;
}
.newsletter-form input[type=email]:focus {
  border-color: #C4561A; box-shadow: 0 0 0 3px rgba(196,86,26,0.20);
}
.newsletter-form button {
  padding: 14px 24px;
  background: #C4561A; color: white;
  border: none; border-radius: 12px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  transition: background 0.15s;
}
.newsletter-form button:hover { background: #A8461A; }
.newsletter-legal { font-size: 12px; color: #7A6A5A; margin: 0; }
.newsletter-legal a { color: #C4561A; text-decoration: underline; }
@media (max-width: 640px) {
  .newsletter-form { flex-direction: column; }
}

/* ── Cookie banner ────────────────────────────────────── */
.lenas-cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 70;
  opacity: 0; transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.lenas-cookie.is-visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.lenas-cookie__inner {
  max-width: 900px; margin: 0 auto;
  background: white; border: 1px solid #F0E6D3;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(26,12,5,0.20);
  padding: 20px 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
  justify-content: space-between;
}
.lenas-cookie__text {
  flex: 1 1 300px; font-size: 13px; line-height: 1.55; color: #2C1A0E;
}
.lenas-cookie__text strong { display: block; font-size: 14px; margin-bottom: 4px; color: #3D2010; }
.lenas-cookie__text a { color: #C4561A; text-decoration: underline; }
.lenas-cookie__actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.lenas-cookie__btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1px solid transparent;
  transition: all 0.15s;
}
.lenas-cookie__btn--ghost {
  background: white; color: #3D2010; border-color: #F0E6D3;
}
.lenas-cookie__btn--ghost:hover { border-color: #C4561A; color: #C4561A; }
.lenas-cookie__btn--primary {
  background: #C4561A; color: white;
}
.lenas-cookie__btn--primary:hover { background: #A8461A; }

/* ── Categorías mega-menu ─────────────────────────────── */
.lenas-mega {
  position: fixed; inset: 0; z-index: 55;
  display: none;
}
.lenas-mega.is-open { display: block; }
.lenas-mega__backdrop {
  position: absolute; inset: 0; top: 130px;
  background: rgba(26,12,5,0.35);
  animation: lenasFadeIn 0.2s;
}
.lenas-mega__panel {
  position: absolute; top: 130px; left: 0; right: 0;
  background: white;
  box-shadow: 0 12px 40px rgba(26,12,5,0.15);
  border-bottom: 1px solid #F0E6D3;
  padding: 28px 0 32px;
  animation: lenasSlideDown 0.25s;
}
@keyframes lenasSlideDown { from { transform: translateY(-10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.lenas-mega__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; border-bottom: 1px solid #FAF3EB; margin-bottom: 20px;
}
.lenas-mega__head strong { color: #3D2010; font-size: 18px; font-weight: 700; }
.lenas-mega__close {
  width: 36px; height: 36px;
  background: none; border: none; color: #3D2010; cursor: pointer;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.lenas-mega__close:hover { background: #FAF3EB; }
.lenas-mega__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .lenas-mega__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .lenas-mega__grid { grid-template-columns: repeat(4, 1fr); } }
.lenas-mega__col-head {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 8px; margin-bottom: 8px;
  border-bottom: 1px solid #FAF3EB;
  color: #C4561A;
}
.lenas-mega__col-head strong { color: #3D2010; font-size: 15px; }
.lenas-mega__col-ico { color: #C4561A; }
.lenas-mega__col ul { list-style: none; padding: 0; margin: 0; }
.lenas-mega__col li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  color: #2C1A0E; font-size: 14px; text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.lenas-mega__col li a:hover { background: #FAF3EB; color: #C4561A; }
.lenas-mega__col li a span { color: #7A6A5A; font-size: 12px; font-weight: 500; }

@media (max-width: 767px) { .lenas-mega { display: none !important; } }

/* ── Search autocomplete dropdown ─────────────────────── */
/* Keep .header-search-wrap as absolute-centered (from main.css). Anchor the
   dropdown to the FORM element instead so we don't override the wrap layout. */
.header-search-wrap form { position: relative; }
.lenas-search-suggest {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: white;
  border: 1px solid #F0E6D3;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(26,12,5,0.15);
  padding: 8px;
  max-height: 480px; overflow-y: auto;
  display: none; z-index: 60;
}
.lenas-search-suggest.is-open { display: block; }
.lenas-search-suggest__item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #2C1A0E; text-decoration: none;
  transition: background 0.12s;
}
.lenas-search-suggest__item:hover { background: #FAF3EB; }
.lenas-search-suggest__item img {
  width: 44px; height: 44px; object-fit: contain;
  background: #FAF3EB; border-radius: 8px; padding: 4px;
  flex-shrink: 0;
}
.lenas-search-suggest__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.lenas-search-suggest__brand {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 700; color: #7A6A5A;
}
.lenas-search-suggest__title {
  font-size: 13px; font-weight: 600; color: #2C1A0E;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lenas-search-suggest__price {
  font-size: 14px; font-weight: 700; color: #3D2010; flex-shrink: 0;
}
.lenas-search-suggest__empty {
  padding: 20px; text-align: center;
  color: #7A6A5A; font-size: 13px;
}
.lenas-search-suggest__all {
  display: block; padding: 10px;
  text-align: center; color: #C4561A;
  font-size: 13px; font-weight: 700; text-decoration: none;
  border-top: 1px solid #FAF3EB; margin-top: 4px;
}
.lenas-search-suggest__all:hover { background: #FAF3EB; }

/* ── Ofertas page ─────────────────────────────────────── */
.lenas-ofertas { padding: 20px 0 80px; }
.lenas-ofertas__hero {
  background: linear-gradient(135deg,#E85E47 0%,#C4561A 100%);
  border-radius: 20px; padding: 40px 32px;
  color: white; margin: 0 0 40px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(232,94,71,0.25);
}
.lenas-ofertas__badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(255,255,255,0.18);
  color: white; font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; margin-bottom: 12px;
  backdrop-filter: blur(10px);
}
.lenas-ofertas__hero h1 {
  color: white; font-size: clamp(24px, 4vw, 34px);
  font-weight: 700; margin: 0 0 8px;
}
.lenas-ofertas__hero p {
  color: rgba(255,255,255,0.85); font-size: 15px; margin: 0;
}
.lenas-ofertas__savings {
  margin-top: 12px !important; font-size: 14px !important;
}
.lenas-ofertas__savings strong { color: white; }
.lenas-ofertas__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (min-width: 640px) { .lenas-ofertas__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .lenas-ofertas__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .lenas-ofertas__grid { grid-template-columns: repeat(5, 1fr); } }
.lenas-ofertas__empty {
  padding: 60px; text-align: center; color: #7A6A5A;
  background: #FAF3EB; border-radius: 16px;
}
.lenas-ofertas__empty a { color: #C4561A; }

/* ── Order tracking page ──────────────────────────────── */
.lenas-tracking { padding: 20px 0 80px; }
.lenas-tracking__wrap { max-width: 800px; margin: 0 auto; }
.lenas-tracking__title {
  font-size: clamp(24px, 3vw, 32px);
  color: #3D2010; font-weight: 700; margin: 0 0 8px;
}
.lenas-tracking__lead { color: #7A6A5A; font-size: 14px; margin: 0 0 24px; }

.lenas-tracking__form {
  display: grid; gap: 12px; margin: 0 0 24px;
  padding: 20px; background: #FAF3EB;
  border-radius: 14px;
}
@media (min-width: 640px) { .lenas-tracking__form { grid-template-columns: 1fr 1fr auto; align-items: end; } }
.lenas-tracking__form label {
  display: block; font-size: 12px; color: #7A6A5A;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
  margin-bottom: 6px;
}
.lenas-tracking__form input {
  width: 100%; padding: 10px 14px;
  border: 1px solid #F0E6D3; border-radius: 10px;
  background: white; font-size: 14px; color: #2C1A0E;
  outline: none;
}
.lenas-tracking__form input:focus { border-color: #C4561A; box-shadow: 0 0 0 3px rgba(196,86,26,0.15); }
.lenas-tracking__form button {
  padding: 10px 24px; height: 42px;
  background: #C4561A; color: white; border: none; border-radius: 10px;
  font-weight: 600; cursor: pointer; transition: background 0.15s;
}
.lenas-tracking__form button:hover { background: #A8461A; }

.lenas-tracking__error {
  padding: 12px 16px; margin: 0 0 24px;
  background: rgba(239,68,68,0.10); color: #B91C1C;
  border-left: 3px solid #EF4444; border-radius: 8px;
  font-size: 14px;
}
.lenas-tracking__hint { color: #7A6A5A; font-size: 14px; }
.lenas-tracking__hint a { color: #C4561A; }

.lenas-tracking__result {
  background: white; border: 1px solid #F0E6D3; border-radius: 14px;
  padding: 24px;
}
.lenas-tracking__result-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid #FAF3EB;
}
.lenas-tracking__label {
  font-size: 11px; color: #7A6A5A;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700;
  display: block; margin-bottom: 4px;
}
.lenas-tracking__result-head h2 { margin: 0; color: #3D2010; font-size: 22px; }
.lenas-tracking__status {
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: rgba(37,169,107,0.15); color: #17734b;
}
.lenas-tracking__status--pending, .lenas-tracking__status--on-hold {
  background: rgba(245,158,11,0.15); color: #92400E;
}
.lenas-tracking__status--cancelled, .lenas-tracking__status--failed {
  background: rgba(239,68,68,0.15); color: #B91C1C;
}
.lenas-tracking__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; margin: 0 0 24px;
}
.lenas-tracking__grid div {}
.lenas-tracking__grid dt {
  font-size: 11px; text-transform: uppercase; color: #7A6A5A;
  letter-spacing: 0.06em; font-weight: 700; margin-bottom: 4px;
}
.lenas-tracking__grid dd { margin: 0; color: #2C1A0E; font-weight: 600; font-size: 14px; }
.lenas-tracking__subtitle {
  font-size: 15px; color: #3D2010; margin: 24px 0 12px;
}
.lenas-tracking__items {
  width: 100%; border-collapse: collapse; font-size: 14px;
}
.lenas-tracking__items thead th {
  padding: 8px 12px; text-align: left;
  color: #7A6A5A; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid #F0E6D3;
}
.lenas-tracking__items td {
  padding: 10px 12px; border-bottom: 1px solid #FAF3EB;
  color: #2C1A0E;
}
.lenas-tracking__address {
  padding: 12px 16px; background: #FAF3EB; border-radius: 10px;
  font-style: normal; color: #2C1A0E; font-size: 14px; line-height: 1.6;
}

/* ── Presupuesto B2B ─────────────────────────────────── */
.lenas-quote { padding: 20px 0 80px; }
.lenas-quote__wrap { max-width: 1000px; margin: 0 auto; }
.lenas-quote__hero { text-align: center; margin: 0 0 32px; }
.lenas-quote__eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(196,86,26,0.10); color: #C4561A;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.lenas-quote__hero h1 { color: #3D2010; font-size: clamp(24px, 3.5vw, 36px); margin: 0 0 12px; }
.lenas-quote__hero p { color: #7A6A5A; font-size: 15px; max-width: 640px; margin: 0 auto; }
.lenas-quote__grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 900px) { .lenas-quote__grid { grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr); } }
.lenas-quote__form {
  background: white; border: 1px solid #F0E6D3; border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.lenas-quote__row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .lenas-quote__row { grid-template-columns: 1fr 1fr; } }
.lenas-quote__form label {
  display: flex; flex-direction: column;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  color: #7A6A5A; font-weight: 700; gap: 4px;
}
.lenas-quote__form input,
.lenas-quote__form select,
.lenas-quote__form textarea {
  padding: 10px 12px; border: 1px solid #F0E6D3; border-radius: 10px;
  background: white; font-size: 14px; color: #2C1A0E;
  font-weight: 400; text-transform: none; letter-spacing: 0;
  outline: none; font-family: inherit;
}
.lenas-quote__form input:focus,
.lenas-quote__form select:focus,
.lenas-quote__form textarea:focus {
  border-color: #C4561A; box-shadow: 0 0 0 3px rgba(196,86,26,0.15);
}
.lenas-quote__full { grid-column: 1 / -1; }
.lenas-quote__btn {
  padding: 14px 28px;
  background: #C4561A; color: white;
  border: none; border-radius: 12px;
  font-weight: 700; font-size: 15px; cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}
.lenas-quote__btn:hover { background: #A8461A; }
.lenas-quote__legal { font-size: 12px; color: #7A6A5A; margin: 0; }
.lenas-quote__legal a { color: #C4561A; }
.lenas-quote__error {
  padding: 12px 16px; background: rgba(239,68,68,0.10); color: #B91C1C;
  border-left: 3px solid #EF4444; border-radius: 8px; font-size: 14px;
  margin-bottom: 12px;
}
.lenas-quote__success {
  padding: 40px; text-align: center; background: white;
  border: 1px solid #F0E6D3; border-radius: 16px;
  color: #25A96B;
}
.lenas-quote__success svg { margin: 0 auto 16px; }
.lenas-quote__success h2 { color: #3D2010; margin: 0 0 8px; }
.lenas-quote__success p { color: #7A6A5A; margin: 0; }

/* ── Distribuidores ──────────────────────────────────── */
.lenas-distr { padding: 20px 0 80px; }
.lenas-distr__hero { text-align: center; margin: 0 0 32px; max-width: 720px; margin-left: auto; margin-right: auto; }
.lenas-distr__hero h1 { color: #3D2010; font-size: clamp(24px, 3.5vw, 34px); margin: 0 0 12px; }
.lenas-distr__hero p { color: #7A6A5A; font-size: 15px; line-height: 1.6; }
.lenas-distr__grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 900px) { .lenas-distr__grid { grid-template-columns: 1.4fr 1fr; } }
.lenas-distr__map iframe { display: block; margin: 0 0 12px; }
.lenas-distr__address {
  padding: 12px 16px; background: #FAF3EB; border-radius: 10px;
  font-size: 14px; color: #2C1A0E; margin: 0 0 12px;
}
.lenas-distr__link { color: #C4561A; font-weight: 600; font-size: 14px; }
.lenas-distr__zones h2 { color: #3D2010; font-size: 20px; margin: 0 0 16px; }
.lenas-distr__zones ul { list-style: none; padding: 0; margin: 0 0 24px; }
.lenas-distr__zones li {
  display: flex; flex-direction: column;
  padding: 12px 16px; margin-bottom: 8px;
  background: white; border: 1px solid #F0E6D3; border-radius: 10px;
}
.lenas-distr__zone-name { font-weight: 700; color: #3D2010; font-size: 14px; }
.lenas-distr__zone-note { font-size: 12px; color: #7A6A5A; }
.lenas-distr__cta {
  padding: 20px; background: #FAF3EB; border-radius: 14px;
  text-align: center;
}
.lenas-distr__cta p { color: #2C1A0E; margin: 0 0 12px; font-size: 14px; font-weight: 600; }

/* ── Revendedor independiente notice (product page) ─── */
.sp-reseller-notice {
  padding: 10px 14px; margin: 12px 0;
  background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.25);
  border-radius: 10px;
  color: #92400E; font-size: 12px; line-height: 1.5;
}
.sp-reseller-notice strong { color: #92400E; }
