/* ==========================================================================
   VARIABLES Y ESTILOS BASE
   ========================================================================== */
:root {
  --primary-pink: #c86d7c;
  --primary-pink-dark: #b15665;
  --light-pink: #fdf2f4;
  --accent-pink: #f7dcdb;
  --dark-text: #1c1c1c;
  --gray-text: #666666;
  --light-gray: #f5f5f5;
  --border-color: #e5e5e5;
  --green-badge: #2d8a53;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--dark-text);
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   TICKER SUPERIOR Y HEADER
   ========================================================================== */
.top-ticker {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  gap: 16px;
  animation: marquee 25s linear infinite;
}

.ticker-track .dot {
  color: var(--primary-pink);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo img {
  height: 38px;
}

.main-nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.nav-highlight {
  color: var(--primary-pink);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-icons button {
  background: none;
  border: none;
  cursor: pointer;
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary-pink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
}

/* ==========================================================================
   SECCIÓN PRODUCTO PRINCIPAL
   ========================================================================== */
.product-main-section {
  padding: 40px 20px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

/* GALERÍA */
.product-gallery {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.main-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light-gray);
  border: 1px solid var(--border-color);
}

.main-image-wrapper img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.zoom-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(255,255,255,0.9);
  padding: 8px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.thumbnails-slider {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}

.thumbnails-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.thumbnails-track::-webkit-scrollbar {
  display: none;
}

.thumb-item {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.thumb-item.active {
  border-color: var(--primary-pink);
}

.thumb-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

/* INFO PRODUCTO */
.reviews-summary-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdf6e2;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #855d10;
}

.product-title {
  font-size: 26px;
  font-weight: 800;
  margin: 12px 0;
  line-height: 1.3;
}

.rank-badge-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-pink);
  border: 1px solid var(--accent-pink);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.rank-number {
  background: var(--primary-pink);
  color: white;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}

.rank-text strong {
  display: block;
  font-size: 14px;
}

.rank-text small {
  color: var(--gray-text);
  font-size: 11px;
}

.product-tags-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.tag-black {
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.tag-flag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--light-gray);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.tag-flag img {
  width: 16px;
}

.product-subtext {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

.benefits-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.benefit-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
  background: #fafafa;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
}

.benefit-icon-item img {
  width: 28px;
  margin-bottom: 6px;
}

/* PROGRESS BAR */
.sales-progress-bar {
  margin-bottom: 20px;
}

.progress-track {
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  border-radius: 5px;
}

.progress-label {
  font-size: 12px;
  color: var(--gray-text);
}

/* BUNDLES */
.bundles-container {
  border: 2px solid var(--accent-pink);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.bundles-header {
  background: var(--primary-pink);
  color: white;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  padding: 8px;
  letter-spacing: 0.5px;
}

.timer-banner {
  background: #fff3f3;
  color: #d93838;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 6px;
}

.bundle-options {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bundle-card {
  position: relative;
  display: block;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bundle-card.selected {
  border-color: var(--primary-pink);
  background: var(--light-pink);
}

.bundle-card input {
  position: absolute;
  top: 16px;
  left: 12px;
}

.bundle-content {
  display: flex;
  align-items: center;
  padding-left: 24px;
  gap: 12px;
}

.bundle-content img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
}

.bundle-details {
  flex-grow: 1;
}

.bundle-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
}

.bundle-discount {
  font-size: 12px;
  color: var(--primary-pink-dark);
  font-weight: 600;
}

.bundle-pricing {
  text-align: right;
}

.price-current {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: var(--dark-text);
}

.price-original {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--primary-pink);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
}

.best-offer {
  background: #222;
}

/* REGALO GRATIS */
.free-gift-box {
  margin: 12px;
  background: #fff;
  border: 1px dashed var(--primary-pink);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.gift-header {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary-pink-dark);
  margin-bottom: 6px;
}

.gift-body {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gift-body img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.gift-info strong {
  display: block;
  font-size: 12px;
}

.gift-tags {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.badge-free {
  background: #2d8a53;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.badge-value {
  background: #eee;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}

/* CTA BOTÓN */
.add-to-cart-btn {
  width: 100%;
  background: var(--primary-pink);
  color: white;
  border: none;
  padding: 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(200, 109, 124, 0.4);
  transition: background 0.2s ease;
  margin-bottom: 16px;
}

.add-to-cart-btn:hover {
  background: var(--primary-pink-dark);
}

.add-to-cart-btn span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.add-to-cart-btn small {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  margin-top: 2px;
}

.shipping-urgency {
  font-size: 13px;
  background: var(--light-gray);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.timer-red {
  color: #d93838;
  font-weight: 700;
}

.guarantee-row {
  display: flex;
  justify-content: space-around;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.official-distributor-box {
  background: #fff8eb;
  border-left: 4px solid #ffb020;
  padding: 12px;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* UPSELL ROUTINE */
.upsell-routine-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  background: #fff;
  margin-bottom: 30px;
}

.upsell-routine-box h3 {
  font-size: 16px;
  text-align: center;
}

.sub-discount {
  text-align: center;
  color: var(--primary-pink);
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 16px;
}

.upsell-images-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.upsell-images-row img {
  width: 55px;
  height: 55px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.upsell-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-bottom: 16px;
}

.upsell-prices .discount-pill {
  background: #d93838;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-secondary-routine {
  width: 100%;
  background: #222;
  color: white;
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

/* VIDEOS & ACCORDIONS */
.video-pair-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.video-column video {
  width: 100%;
  border-radius: var(--radius-sm);
}

.pele-titulo {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.pele-titulo .verde { color: #2d8a53; }

.doctor-testimonial {
  background: var(--light-pink);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.doctor-testimonial p {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 12px;
}

.doctor-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.doctor-profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.skincare-banner {
  background: #1c1c1c;
  color: white;
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 30px;
}

.skincare-banner .destaque-verde {
  color: #55e692;
}

.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.accordion-item summary {
  padding: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.accordion-content {
  padding: 14px;
  font-size: 13px;
  color: #555;
  border-top: 1px solid var(--border-color);
  background: #fafafa;
}

/* ==========================================================================
   SECCIONES SECUNDARIAS DE LANDING
   ========================================================================== */
.press-ticker-section {
  background: var(--light-gray);
  padding: 20px 0;
  overflow: hidden;
  border-y: 1px solid var(--border-color);
}

.press-ticker-track {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.press-ticker-track img {
  height: 24px;
  opacity: 0.7;
}

/* SLIDER ANTES Y DESPUÉS */
.comparison-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
}

.center { text-align: center; }

.comparison-slider-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.img-after, .img-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img-after img, .img-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-before {
  width: 50%;
  overflow: hidden;
  border-right: 2px solid white;
}

.label-before, .label-after {
  position: absolute;
  top: 15px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 12px;
  font-weight: 700;
  font-size: 12px;
  border-radius: 4px;
}

.label-before { left: 15px; }
.label-after { right: 15px; }

.slider-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

/* 5 REASONS */
.five-reasons-section {
  background: var(--light-pink);
  padding: 60px 20px;
}

.reasons-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.big-5 {
  font-size: 120px;
  font-weight: 900;
  color: var(--accent-pink);
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 0;
}

.reasons-title {
  font-size: 28px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.reason-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.reason-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 13px;
  color: var(--gray-text);
}

.num-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  font-weight: 900;
  color: var(--accent-pink);
  font-size: 20px;
}

.stats-counter-row {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.stats-counter-row strong {
  display: block;
  font-size: 24px;
  color: var(--primary-pink);
}

/* INGREDIENTES */
.ingredients-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.ingredients-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.ingredient-card {
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fff;
}

.ing-pill {
  display: inline-block;
  background: var(--light-pink);
  color: var(--primary-pink-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.check-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-badge);
}

/* TABLA COMPARATIVA */
.comparison-table-section {
  padding: 60px 20px;
  background: var(--light-gray);
}

.table-container {
  max-width: 800px;
  margin: 0 auto;
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.diff-table th, .diff-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.diff-table th:first-child, .diff-table td:first-child {
  text-align: left;
}

.highlight-col {
  background: var(--light-pink);
}

/* STICKY BOTTOM BAR MÓVIL */
.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 12px 20px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  z-index: 99;
}

.sticky-cta-btn {
  width: 100%;
  background: var(--primary-pink);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
}

/* FOOTER */
.site-footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--primary-pink);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
  font-size: 13px;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 12px;
  opacity: 0.6;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .ingredients-cards-grid {
    grid-template-columns: 1fr;
  }

  .sticky-bottom-bar {
    display: block;
  }

  .product-gallery {
    position: relative;
    top: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}/* ----------------------------------------------------
   LAYOUT SPLIT (DESKTOP)
---------------------------------------------------- */
@media (min-width: 992px) {
    .md-desktop-split {
        display: flex;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        gap: 40px;
    }
    .product-gallery-sticky {
        width: 50%;
        position: sticky;
        top: 20px;
        /* Prevents it from scrolling */
        height: max-content;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    .product-gallery-sticky::-webkit-scrollbar {
        display: none; /* Hide scrollbar for aesthetics */
    }
    .product-info-scrolling {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .md-desktop-split {
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .product-gallery-sticky {
        width: 100%;
        position: static;
    }
    .product-info-scrolling {
        width: 100%;
    }
}

/* Fix product-main-section which used to handle the flex */
.product-main-section {
    padding: 0 !important;
}
.product-main-section .product-gallery {
    display: block !important; 
    width: 100% !important;
}
.product-main-section .product-info {
    width: 100% !important;
    padding: 20px;
}
@media (min-width: 992px) {
    .product-main-section .product-info {
        padding: 0;
    }
}

/* ----------------------------------------------------
   MUJERES REALES SLIDER (NATIVE SCROLL SNAP)
---------------------------------------------------- */
.cfr-section {
    padding: 40px 20px;
    background-color: #ea7085;
    color: white;
}
.cfr-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}
.cfr-subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 30px;
}
.cfr-track-wrap {
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
}
.cfr-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    padding: 0 20px;
}
.cfr-track::-webkit-scrollbar {
    display: none;
}
.cfr-card {
    scroll-snap-align: start;
    flex: 0 0 280px;
    background: white;
    color: #333;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
@media (max-width: 767px) {
    .cfr-card {
        flex: 0 0 85%;
    }
}
.cfr-card-body {
    padding: 20px;
    text-align: center;
}
.cfr-quote {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #666;
    font-style: italic;
}
.cfr-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}
.cfr-tag {
    font-size: 0.7rem;
    padding: 4px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #888;
    font-weight: 600;
}
.cfr-author {
    font-size: 0.8rem;
    color: #ea7085;
    font-weight: 600;
}

/* ----------------------------------------------------
   FACEBOOK COMMENTS SECTION
---------------------------------------------------- */
.fb-comments-section {
    padding: 40px 20px;
    background: #f9f9f9;
}
.fb-comment {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex;
    gap: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.fb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    object-fit: cover;
}
.fb-content {
    flex: 1;
}
.fb-header {
    margin-bottom: 5px;
}
.fb-name {
    font-weight: bold;
    color: #385898;
    font-size: 0.9rem;
}
.fb-text {
    font-size: 0.95rem;
    color: #1c1e21;
    line-height: 1.4;
    margin-bottom: 8px;
}
.fb-actions {
    font-size: 0.8rem;
    color: #65676b;
    display: flex;
    gap: 15px;
}
.fb-actions span {
    font-weight: 600;
    cursor: pointer;
}
.fb-actions span:hover {
    text-decoration: underline;
}
.fb-replies {
    margin-top: 10px;
    padding-left: 20px;
    border-left: 2px solid #e4e6eb;
}
.fb-reply {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
.fb-reply-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* ==========================================================================
   CSS OVERRIDES PARA LAYOUT Y BUNDLES (Alineación con Original)
   ========================================================================== */
.product-info-scrolling {
    width: 50%;
    padding: 0px 40px; 
}

@media screen and (max-width: 900px) {
    .product-info-scrolling {
        width: 100%;
        padding: 0px 20px;
    }
}

.product-info-wrapper {
    max-width: 520px; 
    margin: 0 auto; 
}

/* Rediseño de Badges bajo el título */
.rank-badge-outline {
    display: inline-flex;
    background: #fff;
    border: 1.5px solid #c86d7c;
    color: #c86d7c;
    border-radius: 4px;
    padding: 6px 12px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 800;
}

.product-tags-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-tags-row .tag-black {
    background: #111;
    color: #fff;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
}

.product-tags-row .tag-flag {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Rediseño Formulario COD a Tarjetas (Bundles) */
.bundle-options {
    display: flex;
    flex-direction: row; 
    gap: 12px;
    padding: 16px;
    background: #fbfbfb;
}

@media screen and (max-width: 500px) {
    .bundle-options {
        flex-direction: column;
    }
}

.bundle-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px 12px;
    border-radius: 8px;
    border: 2px solid #eaeaea;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
}

.bundle-card.selected {
    border-color: #c86d7c;
    background: #fff6f7;
}

.bundle-card input[type="radio"] {
    display: none; 
}

.bundle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    gap: 8px;
    width: 100%;
}

.bundle-content img {
    width: 100%;
    height: auto;
    max-width: 90px;
    border-radius: 6px;
}

.bundle-details {
    margin-top: 4px;
}

.bundle-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    display: block;
    color: #333;
}

.bundle-discount {
    background: #ffeb3b;
    color: #000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 800;
    margin-top: 6px;
    display: inline-block;
}

.bundle-pricing {
    text-align: center;
    margin-top: 10px;
}

.price-current {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    display: block;
}

.price-original {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    display: block;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    background: #c86d7c;
    color: #fff;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.popular-badge.best-offer {
    background: #111;
}

/* Ocultar el tag anterior si existe */
.product-info-wrapper > .product-container {
    display: block !important;
}

/* ==========================================================================
   CSS UPDATES: TITLE, REVIEWS, PROGRESS, BUNDLES HEADER, THUMBNAILS
   ========================================================================== */

/* Thumbnails */
.thumb-item {
    width: 90px !important;
    height: 90px !important;
}

/* Reviews Row */
.reviews-row-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 600;
}
.stars-red {
    color: #b86a6a;
    font-size: 14px;
    letter-spacing: 2px;
}
.review-score {
    color: #666;
}
.review-count-badge {
    background: #b86a6a;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Title */
.product-title-custom {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111;
}

/* Rank Badge Box */
.rank-badge-box-custom {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #b86a6a;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}
.rank-number-custom {
    background: #b86a6a;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rank-text-custom {
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rank-text-custom strong {
    color: #702e2e;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.rank-text-custom em {
    color: #c98888;
    font-size: 10px;
    font-style: italic;
}

/* Tags Row */
.product-tags-row-custom {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.tag-gray-custom {
    background: #f5f5f5;
    color: #444;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}
.tag-korea-custom {
    background: #fcf4f5;
    color: #444;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tag-korea-custom img {
    width: 14px;
}

/* Separator */
.title-separator-custom {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 20px 0;
}

/* Subtext */
.product-subtext-custom {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}
.product-subtext-custom b {
    color: #333;
}

/* Benefits Grid */
.benefits-icons-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
}
.benefit-icon-item {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    background: transparent !important;
    padding: 0 !important;
    gap: 10px !important;
}
.benefit-icon-item img {
    width: 24px !important;
    margin-bottom: 0 !important;
}
.benefit-icon-item span {
    font-size: 12px !important;
    color: #555 !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
}

/* Sales Progress Bar */
.sales-progress-container-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.progress-track-wrapper {
    flex: 1;
    margin-right: 20px;
}
.progress-track-custom {
    height: 12px;
    background: #f7dcdb;
    border-radius: 10px;
    overflow: hidden;
}
.progress-fill-custom {
    height: 100%;
    background: #ce2a37;
    border-radius: 10px;
}
.progress-label-custom strong {
    color: #ce2a37;
    font-size: 16px;
    font-weight: 800;
}

/* Bundles Header Line */
.bundles-header {
    background: transparent !important;
    color: #000 !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 0 20px 0 !important;
    letter-spacing: 0.5px;
}
.bundles-header::before, .bundles-header::after {
    content: "";
    flex: 1;
    border-bottom: 1.5px solid #ebd2d2;
    margin: 0 15px;
}

/* Cleanup old badges from previous task if they leaked */
.rank-badge-outline { display: none; }

.bundles-container { border: none !important; }

/* ==========================================================================
   CSS UPDATES: CFZ BADGE
   ========================================================================== */
.cfz {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #B86A6A;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #fff;
}
.cfz-n {
    background: #B86A6A;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cfz-txt {
    padding: 6px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cfz-t {
    color: #702e2e;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.cfz-s {
    color: #c98888;
    font-size: 10px;
    font-style: italic;
}

/* ==========================================================================
   CSS UPDATES: BUNDLES SECTION EXACT MATCH
   ========================================================================== */
.bundles-container-custom {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}
.bundle-options-custom {
    display: flex;
    gap: 12px;
}
.bundle-card-custom {
    flex: 1;
    position: relative;
    border: 1px solid #e1c0c0;
    border-radius: 12px;
    cursor: pointer;
    background: #fff;
    padding: 35px 8px 15px;
    text-align: center;
}
.bundle-card-custom input {
    display: none;
}
.bundle-card-custom.selected {
    background: #f8dedf;
    border-color: #d11212;
}
.popular-badge-custom {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    background: #e31818;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: center;
}
.bundle-card-custom.selected .popular-badge-custom {
    background: #d11212;
}
.bundle-content-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.bundle-content-custom img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 5px;
}
.bundle-title-custom {
    font-weight: 800;
    font-size: 13px;
    color: #000;
}
.bundle-discount-custom {
    font-style: italic;
    color: #666;
    font-size: 12px;
}
.price-current-custom {
    color: #e31818;
    font-weight: 800;
    font-size: 15px;
    margin-top: 5px;
}
.price-original-custom {
    color: #888;
    text-decoration: line-through;
    font-size: 12px;
    font-style: italic;
}

/* Autoship box */
.autoship-box {
    border: 2px dashed #a15959;
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.autoship-checkbox {
    width: 24px;
    height: 24px;
    border: 1px solid #b86a6a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.autoship-checkbox svg {
    width: 16px;
    height: 16px;
}
.autoship-text {
    display: flex;
    flex-direction: column;
}
.autoship-text strong {
    font-size: 14px;
    color: #666;
}
.autoship-text span {
    font-size: 11px;
    color: #888;
}

/* Timer banner */
.timer-banner-custom {
    background: #5e0e0e;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    text-align: center;
    padding: 12px;
    border-radius: 20px;
}

/* Free gift box */
.free-gift-box-custom {
    position: relative;
    background: #f6d6d8;
    border: 1px solid #c88185;
    border-radius: 8px;
    padding: 15px 15px 15px 95px;
    margin-top: 5px;
    min-height: 85px;
}
.gift-badge-custom {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #5e0e0e;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    padding: 4px 15px;
    border-radius: 12px;
    white-space: nowrap;
}
.gift-body-custom img {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 6px;
    border: 2px solid #fff;
}
.gift-info-custom {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Add to cart button */
.add-to-cart-btn-custom {
    background: linear-gradient(180deg, #b06262, #8c4242);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px 20px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.add-to-cart-btn-custom span {
    font-size: 18px;
    font-weight: 800;
    display: block;
}
.add-to-cart-btn-custom s {
    color: #ccc;
    font-size: 16px;
    font-weight: normal;
}
.add-to-cart-btn-custom small {
    display: block;
    font-size: 13px;
    margin-top: 5px;
    font-weight: normal;
}

/* Payment icons */
.payment-icons-row {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.payment-icons-row img {
    height: 24px;
}

/* Shipping */
.shipping-urgency-custom {
    text-align: center;
    margin: 10px 0;
}
.ship-badge {
    background: #f8dedf;
    color: #333;
    font-weight: 800;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 6px;
}
.ship-text {
    font-size: 15px;
    color: #555;
    margin-left: 5px;
}
.timer-green {
    color: #0b9e38;
}

/* Guarantee row */
.guarantee-row-custom {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.guarantee-row-custom span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.guarantee-row-custom svg {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   CSS UPDATES: STATS & COLLAGE SECTION
   ========================================================================== */
.stats-collage-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
}
.stat-item h2 {
    color: #a96c6c;
    font-size: 55px;
    font-weight: 800;
    margin: 0 0 5px 0;
    line-height: 1;
}
.stat-item p {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0;
    max-width: 200px;
    margin-inline: auto;
}

/* Collage Row */
.collage-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
}
@media (max-width: 768px) {
    .collage-row {
        flex-direction: column;
    }
}

/* Left Col */
.collage-col-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.collage-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}
.collage-title .pink-txt {
    color: #a96c6c;
}
.collage-title .plus-txt {
    color: #000;
    font-size: 18px;
}
.collage-title .black-txt {
    color: #000;
}
.collage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
    border-radius: 12px;
    overflow: hidden;
    flex: 1;
}
.collage-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #eee;
}

/* Right Col */
.collage-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.girl-img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 15px;
    background: #eee;
}
.collage-desc {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
}
