/* =========================================================
   DESAYUNOS MAÑANITAS — Páginas de Producto
   Diseño atractivo, moderno y con identidad visual de marca
   ========================================================= */

/* ===== HERO DEL PRODUCTO ===== */
.product-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  margin-top: 81px;
}

.product-hero-bg {
  position: absolute;
  inset: 0;
  background-size: 400% 400%;
  animation: heroShift 8s ease infinite;
}

@keyframes heroShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Overlay oscuro degradado abajo */
.product-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.08) 60%,
    rgba(0,0,0,0.45) 100%
  );
}

/* Burbujas decorativas de fondo */
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  animation: bubbleFloat linear infinite;
}
.hero-bubble:nth-child(1) { width:120px;height:120px; top:10%; left:5%;  animation-duration:12s; }
.hero-bubble:nth-child(2) { width:80px; height:80px;  top:30%; right:8%; animation-duration:9s;  animation-delay:-3s; }
.hero-bubble:nth-child(3) { width:60px; height:60px;  top:60%; left:15%; animation-duration:15s; animation-delay:-6s; }
.hero-bubble:nth-child(4) { width:40px; height:40px;  top:20%; left:40%; animation-duration:11s; animation-delay:-2s; }
.hero-bubble:nth-child(5) { width:100px;height:100px; bottom:20%;right:15%;animation-duration:14s;animation-delay:-5s;}

@keyframes bubbleFloat {
  0%   { transform: translateY(0) rotate(0deg);   opacity: 0.6; }
  50%  { transform: translateY(-30px) rotate(180deg); opacity: 0.9; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.6; }
}

/* Breadcrumb */
.product-breadcrumb {
  position: absolute;
  top: 20px;
  left: 24px;
  z-index: 10;
}
.product-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.product-breadcrumb a:hover {
  background: rgba(255,255,255,0.35);
  transform: translateX(-3px);
}

/* Emoji flotante central */
.product-hero-emoji {
  position: relative;
  z-index: 5;
  font-size: 8rem;
  animation: emojiFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.25));
  margin-bottom: 24px;
  line-height: 1;
  text-align: center;
}
@keyframes emojiFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-16px) scale(1.05); }
}

/* Tarjeta de info flotante sobre el hero */
.product-hero-card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 680px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 28px 28px 0 0;
  padding: 32px 40px 40px;
  text-align: center;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.1);
}

.product-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(201,169,110,0.4);
}

.product-hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  line-height: 1.2;
}

.product-hero-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-hero-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

.product-hero-price-note {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-family: 'Quicksand', sans-serif;
}

.product-hero-price-alt {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  font-family: 'Quicksand', sans-serif;
  margin-top: 4px;
}

/* ===== SECCIÓN PRINCIPAL DEL PRODUCTO ===== */
.product-main {
  background: white;
  padding: 0 24px 80px;
}

.product-main-container {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 56px;
}

/* Layout 2 columnas en desktop */
@media (min-width: 768px) {
  .product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
}

/* ===== INCLUDES LIST ===== */
.product-includes-title {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: var(--pink-main);
  margin-bottom: 4px;
}

.product-includes-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 700;
}

.product-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--pink-pale);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  border-left: 3px solid var(--pink-soft);
}

.product-includes-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

.product-includes-list li .item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== DECORACIÓN ===== */
.product-decoration-box {
  background: linear-gradient(135deg, var(--pink-pale), var(--pink-cream));
  border: 2px dashed var(--pink-soft);
  border-radius: 20px;
  padding: 24px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1) 0.3s;
}

.product-decoration-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-decoration-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--pink-deep);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-decoration-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ===== NOTA ESPECIAL ===== */
.product-note {
  background: linear-gradient(135deg, #fff3cd, #fff8e1);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--text-body);
  font-style: italic;
  margin-top: 16px;
}

/* ===== CTA PANEL (derecha en desktop) ===== */
.product-cta-panel {
  position: sticky;
  top: 100px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s;
}

.product-cta-panel.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-price-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(196,80,122,0.14);
  border: 1px solid var(--pink-light);
  text-align: center;
  margin-bottom: 20px;
}

.product-price-label {
  font-family: 'Great Vibes', cursive;
  font-size: 1.3rem;
  color: var(--pink-main);
  margin-bottom: 4px;
}

.product-price-main {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1;
  margin-bottom: 4px;
}

.product-price-delivery {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-price-alt {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  background: var(--pink-pale);
  padding: 8px 12px;
  border-radius: 10px;
}

.btn-wa-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 18px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 6px 25px rgba(37,211,102,0.35);
  width: 100%;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.btn-wa-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37,211,102,0.5);
}

.btn-wa-product .wa-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.btn-back-catalog {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: var(--pink-deep);
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid var(--pink-soft);
  transition: all 0.3s;
  width: 100%;
}

.btn-back-catalog:hover {
  background: var(--pink-pale);
  border-color: var(--pink-main);
  transform: translateY(-2px);
}

/* Compartir */
.product-share {
  background: var(--pink-pale);
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
}

.product-share-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.product-share-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.share-btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}
.share-btn-wa:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37,211,102,0.4); }

.share-btn-copy {
  background: white;
  color: var(--text-body);
  border: 2px solid var(--pink-soft);
}
.share-btn-copy:hover { background: var(--pink-pale); border-color: var(--pink-main); transform: translateY(-2px); }

/* ===== SECCIÓN DE PRODUCTOS RELACIONADOS ===== */
.product-related {
  background: var(--pink-pale);
  padding: 64px 24px;
}

.product-related-header {
  text-align: center;
  margin-bottom: 40px;
}

.product-related-label {
  font-family: 'Great Vibes', cursive;
  font-size: 1.4rem;
  color: var(--pink-main);
  margin-bottom: 4px;
}

.product-related-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 700;
}

.product-related-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* Mini product card para relacionados */
.related-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.4s ease;
}

.related-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.related-card-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.related-card-emoji {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  transition: transform 0.3s;
}

.related-card:hover .related-card-emoji {
  transform: scale(1.15) rotate(5deg);
}

.related-card-body {
  padding: 20px;
}

.related-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.related-card-includes {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--pink-light);
}

.related-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-deep);
}

.related-card-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink-deep);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--pink-light);
  padding: 12px 20px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(196,80,122,0.12);
  align-items: center;
  gap: 12px;
}

.sticky-price-wrap {
  flex-shrink: 0;
}

.sticky-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-deep);
  display: block;
  line-height: 1;
}

.sticky-price-note {
  font-size: 0.7rem;
  color: var(--text-light);
}

.sticky-wa-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
  transition: all 0.3s;
}

.sticky-wa-btn:hover { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .product-hero {
    min-height: 55vh;
  }
  .product-hero-emoji {
    font-size: 5rem;
  }
  .product-hero-card {
    padding: 24px 20px 32px;
  }
  .product-main {
    padding-bottom: 100px; /* espacio para sticky bar */
  }
  .sticky-cta-bar {
    display: flex;
  }
  .product-cta-panel {
    display: none;
  }
  .product-includes-list li {
    padding: 12px 14px;
  }
}

@media (max-width: 480px) {
  .product-hero-emoji {
    font-size: 4rem;
  }
  .product-hero-name {
    font-size: 1.6rem;
  }
  .product-hero-price {
    font-size: 2rem;
  }
}

/* ===== CONFETTI ANIMACIÓN ===== */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-main), var(--pink-deep));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ===== GALERÍA DE FOTOS ===== */
.product-gallery {
  background: white;
  padding: 64px 24px;
  border-top: 1px solid var(--pink-light);
}

.gallery-container {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 32px;
}
.gallery-label {
  font-family: 'Great Vibes', cursive;
  font-size: 1.4rem;
  color: var(--pink-main);
  margin-bottom: 4px;
}
.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  font-weight: 700;
}

/* Foto principal */
.gallery-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--pink-pale);
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  display: block;
}

.gallery-main:hover .gallery-main-img {
  transform: scale(1.03);
}

/* Flechas de navegación */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--pink-deep);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  line-height: 1;
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(196,80,122,0.25);
}

/* Contador */
.gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

/* Miniaturas */
.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-soft) transparent;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--pink-soft); border-radius: 2px; }

.gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s;
  opacity: 0.65;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb:hover { opacity: 0.9; transform: scale(1.05); }
.gallery-thumb.active {
  border-color: var(--pink-deep);
  opacity: 1;
  transform: scale(1.05);
}

/* ===== LIGHTBOX ===== */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox.open {
  display: flex;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  display: block;
  animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
  from { opacity:0; transform: scale(0.92); }
  to   { opacity:1; transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 3;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  z-index: 3;
  line-height: 1;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-nav:hover { background: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }

@media (max-width: 767px) {
  .gallery-main { aspect-ratio: 1 / 1; }
  .gallery-thumb { width: 64px; height: 64px; }
}

/* ===== HERO CON FOTO REAL ===== */
.product-hero--photo {
  position: relative;
  height: 88vh;
  min-height: 520px;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: 81px;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: background-image 0.5s ease, transform 6s ease;
  will-change: transform;
}
.hero-photo-bg.zooming { transform: scale(1); }

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.72) 80%,
    rgba(0,0,0,0.88) 100%
  );
}

/* Contenido encima de la foto */
.hero-photo-content {
  position: relative;
  z-index: 5;
  padding: 32px 40px 40px;
  max-width: 700px;
}

.hero-photo-content .product-hero-name {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 10px;
}

.hero-photo-content .product-hero-price-wrap {
  margin-bottom: 8px;
}

.hero-photo-content .product-hero-price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-photo-content .product-hero-price-note {
  color: rgba(255,255,255,0.8);
}

.hero-photo-content .product-hero-price-alt {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* Botón WhatsApp en el hero */
.btn-wa-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.45);
  transition: all 0.3s;
  margin-top: 16px;
}
.btn-wa-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37,211,102,0.55);
}

/* Flechas sobre la foto */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 6;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-arrow:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-50%) scale(1.1);
}

/* Contador de fotos */
.hero-counter {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(0,0,0,0.45);
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 6;
}

/* ===== STRIP DE MINIATURAS ===== */
.photo-strip {
  background: #1a1a1a;
  padding: 12px 16px;
  position: sticky;
  top: 81px;
  z-index: 100;
}

.photo-strip-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 1200px;
  margin: 0 auto;
  scrollbar-width: none;
}
.photo-strip-inner::-webkit-scrollbar { display: none; }

.strip-thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  padding: 0;
  background: none;
  transition: all 0.25s;
  opacity: 0.55;
}
.strip-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.strip-thumb:hover { opacity: 0.85; transform: scale(1.06); }
.strip-thumb.active {
  border-color: var(--pink-main);
  opacity: 1;
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 767px) {
  .product-hero--photo { height: 75vh; }
  .hero-photo-content { padding: 20px 20px 28px; }
  .btn-wa-hero { padding: 14px 24px; font-size: 0.95rem; }
  .hero-arrow { width: 42px; height: 42px; font-size: 1.4rem; }
  .strip-thumb { width: 58px; height: 58px; }
}
