/** Shopify CDN: Minification failed

Line 430:14 Unexpected "{"
Line 430:23 Expected ":"
Line 434:14 Unexpected "{"
Line 434:23 Expected ":"
Line 435:14 Unexpected "{"
Line 435:23 Expected ":"
Line 439:14 Unexpected "{"
Line 439:23 Expected ":"
Line 447:14 Unexpected "{"
Line 447:23 Expected ":"
... and 14 more hidden warnings

**/
/* =========================
   HS PDP (Mock) - hs-pdp.css
   Scope: .hs-pdp
   ========================= */

/* ---------- Layout base (2 columnas) ---------- */
.hs-pdp .product.grid {
  column-gap: 2px;
  row-gap: 32px;
  align-items: start;
}

/* 50/50 desktop, stack mobile */
@media (min-width: 990px){
  .hs-pdp .product.grid--2-col-tablet{
    grid-template-columns: 1fr 1fr;
    column-gap: 2px;
    align-items: start;
  }
}

/* ---------- Left: Media shell (background + slider) ---------- */
.hs-pdp .product__media-wrapper { position: relative; }

/* Shell con background (color + opcional imagen por CSS var) */
.hs-pdp .hs-media-shell{
  --hs-gallery-bg: none;
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  padding: 26px;
  /*background: #bfeff3; / * fallback * /
  background-image: var(--hs-gallery-bg);*/ 
  background-size: cover;
  background-position: center;
  min-height: 420px; /* desktop */
  display: flex;
  align-items: center;
}

/* No rompas Dawn: solo hacemos transparente wrappers internos */
.hs-pdp .hs-media-shell media-gallery,
.hs-pdp .hs-media-shell .media-gallery,
.hs-pdp .hs-media-shell .product__media-gallery{
  width: 100%;
  background: transparent !important;
}

.hs-pdp .hs-media-shell .product__media-list,
.hs-pdp .hs-media-shell .slider{
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Ocultar thumbnails, counters, etc */
.hs-pdp .hs-media-shell .thumbnail-list,
.hs-pdp .hs-media-shell .product__media-sublist,
.hs-pdp .hs-media-shell .product__media-thumbnail-list,
.hs-pdp .hs-media-shell [id*="GalleryThumbnails"],
.hs-pdp .hs-media-shell .thumbnail-slider,
.hs-pdp .hs-media-shell .slider-counter{
  display: none !important;
}

/* Slides centradas */
.hs-pdp .hs-media-shell .product__media-item,
.hs-pdp .hs-media-shell .slider__slide{
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Imagen contenida y menos alta (mock) */
.hs-pdp .hs-media-shell .media,
.hs-pdp .hs-media-shell .product__media,
.hs-pdp .hs-media-shell img{
  object-fit: contain !important;
  width: auto;
}

/* Flechas (tus botones) */
.hs-pdp .hs-media-shell .hs-arrow{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: #000000;
  box-shadow: 0 10px 22px rgba(0,0,0,.15);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #FFFFFF;
  padding-bottom: 3px;
}

.hs-pdp .hs-media-shell .hs-arrow--prev{ left: 16px; }
.hs-pdp .hs-media-shell .hs-arrow--next{ right: 16px; }

/* ---------- Right: Typography / spacing ---------- */
.hs-pdp .product__info-wrapper{ padding-top: 6px; }

.hs-pdp .product__title .h1,
.hs-pdp .product__title h1{
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Rating en una sola línea */
.hs-pdp .rating-wrapper{
  display:flex;
  align-items:center;
  margin: 0;
}

.hs-pdp .rating-text,
.hs-pdp .rating-count{
  margin: 0;
  font-size: 14px;
  opacity: .8;
}

/* Precio */
.hs-pdp .price--large{ font-size: 16px; }
.hs-pdp .price{ margin: 0 0 12px 0; }

/* Descripción */
.hs-pdp .product__description{
  max-width: 520px;
  font-size: 15px;
  line-height: 1.5;
  margin-top: 10px;
}

/* ---------- Flavors (pills) ---------- */
.hs-pdp .hs-flavors{ margin: 18px 0 14px; max-width: 520px;}
.hs-pdp .hs-flavors__label{
  margin-bottom: 3px;
}
.hs-pdp .hs-flavors__row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.hs-pdp .hs-flavor{
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  padding: 10px 18px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .02em;
  color: #bcbcbc;
  line-height: 1;
  transition: border-color .15s ease, color .15s ease, transform .05s ease;
}

.hs-pdp .hs-flavor:hover{
  border-color: #9a9a9a;
  color: #7a7a7a;
}
.hs-pdp .hs-flavor:active{ transform: scale(.98); }

.hs-pdp .hs-flavor.is-current{
  border-color: #111;
  color: #111;
}

/* ---------- Mock Plans (Subscription / One-time) ---------- */
.hs-pdp .hs-mock-plans{
  margin: 18px 0 16px;
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width: 520px;
}

.hs-pdp .hs-plan-card{
  background:#f4f4f4;
  border-radius:18px;
  padding:18px;
  border:2px solid transparent;
}

.hs-pdp .hs-plan-card-more-radious{
  border-radius:50px;
}

.hs-pdp .hs-plan-card.is-active{
  background:#f5f5f5;
}

.hs-pdp .hs-plan-head{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.hs-pdp .hs-radio{
  width:18px;
  height:18px;
  border-radius:999px;
  border:2px solid #111;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.hs-pdp .hs-radio.is-on::after{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:#111;
  display:block;
}

.hs-pdp .hs-plan-title{
  font-size:14px;
}

.hs-pdp .hs-pill-save{
  background:#6ec5cf;
  color:#ffffff;
  font-weight:600;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
}

.hs-pdp .hs-plan-prices{
  margin-left:auto;
  display:flex;
  align-items:baseline;
  gap:10px;
}

.hs-pdp .hs-plan-price{
  font-size:18px;
}

.hs-pdp .hs-plan-compare{
  opacity:.5;
  font-size:14px;
}

.hs-pdp .hs-plan-benefits{
  margin:30px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.hs-pdp .hs-plan-benefits li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}

.hs-pdp .hs-ico{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* pill gris */
.hs-pdp quantity-input.quantity{
  background:#f3f3f3;
  border-radius:999px;
  padding:8px 10px;
  border:none;
}

/* botones +/- transparent */
.hs-pdp .quantity__button{ background:transparent; }
.hs-pdp .quantity__input{
  background:transparent;
  border:none !important;
  width:44px;
}

/* Add to cart pill negro */
.hs-pdp .product-form__buttons .product-form__submit.button{
  border-radius:999px;
  background:#111;
  color:#fff;
  min-height:45px;
  font-size:16px;
  padding:14px 22px;
}

/* En el mock NO se ve “Buy it now” */
.hs-pdp .shopify-payment-button{
  display:none !important;
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 749px){
  .hs-pdp .product__title .h1,
  .hs-pdp .product__title h1{
    font-size: clamp(25px, 2.7vw, 44px);
  }
  .hs-pdp .hs-flavors__row {
    gap: 5px;
  }
  .hs-pdp .hs-flavor {
    padding: 10px 10px;
  }
  .hs-pdp .hs-media-shell{
    padding: 14px;
    border-radius: 18px;
    min-height: 360px;
  }

  /*.hs-pdp .hs-media-shell img{
    max-height: 320px;
  }*/

  .hs-pdp .hs-media-shell .hs-arrow{
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}

.hs-pdp .hs-media-shell{
  position: relative;
  overflow: hidden; /* clave para que no se vean todas */
  border-radius: 24px;
}

/* Dawn generalmente usa UL.product__media-list */
.hs-pdp .hs-media-shell .product__media-list{
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;

  /* oculta scrollbar */
  scrollbar-width: none;
}
.hs-pdp .hs-media-shell .product__media-list::-webkit-scrollbar{
  display: none;
}

/* Cada item ocupa 100% del ancho */
.hs-pdp .hs-media-shell .product__media-item{
  flex: 0 0 100% !important;
  width: 100% !important;
  scroll-snap-align: start;
  margin: 0 1px !important;
}

/* Asegura que la imagen/video llenen su slide */
.hs-pdp .hs-media-shell .product__media{
  width: 100% !important;
}
.hs-pdp .hs-media-shell .product__media img,
.hs-pdp .hs-media-shell .product__media video,
.hs-pdp .hs-media-shell .product__media model-viewer{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain; /* o cover si quieres */
}

/* Si Dawn está metiendo layout de thumbnails/stacked, los ocultamos dentro del shell */
.hs-pdp .hs-media-shell .product__media-sublist,
.hs-pdp .hs-media-shell .thumbnail-list,
.hs-pdp .hs-media-shell .slider-buttons,
.hs-pdp .hs-media-shell .product__media-toggle,
.hs-pdp .hs-media-shell .product__media-icon{
  display: none !important;
}

/* Flechas encima */
.hs-pdp .hs-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.9);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.hs-pdp .hs-arrow--prev{ left: 14px; }
.hs-pdp .hs-arrow--next{ right: 14px; }

#MainProduct-{{ section.id }} .product {
  align-items: stretch !important;
}

#MainProduct-{{ section.id }} .product__media-wrapper,
#MainProduct-{{ section.id }} .product__info-wrapper {
  height: 100%;
}

#MainProduct-{{ section.id }} .hs-media-shell {
  /*height: 100%;*/
  min-height: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
}

#MainProduct-{{ section.id }} .hs-media-shell media-gallery,
#MainProduct-{{ section.id }} .hs-media-shell .product__media {
  height: 100%;
}

#MainProduct-{{ section.id }} .hs-media-shell .product__media-list {
  height: 100%;
}

#MainProduct-{{ section.id }} .hs-media-shell .product__media-list {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow: hidden !important;          /* <- oculta las demás */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

#MainProduct-{{ section.id }} .hs-media-shell .product__media-item {
  flex: 0 0 100% !important;            /* <- 1 slide = 100% */
  width: 100% !important;
  scroll-snap-align: start;
}

/* Asegura que el media dentro del slide no rompa el layout */
#MainProduct-{{ section.id }} .hs-media-shell .product__media-item img,
#MainProduct-{{ section.id }} .hs-media-shell .product__media-item video,
#MainProduct-{{ section.id }} .hs-media-shell .product__media-item model-viewer {
  max-height: 100%;
  height: auto;
}