/* ==========================================================================
   LAD FLOORING — Design System
   Tipografía: Georgia Pro (regular / italic) con fallback a Georgia
   ========================================================================== */

@font-face {
  font-family: 'Georgia Pro';
  src: local('Georgia Pro'), local('GeorgiaPro-Regular');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia Pro';
  src: local('Georgia Pro Italic'), local('GeorgiaPro-Italic');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia Pro';
  src: local('Georgia Pro Bold'), local('GeorgiaPro-Bold');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Paleta de marca */
  --navy: #1D3A47;
  --navy-deep: #14282F;
  --steel-blue: #82A6B3;
  --powder-blue: #C3DBE0;
  --cream: #F1ECE0;
  --dusty-rose: #E7D6CE;
  --gold: #B98950;

  --ink: #1D3A47;
  --bg: #FBF9F5;
  --white: #FFFFFF;
  --border: #E3DCCE;

  --font-serif: 'Georgia Pro', Georgia, 'Times New Roman', serif;

  --container: 1200px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-full: 999px;
  --shadow-soft: 0 20px 45px rgba(20, 40, 47, 0.16);
  --shadow-card: 0 10px 26px rgba(29, 58, 71, 0.10);
  --shadow-float: 0 24px 60px rgba(20, 40, 47, 0.30);
  --shadow-btn: 0 10px 24px rgba(185, 137, 80, 0.35);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-serif);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--space-2);
  line-height: 1.15;
  letter-spacing: 0.3px;
}
h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--space-2); color: #3C5763; }

em, .italic { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: var(--space-1);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

.section { padding: var(--space-6) 0; }
.section-tight { padding: var(--space-5) 0; }
.section-header { max-width: 640px; margin: 0 auto var(--space-4); text-align: center; }
.section-header p { color: #5C7784; }

.bg-navy { background: var(--navy); color: var(--cream); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--cream); }
.bg-navy p { color: var(--powder-blue); }
.bg-cream { background: var(--cream); }
.bg-rose { background: var(--dusty-rose); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--white); box-shadow: var(--shadow-btn); }
.btn-primary:hover { background: #a5763f; box-shadow: 0 16px 32px rgba(185, 137, 80, 0.42); }
.btn-outline { background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy { background: var(--navy); color: var(--cream); box-shadow: 0 10px 24px rgba(20,40,47,0.28); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-whatsapp { background: #3d8a5c; color: #fff; box-shadow: 0 10px 22px rgba(61,138,92,0.35); }
.btn-whatsapp:hover { background: #316f49; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn[disabled]:hover { transform: none; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-deep);
  color: var(--powder-blue);
  font-size: 0.8rem;
  letter-spacing: 0.4px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.topbar a { color: var(--cream); }
.topbar-contact { display: flex; gap: var(--space-3); align-items: center; }
.topbar-contact span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-card);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: var(--space-3);
}
.brand { flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.main-nav { display: flex; gap: var(--space-4); }
.main-nav a {
  font-size: 0.95rem;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
}
.main-nav a.active, .main-nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--cream);
  transition: background 0.2s;
}
.icon-btn:hover { background: rgba(255,255,255,0.12); }
.icon-btn svg { width: 21px; height: 21px; }
@media (max-width: 480px) {
  .site-header .container { gap: 10px; }
  .brand img { height: 30px; }
  .header-actions { gap: 4px; }
  .header-actions .btn-sm { padding: 7px 11px; font-size: 0.76rem; }
  .icon-btn { width: 32px; height: 32px; }
  .icon-btn svg { width: 18px; height: 18px; }
}
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  min-width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: Arial, sans-serif;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Placeholders fotográficos (a reemplazar por fotos reales) ---------- */
.ph { position: relative; background-size: cover; background-position: center; }
/* Fotos reales subidas por el admin: se muestran completas, sin recortar (letterbox blanco) */
.ph.has-photo { background-size: contain; background-repeat: no-repeat; background-color: var(--white); }
.ph-1 { background: repeating-linear-gradient(120deg, #26485A 0 26px, #1D3A47 26px 52px); }
.ph-2 { background: repeating-linear-gradient(120deg, #8FB0BC 0 26px, #6E939F 26px 52px); }
.ph-3 { background: repeating-linear-gradient(120deg, #CBA876 0 26px, #B98950 26px 52px); }
.ph-4 { background: repeating-linear-gradient(120deg, #ECE0D6 0 26px, #E7D6CE 26px 52px); }
.ph-5 { background: repeating-linear-gradient(120deg, #3E5F6C 0 26px, #2E4C58 26px 52px); }
.ph-tag {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(20,40,47,0.6); color: #fff;
  font-size: 0.62rem; font-style: italic; letter-spacing: 0.6px;
  text-transform: uppercase; padding: 5px 11px; border-radius: 20px;
  pointer-events: none;
}

/* ---------- Hero / Carrusel ---------- */
.hero-wrap { position: relative; }
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-stat {
  bottom: -34px;
  right: 64px;
  min-width: 210px;
}
@media (max-width: 700px) {
  .hero-stat { right: 50%; transform: translateX(50%); bottom: -78px; text-align: center; min-width: 180px; padding: 12px 18px; }
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-slide.active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,40,47,0.82) 5%, rgba(20,40,47,0.25) 55%, rgba(20,40,47,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: var(--space-6) var(--space-3) var(--space-5);
  max-width: 640px;
  text-align: center;
}
.hero-content .eyebrow { color: var(--powder-blue); }
.hero-content h1 { color: var(--cream); }
.hero-content p { color: var(--powder-blue); font-size: 1.1rem; }
.hero-dots {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid var(--cream);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hero-dots button.active { background: var(--cream); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; background: rgba(241,236,224,0.15);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(241,236,224,0.5);
  color: var(--cream);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20,40,47,0.25);
}

/* ---------- Profundidad: glass, blobs y tarjetas flotantes ---------- */
.glass {
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-float);
}
.glass-dark {
  background: rgba(20,40,47,0.55);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: var(--shadow-float);
}
.floating-badge {
  position: absolute;
  border-radius: var(--radius);
  padding: 16px 20px;
  z-index: 4;
  animation: lad-float 5s ease-in-out infinite;
}
.floating-badge strong { display: block; font-size: 1.5rem; color: var(--navy); line-height: 1; }
.floating-badge.glass-dark strong { color: var(--cream); }
.floating-badge span { font-size: 0.78rem; color: #5C7784; letter-spacing: 0.3px; }
.floating-badge.glass-dark span { color: var(--powder-blue); }
@keyframes lad-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.media-stack { position: relative; }
.media-stack .ph { position: relative; z-index: 1; }
.media-stack::after {
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold), var(--dusty-rose));
  z-index: 0;
  opacity: 0.5;
}
.bg-blob { position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; pointer-events: none; opacity: 0.5; }
.section-decorated { position: relative; overflow: hidden; }
.section-decorated > .container { position: relative; z-index: 1; }
.hero-arrow:hover { background: rgba(241,236,224,0.3); }
.hero-arrow.prev { left: var(--space-3); }
.hero-arrow.next { right: var(--space-3); }

/* ---------- Grillas / Tarjetas ---------- */
.grid { display: grid; gap: var(--space-3); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  isolation: isolate;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.category-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,40,47,0.85), rgba(20,40,47,0.05) 60%);
  z-index: -1;
}
.category-card .cc-body { padding: var(--space-3); width: 100%; }
.category-card h3 { color: var(--cream); margin-bottom: 4px; }
.category-card span { font-size: 0.85rem; color: var(--powder-blue); font-style: italic; }
.category-card:hover h3 { color: var(--gold); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card-img { height: 220px; background-size: cover; background-position: center; }
.card-body { padding: var(--space-3); flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 0.92rem; flex: 1; }
.card-footer { padding: 0 var(--space-3) var(--space-3); display: flex; justify-content: space-between; align-items: center; gap: 10px; }

.price { font-size: 1.2rem; color: var(--navy); font-weight: 700; font-family: Georgia, serif;}
.price-old { text-decoration: line-through; color: #9AA9AE; font-size: 0.9rem; margin-right: 6px; }

.badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.badge-outline { background: transparent; border: 1px solid var(--steel-blue); color: var(--steel-blue); }

/* ---------- Formularios ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  max-width: 460px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: var(--space-2); }
.field label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--steel-blue);
  background: var(--white);
}
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: #3C5763; }
.checkbox-row input { margin-top: 3px; }
.form-foot { text-align: center; margin-top: var(--space-3); font-size: 0.9rem; color: #5C7784; }
.form-error { color: #A94442; font-size: 0.82rem; margin-top: 4px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #A94442; }
.field.has-error .form-error { display: block; }

.btn-lg { padding: 18px 30px; font-size: 1.05rem; letter-spacing: 1px; }

/* ---------- Pills de selección (módulos de interés) ---------- */
.pill-options { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-option {
  padding: 11px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill-option:hover { border-color: var(--steel-blue); }
.pill-option.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
  box-shadow: 0 8px 18px rgba(29,58,71,0.25);
}

/* ---------- Zona de subida de archivos ---------- */
.dropzone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--bg);
}
.dropzone:hover, .dropzone.dragover {
  border-color: var(--gold);
  background: #FBF3E7;
}
.dropzone .dz-icon {
  width: 46px; height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.dropzone strong { color: var(--navy); }
.dropzone p { margin: 4px 0 0; font-size: 0.82rem; color: #8199a3; }
.dropzone-files { margin-top: 14px; text-align: left; }
.dropzone-files .dz-file {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.82rem; margin-bottom: 6px;
}
.dropzone-files .dz-file button { border: none; background: none; color: #A94442; cursor: pointer; font-size: 1rem; line-height: 1; }

/* ---------- Checkout stepper ---------- */
.checkout-stepper {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-card);
}
.stepper-item { display: flex; align-items: center; gap: 8px; color: #9AA9AE; }
.stepper-dot {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; flex-shrink: 0;
}
.stepper-label { font-size: 0.85rem; white-space: nowrap; }
.stepper-sep { color: var(--border); }
.stepper-item.active { color: var(--navy); }
.stepper-item.active .stepper-dot { background: var(--gold); border-color: var(--gold); color: #fff; }
.stepper-item.done { color: var(--navy); }
.stepper-item.done .stepper-dot { background: var(--navy); border-color: var(--navy); color: var(--cream); }
@media (max-width: 700px) {
  .stepper-label { display: none; }
  .checkout-stepper { gap: 6px; }
}

/* ---------- Carrito: tabla y panel de envío ---------- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; font-size: 0.78rem; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--navy); padding: 12px 10px; border-bottom: 2px solid var(--border);
}
.cart-table td { padding: 16px 10px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-row-remove { background: none; border: none; color: #A94442; cursor: pointer; font-size: 1.2rem; line-height: 1; }
.cart-actions-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding: 20px 0; }
.cart-coupon { display: flex; gap: 8px; }
.cart-coupon input { padding: 11px 16px; border: 1px solid var(--border); border-radius: var(--radius-full); font-family: var(--font-serif); min-width: 200px; }

.calc-envio, .totales-carrito {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
}
.totales-table { width: 100%; border-collapse: collapse; }
.totales-table td { padding: 12px 4px; border-bottom: 1px solid var(--border); vertical-align: top; }
.totales-table tr:last-child td { border-bottom: none; }
.totales-table .t-label { color: #5C7784; font-size: 0.88rem; }
.totales-table .t-value { text-align: right; font-weight: 600; color: var(--navy); }
.totales-table .t-total .t-label, .totales-table .t-total .t-value { font-size: 1.15rem; color: var(--navy); }
.shipping-radio { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 0.88rem; cursor: pointer; }

.split-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-auth .visual {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: var(--space-5) var(--space-5) 32px;
}
.split-auth .visual::after { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(20,40,47,0.88), rgba(20,40,47,0.15) 65%); }
.split-auth .visual .quote { position: relative; z-index: 1; color: var(--cream); font-style: italic; font-size: 1.3rem; max-width: 380px; }
.split-auth .panel { display: flex; align-items: center; justify-content: center; padding: var(--space-4); }
@media (max-width: 860px) {
  .split-auth { grid-template-columns: 1fr; }
  .split-auth .visual { min-height: 220px; padding: var(--space-3); }
  .split-auth .visual .floating-badge { display: none; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: var(--powder-blue); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: var(--space-4);
  padding: var(--space-5) 0 var(--space-4);
}
.footer-grid > div { min-width: 0; }
.site-footer a { overflow-wrap: anywhere; }
.site-footer h4 { color: var(--cream); font-size: 0.95rem; letter-spacing: 1px; margin-bottom: var(--space-2); }
.site-footer a { color: var(--powder-blue); display: block; margin-bottom: 8px; font-size: 0.9rem; }
.site-footer a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 12px; margin-top: var(--space-2); }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--steel-blue);
  display: flex; align-items: center; justify-content: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-2) 0;
  font-size: 0.8rem;
  text-align: center;
  color: #7E97A0;
}
.newsletter-form { display: flex; gap: 8px; margin-top: var(--space-1); }
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid var(--steel-blue);
  background: transparent;
  color: var(--cream);
  border-radius: var(--radius);
  font-family: var(--font-serif);
}
.newsletter-form input::placeholder { color: var(--powder-blue); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Galería de fotos (detalle de producto/servicio) ---------- */
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumb {
  width: 70px; height: 70px; border-radius: var(--radius-sm); cursor: pointer;
  border: 2px solid var(--border); background-size: contain; background-repeat: no-repeat;
  background-position: center; background-color: var(--white); flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--gold); }

/* ---------- Listas con viñetas (incluye / modo de uso) ---------- */
.includes-list { list-style: none; padding: 0; margin: 0; }
.includes-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; color: #3C5763; }
.includes-list li::before { content: '✓'; color: var(--gold); font-weight: bold; flex-shrink: 0; }

/* ---------- Breadcrumb / utilidades ---------- */
.breadcrumb { font-size: 0.85rem; color: #5C7784; padding: var(--space-2) 0; }
.breadcrumb a:hover { color: var(--gold); }
.divider { height: 1px; background: var(--border); margin: var(--space-4) 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-2 { gap: 16px; }
.tag-filters { display: flex; gap: 10px; margin-bottom: var(--space-4); flex-wrap: wrap; }
.tag-filters button {
  padding: 9px 20px;
  border-radius: 30px;
  border: 1px solid var(--steel-blue);
  background: transparent;
  color: var(--navy);
  font-family: var(--font-serif);
  cursor: pointer;
}
.tag-filters button.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.qty-box { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-full); overflow: hidden; }
.qty-box button { border: none; background: none; padding: 10px 16px; cursor: pointer; font-family: var(--font-serif); font-size: 1rem; }
.qty-box button:hover { background: var(--cream); }
.qty-box input { width: 46px; text-align: center; border: none; background: transparent; font-family: var(--font-serif); font-size: 1rem; }

/* ---------- Empty / mobile menu ---------- */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2) var(--space-3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
