/* ================================================================
   SITE-PREMIUM.CSS — Electro Boutique
   Hoja de estilos global. Carga en todas las páginas.
   ================================================================ */

/* --- BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: #f0e4d4;
  line-height: 1.5;
  background:
    radial-gradient(circle at top left, rgba(232, 215, 194, 0.14), transparent 24%),
    linear-gradient(180deg, #302b27 0%, #35302c 28%, #2d2824 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    repeating-linear-gradient(90deg, transparent 0, transparent 127px, rgba(255, 255, 255, 0.018) 128px);
  opacity: 0.14;
  z-index: 0;
}

body.site-page,
body.home-page,
body:has(.menu-dropdown) {
  background:
    linear-gradient(90deg, rgba(18, 13, 10, 0.88) 0%, rgba(28, 21, 17, 0.52) 48%, rgba(24, 18, 15, 0.14) 100%),
    url("hero-cocina-premium.png") center center / cover fixed no-repeat;
}

body > * {
  position: relative;
  z-index: 1;
}

/* --- HERO IMAGE VARIABLES POR SECCIÓN --- */
body[data-section="cocina"] {
  --page-hero-image: url("hero-cocina-premium.png");
  --page-hero-position: center center;
}

body[data-section="climatizacion"] {
  --page-hero-image: url("hero-climatizacion-premium.png");
  --page-hero-position: center center;
}

body[data-section="pequenos-electrodomesticos"] {
  --page-hero-image: url("hero-cocina-premium.png");
  --page-hero-position: 58% center;
}

body[data-page="index.html"],
body[data-section="general"] {
  --page-hero-image: url("hero-cocina-premium.png");
  --page-hero-position: center center;
}

body[data-page="cocina-samsung.html"] {
  --page-hero-position: 70% center;
}

body[data-page="climatizacion-piso-techo.html"],
body[data-page="climatizacion-piso-techo-philco.html"],
body[data-page="climatizacion-piso-techo-siam.html"] {
  --page-hero-position: 54% center;
}

body[data-page="climatizacion-multisplit.html"],
body[data-page="climatizacion-multisplit-lg-artcool.html"],
body[data-page="climatizacion-multisplit-hisense.html"] {
  --page-hero-position: 62% center;
}

body[data-page="climatizacion-baja-silueta.html"],
body[data-page="climatizacion-baja-silueta-siam.html"] {
  --page-hero-position: 58% center;
}

/* --- LAYOUT --- */
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  padding: 34px 0 28px;
}

main {
  padding: 8px 0 100px;
}

section {
  margin-bottom: 28px;
}

footer {
  padding: 0 0 42px;
}

/* --- NAVEGACIÓN --- */
.menu-dropdown {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 8px 0;
  background: rgba(45, 39, 35, 0.5);
  border-bottom: 1px solid rgba(231, 215, 194, 0.08);
  backdrop-filter: blur(16px);
}

.menu-dropdown .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  width: 100%;
  margin: 0;
  padding-block: 7px;
  padding-inline: clamp(20px, 4vw, 64px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.navbar-logo {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  border: 1px solid rgba(231, 215, 194, 0.18);
  background: rgba(91, 82, 75, 0.95);
  color: #eadbc8;
  border-radius: 999px;
  padding: 9px 16px;
  font: inherit;
  font-weight: 300;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-dropdown .dropdown-btn::after {
  content: "";
  width: 17px;
  height: 12px;
  background: repeating-linear-gradient(
    to bottom,
    currentColor 0 1px,
    transparent 1px 5px
  );
  opacity: 0.82;
}

.dropdown-btn:hover {
  background: rgba(105, 95, 87, 0.95);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 240px;
  list-style: none;
  padding: 12px;
  border-radius: 24px;
  background: rgba(54, 48, 44, 0.96);
  border: 1px solid rgba(231, 215, 194, 0.12);
  box-shadow: 0 28px 70px rgba(18, 14, 12, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.25s ease;
  backdrop-filter: blur(18px);
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li + li {
  margin-top: 6px;
}

.dropdown-menu a {
  display: block;
  text-decoration: none;
  color: #eadcc8;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 300;
}

.dropdown-menu a:hover,
.submenu-group summary:hover {
  background: rgba(231, 215, 194, 0.08);
}

.owner-access {
  opacity: 0.72;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.dropdown-menu .nav-admin-item {
  border-top: 1px solid rgba(231, 215, 194, 0.10);
  margin-top: 14px;
  padding-top: 4px;
}

.submenu-group {
  border-radius: 16px;
}

.submenu-group summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #eadcc8;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 300;
}

.submenu-group summary::-webkit-details-marker {
  display: none;
}

.submenu-group summary::after {
  content: "▾";
  font-size: 0.78rem;
  color: #c8b59d;
  transition: transform 0.2s ease;
}

.submenu-group[open] summary::after {
  transform: rotate(180deg);
}

.submenu {
  list-style: none;
  padding: 4px 0 0 12px;
}

.submenu li + li {
  margin-top: 4px;
}

/* --- HERO SHELL --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(91, 82, 75, 0.95);
  border: 1px solid rgba(231, 215, 194, 0.18);
  color: #eadbc8;
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.back-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #eadcc8;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
}

.back-arrow:hover {
  color: #f0e4d4;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(320px, 42vw, 520px);
  padding: clamp(30px, 5vw, 68px);
  border-radius: 40px;
  background:
    linear-gradient(98deg, rgba(23, 18, 15, 0.88) 0%, rgba(23, 18, 15, 0.7) 34%, rgba(23, 18, 15, 0.36) 62%, rgba(23, 18, 15, 0.14) 100%),
    radial-gradient(circle at 20% 24%, rgba(231, 214, 191, 0.18), transparent 38%),
    var(--page-hero-image, url("hero-cocina-premium.png")) var(--page-hero-position, center center) / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 100px rgba(12, 9, 8, 0.22);
  margin-bottom: 28px;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: auto -12% -18% 42%;
  height: 58%;
  background: radial-gradient(circle, rgba(231, 213, 190, 0.14), transparent 68%);
  pointer-events: none;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.home-page > header {
  padding: 0;
}

.home-page > header > .container {
  width: 100%;
}

.home-page .hero-shell {
  overflow: visible;
  min-height: calc(100svh - 74px);
  padding: clamp(56px, 7vw, 112px) clamp(32px, 8vw, 136px) 120px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(18, 13, 10, 0.68) 0%, rgba(28, 21, 17, 0.22) 48%, transparent 72%);
  box-shadow: none;
  margin-bottom: 0;
}

.home-page .hero-shell::after {
  display: none;
}

.site-page:not(.home-page) .hero-shell {
  overflow: visible;
  padding: clamp(38px, 5vw, 68px);
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(18, 13, 10, 0.7) 0%, rgba(28, 21, 17, 0.3) 52%, transparent 82%);
  box-shadow: none;
}

.site-page:not(.home-page) .hero-shell::after {
  display: none;
}

.category-page .hero-shell {
  min-height: clamp(300px, 42svh, 480px);
  margin-bottom: 0;
}

.category-page .hero-shell > .hero-logo-wrap,
.category-page .hero > .hero-logo-wrap {
  display: none;
}

.category-page .hero-shell h1 {
  max-width: 820px;
  font-family: "Bodoni 72", Didot, Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.category-page .hero-shell p,
.category-page .hero-shell .lead {
  max-width: 680px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.65;
}

.hero-shell > *,
.hero-shell .hero > * {
  position: relative;
  z-index: 1;
}

.hero,
.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-shell .hero {
  align-items: center;
}

h1,
.hero-shell h1,
.hero h1 {
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 400;
  max-width: 760px;
  color: #f7ecdf;
  margin-bottom: 14px;
}

.lead,
.hero-shell p,
.hero p {
  color: rgba(239, 226, 212, 0.86);
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  line-height: 1.8;
  max-width: 650px;
}

.hero-logo-wrap {
  background: rgba(75, 68, 62, 0.78);
  border: 1px solid rgba(231, 215, 194, 0.12);
  box-shadow: 0 18px 34px rgba(41, 34, 30, 0.22);
  padding: 16px 20px;
  border-radius: 24px;
}

.hero-logo {
  width: 100%;
  display: block;
  mix-blend-mode: normal;
}

/* Altura mínima extra para páginas de categoría principal */
body[data-page="cocina.html"] .hero-shell,
body[data-page="climatizacion.html"] .hero-shell,
body[data-page="cocina-bosch.html"] .hero-shell,
body[data-page="cocina-samsung.html"] .hero-shell {
  min-height: clamp(380px, 48vw, 560px);
}

body[data-page="cocina.html"] .hero,
body[data-page="climatizacion.html"] .hero {
  min-height: 400px;
}

/* CTAs del hero (inyectados por site-premium.js) */
.premium-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.premium-hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-hero-actions a:first-child {
  background: linear-gradient(135deg, #e7d5be 0%, #c9b194 100%);
  color: #201a16;
  box-shadow: 0 18px 36px rgba(21, 15, 12, 0.24);
  font-weight: 600;
}

.premium-hero-actions a:last-child {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(231, 215, 194, 0.18);
  color: #f4eadf;
}

.premium-hero-actions a:hover {
  transform: translateY(-2px);
}

/* --- SECTION CARD --- */
.section-card {
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(66, 59, 53, 0.94), rgba(56, 49, 44, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(18, 14, 12, 0.18);
  backdrop-filter: blur(12px);
}

.site-page .section-card {
  background: linear-gradient(180deg, rgba(66, 59, 53, 0.84), rgba(52, 45, 40, 0.9));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 64px rgba(18, 14, 12, 0.2);
  backdrop-filter: blur(16px);
}

.category-page main {
  padding-top: 0;
}

.category-page > header + main {
  margin-top: -36px;
}

.category-page main .hero-shell + .section-card {
  margin-top: -34px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(231, 215, 194, 0.1);
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #f3e6d6;
}

.section-head span {
  color: #cab8a4;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* --- GRILLA E ITEMS --- */
.grid {
  display: grid;
  gap: 18px;
}

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

.grid.sub-grid,
.grid:not(.two) {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.item {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(84, 76, 69, 0.76), rgba(67, 60, 55, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(18, 14, 12, 0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(18, 14, 12, 0.24);
  border-color: rgba(231, 215, 194, 0.14);
}

.item::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 177, 148, 0), rgba(201, 177, 148, 0.46), rgba(201, 177, 148, 0));
  opacity: 0.7;
}

.item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.item-number {
  margin-bottom: 14px;
  color: #cab8a4;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.item h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #f1e5d7;
}

.item p {
  color: #c9b8a5;
  font-size: 0.98rem;
}

.item-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(231, 215, 194, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 38%),
    #4b443e;
}

.oven-feature-card {
  display: flex;
  flex-direction: column;
}

.oven-feature-card__link {
  color: inherit;
  text-decoration: none;
}

.oven-feature-card__image {
  object-fit: cover;
  object-position: center;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 38%),
    #3f3934;
}

.oven-feature-card__image--contain {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 38%),
    #3f3934;
}

.oven-feature-card h3 {
  overflow-wrap: anywhere;
}

.oven-feature-card__description {
  margin-bottom: 16px;
}

.oven-feature-list {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: #d8c8b6;
  font-size: 0.9rem;
}

.oven-feature-list li {
  position: relative;
  padding-left: 17px;
}

.oven-feature-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9b194;
  box-shadow: 0 0 0 3px rgba(201, 177, 148, 0.1);
}

.oven-feature-card__more[hidden] {
  display: none;
}

.oven-feature-card__more .oven-feature-list {
  padding-top: 14px;
  border-top: 1px solid rgba(231, 215, 194, 0.1);
}

.oven-feature-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-top: auto;
  padding: 12px 15px;
  border: 1px solid rgba(231, 215, 194, 0.18);
  border-radius: 999px;
  background: rgba(39, 33, 29, 0.28);
  color: #f0e4d4;
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.oven-feature-toggle::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
}

.oven-feature-toggle[aria-expanded="true"]::after {
  content: "−";
}

.oven-feature-toggle:hover {
  background: rgba(231, 215, 194, 0.08);
  border-color: rgba(231, 215, 194, 0.28);
}

.img-cutout {
  mix-blend-mode: normal;
  filter: brightness(1.08) contrast(1.03) saturate(1.02);
}

/* --- IMAGE FRAME (tarjetas climatización sin clase en el img) --- */
.image-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(231, 215, 194, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 38%),
    #4b443e;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- PRODUCT CARD (pequeños electrodomésticos — listado) --- */
.product-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(84, 76, 69, 0.76), rgba(67, 60, 55, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(18, 14, 12, 0.14);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(18, 14, 12, 0.24);
  border-color: rgba(231, 215, 194, 0.14);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 177, 148, 0), rgba(201, 177, 148, 0.46), rgba(201, 177, 148, 0));
  opacity: 0.7;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: #f0e4d4;
}

.product-card p {
  color: #cab8a4;
  font-size: 0.96rem;
  margin-bottom: 16px;
}

.product-card .item-number {
  color: #cab8a4;
}

.price-tag {
  margin-top: auto;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(222, 205, 181, 0.16);
  border: 1px solid rgba(231, 215, 194, 0.18);
  font-size: 1.18rem;
  font-weight: 600;
  color: #f0e4d4;
  text-align: center;
}

.product-actions {
  display: grid;
  gap: 10px;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(231, 215, 194, 0.18);
  color: #f4eadf;
}

/* --- BRAND SUBSECTION --- */
.brand-subsection {
  margin-top: 30px;
}

.brand-subsection h4 {
  margin-bottom: 14px;
  font-size: 0.96rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #c7b49d;
}

/* --- GALERÍA / DETALLE DE PRODUCTO --- */
.gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.gallery::-webkit-scrollbar {
  height: 10px;
}

.gallery::-webkit-scrollbar-thumb {
  background: rgba(231, 215, 194, 0.2);
  border-radius: 999px;
}

.slide {
  min-width: 100%;
  scroll-snap-align: start;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(84, 76, 69, 0.68), rgba(67, 60, 55, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px;
  box-shadow: 0 18px 42px rgba(18, 14, 12, 0.14);
}

.slide img {
  width: 100%;
  height: min(64vh, 440px);
  object-fit: contain;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 36%),
    #4c443d;
  padding: 8px;
  border: none;
}

.caption {
  margin-top: 12px;
  color: #c8b59d;
  font-size: 0.95rem;
}

.helper {
  margin: 18px 0 26px;
  color: #c8b59d;
  font-size: 0.95rem;
}

.action-wrap {
  margin-bottom: 30px;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  background: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.95);
  box-shadow: 0 18px 28px rgba(37, 211, 102, 0.22);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 32px rgba(37, 211, 102, 0.3);
}

.detail-block + .detail-block {
  margin-top: 28px;
}

.detail-title {
  font-size: 1.18rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #f0e4d4;
  margin-bottom: 14px;
}

.description-copy {
  font-size: 1rem;
  color: #c8b59d;
  margin-bottom: 10px;
}

.detail-list,
.measure-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #c8b59d;
}

.detail-list li strong,
.measure-list li strong {
  color: #f0e4d4;
  font-weight: 500;
}

/* --- PEQUEÑOS ELECTRODOMÉSTICOS — DETALLE --- */
.product-stage {
  margin-bottom: 18px;
}

.product-frame {
  border-radius: 28px;
  background: transparent;
  border: none;
  padding: 0;
}

.product-frame img {
  display: block;
  width: 100%;
  height: clamp(360px, 62vh, 620px);
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  background: transparent;
  padding: 0;
  border: none;
}

.color-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 10px;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(231, 215, 194, 0.2);
  background: var(--dot);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.color-dot:hover {
  transform: translateY(-1px);
}

.color-dot.active {
  border-color: #efe1d0;
  box-shadow: 0 0 0 4px rgba(239, 225, 208, 0.22);
}

.card-variant-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -4px 0 16px;
}

.card-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(231, 215, 194, 0.2);
  background: var(--dot);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card-color-dot:hover {
  transform: translateY(-1px);
}

.card-color-dot.active {
  border-color: #efe1d0;
  box-shadow: 0 0 0 4px rgba(239, 225, 208, 0.22);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #f0e4d4;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: #f0e4d4;
  font-size: 1rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e7d5be 0%, #c9b194 100%);
  transform: translateY(-50%);
}

.feature-list li::marker {
  content: "";
}

/* --- SECTOR CONTACTO --- */
.sector-contact {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(84, 76, 70, 0.88), rgba(66, 58, 53, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cab8a4;
  text-align: center;
  letter-spacing: 0.03em;
}

.sector-contact a {
  color: #f0e4d4;
  text-decoration: none;
  font-weight: 500;
}

.sector-contact a:hover {
  color: #e7d5be;
}

.sector-contact.premium-contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding: 18px;
  text-align: left;
}

.sector-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(83, 75, 68, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 92px;
}

.sector-contact-icon,
.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(231, 213, 190, 0.86), rgba(205, 180, 151, 0.86));
  color: #3a2f28;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 12px 24px rgba(24, 18, 15, 0.16);
}

.sector-contact-icon svg,
.contact-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

.sector-contact-body,
.contact-item-body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.sector-contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cbb8a3;
}

.sector-contact-value {
  color: #f0e4d4;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.sector-contact-link {
  color: #e7d5be;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.sector-contact-value:hover,
.sector-contact-value:focus-visible {
  color: #e7d5be;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(231, 215, 194, 0.1);
  border-radius: 20px;
  background: rgba(83, 75, 68, 0.56);
  color: inherit;
}

.contact-label {
  color: #cbb8a3;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-value {
  color: #f0e4d4;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.contact-value:hover,
.contact-value:focus-visible {
  color: #e7d5be;
}

/* --- FOOTER --- */
.footer-card {
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  color: #cab8a4;
  background: linear-gradient(180deg, rgba(66, 59, 53, 0.94), rgba(56, 49, 44, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(18, 14, 12, 0.18);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.footer-address {
  display: block;
  margin-top: 10px;
  color: #cab8a4;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* --- WHATSAPP FLOTANTE --- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 34px rgba(37, 211, 102, 0.34);
  z-index: 120;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 38px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}

/* --- INDEX: HERO COPY --- */
.hero-copy {
  width: 48%;
  max-width: 680px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-copy .eyebrow {
  margin-bottom: 28px;
  padding: 9px 16px;
  font-size: 0.74rem;
}

.hero-copy .eyebrow::before {
  content: "✦";
  margin-right: 8px;
  color: #e7d5be;
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-family: "Bodoni 72", Didot, Georgia, serif;
  font-size: clamp(4rem, 6.6vw, 7rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy > p {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.55;
}

.hero-highlights {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  width: 100%;
  margin: 0 0 30px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(239, 226, 212, 0.12);
  color: #ebdfcf;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.hero-highlights span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e7d5be 0%, #c9b194 100%);
  box-shadow: 0 0 0 4px rgba(231, 213, 190, 0.1);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
  margin-bottom: 18px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-link.primary {
  color: #1f1915;
  background: linear-gradient(135deg, #e7d5be 0%, #c9b194 100%);
  box-shadow: 0 18px 36px rgba(21, 15, 12, 0.24);
  font-weight: 500;
}

.pill-link.primary::after {
  content: "→";
  margin-left: 18px;
  font-size: 1.1em;
}

.pill-link.secondary {
  color: #f4eadf;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(240, 225, 206, 0.18);
  font-weight: 500;
}

.pill-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15, 10, 8, 0.16);
}

/* --- INDEX: CAROUSEL DE DESTACADOS --- */
.carousel-wrap {
  position: relative;
  margin-top: 8px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.carousel-track {
  display: flex;
  gap: 18px;
  padding: 4px 2px 12px;
  touch-action: pan-y;
  user-select: none;
  will-change: transform;
}

.featured-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-width: 0;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(86, 77, 70, 0.78), rgba(64, 57, 52, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(18, 14, 12, 0.14);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.featured-card img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 36%),
    #4c443d;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease;
}

.featured-card::before {
  content: "Selección premium";
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(34, 28, 24, 0.82);
  color: #eadbc8;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  z-index: 1;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #cdbba8;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.featured-card h3 {
  font-size: 1.26rem;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  font-weight: 400;
  color: #f3e8da;
}

.featured-card p {
  color: #c9b8a5;
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.featured-link {
  color: #f0e4d4;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(231, 215, 194, 0.1);
}

.featured-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px rgba(18, 14, 12, 0.24);
  border-color: rgba(231, 215, 194, 0.14);
}

.featured-card:hover img {
  transform: scale(1.02);
}

.featured-card:hover .featured-link::after {
  transform: translateX(3px);
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(231, 215, 194, 0.16);
  background: rgba(86, 77, 70, 0.94);
  color: #eadcc8;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(18, 14, 12, 0.14);
  transition: background 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(105, 94, 86, 0.98);
}

/* --- INDEX: BENEFICIOS --- */
.benefits-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(83, 75, 68, 0.8), rgba(68, 61, 55, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(18, 14, 12, 0.14);
  min-height: 178px;
}

.benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(231, 213, 190, 0.84), rgba(205, 180, 151, 0.84));
  color: #3b2f28;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 12px 24px rgba(24, 18, 15, 0.18);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f3e8da;
}

.benefit-card p {
  color: #cbb8a3;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CONTACTO: estilos de página --- */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.info-card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(75, 68, 62, 0.92);
  border: 1px solid rgba(231, 215, 194, 0.16);
  display: grid;
  gap: 18px;
}

.info-card strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 300;
  color: #f0e4d4;
}

.info-card p {
  color: #c8b59d;
}

.points {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #c8b59d;
}

.points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: #d9c4a5;
  display: inline-block;
  vertical-align: middle;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.panel {
  border-radius: 34px;
  padding: 30px;
  background: rgba(63, 57, 52, 0.94);
  border: 1px solid rgba(231, 215, 194, 0.16);
  box-shadow: 0 18px 48px rgba(33, 28, 25, 0.18);
  color: #f0e4d4;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: #f0e4d4;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.panel-note {
  font-size: 0.92rem;
  color: #c8b59d;
}

.form-shell {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #c8b59d;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(231, 215, 194, 0.14);
  background: rgba(75, 68, 62, 0.92);
  color: #f0e4d4;
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(231, 215, 194, 0.36);
  box-shadow: 0 0 0 3px rgba(231, 215, 194, 0.08);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.submit-button {
  border: 1px solid rgba(231, 215, 194, 0.18);
  background: linear-gradient(180deg, #dbc7ac 0%, #c5af93 100%);
  color: #2d2621;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.submit-button:hover {
  transform: translateY(-1px);
}

.form-feedback {
  min-height: 24px;
  color: #c8b59d;
  font-size: 0.92rem;
}

.form-feedback.success { color: #9ec9ab; }
.form-feedback.error   { color: #efb2ac; }

/* --- SOBRE NOSOTROS: estilos de página --- */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.metric-card {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(63, 57, 52, 0.94);
  border: 1px solid rgba(231, 215, 194, 0.16);
  box-shadow: 0 16px 30px rgba(33, 28, 25, 0.18);
}

.metric-card span {
  display: block;
  color: #c8b59d;
  font-size: 0.76rem;
  margin-bottom: 8px;
}

.metric-card strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #f0e4d4;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.about-panel,
.values-panel {
  padding: 28px;
  border-radius: 30px;
  background: rgba(63, 57, 52, 0.94);
  border: 1px solid rgba(231, 215, 194, 0.16);
  box-shadow: 0 16px 30px rgba(33, 28, 25, 0.18);
}

.about-panel {
  position: relative;
  overflow: hidden;
}

.about-panel::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% 40%;
  height: 180px;
  background: radial-gradient(circle, rgba(231, 215, 194, 0.16), rgba(231, 215, 194, 0.03) 68%, transparent 72%);
  pointer-events: none;
}

.about-panel p {
  color: #c8b59d;
}

.about-panel p + p {
  margin-top: 14px;
}

.highlight-quote {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(63, 57, 52, 0.94);
  border: 1px solid rgba(231, 215, 194, 0.16);
  color: #c8b59d;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}

.values-panel h2 {
  font-size: 0.96rem;
  letter-spacing: 0.03em;
  font-weight: 300;
  color: #f0e4d4;
  margin-bottom: 16px;
}

.values-panel ul {
  list-style: none;
}

.values-panel li {
  padding: 14px 0;
  border-top: 1px solid rgba(231, 215, 194, 0.1);
  color: #c8b59d;
}

.values-panel li:first-child {
  border-top: none;
  padding-top: 0;
}

.values-panel li strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 300;
  color: #f0e4d4;
}

/* --- ACCESIBILIDAD: FOCO VISIBLE --- */
:focus-visible {
  outline: 2px solid rgba(231, 215, 194, 0.7);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .hero-copy {
    width: 54%;
  }

  .hero-highlights,
  .hero-actions {
    flex-wrap: wrap;
  }
}

.home-page main {
  margin-top: -62px;
  padding-top: 0;
}

.home-page main > .container {
  width: min(1200px, calc(100% - 48px));
}

.home-page main section:first-child .section-card {
  background: linear-gradient(180deg, rgba(57, 50, 44, 0.88), rgba(45, 39, 34, 0.94));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 90px rgba(12, 9, 8, 0.3);
  backdrop-filter: blur(18px);
}

.home-page main section:first-child .section-head h2 {
  font-family: "Bodoni 72", Didot, Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.025em;
}

@media (max-width: 900px) {
  body.site-page,
  body.home-page,
  body:has(.menu-dropdown) {
    background-attachment: scroll;
    background-position: center top;
  }

  .home-page .hero-shell {
    min-height: 0;
    padding: 48px clamp(24px, 6vw, 48px) 110px;
  }

  .site-page:not(.home-page) .hero-shell {
    padding: 36px 28px 54px;
  }

  .category-page .hero-shell {
    min-height: 0;
  }

  .category-page .hero-shell h1 {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }

  .hero-shell {
    min-height: 0;
    padding: 26px;
    background:
      linear-gradient(180deg, rgba(24, 18, 15, 0.9) 0%, rgba(24, 18, 15, 0.7) 44%, rgba(24, 18, 15, 0.28) 100%),
      var(--page-hero-image, url("hero-cocina-premium.png")) var(--page-hero-position, center center) / cover no-repeat;
  }

  .hero-shell::after {
    inset: 14px;
    border-radius: 26px;
  }

  h1,
  .hero-shell h1,
  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .benefits-section {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card {
    flex-basis: 84%;
  }

  .menu-dropdown .container {
    padding: 7px 16px;
  }

  .dropdown-btn {
    padding: 8px 13px;
  }

  .navbar-logo {
    width: 145px;
  }

  .section-card {
    padding: 24px;
  }

  .premium-hero-actions {
    flex-direction: column;
  }

  .premium-hero-actions a {
    width: 100%;
  }

  .hero-copy {
    width: 72%;
    max-width: 620px;
  }

  .sector-contact.premium-contact-strip {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .content-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .hero-metrics,
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .home-page .hero-shell {
    padding: 40px 20px 94px;
  }

  .home-page main {
    margin-top: -48px;
  }

  .home-page main > .container {
    width: calc(100% - 24px);
  }

  .site-page:not(.home-page) .hero-shell {
    padding: 30px 8px 46px;
  }

  .category-page > header + main,
  .category-page main .hero-shell + .section-card {
    margin-top: -20px;
  }

  .category-page .hero-shell h1 {
    font-size: clamp(2.4rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .menu-dropdown .container {
    gap: 12px;
  }

  .navbar-logo {
    width: 130px;
  }

  .navbar-brand {
    height: 40px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .oven-feature-card {
    padding: 18px;
  }

  .oven-feature-card h3 {
    font-size: 1.08rem;
    line-height: 1.28;
  }

  .oven-feature-card__description {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .oven-feature-list {
    gap: 7px;
    font-size: 0.84rem;
  }

  .oven-feature-toggle {
    padding: 11px 14px;
    font-size: 0.84rem;
  }

  body {
    padding-bottom: 96px;
  }

  body[data-page="sobre-nosotros.html"] .hero-metrics,
  body[data-page="index.html"] .benefits-section .benefit-card:nth-child(3),
  body[data-page="index.html"] .benefits-section .benefit-card:nth-child(4) {
    display: none;
  }

  body[data-page="index.html"] .benefits-section {
    grid-template-columns: 1fr;
  }

  .contact-list {
    gap: 12px;
  }

  .contact-item,
  .sector-contact-card {
    padding: 14px;
    border-radius: 20px;
  }

  .sector-contact.premium-contact-strip {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-highlights span {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-actions {
    width: 100%;
  }

  .pill-link {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  footer {
    padding-bottom: 120px;
  }
}
