/** Shopify CDN: Minification failed

Line 130:1 Unexpected "}"

**/
.skincare-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 700px;
  background-image: url('/cdn/shop/files/bg_routing_builder.png?v=1747058703');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: stretch;
  color: white;
  font-family: sans-serif;
}
.skincare-bottom {
    max-width: 95%;
}
.filter-title h4 {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
}

.filter-title .filter-span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 100;
    color: #777;
    font-style: normal;
}

.skincare-overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.65));
}

.product-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* opcional para mejor ajuste visual */
}

.product-check-wrapper {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
}

.product-check {
  width: 14px;
  height: 14px;
  border: 1.5px solid #000;
  background-color: transparent;
  transition: background-color 0.2s ease;
}

.product-card.selected .product-check {
  background-color: #000;
}

.product-out-of-stock {
  color: #999;
}

.skincare-top .label {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 3rem;
}
.skincare-top .label span {
    font-weight: 400;
    display: block;
}
.skincare-bottom .headline {
    font-size: 22px;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 400;
}

.skincare-bottom .headline span {
    display: block;
    font-weight: bold;
    margin-top: 8px;
    font-style: italic;
    letter-spacing: 0.3px;
}

.skincare-bottom .description {
    font-size: 18px;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
}
.skincare-bottom .description:before {
    content: " ";
    display: block;
    font-size: 30px;
    border-bottom: 2px solid #fff;
    width: 35px;
    margin-bottom: 10px;
}
.custom-set-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  background: #fafafa;
}}
.custom-set-sidebar {
  width: 25%;
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
}
.step-section {
  display: none;
}
.step-section.active {
  display: block;
}
.step-section h3 {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 10px;
}

.step-description {
  font-size: 12px;
  margin-top: 0.3rem;
  margin-bottom: 10px;
  font-weight: 400;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.product-card {
  border: none;
  cursor: pointer;
  background: #ffffff;
}
.product-card.selected {
  border-color: black;
}
.custom-set-products {
    width: 100%;
    padding-top: 2rem;
    overflow: hidden;
}
.container-product-info {
    display: flex;
    gap: 5px;
    padding: 10px;
}

.info-product {
    flex: 70%;
}
.price-product {
    flex: 30%;
}
.price-product p.price-current {
    display: block;
    font-weight: 600;
    font-size: 15px;
    line-height: 14px;
    width: 100%;
    text-align: right;
    margin-top: 8px;
}

.price-product * {
    text-align: right;
    font-size: 11px;
}
.custom-set-sidebar {
    width: 350px;
    min-width: 350px;
    background: #ffffff;
}

ul#step-checklist {
    display: block;
}

.custom-set-controls {
  position: sticky;
  bottom: 0;
  background: white;
  border-top: 1px solid #ddd;
  padding: 10px 20px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #000000;
}

.controls-info {
  display: flex;
  width: 100%;
}

.controls-total {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    width: 50%;
    align-items: center;
}

.total-original {
    font-weight: 900 !important;
    float: right;
    line-height: 15px !important;
    color: #7E7E7E;
    text-decoration: line-through;
    text-decoration-color: #fe326d;
    font-size: 16px;
}
.total-discount {
    color: #ffffff;
    font-size: 16px;
    line-height: 14px;
    font-weight: 600;
}
.controls-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 5px;
    width: 50%;
}

.custom-set-controls button {
    color: #ffffff;
    border: 1px solid #ffffff;
    margin: 5px;
    padding: 0.5rem 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: 0.5s;
}
.custom-set-controls button#next-step {
    min-width: 125px;
}
.custom-set-controls button#next-step:hover {
    background: #000000;
    color: #fff;
}
.custom-set-controls button.checkout-btn {
    min-width: 250px;
    background: #ffffff;
    color: #000000;
}

.custom-set-controls button.checkout-btn:hover {
    background: #000000;
    color: #ffffff;
}

.custom-set-controls button[disabled] {
  background-color: #dddddd;
  color: #999999;
  cursor: not-allowed;
  opacity: 1;
  border: none;
}
.step-checklist li {
    display: flex;
    align-items: baseline;
    font-size: 12px;
    position: relative;
    flex-direction: column;
    width: 100%;
    margin-bottom: -2px;
}

.step-checklist li > * {
    width: 100%;
}

.step-index {
  font-weight: bold;
  width: 1rem;
}

.step-status {
    width: 14px;
    height: 14px;
    border: 1.5px solid #000;
    display: inline-block;
    margin-right: 0.5rem;
    background-color: transparent;
    border-radius: 2px;
    transition: background-color 0.2s ease;
    border-radius: 0;
    position: absolute;
    right: 0;
    top: 12px;
}

.step-product {
  flex: 1;
  font-style: italic;
  color: #888;
}

.step-product div {
  margin: 2px 0;
  font-style: italic;
}


.step-product.selected {
    color: #000;
    font-weight: 500;
    font-style: italic;
    font-weight: 600;
}

.step-status.selected {
  background-color: #000;
}

span.step-label {
    cursor: pointer;
}

.product-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
  gap: 0.5rem;
  align-items: stretch;
}

/* Versión tablet: 3 columnas del 33.33% */
@media (max-width: 1024px) {
  .product-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-slide {
  display: inline-block;
  flex: 0 0 auto;
  scroll-snap-align: start;
  margin-bottom: 5px;
  height: 100%
}

/* Wrapper con scroll horizontal en mobile */
.filter-bar-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  flex: 1;
}

.filter-bar-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-direction: column;
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-tag {
  padding: 4px 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-tag.active {
  background: #000;
  color: #fff;
}

/* Arrows aligned right — mobile only */
.filter-arrows {
  display: none;
  gap: 5px;
}

.filter-arrow {
    background: none;
    border: none;
    font-size: 30px;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: right;
}

/* Tus estilos existentes */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-tag {
  padding: 4px 20px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter-tag.active {
  background: #000;
  color: #fff;
}


.product-slide.hidden {
  display: none !important;
}

.step-item {
  transition: all 0.3s ease;
  overflow: hidden;
}

.step-top {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  padding: 20px 25px;
  position: relative;
  cursor: pointer;
  border-bottom: 2px solid #ddd;
  border-top: 2px solid #ddd;
}

.step-label {
  font-weight: bold;
  cursor: pointer;
}

.step-product {
  flex: 1;
  font-style: italic;
  color: #888;
  text-align: right;
  padding-right: 30px;
}

.step-product.selected {
  color: #000;
  font-weight: 600;
}

.step-status {
  width: 14px;
  height: 14px;
  border: 1.5px solid #000;
  background-color: transparent;
  border-radius: 0;
  position: absolute;
  right: 10px;
  top: 23px;
  transition: background-color 0.2s ease;
}

.step-status.selected {
  background-color: #000;
}

.step-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.step-item.active .step-body {
  max-height: 200px;
  padding: 25px;
  min-height: 200px;
}

.step-body div {
    font-size: 12px;
    margin: 2px 0;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    color: #777;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.slider-thumbs {
    display: flex;
    width: 100%;
    flex: 1;
    justify-content: center;
    gap: 10px;
}
.slider-thumbs img {
    max-width: 50px;
    opacity: 0.5;
  cursor: pointer;
}
.slider-thumbs img:hover {
    opacity: 1;
}
span.visible-count {
    font-size: 12px;
}
@media only screen and (max-width: 768px){
  .filter-bar-wrapper {
    padding: 15px;
  }
  .custom-set-products {
    display: none !important;
  }
  .cloned-slider {
    margin-top: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .step-item .step-section {
      padding: 20px 5px 5px;
  }
  .step-item .step-section > h3, .step-item .step-section > p {
      padding: 0 15px;
  }
  .custom-set-container {
    flex-direction: column;
    gap: 0;
  }
  .custom-set-sidebar {
      width: 100%;
  }
  .step-section {
      padding: 0 10px;
  }
  .product-slider {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 1rem;
      margin: 10px 0 20px;
      background: transparent;
  }

  .product-slide {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 80%;
    height: max-content;
  }
  
  .filter-bar {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .filter-arrows {
      display: block;
      align-items: center;
      padding-right: 10px;
      width: 100%;
      text-align: right;
  }
  .container-product-info {
    padding: 10px 10px;
    flex-direction: column;
    min-width: 60%;
    justify-content: flex-end;
  }
  .product-card {
      display: flex;
      height: 100%;
      flex-direction: row;
  }
  .grid__image-ratio--portrait {
      width: 40%;
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .grid__image-ratio--portrait img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
  .info-product {
      flex: none;
      padding: 20px 0 0;
      text-align: right;
  }
  .grid-product__subtitle {
    padding: 0 !important;
  }
  .price-product {
    flex: none;
    align-items: center;
    display: flex;
    justify-content: end;
  }
  .price-product span.jdgm-prev-badge__text {
    display: block;
  }
  .price-product p.price-current {
    padding: 5px 0 5px 20px;
    margin: 0;
    width: fit-content;
    text-align: right;
  }
  .custom-set-controls {
      padding: 0px;
  }
  .step-body {
    display: none !important;
  }
  
  .slider-thumbs {
    display: none !important;
  }
  .controls-info {
    flex-direction: column;
    padding: 20px;
  }
  .controls-total {
    text-align: center;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
  .controls-buttons {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
  }
  .custom-set-controls button#next-step {
    margin-left: 0;
  }
  .mobile-title {
    padding: 15px 20px 0;
    margin: 0;
  }
   .mobile-description {
     padding: 0 20px;
   }
  .mobile-title h3 {
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
  }
  .mobile-title p.step-description {
    font-size: 12px;
    color: #555;
    margin-top: 0.3rem;
  }
  .custom-set-controls button.checkout-btn {
    min-width: 180px;
  }

}