/* ─────────────────────────────────────────────
   DESIGN SYSTEM
───────────────────────────────────────────── */
:root {
  --bg:          #0B0906;
  --bg-2:        #130E09;
  --surface:     #1A1209;
  --surface-2:   #211710;
  --surface-3:   #2A1D12;
  --border:      #3D2A18;
  --border-lt:   #5C3F22;

  --red:         #8B1A1A;
  --red-hover:   #A31F1F;
  --gold:        #D4BA8E;
  --gold-lt:     #E8D5B0;
  --gold-dim:    #8A7252;
  --gold-glow:   rgba(212,186,142,0.18);
  --red-glow:    rgba(139,26,26,0.20);

  --text:        #EFE4CC;
  --text-md:     #B8A07A;
  --text-dim:    #6B5133;
  --text-ghost:  rgba(239,228,204,0.07);

  --f-serif:     'Cormorant Garamond', Georgia, serif;
  --f-sans:      'DM Sans', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --r:           3px;
}

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

html { scroll-behavior: smooth; }

body {
  background: #0B0906;
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Grain overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-lt); border-radius: 3px; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s;
}
header.scrolled {
  background: rgba(11,9,6,0.93);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 128px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.1) drop-shadow(0 3px 12px rgba(139,26,26,0.65));
  transition: filter 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.nav-logo-img:hover {
  filter: brightness(1.15) contrast(1.1) drop-shadow(0 4px 18px rgba(139,26,26,0.85));
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-md);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border-lt);
  border-radius: var(--r);
  background: transparent;
  color: var(--text-md);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.cart-count-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform 0.2s var(--ease-out);
}
.cart-count-badge.bump { transform: scale(1.4); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
#inicio {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
}
.page-bg-left,
.page-bg-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 55%;
  filter: grayscale(1) contrast(1.5) brightness(0.60);
}
.page-bg-left {
  left: 0;
  background-image: url('Fondo papi.webp');
  background-size: cover;
  background-position: 85% 55%;
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 90%);
  mask-image: linear-gradient(to right, black 40%, transparent 90%);
}
.page-bg-right {
  right: 0;
  background-image: url('fondo papi 2.webp');
  background-size: cover;
  background-position: 45% 5%;
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 90%);
  mask-image: linear-gradient(to left, black 40%, transparent 90%);
}

.hero-ember {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 110%, rgba(139,26,26,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 45% 30% at 50% 100%, rgba(139,26,26,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0,0,0,0.75) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(11,9,6,0.55) 0%, transparent 35%, transparent 60%, rgba(11,9,6,0.80) 100%);
  animation: emberPulse 6s ease-in-out infinite;
}
@keyframes emberPulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-serif);
  font-size: clamp(12rem, 22vw, 24rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,146,42,0.06);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 68px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.2s var(--ease-out) both;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--f-serif);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.9s 0.35s var(--ease-out) both;
  line-height: 1;
}
.hero-title .ht-top {
  display: block;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold-lt);
}
.hero-title .ht-bottom {
  display: block;
  font-size: clamp(0.8rem, 1.8vw, 1.15rem);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 1.75rem;
}
.hero-subtitle {
  margin-top: 1.6rem;
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  color: var(--gold);
}
.hero-product-line {
  margin-top: 0.7rem;
  font-family: var(--f-sans);
  font-size: max(15px, clamp(0.85rem, 1.5vw, 1.1rem));
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

.hero-desc {
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-md);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.9s 0.5s var(--ease-out) both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.65s var(--ease-out) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--red);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,26,26,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--text-md);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--border-lt);
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--text-md);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: fadeUp 1s 1s var(--ease-out) both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollDrop 2s 1.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─────────────────────────────────────────────
   SECTION COMMON
───────────────────────────────────────────── */
.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}
.section-label span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-label-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold-dim);
}
.section-title {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title strong { font-weight: 600; }

/* ─────────────────────────────────────────────
   PRODUCTS
───────────────────────────────────────────── */
#productos {
  padding: 7rem 0;
  background: rgba(11,9,6,0.72);
}

.category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
}

.product-card {
  background: var(--surface);
  padding: 2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s var(--ease-out);
  border: 1px solid transparent;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.product-card:hover {
  background: var(--surface-2);
  z-index: 1;
  border-color: var(--border);
}
.product-card:hover::before { transform: scaleX(1); }

.product-card.featured {
  grid-column: span 2;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.product-card.featured::after {
  content: 'ESTRELLA';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.2rem 0.6rem;
}

.product-category {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.product-card:hover .product-category { color: var(--gold); }

.product-photo {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.25rem;
  height: 180px;
  overflow: hidden;
  position: relative;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.15) contrast(1.1) brightness(0.88);
  transition: transform 0.6s var(--ease-out), filter 0.4s;
  display: block;
}
.product-card:hover .product-photo img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.05) brightness(0.95);
}
.product-card.featured .product-photo { height: 240px; }

.product-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  opacity: 0.7;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.product-card:hover .product-icon {
  transform: scale(1.1);
  opacity: 1;
}

.product-name {
  font-family: var(--f-serif);
  font-size: max(15px, 1.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.product-card.featured .product-name { font-size: 2.2rem; }

.product-desc {
  font-size: 0.82rem;
  color: var(--text-md);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.product-reference {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: var(--text-dim);
  font-size: 0.72rem;
  line-height: 1.45;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin: -0.55rem 0 1.15rem;
}
.product-reference i {
  color: var(--gold-dim);
  font-size: 0.72rem;
  margin-top: 0.12rem;
}

.catalog-weight-note {
  max-width: 760px;
  margin: -1rem 0 2rem;
  color: var(--text-md);
  font-size: 0.82rem;
  line-height: 1.65;
  border-left: 2px solid var(--gold-dim);
  padding: 0.85rem 1rem;
  background: rgba(212,186,142,0.05);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.product-price {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: -0.01em;
  line-height: 1;
}
.product-price sub {
  font-size: 0.7rem;
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  vertical-align: baseline;
  margin-left: 2px;
}

.add-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-lt);
  background: transparent;
  color: var(--text-md);
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.add-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139,26,26,0.35);
}
.add-btn i { font-size: 0.7rem; }
.product-add-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.kg-input {
  width: 56px;
  background: var(--surface-3);
  border: 1px solid var(--border-lt);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 0.82rem;
  padding: 0.45rem 0.4rem;
  border-radius: var(--r);
  text-align: center;
  appearance: textfield;
  -moz-appearance: textfield;
}
.kg-input::-webkit-inner-spin-button,
.kg-input::-webkit-outer-spin-button { opacity: 1; }
.kg-input:focus { outline: none; border-color: var(--gold); }

/* ─────────────────────────────────────────────
   DIVIDER STAMP
───────────────────────────────────────────── */
.stamp-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  position: relative;
}
.stamp-divider::before, .stamp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, var(--border));
}
.stamp-divider::before { --dir: right; }
.stamp-divider::after  { --dir: left; }
.stamp {
  width: 110px;
  height: 110px;
  border: 2px solid var(--border-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  margin: 0 2rem;
  position: relative;
  background: var(--bg);
}
.stamp-inner {
  text-align: center;
}
.stamp-inner .stamp-name {
  font-family: var(--f-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-md);
  text-transform: uppercase;
}
.stamp-inner .stamp-year {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
}
.stamp-inner .stamp-place {
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.vol-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.vol-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.vol-tier {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1.5rem;
}
.vol-tier-highlight .vol-label { color: var(--gold-lt); }
.vol-tier-highlight .vol-icon  { color: var(--gold); }
.vol-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}
.vol-icon { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 0.35rem; }
.vol-label {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.vol-sub { font-size: 0.72rem; color: var(--text-dim); line-height: 1.4; }

@media (max-width: 600px) {
  .vol-grid { flex-direction: column; gap: 1rem; }
  .vol-sep { width: 60px; height: 1px; }
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
#nosotros {
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-pull-quote {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--text);
  padding-left: 2rem;
  border-left: 2px solid var(--red);
}
.about-pull-quote em {
  color: var(--gold);
  font-style: italic;
}

.about-body { }
.about-body p {
  font-size: 0.92rem;
  color: var(--text-md);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.about-body p strong { color: var(--text); font-weight: 500; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-item { }
.stat-number {
  font-family: var(--f-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.b2b-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.b2b-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-md);
}
.b2b-list li i {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .b2b-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─────────────────────────────────────────────
   PROCESS BAND
───────────────────────────────────────────── */
.process-band {
  padding: 4rem 0;
  background: rgba(11,9,6,0.60);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.process-step:last-child { border-right: none; }
.process-num {
  font-family: var(--f-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--text-ghost);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.process-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.process-step-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.75rem;
  border: 1px solid var(--border-lt);
}
.process-step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.1) brightness(0.85);
  transition: transform 0.5s var(--ease-out), filter 0.4s;
}
.process-step:hover .process-step-photo img {
  transform: scale(1.1);
  filter: grayscale(0) contrast(1.05) brightness(0.9);
}
.process-name {
  font-family: var(--f-serif);
  font-size: max(15px, 1.1rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.delivery-title {
  font-family: var(--f-serif);
  font-size: max(15px, 1rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.process-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: zoom-in;
}
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.08) brightness(0.80);
  transition: transform 0.55s var(--ease-out), filter 0.4s;
  display: block;
}
.gal-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0) contrast(1.05) brightness(0.90);
}
.gal-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-md);
  background: linear-gradient(to top, rgba(11,9,6,0.75), transparent);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}
.gal-item:hover .gal-caption { transform: translateY(0); }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-tall { grid-row: span 1; }
  .gal-wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-wide, .gal-tall { grid-column: span 1; grid-row: span 1; }
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
#contacto {
  padding: 7rem 0;
  background: rgba(11,9,6,0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { }
.contact-address {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-md);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-md);
}
.contact-item i {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.contact-item a { color: var(--text-md); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }

.social-row {
  display: flex;
  gap: 0.75rem;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--border-lt);
  border-radius: var(--r);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-md);
  transition: all 0.2s;
}
.social-btn:hover {
  color: var(--text);
  border-color: var(--text-md);
  background: var(--text-ghost);
}
.social-btn i { font-size: 0.9rem; }

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--surface);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(0.9) contrast(0.9);
  display: block;
}

/* ─────────────────────────────────────────────
   CART SIDEBAR
───────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-head {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-head h3 {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
}
.close-btn {
  width: 32px; height: 32px;
  border: 1px solid var(--border-lt);
  background: transparent;
  color: var(--text-md);
  border-radius: var(--r);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 1rem;
}
.close-btn:hover { border-color: var(--text-md); color: var(--text); }

.cart-items-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 2rem;
}
.cart-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-dim);
}
.cart-empty i { font-size: 2rem; margin-bottom: 1rem; display: block; opacity: 0.4; }
.cart-empty p { font-size: 0.85rem; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.3s var(--ease-out);
}
.cart-item-icon {
  width: 50px; height: 50px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--f-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 2px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--border-lt);
  background: transparent;
  color: var(--text-md);
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.15s;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num {
  font-size: 0.85rem;
  color: var(--text);
  min-width: 20px;
  text-align: center;
}

.cart-foot {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
}
.cart-total-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-md);
}
.cart-total-amount {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-lt);
}
.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--red);
  color: var(--text);
  border: none;
  border-radius: var(--r);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.2s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.checkout-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%);
}
.checkout-btn:hover {
  background: var(--red-hover);
  box-shadow: 0 6px 20px rgba(139,26,26,0.4);
}

/* ─────────────────────────────────────────────
   PAYPHONE MODAL
───────────────────────────────────────────── */
.pp-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pp-modal.open { opacity: 1; pointer-events: all; }
.pp-box {
  background: var(--bg-2);
  border: 1px solid var(--border-lt);
  border-radius: var(--r);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
}
.pp-box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.pp-box-head h3 {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 400;
}
.pp-secure {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: var(--text-dim);
}
.pp-secure i { margin-right: 0.3rem; }

/* ─────────────────────────────────────────────
   CHECKOUT FORM MODAL
───────────────────────────────────────────── */
.co-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.co-modal.open { opacity: 1; pointer-events: all; }
.co-box {
  background: var(--bg-2);
  border: 1px solid var(--border-lt);
  border-radius: var(--r);
  padding: 2rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
}
.co-box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.co-box-head h3 { font-family: var(--f-serif); font-size: 1.4rem; font-weight: 400; }
.co-field { margin-bottom: 1rem; }
.co-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-md);
  margin-bottom: 0.4rem;
}
.co-field input,
.co-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.co-field input:focus,
.co-field textarea:focus { border-color: var(--gold-dim); }
.co-field textarea { resize: vertical; min-height: 70px; }
.co-tipo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1rem; }
.co-tipo-btn {
  padding: 0.75rem 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-md);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  line-height: 1.5;
}
.co-tipo-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.co-gps-row { display: flex; gap: 0.5rem; align-items: center; }
.co-gps-row input { flex: 1; }
.co-gps-btn {
  flex-shrink: 0;
  padding: 0.65rem 0.85rem;
  background: var(--surface-2);
  border: 1px solid var(--border-lt);
  border-radius: var(--r);
  color: var(--text-md);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.co-gps-btn:hover { border-color: var(--gold-dim); color: var(--gold); }
.co-gps-link { font-size: 0.7rem; color: var(--gold-dim); margin-top: 0.3rem; }
.co-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--red);
  border: none;
  border-radius: var(--r);
  color: #fff;
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1.25rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.co-submit-btn:hover { background: var(--red-hover); box-shadow: 0 6px 20px rgba(139,26,26,0.4); }
.co-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.co-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }

/* ─────────────────────────────────────────────
   FLOATING WHATSAPP
───────────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: #128C7E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(18,140,126,0.4);
}

/* ─────────────────────────────────────────────
   TOAST
───────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface-3);
  border: 1px solid var(--border-lt);
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  font-size: 0.8rem;
  color: var(--text);
  z-index: 2000;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast i { color: var(--gold); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: rgba(11,9,6,0.82);
  padding: 3rem 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand .footer-name {
  font-family: var(--f-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.footer-brand .footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: right;
}

/* ─────────────────────────────────────────────
   INSTAGRAM FEED
───────────────────────────────────────────── */
.ig-section {
  padding: 5rem 0 4rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.ig-header {
  max-width: 1280px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.ig-header-left .ig-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ig-header-left h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.01em;
}
.ig-header-left h2 em { font-style: italic; color: var(--gold); }
.ig-handle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--border-lt);
  border-radius: 2rem;
  color: var(--text-md);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.ig-handle-btn:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
  background: var(--gold-glow);
}
.ig-track-wrap {
  overflow-x: auto;
  padding: 0 2rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-lt) transparent;
  -webkit-overflow-scrolling: touch;
}
.ig-track-wrap::-webkit-scrollbar { height: 4px; }
.ig-track-wrap::-webkit-scrollbar-track { background: transparent; }
.ig-track-wrap::-webkit-scrollbar-thumb { background: var(--border-lt); border-radius: 2px; }
.ig-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.ig-card {
  position: relative;
  width: 260px;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  flex-shrink: 0;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.ig-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.ig-card:hover img { transform: scale(1.06); }
.ig-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(11,9,6,0.92) 0%,
    rgba(11,9,6,0.3) 45%,
    transparent 70%);
  pointer-events: none;
}
.ig-caption-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,9,6,0.82);
  display: flex;
  align-items: center;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.ig-card:hover .ig-caption-overlay { opacity: 1; }
.ig-caption-text {
  font-size: 0.73rem;
  color: var(--text-md);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ig-card-foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.ig-card-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.ig-card-icon {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.ig-card:hover .ig-card-icon { color: var(--gold); }

.email-capture-section {
  padding: 5rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.email-capture-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.email-form {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.email-input {
  padding: 0.75rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border-lt);
  border-radius: var(--r);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 0.85rem;
  width: 260px;
  transition: border-color 0.2s;
}
.email-input::placeholder { color: var(--text-dim); }
.email-input:focus { outline: none; border-color: var(--gold); }
.email-sub-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  background: var(--red);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.email-sub-btn:hover { background: var(--red-hover); transform: translateY(-1px); }
@media (max-width: 700px) {
  .email-capture-inner { flex-direction: column; align-items: flex-start; }
  .email-form { flex-direction: column; width: 100%; }
  .email-input { width: 100%; }
  .email-sub-btn { justify-content: center; }
}

/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */

/* ── Hamburger menu ── */
.hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-lt);
  border-radius: var(--r);
  color: var(--text-md);
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.hamburger-btn:hover { color: var(--gold); border-color: var(--gold); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(11,9,6,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 5rem 2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
}
.mobile-nav a {
  font-size: 1.5rem;
  font-family: var(--f-serif);
  font-weight: 300;
  color: var(--text-md);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
  nav { height: 96px; padding: 0 1.5rem; }
  .nav-logo-img { height: 80px; }
  .nav-links { display: none; }
  .hamburger-btn { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3), .process-step:nth-child(4) {
    border-top: 1px solid var(--border);
  }
  .product-card.featured { grid-column: span 1; }
}

/* ── Móvil (≤600px) ── */
@media (max-width: 600px) {
  /* Nav y logo */
  nav { height: 68px; padding: 0 1rem; gap: 0.75rem; }
  .nav-logo-img { height: 54px; }
  .cart-btn { padding: 0.4rem 0.75rem; font-size: 0.65rem; }

  /* Fondo: fotos apiladas verticalmente */
  .page-bg-left,
  .page-bg-right {
    width: 100%;
    height: 55%;
  }
  .page-bg-left {
    top: 0; left: 0;
    background-position: 50% 50%;
    -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 92%);
    mask-image: linear-gradient(to bottom, black 45%, transparent 92%);
  }
  .page-bg-right {
    top: 45%; right: auto; left: 0;
    background-position: 50% 15%;
    -webkit-mask-image: linear-gradient(to top, black 45%, transparent 92%);
    mask-image: linear-gradient(to top, black 45%, transparent 92%);
  }

  /* Hero */
  .hero-title .ht-top { font-size: 2.6rem; }
  .hero-title .ht-bottom { font-size: 0.68rem; letter-spacing: 0.28em; }

  /* Secciones */
  #productos, #nosotros, #contacto { padding: 4rem 0; }
  .process-band { padding: 3rem 0; }
  .products-grid { grid-template-columns: 1fr; gap: 1px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-copy { text-align: left; }
}

/* ── Móvil pequeño (≤400px) ── */
@media (max-width: 400px) {
  nav { height: 60px; }
  .nav-logo-img { height: 46px; }
  .hero-title .ht-top { font-size: 2.1rem; }
  .hero-title .ht-bottom { font-size: 0.62rem; letter-spacing: 0.22em; }
}

/* ─── DÍA DE LAS MADRES — TABLITAS ────────────────────────── */
.dm-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: #070302;
}
.dm-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 72% 50%, rgba(139,26,26,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 60% 90% at 8% 85%, rgba(212,186,142,0.05) 0%, transparent 55%);
  pointer-events: none;
}
.dm-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.dm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,186,142,0.3);
  border-radius: 2px;
  padding: 0.32rem 0.85rem;
  margin-bottom: 1.8rem;
}
.dm-title {
  font-family: var(--f-serif);
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.dm-title em { font-style: italic; color: var(--gold); }
.dm-sub {
  font-size: 0.93rem;
  color: var(--text-md);
  line-height: 1.85;
  max-width: 42ch;
  margin-bottom: 1.6rem;
}
.dm-chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.dm-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.7rem;
  color: var(--text-md);
  background: rgba(212,186,142,0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.28rem 0.72rem;
  white-space: nowrap;
}
.dm-chip i { color: var(--gold); font-size: 0.6rem; }
.dm-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}
.dm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #f5e8cc;
  padding: 0.85rem 1.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: var(--r);
  transition: background 0.2s var(--ease-out), transform 0.2s;
}
.dm-btn-primary:hover { background: var(--red-hover); transform: translateY(-1px); }
.dm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  border: 1px solid rgba(212,186,142,0.35);
  padding: 0.85rem 1.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--r);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.dm-btn-secondary:hover { border-color: var(--gold); color: var(--gold-lt); transform: translateY(-1px); }
.dm-note {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.07em;
}
.dm-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dm-img-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(139,26,26,0.55) 0%, rgba(212,186,142,0.10) 50%, transparent 72%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(32px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
/* Wrapper circular — overflow:hidden recorta el zoom interno */
.dm-img-circle {
  position: relative;
  z-index: 1;
  width: 88%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(212,186,142,0.20),
    0 0 0 10px rgba(139,26,26,0.14),
    0 40px 100px rgba(0,0,0,0.88),
    0 0 80px rgba(139,26,26,0.28);
  transition: box-shadow 0.7s var(--ease-out);
}
.dm-img-wrap:hover .dm-img-circle {
  box-shadow:
    0 0 0 2px rgba(212,186,142,0.30),
    0 0 0 12px rgba(139,26,26,0.20),
    0 48px 110px rgba(0,0,0,0.92),
    0 0 100px rgba(139,26,26,0.38);
}
/* Imagen dentro del círculo — zoom para cortar justo en el filo negro */
.dm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transform: scale(1.14);
  transform-origin: center 45%;
  transition: transform 0.7s var(--ease-out);
}
.dm-img-wrap:hover .dm-img { transform: scale(1.18); }
@media (max-width: 900px) {
  .dm-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .dm-title { font-size: 2.6rem; }
  .dm-img-wrap { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
}
@media (max-width: 600px) {
  .dm-section { padding: 4.5rem 0; }
  .dm-wrap { padding: 0 1.25rem; gap: 2.5rem; }
  .dm-title { font-size: 2.1rem; }
  .dm-actions { flex-direction: column; }
  .dm-btn-primary, .dm-btn-secondary { justify-content: center; }
  .dm-img-wrap { max-width: 300px; }
}
/* ── Legibilidad: texto de lectura cómodo en todos los dispositivos ── */
body { font-size: 17px; }
p, li, label, input, select, textarea {
  font-size: max(15px, 1em) !important;
}
.nav-links a,
.cart-btn,
.btn-primary,
.btn-ghost,
.hero-eyebrow-text,
.hero-scroll-hint,
.section-eyebrow,
.section-label span,
.dm-badge,
.filter-btn,
.product-category,
.product-desc,
.product-reference,
.catalog-weight-note,
.product-price sub,
.vol-sub,
.cart-item-price,
.cart-total-label,
.stat-label,
.b2b-list li,
.process-desc,
.contact-item,
.social-btn,
.footer-brand .footer-tagline,
.footer-copy,
.ig-header-left .ig-label,
.ig-handle-btn,
.ig-caption-text,
.ig-card-name,
.gal-caption,
.testimonial-author,
.email-input,
.email-sub-btn,
.dm-chip,
.dm-note,
.delivery-description,
.co-field label span {
  font-size: max(15px, 0.95rem) !important;
}

/* ── Composición editorial: más aire y mejor distribución ── */
.hero-content {
  width: 100%;
  text-align: left;
}
.hero-title,
.hero-subtitle,
.hero-product-line,
.hero-desc {
  text-align: left;
}
.section-header {
  max-width: 780px;
  margin-left: 0;
  margin-right: auto;
  text-align: left !important;
}
.section-title,
.section-eyebrow {
  text-align: left;
}
.process-grid {
  text-align: left;
}
.process-step {
  text-align: left;
}
.process-step-photo {
  margin-left: 0;
  margin-right: 0;
}
.delivery-card {
  text-align: left !important;
}
.delivery-card > div:first-child {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ── Composición centrada: equilibrio, aire y separación ── */
.hero-content {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-title,
.hero-subtitle,
.hero-product-line,
.hero-desc {
  text-align: center;
}
.hero-desc {
  margin-left: auto;
  margin-right: auto;
}
.section-header {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}
.section-title,
.section-eyebrow {
  text-align: center;
}
.section-label {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.process-grid {
  column-gap: 1.5rem;
  text-align: center;
}
.process-step {
  text-align: center;
  padding: 2.25rem 1.5rem;
}
.process-step-photo {
  margin-left: auto;
  margin-right: auto;
}
.delivery-card {
  text-align: center !important;
  padding: 2rem 1.5rem !important;
}
.delivery-card > div:first-child {
  margin-left: auto !important;
  margin-right: auto !important;
}
#envios .section-wrap > div[style*="grid"] {
  gap: 2rem !important;
}

/* ── Enlaces a las páginas de categoría, en la home ───────────────────── */
.home-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.home-categorias a {
  font-family: var(--f-sans);
  font-size: max(13px, 0.8rem);
  letter-spacing: 0.06em;
  color: var(--text-md);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.45rem 0.95rem;
  transition: color 0.25s var(--ease-out), border-color 0.25s;
}
.home-categorias a:hover { color: var(--gold); border-color: var(--gold-dim); }
