/* ══════════════════════════════════════════════════════
   MARARE — style.css
   Luxury Jewelry · WhatsApp-first
══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════
   VARIABLES
══════════════════════════════ */
:root {
  --bg:       #faf8f5;
  --bg2:      #f5ede6;
  --bg3:      #ede0d4;
  --beige:    #f0e8dc;
  --cream:    #fdf9f4;
  --wine:     #6b1a1a;
  --wine-d:   #4a1111;
  --wine-l:   #8a2424;
  --gold:     #c9a96e;
  --gold-l:   #dfc08a;
  --dark:     #2a1a0e;
  --text:     #3a2418;
  --muted:    #8a7262;
  --soft:     #b5a494;
  --border:   #e4d8cc;
  --border2:  #d4c4b0;
  --white:    #ffffff;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════
   RESET & BASE
══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); overflow-x: hidden; font-family: 'Manrope', sans-serif; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }
img { max-width: 100%; height: auto; display: block; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/* ══════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════ */
.container { max-width: 1360px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ══════════════════════════════
   IMAGE SYSTEM
══════════════════════════════ */
.img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.ph {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(201,169,110,.05) 10px, rgba(201,169,110,.05) 20px
  );
}
.ph-lbl {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #8B6914;
  text-align: center;
  line-height: 1.7;
  padding: 0 12px;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  white-space: pre-line;
}
.ph-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--gold);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .2em;
  padding: 3px 9px;
  text-transform: uppercase;
  z-index: 2;
}
.ph-badge-fav {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--wine);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .18em;
  padding: 4px 10px;
  text-transform: uppercase;
  z-index: 2;
}
.ph-badge-new {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--dark);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .18em;
  padding: 4px 10px;
  text-transform: uppercase;
  z-index: 2;
}

.r-sq   { aspect-ratio: 1 / 1;  min-height: 180px; }
.r-pt   { aspect-ratio: 3 / 4;  min-height: 200px; }
.r-hero { aspect-ratio: 4 / 5;  min-height: 420px; }
.r-wide { aspect-ratio: 16 / 9; min-height: 180px; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: none;
  transition: all .38s var(--ease);
  cursor: pointer;
}
.btn-solid {
  background: var(--wine);
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 2px;
}
.btn-solid:hover {
  background: var(--wine-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(107,26,26,.28);
}
.btn-outline {
  background: transparent;
  color: var(--wine);
  padding: 13px 30px;
  border: 1px solid rgba(107,26,26,.4);
  border-radius: 2px;
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--cream);
  padding: 13px 30px;
  border: 1px solid rgba(245,230,200,.4);
  border-radius: 2px;
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 2px;
}
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(201,169,110,.32);
}

/* ══════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════ */
#announce {
  background: var(--wine);
  padding: 9px 0;
  text-align: center;
  overflow: hidden;
}
#announce p {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--cream);
  text-transform: uppercase;
}
#announce span { color: var(--gold); margin: 0 12px; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all .4s;
}
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .32em;
  color: var(--dark);
}
.nav-logo-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--wine);
  transition: width .3s;
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-lang {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.lang-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  padding: 5px 11px;
  border: none;
  background: transparent;
  color: var(--muted);
  transition: all .3s;
  text-transform: uppercase;
}
.lang-btn.active { background: var(--gold); color: #fff; }

.nav-wa-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--wine);
  color: var(--cream);
  padding: 9px 18px;
  border-radius: 2px;
  transition: all .38s var(--ease);
  white-space: nowrap;
}
.nav-wa-btn:hover {
  background: var(--wine-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(107,26,26,.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--dark);
  transition: all .38s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
#mobileNav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  will-change: transform;
  overflow: hidden;
}
#mobileNav.open { transform: translateX(0); }
.mobile-nav-links { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 28px; }
.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: .08em;
  transition: color .3s;
}
.mobile-nav-link:hover { color: var(--wine); }
.mobile-nav-wa {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--wine);
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 2px;
  transition: all .38s var(--ease);
}
.mobile-nav-wa:hover { background: var(--wine-d); }

/* ══════════════════════════════
   PRODUCT MODAL
══════════════════════════════ */
#modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(42,26,14,.55);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  backdrop-filter: blur(6px);
}
#modalOverlay.open { opacity: 1; pointer-events: all; }

#productModal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.96);
  width: min(960px, 94vw);
  max-height: 90vh;
  background: var(--cream);
  z-index: 1201;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all .45s var(--ease);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#productModal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}

.modal-gallery {
  background: var(--bg2);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 3px;
}
.modal-main-img { flex: 1; min-height: 320px; }
.modal-main-img img { object-fit: contain; background: var(--bg); }
.modal-thumbs { display: flex; gap: 3px; }

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(250,248,245,.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  z-index: 10;
  transition: all .3s;
  cursor: pointer;
}
.modal-close:hover { background: var(--wine); color: var(--cream); }

.modal-info {
  padding: 36px;
  overflow-y: auto;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.modal-category {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.modal-price {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.modal-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}
.modal-specs { margin-bottom: 22px; }
.modal-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .06em;
}
.modal-spec strong { color: var(--dark); font-weight: 600; min-width: 100px; }

.modal-colors { margin-bottom: 24px; }
.modal-colors-label {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 10px;
}
.color-opts { display: flex; gap: 8px; }
.color-opt {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
}
.color-opt.active { border-color: var(--wine); transform: scale(1.15); }

.modal-availability {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #3a7a3a;
  margin-bottom: 22px;
}

.modal-wa-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 17px 24px;
  background: var(--wine);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  margin-bottom: 12px;
  transition: all .4s var(--ease);
}
.modal-wa-cta:hover {
  background: var(--wine-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107,26,26,.22);
}
.modal-wa-arrow { font-size: 16px; opacity: .8; }

.modal-wa-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--soft);
  text-align: center;
  margin-top: auto;
}

/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
#hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 88vh;
  background: var(--bg);
}
.hero-left {
  position: relative;
  overflow: hidden;
  padding: 20px 0 20px 20px;
  background: var(--bg);
}

/* ── Marco editorial del video ── */
.hero-video-frame {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 56px rgba(0,0,0,.28),
    0 0 0 1px rgba(201,169,110,.14);
}

/* Video — limpio, sin filtros ni overlays */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  animation: heroFadeIn 1.4s ease 0.2s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Glass reflection — solo 4% opacidad, casi invisible */
.hero-video-shine {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(
    150deg,
    rgba(255,255,255,.045) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 2;
}

/* Fade lateral hacia el texto — sin tocar el video */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 68%, var(--bg) 100%);
  pointer-events: none;
}
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 48px;
}
.hero-right .section-label { animation: fadeUp 1s ease .3s both; }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 14px;
  animation: fadeUp 1.1s ease .5s both;
}
.hero-h1 em { font-style: italic; color: var(--wine); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 44px;
  max-width: 380px;
  animation: fadeUp 1s ease .7s both;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease .9s both;
}

/* ══════════════════════════════
   BENEFITS BAR
══════════════════════════════ */
#benefits {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.benefits-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 28px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}
.benefit-item:first-child { padding-left: 0; }
.benefit-item:last-child { border-right: none; }
.benefit-icon { color: var(--gold); flex-shrink: 0; display: flex; align-items: center; }
.benefit-text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 2px;
}
.benefit-text span {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: var(--muted);
}

/* ══════════════════════════════
   MARQUEE STRIP
══════════════════════════════ */
.marquee-strip {
  background: var(--wine);
  padding: 15px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,.2);
  border-bottom: 1px solid rgba(201,169,110,.2);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.m-item {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream);
  flex-shrink: 0;
}
.m-dot { color: var(--gold); font-size: 11px; }

/* ══════════════════════════════
   TIENDA / CATALOG
══════════════════════════════ */
#tienda { padding: 100px 0; }
.tienda-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.tienda-title-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
}
.filters-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-divider { width: 1px; height: 18px; background: var(--border); margin: 0 4px; flex-shrink: 0; }
.filter-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
  transition: all .3s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--cream);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}
.product-card {
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.product-card:hover { transform: translateY(-6px); }
.product-card-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  background: transparent;
}
.product-card-img .img-wrap {
  background: transparent;
}
.product-card-img .img-wrap img {
  object-fit: contain;
  background: transparent;
  transition: transform .6s var(--ease);
}
.product-card-img .ph {
  background: transparent;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card-img .img-wrap img,
.product-card:hover .product-card-img .ph {
  transform: scale(1.04);
}
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,18,18,.32);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  justify-content: stretch;
  padding: 12px;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.pc-quick {
  width: 100%;
  background: rgba(250,248,245,.95);
  border: none;
  padding: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wine);
  transition: all .3s;
  border-radius: 1px;
  cursor: pointer;
}
.pc-quick:hover { background: var(--wine); color: var(--cream); }
.product-card-info { text-align: center; padding-top: 12px; }
.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
  letter-spacing: .04em;
}
.product-card-note {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.product-card-price {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.product-card-dash {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: var(--soft);
}
.tienda-load-more { text-align: center; }

/* ══════════════════════════════
   BRAND STORY
══════════════════════════════ */
#nosotras { background: var(--wine); padding: 110px 0; overflow: hidden; }
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.brand-imgs {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  min-height: 520px;
}

/* ── Foto principal (café / collar rojo) ── */
.brand-img-main {
  width: 62%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  animation: float 7s ease-in-out infinite;
}
.brand-photo-main {
  aspect-ratio: 3 / 4;
  border-radius: 14px 14px 14px 14px;
}

/* ── Foto accent (blanca / close-up) ── */
.brand-img-accent {
  width: 46%;
  flex-shrink: 0;
  margin-left: -10%;
  margin-top: 15%;
  position: relative;
  z-index: 2;
  animation: float 7s ease-in-out 2.5s infinite;
}
.brand-photo-accent {
  aspect-ratio: 2 / 3;
  border-radius: 12px;
}

/* ── Contenedor foto base ── */
.brand-photo-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0,0,0,.45),
    0 0 0 1px rgba(201,169,110,.15);
}
.brand-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Sin overlay — fotos limpias */

.brand-img-1 { animation: float 7s ease-in-out infinite; }
.brand-img-2 { animation: float 7s ease-in-out 2.5s infinite; }
.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 26px;
}
.brand-p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,230,200,.72);
  margin-bottom: 16px;
}
.brand-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.7;
  margin-bottom: 44px;
}
.brand-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 44px;
}
.brand-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(201,169,110,.15);
}
.brand-badge-icon { color: var(--gold); display: flex; align-items: center; flex-shrink: 0; }
.brand-badge-txt {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,230,200,.78);
}

/* ══════════════════════════════
   EDITORIAL
══════════════════════════════ */
#editorial { padding: 100px 0; background: var(--beige); overflow: hidden; }
.editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Video principal */
.ed-main { height: 100%; }
.ed-video-wrap {
  height: 100%;
  min-height: 560px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,.2);
}
.ed-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fotos apiladas */
.ed-secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.ed-photo-wrap {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,.15);
  min-height: 0;
}
.ed-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════
   AMBASSADOR CATALOGS
══════════════════════════════ */
#catalogo-embajadoras { padding: 100px 0; background: var(--bg); overflow-x: clip; }
.cat-emb-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.cat-emb-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.cat-emb-note {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 20px;
  padding: 16px;
  background: var(--bg2);
  border-left: 2px solid var(--gold);
}
.phone-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.phone-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.phone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(42,26,14,.12);
}
.phone-mockup { width: 100%; position: relative; padding: 10px; background: var(--bg2); }
.phone-frame {
  background: var(--dark);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 16;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 28%; height: 6px;
  background: var(--dark);
  border-radius: 0 0 8px 8px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--bg2);
}
.phone-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.phone-card-body { padding: 18px 16px; width: 100%; text-align: center; }
.phone-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 3px;
  letter-spacing: .06em;
}
.phone-card-handle {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: 14px;
}
.phone-card-btns { display: flex; flex-direction: column; gap: 6px; }
.phone-cat-btn {
  background: var(--wine);
  color: var(--cream);
  border: none;
  padding: 9px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s;
  width: 100%;
  cursor: pointer;
}
.phone-cat-btn:hover { background: var(--wine-d); transform: translateY(-1px); }
.phone-wa-btn {
  background: transparent;
  color: var(--wine);
  border: 1px solid rgba(107,26,26,.3);
  padding: 8px 18px;
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  transition: all .3s;
  cursor: pointer;
}
.phone-wa-btn:hover { background: var(--wine); color: var(--cream); }

/* ══════════════════════════════
   B2B + AMBASSADOR CTA
══════════════════════════════ */
#b2b-ambassador { padding: 100px 0; background: var(--bg2); overflow-x: clip; }
.b2a-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.b2a-card {
  position: relative;
  overflow: hidden;
  padding: 64px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 480px;
}
.b2a-card-1 { background: var(--cream); }
.b2a-card-2 { background: var(--wine); }
.b2a-content { display: flex; flex-direction: column; }
.b2a-media { display: flex; flex-direction: column; align-items: flex-start; }

/* ── Ambassador editorial frame ── */
/* ── Ambassador editorial frame — sin fondo, máscara blob pura ── */
.amb-editorial-wrap {
  width: 100%;
  max-width: 280px;
  margin-bottom: 28px;
  background: transparent;
  padding: 0;
}
.amb-editorial-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 62% 38% 54% 46% / 48% 52% 48% 52%;
  overflow: hidden;
  background: transparent;
  /* Glow muy sutil — sin borde visible */
  box-shadow:
    0 20px 50px rgba(0,0,0,.35),
    0 0 30px 6px rgba(60,10,10,.3);
  animation: ambFloat 8s ease-in-out infinite;
}
.amb-editorial-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 20%;
  display: block;
  transform: scale(1.3);
  transform-origin: 52% 30%;
  transition: transform .8s ease;
}
.amb-editorial-frame:hover img {
  transform: scale(1.36);
  transform-origin: 52% 30%;
}
@keyframes ambFloat {
  0%, 100% { transform: translateY(0px)  rotate(0deg);    border-radius: 62% 38% 54% 46% / 48% 52% 48% 52%; }
  33%       { transform: translateY(-6px) rotate(.5deg);  border-radius: 54% 46% 38% 62% / 52% 48% 52% 48%; }
  66%       { transform: translateY(-3px) rotate(-.4deg); border-radius: 58% 42% 62% 38% / 44% 56% 44% 56%; }
}

.b2b-img-wrap {
  width: 100%;
  max-width: 320px;
  margin-bottom: 24px;
  background: #faf8f5;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.b2b-img-wrap img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  display: block;
}
.b2a-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.b2a-card-1 .b2a-tag { color: var(--gold); }
.b2a-card-2 .b2a-tag { color: rgba(201,169,110,.8); }
.b2a-h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 18px;
}
.b2a-card-1 .b2a-h3 { color: var(--dark); }
.b2a-card-2 .b2a-h3 { color: var(--cream); font-style: italic; }
.b2a-p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 28px;
}
.b2a-card-1 .b2a-p { color: var(--muted); }
.b2a-card-2 .b2a-p { color: rgba(245,230,200,.7); }
.b2a-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 32px; }
.b2a-note { font-family: 'Manrope', sans-serif; font-size: 10px; letter-spacing: .08em; color: rgba(245,230,200,.55); margin-top: 12px; }
.b2a-benefit {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
}
.b2a-card-1 .b2a-benefit { color: var(--muted); }
.b2a-card-2 .b2a-benefit { color: rgba(245,230,200,.75); }
.b2a-benefit-icon { flex-shrink: 0; display: flex; align-items: center; }
.amb-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.amb-benefit-item {
  text-align: center;
  padding: 14px 8px;
  background: rgba(245,230,200,.06);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 2px;
}
.amb-benefit-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 8px; color: var(--gold); }
.amb-benefit-lbl {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,230,200,.7);
}

/* ══════════════════════════════
   INSTAGRAM
══════════════════════════════ */
#instagram { background: var(--wine); padding: 100px 0; text-align: center; overflow-x: clip; }
.ig-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: float 4.5s ease-in-out infinite;
}
.ig-handle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 14px;
}
.ig-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(245,230,200,.65);
  margin-bottom: 44px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  max-width: 840px;
  margin: 40px auto 0;
  overflow: hidden;
}
.ig-slot {
  aspect-ratio: 1 / 1;
  background: rgba(245,230,200,.05);
  border: 1px solid rgba(201,169,110,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  opacity: .28;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  overflow: hidden;
}
.ig-slot img { width: 100%; height: 100%; object-fit: cover; }
.ig-slot:hover { background: rgba(201,169,110,.12); opacity: 1; transform: scale(1.04); }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
#contacto { background: var(--dark); padding: 110px 0; overflow-x: clip; }
.contact-header { text-align: center; margin-bottom: 56px; }
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 12px;
}
.contact-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(245,230,200,.55);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.ch-label {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.ch-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(245,230,200,.07);
  text-decoration: none;
  transition: padding-left .3s;
}
.ch-row:hover { padding-left: 10px; }
.ch-icon { flex-shrink: 0; margin-top: 2px; color: var(--gold); display: flex; align-items: center; }
.ch-name {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ch-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: var(--cream);
  font-weight: 400;
}
.ch-hint {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  color: rgba(245,230,200,.35);
  margin-top: 2px;
}
.luxury-field {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,230,200,.16);
  padding: 13px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--cream);
  outline: none;
  transition: border-color .3s;
  letter-spacing: .04em;
  resize: none;
}
.luxury-field:focus { border-bottom-color: var(--gold); }
.luxury-field::placeholder {
  color: rgba(245,230,200,.28);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
}
.form-group { margin-bottom: 26px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #1a0a0a;
  padding: 64px 0 52px;
  border-top: 1px solid rgba(201,169,110,.1);
  overflow-x: clip;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 36px;
  margin-bottom: 52px;
  align-items: start;
}
.footer-brand-col {}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .35em;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}
.footer-brand-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,230,200,.4);
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,230,200,.45);
  font-size: 14px;
  text-decoration: none;
  transition: all .3s;
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,.08);
}
.footer-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: rgba(245,230,200,.4);
  transition: color .3s;
  letter-spacing: .08em;
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.newsletter-input-wrap {
  display: flex;
  border: 1px solid rgba(201,169,110,.25);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 11px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: var(--cream);
  outline: none;
  letter-spacing: .06em;
}
.newsletter-input::placeholder { color: rgba(245,230,200,.35); font-size: 10px; letter-spacing: .1em; }
.newsletter-btn {
  width: 44px;
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
  flex-shrink: 0;
  cursor: pointer;
}
.newsletter-btn:hover { background: var(--gold-l); }
.newsletter-note {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  color: rgba(245,230,200,.28);
  letter-spacing: .08em;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(201,169,110,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy {
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  color: rgba(245,230,200,.25);
  letter-spacing: .1em;
}
.footer-bottom-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-badge {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(201,169,110,.32);
  text-transform: uppercase;
}

/* ══════════════════════════════
   SVG ICON SIZING
══════════════════════════════ */
.benefit-icon svg     { width: 22px; height: 22px; flex-shrink: 0; }
.brand-badge-icon svg { width: 16px; height: 16px; }
.b2a-benefit-icon svg { width: 16px; height: 16px; }
.amb-benefit-icon svg { width: 22px; height: 22px; }
.ch-icon svg          { width: 22px; height: 22px; }
.ig-icon svg          { width: 48px; height: 48px; }
.footer-social-btn svg { width: 16px; height: 16px; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .nav-wa-btn { display: none; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .benefits-inner { padding: 24px 32px; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .benefit-item:nth-child(2) { border-right: none; }
  .benefit-item:nth-child(3) { border-right: 1px solid var(--border); padding-left: 0; border-top: 1px solid var(--border); }
  .benefit-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .phone-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .b2a-card { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { height: 78vw; min-height: 300px; padding: 12px 12px 0 12px; }
  .hero-video-frame { min-height: 0; border-radius: 12px; }
  /* Mobile: fade casi invisible — joyas visibles y nítidas */
  .hero-img-overlay { background: linear-gradient(to bottom, transparent 82%, rgba(250,248,245,.65) 100%); }
  .hero-right { padding: 36px 20px 60px; }
  .benefits-inner { grid-template-columns: 1fr 1fr; padding: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .phone-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .brand-grid, .cat-emb-intro { grid-template-columns: 1fr; gap: 48px; }
  .brand-imgs { min-height: 360px; }
  .brand-img-main { width: 58%; }
  .brand-img-accent { width: 48%; margin-left: -8%; margin-top: 20%; }
  .brand-photo-main { aspect-ratio: 3 / 4; }
  .brand-photo-accent { aspect-ratio: 2 / 3; }
  .b2a-grid { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: 1fr; gap: 16px; }
  .ed-video-wrap { min-height: 72vw; border-radius: 10px; }
  .ed-secondary { flex-direction: row; gap: 16px; }
  .ed-photo-wrap { min-height: 52vw; border-radius: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  #productModal {
    grid-template-columns: 1fr;
    width: 100vw;
    max-height: 92vh;
    top: auto;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    border-radius: 16px 16px 0 0;
    overflow-y: auto;
  }
  #productModal.open {
    transform: translateY(0);
  }
  .modal-gallery { max-height: 380px; }
  .tienda-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .filters-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    padding-bottom: 4px;
    gap: 6px;
  }
  .filters-row::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }
  /* Section padding tightening */
  #tienda { padding: 64px 0; }
  #editorial { padding: 64px 0; }
  #catalogo-embajadoras { padding: 64px 0; }
  #b2b-ambassador { padding: 64px 0; }
  #instagram { padding: 64px 0; }
  #nosotras { padding: 80px 0; }
  #contacto { padding: 80px 0; }
  .contact-header { margin-bottom: 40px; }
  .cat-emb-intro { gap: 28px; margin-bottom: 40px; }
  .ig-grid { margin: 28px auto 0; }
  footer { padding: 48px 0 28px; }
  .footer-top { gap: 24px; }
  /* Product card mobile */
  .product-card-name { font-size: 15px; }
  .product-card-info { padding-top: 10px; }
  .product-card-price { font-size: 11px; }
  /* Phone card buttons */
  .phone-cat-btn, .phone-wa-btn { padding: 10px 12px; font-size: 8px; }
  .footer-bottom-badges { display: none; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .phone-cards { grid-template-columns: 1fr 1fr; }
  .b2a-card { padding: 40px 24px; }
}

/* ══════════════════════════════
   VIDEOS — ocultar botón iOS
══════════════════════════════ */
video::-webkit-media-controls { display: none !important; }
video::-webkit-media-controls-panel { display: none !important; }
video::-webkit-media-controls-play-button { display: none !important; }
video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
video { -webkit-appearance: none; }
.ed-video-wrap { position: relative; }
.video-tap-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
