/** Shopify CDN: Minification failed

Line 239:29 Unexpected "="

**/
/* === CSS PERSONALIZADO: Grid de productos === */

#ProductGridContainer {
  max-width: 1300px;
  margin: 0 auto;
}

#ResultsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
}

#ResultsGrid > li {
  width: auto;
  margin: 0;
  grid-column: span 1 !important;
}

@media screen and (max-width: 989px) {
  #ResultsGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 749px) {
  #ResultsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }
}

#ResultsGrid .product-card__media {
  padding: 0 15px;
  box-sizing: border-box;
}

#ResultsGrid .product-card__media .media {
  padding-bottom: 100% !important;
}

#ResultsGrid .product-card__media img {
  object-fit: cover;
}

#ResultsGrid .short-description {
  display: none;
}

#ResultsGrid .product-card__content h2.u-h6 {
  font-size: 14px;
  line-height: 1.3;
  margin: 8px 0 2px;
  font-weight: 500;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#ResultsGrid .price .price-item {
  font-size: 16px;
  font-weight: 500;
}

#ResultsGrid .product-card__content {
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
}

#ResultsGrid .product-card__quick-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#ResultsGrid .product-card__wrapper:hover .product-card__quick-add {
  opacity: 1;
}

/* === "También podría interesarte" en la página de producto === */

.section--product-recommendations ul.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
}

.section--product-recommendations ul.grid > li {
  width: auto;
  margin: 0;
  grid-column: span 1 !important;
}

@media screen and (max-width: 989px) {
  .section--product-recommendations ul.grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 749px) {
  .section--product-recommendations ul.grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 10px;
  }
}

.section--product-recommendations .product-card__media {
  padding: 0 15px;
  box-sizing: border-box;
}

.section--product-recommendations .product-card__media .media {
  padding-bottom: 100% !important;
}

.section--product-recommendations .product-card__media img {
  object-fit: cover;
}

.section--product-recommendations .short-description {
  display: none;
}

.section--product-recommendations .product-card__content h2.u-h6 {
  font-size: 14px;
  line-height: 1.3;
  margin: 8px 0 2px;
  font-weight: 500;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section--product-recommendations .price .price-item {
  font-size: 16px;
  font-weight: 500;
}

.section--product-recommendations .product-card__content {
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
}

.section--product-recommendations .product-card__quick-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.section--product-recommendations .product-card__wrapper:hover .product-card__quick-add {
  opacity: 1;
}

/* === Botón "Agregar al carrito": estilo pill de la marca (grid + recomendados) === */

.product-card__quick-add button {
  background-color: #000000;
  color: #ffffff;
  border-radius: 75px;
}

/* === Oculta el trigger "VER PRODUCTOS" del header (reemplazado por el menú horizontal) === */

li[class*="header-menu-item-parent"] {
  display: none;
}

/* === Menú de navegación horizontal (nivel 3 del header) === */

.cbcr-nav-menu {
  background-color: #ffffff;
  border-top: 1px solid #f0e4ec;
}

.cbcr-nav-menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 12px 20px;
  flex-wrap: wrap;
}

.cbcr-nav-menu__link {
  color: #241F1D;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.cbcr-nav-menu__link:hover {
  color: #E88AC4;
}

@media screen and (max-width: 749px) {
  .cbcr-nav-menu__list {
    gap: 16px;
    padding: 10px 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .cbcr-nav-menu__item {
    flex-shrink: 0;
  }
  .cbcr-nav-menu__link {
    white-space: nowrap;
  }ropdown de subcategorías === */

.cbcr-nav-menu__item {
  position: relative;
}

.cbcr-nav-menu__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #f0e4ec;
  border-radius: 12px;
  padding: 12px 0;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 8px 0 0;
  z-index: 20;
}

.cbcr-nav-menu__item:hover .cbcr-nav-menu__dropdown {
  display: block;
}

.cbcr-nav-menu__dropdown-link {
  display: block;
  padding: 8px 20px;
  color: #241F1D;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}

.cbcr-nav-menu__dropdown-link:hover {
  color: #E88AC4;
  background-color: #FBD9F1;
}

@media screen and (max-width: 749px) {
  .cbcr-nav-menu__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding-left: 12px;
    min-width: 0;
    width: max-content;
  }

  .cbcr-nav-menu__item.is-open .cbcr-nav-menu__dropdown {
    display: block;
  }
}
}

/* === D

/* === Iconos de Instagram y WhatsApp en el header === */

[class*="header-menu-sections"] {
  display: flex;
  align-items: center;
  height: 100%;
}

.cbcr-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 20px;
}

.cbcr-social-icons a {
  color: #241F1D;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.cbcr-social-icons a:hover {
  color: #E88AC4;
}

.cbcr-social-icons svg {
  width: 24px;
  height: 24px;
}

/* === Contador del carrito === */

a[class*="header-cart-sections"] {
  position: relative;
}

.cbcr-cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background-color: #241F1D;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* === Sección "Rutina de skincare paso a paso" === */

.cbcr-routine {
  max-width: 120rem;
  margin: 16px auto;
  padding: 0 5rem;
}

.cbcr-routine__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #241F1D;
  margin-bottom: 30px;
}

.cbcr-routine__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cbcr-routine__item {
  text-align: center;
  padding: 8px 20px;
}

.cbcr-routine__step {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #E88AC4;
  margin-bottom: 10px;
}

.cbcr-routine__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #241F1D;
  min-height: 78px;
}

@media screen and (max-width: 989px) {
  .cbcr-routine__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .cbcr-routine {
    padding: 0 15px;
  }

  .cbcr-routine__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.cbcr-brands {
  padding: 40px 0;
  overflow: hidden;
}

.cbcr-brands__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #241F1D;
  margin: 0 0 30px;
}

.cbcr-brands__row {
  overflow: hidden;
  margin-bottom: 16px;
}

.cbcr-brands__track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: cbcr-scroll-left 30s linear infinite;
}

.cbcr-brands__row--2 .cbcr-brands__track {
  animation: cbcr-scroll-right 30s linear infinite;
}

@keyframes cbcr-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes cbcr-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.cbcr-brands__item {
  flex: 0 0 auto;
  width: 220px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  background-color: #FBD9F1;
}

.cbcr-brands__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cbcr-brands__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #241F1D;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .cbcr-brands__track {
    animation: none;
  }
}

@media screen and (max-width: 749px) {
  .cbcr-brands__item {
    width: 160px;
    height: 160px;
  }
}
.featured-collection__header {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.featured-collection__header h2 {
  grid-column: 2;
  text-align: center;
  margin: 0;
}

.featured-collection__header a {
  grid-column: 3;
  justify-self: end;
}
.featured-collection__wrapper .short-description {
  display: none;
}

.featured-collection__wrapper .product-card__media .media {
  padding-bottom: 100% !important;
}

.featured-collection__wrapper .product-card__media img {
  object-fit: cover;
}

.featured-collection__wrapper .product-card__content h2,
.featured-collection__wrapper .product-card__content h3 {
  font-size: 14px;
  line-height: 1.3;
  margin: 8px 0 2px;
  font-weight: 500;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-collection__wrapper .price .price-item {
  font-size: 16px;
  font-weight: 500;
}

.featured-collection__wrapper .product-card__quick-add button {
  background-color: #000000;
  color: #ffffff;
  border-radius: 75px;
}
/* === Refuerzo de fuente Jost en todo el sitio === */

body,
h1, h2, h3, h4, h5, h6,
p, a, button, input, select, textarea, li, span {
  font-family: 'Jost', sans-serif;
}

/* Título de CBCR Marcas explícitamente en Jost */
.cbcr-brands__title {
  font-family: 'Jost', sans-serif;
}
[id*="__hero_"] h2.u-h0 {
  color: #241F1D;
}

[id*="__hero_"] .subheading {
  color: #241F1D;
}
[id*="__hero_"] img {
  object-position: center 20%;
}
.cbcr-routine__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #241F1D;
  min-height: 98px;
}
.cbcr-trustbar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 120rem;
  margin: 24px auto;
  padding: 16px 5rem;
  border-top: 1px solid #f0e4ec;
  border-bottom: 1px solid #f0e4ec;
}

.cbcr-trustbar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  flex: 1 1 0;
  justify-content: center;
  border-right: 1px solid #f0e4ec;
}

.cbcr-trustbar__item:last-child {
  border-right: none;
}

.cbcr-trustbar__item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #E88AC4;
}

.cbcr-trustbar__item span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #241F1D;
  white-space: nowrap;
}

@media screen and (max-width: 749px) {
  .cbcr-trustbar {
    padding: 12px 15px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .cbcr-trustbar__item {
    flex: 0 0 auto;
    border-right: 1px solid #f0e4ec;
    padding: 8px 16px;
  }
  .cbcr-trustbar__item span {
    font-size: 12px;
  }
}
.cbcr-testimonials {
  max-width: 120rem;
  margin: 32px auto;
  padding: 0 5rem;
}

.cbcr-testimonials__title {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 28px;
  margin: 0 0 24px;
  color: #241F1D;
}

.cbcr-testimonials__row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.cbcr-testimonials__card {
  width: 300px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  scroll-snap-align: start;
  background-color: #0b141a;
}

.cbcr-testimonials__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


@media screen and (max-width: 749px) {
  .cbcr-testimonials {
    padding: 0 15px;
  }

  .cbcr-testimonials__card {
    width: 220px;
    height: 320px;
  }
}
.cbcr-shipping-bar {
  max-width: 100%;
  margin: 0 0 24px;
  padding: 16px 20px;
  background-color: #FBD9F1;
  border-radius: 16px;
}

.cbcr-shipping-bar__message {
  margin: 0 0 10px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #241F1D;
  text-align: center;
}

.cbcr-shipping-bar__track {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  overflow: hidden;
}

.cbcr-shipping-bar__fill {
  height: 100%;
  width: 0%;
  background-color: #E88AC4;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.cbcr-shipping-bar.is-complete .cbcr-shipping-bar__fill {
  background-color: #22c55e;
}
.cbcr-cart-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 14px 0;
  flex-wrap: wrap;
}

.cbcr-cart-trust__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cbcr-cart-trust__item svg {
  width: 18px;
  height: 18px;
  color: #E88AC4;
  flex-shrink: 0;
}

.cbcr-cart-trust__item span {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #241F1D;
}
