/** Shopify CDN: Minification failed

Line 2070:2 Unexpected "}"

**/
/* .select-horizantal{
  height:20px;
} */
.trending-products__toggle-view{
  font-family: 'Crimson Pro' !important;
  font-size: 18px !important;
}


/*wishlis style*/
.mantine-1k9itrp
 {
  font-family: 'Crimson Pro' !important;
  font-size:18px;
}
.mantine-1ryt1ht
 {
  font-family: 'Crimson Pro' !important;
  font-size:18px;
}
/*wishlis style*/

/* === Animación suave para View More / Less === */
.trending-products__carousel-wrapper {
  opacity: 1;
  max-height: 1000px;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  margin: 0 auto;
}

.trending-products__carousel-wrapper.hidden {
  opacity: 0;
  max-height: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.trending-products__toggle-view {
  display: block;
  margin: 20px auto 0;
  padding: 8px 16px;
  background: #efeae1;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #b89f6e;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.trending-products__toggle-view:hover {
  background: #b89f6e;
  color:#fff;
}


/* === DISCOVERY SET CARD === */
/* === DISCOVERY SET CARD === */

.content-card {
  padding: 20px;
  position: relative;
  z-index: 2;
  background: #f8f5f1;
  width: 100%;
  max-width: 450px;
  height: auto;
  min-height: 340px;
  border-radius: 12px;
  margin: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.card-discovery-set {
  width: 100%;
  /* padding: 0 12px; */
}

.discovery-set-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  min-height: 550px; /* Altura mínima consistente */
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  /* agregado */
  /* justify-content: space-between; */
}

.discovery-set-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Badge y Tooltip */
.discovery-set-badge-wrapper {
  position: absolute;
  top: 16px;
  left: -15px;
  z-index: 10;
}

/* Overlay que cubre la card completa al hacer hover */
.discovery-set-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 5;
  pointer-events: none;
}

/* Mantener overlay visible con clase JavaScript */
.discovery-set-card.overlay-active::before {
  opacity: 1;
  visibility: visible;
}

.discovery-set-badge {
  position: relative;
  background: #f5f1e8;
  color: #b89f6e;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  z-index: 11;
}

.discovery-set-badge:hover {
  background: #b89f6e;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(184, 159, 110, 0.4);
}

/* Tooltip Modal */
.custom-tooltip-discovery {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  width: auto;
  max-width: 90%;
  max-height: 90%;
}

/* Modal visible con clase JavaScript */
.custom-tooltip-discovery.modal-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.notes-modal {
  position: relative;
  border-radius: 12px;
  padding: 10px;
  background: transparent;
  z-index: 2;
}

.notes-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 6px;
}

.note-item,
.note-item--link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #e0e0e0;
  border-radius: 24px;
  padding: 8px 12px;
  font-size: 0.813rem;
  font-weight: 500;
  color: #333333;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.note-item:hover,
.note-item--link:hover {
  background: #f8f8f8;
  border-color: #b89f6e;
  transform: translateY(-1px);
}

.note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.note-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.note-text {
  flex: 1;
  text-align: left;
}

/* Wishlist */
.discovery-set-wishlist,
.trending-products__wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.discovery-set-wishlist:hover,
.trending-products__wishlist:hover {
  background: #f5f5f5;
  transform: scale(1.05);
}

.discovery-set-wishlist svg,
.trending-products__wishlist svg {
  color: #999;
  transition: color 0.2s ease;
}

.discovery-set-wishlist:hover svg,
.trending-products__wishlist:hover svg {
  color: #a3934a;
}

/* Imagen */
.discovery-set-image-wrapper {
  margin: 40px 0 20px;
  text-align: center;
  /* flex-grow: 1; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.discovery-set-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.discovery-set-card:hover .discovery-set-image {
  transform: scale(1.05);
}

/* Info */
.discovery-set-info {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  /* margin-top: auto; */
}

.discovery-set-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-align:left !important;
  text-transform:uppercase !important;
}

.discovery-set-subtitle {
  font-size: 0.938rem;
  color: #666;
  margin: 0 0 8px 0;
  text-align:left !important;
  text-transform:uppercase !important;
}

.discovery-set-price {
  flex-shrink: 0;
}

.discovery-set-price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00264d;
  white-space: nowrap;
}

/* Botones */
.info-discovery-set-buttons {
  display: flex;
  gap: 7px;
  width: 100%;
  flex-direction: column;
}
.discovery-set-buttons{
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


.discovery-set-btn {
  flex: 1;
  padding: 12px 4px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-transform: uppercase;
}

.discovery-set-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.discovery-set-btn--cart {
  background: #4a4a4a;
  color: #ffffff;
}

.discovery-set-btn--cart:hover:not(:disabled) {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.discovery-set-btn--buy {
  background: #fff;
  color: #b5aa79;
  border: 2px solid #B5AA79;
}

.discovery-set-btn--buy:hover:not(:disabled) {
  background: #b5aa79;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(181, 170, 121, 0.3);
}

/* Responsive */

@media (min-width: 768px) {
  .discovery-set-info {
    height: 169px;
}
.discovery-set-image-wrapper{
  height: 199px;
}
}

@media (max-width: 768px) {
  .discovery-set-card {
    max-width: 100%;
    min-height: 440px;
    max-height: 440px;
    display: grid !important;
    grid-template-rows: 180px 1fr !important;
    gap: 12px !important;

  }
  .discovery-set-badge {
    font-size: 11px !important;
    left: 8px;
  }
  /* Botones */
.info-discovery-set-buttons {
  flex-direction: column;
  gap: 6px;
  justify-content: space-between;
}

  .info-discovery-set-buttons .discovery-set-buttons {
    display: grid;
      /* grid-template-columns: 1fr 1fr !important; */
       grid-template-columns: none;
  }
  .content-card {
    max-width: 95%;
    padding: 16px;
  }
  
  .notes-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-tooltip-discovery {
    max-width: 95%;
    max-height: 85%;
  }
}
/***************DISCOVERY SET******************/


/* Ocultar ribbon de notas en horizontal */
.product-grid--1-col .notes1-horizantal {
  display: block;
}

.ribbon1-horizantal {
  position: absolute;
    top: 10px;
    /* left: 815px; */
    background: #efeae1;
    color: #b89f6e;
    font-size: 19px;
    padding: 4px 10px;
    border-radius: 4px 4px 4px 0;
    cursor: pointer;
}

.ribbon1-horizantal.active-tooltip-horizantal {
  background: #b89f6e;
  color: rgb(255, 255, 255);
}

.notes1-horizantal:hover .custom-tooltip-horizontal {
  display: block;
}

.notes-table-container-horizontal{
display: flex;
   /* flex-direction: column; */
   justify-content: space-around;
   margin-top: 10px;
  /* gap: 3px;  */
}
.notes-table-horizontal {
  /* border: 1px solid #d1c7b7; */
  /* border-radius: 4px; */
  overflow: hidden;
  background-color: #F8F5F1;
  padding: 0px 22px;
  margin-top:5px;
  /* margin-bottom:9px; */
}

.notes-header-horizantal {
  /* background-color: #e8e0d3; */
  /* padding: 6px 12px; */
  font-family: 'Crimson', serif !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  /* border-bottom: 1px solid #d1c7b7; */
}

.notes-body-horizantal {
  /* padding: 8px 12px; */
  font-family: 'Crimson', serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #333;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 9px;
  /* border-bottom: 1px solid #d1c7b7; */
}

.product-grid--1-col .blur-horizantal {
  /* filter: blur(2px); */
  transition: filter 0.3s ease;
  opacity: 0.7;
}

.product-grid--1-col .blur-horizantal::before {
 content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0009;
    z-index: 1;
    pointer-events: none;
    border-radius: 5px;
}
.custom-tooltip-horizontal{
  display: none;
  position: absolute;
  top:-3px;
  left: 52%;
  transform: translateX(-50%);
  background-color: #F8F5F1;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  font-size: 12px;
  color: #555;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 67%;
  height:94%;
  max-width: 90vw;
  text-align: center;
  margin-top: 10px;
}

.notes-column-left {
  flex: 0 0 100px;
  /* padding: 8px 12px; */
  /* border-right: 1px solid #e0e0e0; */
  /* text-align: left; */
  /* margin: auto; */
}
/* .notes-column-right{
  margin:auto;
} */
.sub-title-notes{
  margin: 0px 0px;
    padding: 0px 0px;
    font-size:14px;
    color:#000;
     list-style: none; 
}
.line-vertical{
  color:#333;
  width: 1px;
}

/* ========================================
   ESTILOS BASE DE LA CARD (Layout Vertical)
   ======================================== */

.trending-products__card {
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
}

.card_details {
  position: relative;
  display: flex;
  flex-direction: column;
  /* height:528px; */
  height:100%;
}

/* Grid principal - forzar 1 columna cuando tiene la clase */
.product-grid--1-col .product-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}

.product-grid--1-col .product-grid__list {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  width: 100% !important;
}

/* Wishlist buttons - Por defecto mostrar vertical, ocultar horizontal */
.trending-products__wishlist--vertical {
  display: block;
}

.trending-products__wishlist--horizontal {
  /* display: none; */
    
}

/* Secciones de precio/variantes - Por defecto mostrar vertical, ocultar horizontal */
.trending-products__vertical-price-section {
  display: block;
}

.trending-products__horizontal-variant-section {
  display: none;
}

/* Ocultar elementos horizontales por defecto */
.trending-products__actions,
.trending-products__buttons-horizontal,
.trending-products__prices-horizontal {
  display: none;
}

/* Mostrar botones hover en layout vertical */
.product-buttons-hover {
  display: flex;
}

/* ========================================
   LAYOUT HORIZONTAL (.product-grid--1-col)
   ======================================== */
.product-grid--1-col .trending-products__price-wrapper{
display:none;
}
/* Asegurar que el contenedor padre ocupe todo el ancho */
.product-grid--1-col .product-grid__item {
  width: 100% !important;
  max-width: 100% !important;
  grid-column: 1 / -1 !important;
}
.product-grid--1-col .trending-products__card {
  /* width: 1200px; */
  max-width: 100%;
  display: block;
}
.product-grid--1-col .price-row {
  /* width: 1200px;
  max-width: 100%;
  display: block; */
}

.product-grid--1-col .card_details {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  width: 100%;
  height:20%;
}

/* Imagen en layout horizontal */
.product-grid--1-col .trending-products__image-wrapper {
  position: relative;
  width: 150px;
  height: 90% !important;
  flex-shrink: 0;
  min-height:0px;
}

.product-grid--1-col .trending-products__image-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-grid--1-col .trending-products__image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 4px;
}

/* Wishlist en imagen para layout horizontal */
.product-grid--1-col .trending-products__wishlist--horizontal {
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  background: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-grid--1-col .trending-products__wishlist--vertical {
  /* display: none; */
    top: 0px;
    left: 1262px;
}

/* Ocultar precio vertical y mostrar selector horizontal */
.product-grid--1-col .trending-products__vertical-price-section {
  display: none;
}

.product-grid--1-col .trending-products__horizontal-variant-section {
  display: block;
  margin-top: 12px;
}

/* Contenido principal */
.product-grid--1-col .trending-products__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.product-grid--1-col .trending-products__content  h3{
 height: 22px; 
 line-height: 1;
}

.product-grid--1-col .trending-products__content  p{
 height: 22px; 
 line-height: 1;
}


.product-grid--1-col .trending-products__info {
  display: contents;
}


.trending-products__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
} 

.product-grid--1-col .trending-products__brand {
  font-size: 20px;
  color: #666;
  margin: 0;
  text-transform: uppercase;
   line-height: 1.4;
  font-family: 'Crimson Pro', serif;
  font-weight: normal;
  /* Ancho aproximado de 15 caracteres */
  width: 15ch;
  /* Permitir múltiples líneas */
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  /* Limitar a 2 líneas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Alineación */
  text-align: left;
}

/* .product-grid--1-col .trending-products__product-title {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  
} */

.product-grid--1-col .trending-products__product-title a {
  color: #000;
  text-decoration: none;
}

/* Selector de variantes en layout horizontal */
.product-grid--1-col .trending-products__variant-selector {
  min-width: 140px;
  max-width: 200px;
  display: none;
}

.product-grid--1-col .trending-products__select,
.product-grid--1-col .trending-products__select--horizontal {
  width: 100%;
  padding: 8px 30px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

/* Ocultar detalles del perfume en horizontal */
.product-grid--1-col .perfume-details {
  display: none;
}

/* Mostrar acciones horizontales */
.product-grid--1-col .trending-products__actions {
  display: flex;
  align-items: center;
  justify-content:space-between;
  /* gap: 15px; */
      margin-top: -10px;
}

/* Quantity selector */
.product-grid--1-col .trending-products__quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: white;
  width: 200px;
  min-width: 225px;
  height: 40px;
}

.product-grid--1-col .quantity-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: #333;
}

.product-grid--1-col .quantity-btn:hover {
  background: #f5f5f5;
}

.product-grid--1-col .quantity-input {
  width: 100%;
  height: 40px;
  border: none;
  /* border-left: 1px solid #ddd;
  border-right: 1px solid #ddd; */
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  -moz-appearance: textfield;
}

.product-grid--1-col .quantity-input::-webkit-outer-spin-button,
.product-grid--1-col .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Prices horizontal */
.product-grid--1-col .trending-products__prices-horizontal {
  display: flex;
  /* gap: 40px; */
  align-items: center;
  gap: 8px; /* ajusta según necesites */
  font-size: 18px;
  min-width: 370px;
  justify-content: space-between;
  margin-left: 322px;
}

.product-grid--1-col .price-label-group {
  display: flex;
  margin-left:14px;
  align-items: center;
  gap:5px;
  /* flex-direction: column; */
  /* gap: 5px;
  align-items: center;
  min-width: 100px; */
}

/* .product-grid--1-col .price-label {
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}
*/
.product-grid--1-col .price-value {
  font-size: 26px !important;
  font-weight: 700;
  color: #00264d;
  /* padding-top:6px; */
} 

.product-grid--1-col .total-price{
      font-size: 26px !important;
    font-weight: 700;
    color: #00264d;
    /* padding-top: 6px; */
        margin-left: 5px;
}

.product-grid--1-col .trending-products__prices-horizontal .price-label,
.product-grid--1-col .trending-products__prices-horizontal .price-value {
  margin: 0;
  padding: 0;
  display: inline;
  white-space: nowrap;
  
}


/* Buttons horizontal */
.product-grid--1-col .trending-products__buttons-horizontal {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.product-grid--1-col .trending-products__btn--cart-horizontal,
.product-grid--1-col .trending-products__btn--buy-horizontal {
  padding: 4px 12px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  width: 162px;
   font-family: 'Crimson Pro';
}

.product-grid--1-col .trending-products__btn--cart-horizontal {
  background: #656565;
  color: #fff;
}

.product-grid--1-col .trending-products__btn--cart-horizontal:hover {
  background: #333;
}

.product-grid--1-col .trending-products__btn--buy-horizontal {
  background: #fff;
  color: #B5AA79;
  border: 2px solid #B5AA79;
}

.product-grid--1-col .trending-products__btn--buy-horizontal:hover {
  background: #B5AA79;
  color: #fff;
}

.product-grid--1-col .trending-products__btn--delete {
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.product-grid--1-col .trending-products__btn--delete:hover {
  background: #fee;
  border-color: #fcc;
  color: #c00;
}

.product-grid--1-col .trending-products__btn--delete svg {
  stroke: currentColor;
  width: 18px;
  height: 18px;
}

/* Ocultar botones hover en layout horizontal */
.product-grid--1-col .product-buttons-hover {
  display: none !important;
}

/* Ocultar ribbon de notas en horizontal */
.product-grid--1-col .notes {
  display: none;
}

/* ========================================
   RESPONSIVE - Layout horizontal
   ======================================== */

@media (max-width: 768px) {
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--product-grid-gap);
        margin: 10px auto auto;
        padding: 0;
        list-style: none;
        row-gap: 52px;
        column-gap: 20px;
    }
    .product-grid h3, p {
        margin: 0 !important;
        /* text-transform: uppercase !important; */
        text-align:start;
        /* text-align: left !important; */
    }

    .product-grid--1-col .card_details {
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
    }

    .product-grid--1-col .trending-products__actions {
      grid-column: 1 / -1;
      border-left: none;
      border-top: 1px solid #e5e5e5;
      padding-left: 0;
      padding-top: 15px;
      width: 100%;
      flex-wrap: wrap;
    }

  .product-grid--1-col .trending-products__quantity {
    width: 100%;
    max-width: 150px;
  }

  .product-grid--1-col .trending-products__buttons-horizontal {
    width: 100%;
    justify-content: space-between;
  }

  .product-grid--1-col .trending-products__prices-horizontal {
    width: 100%;
    justify-content: space-around;
  }
}

.product-grid--1-col .select-horizantal {
    display: flex;
    justify-content: start;
    gap: 0;
    flex-direction: column;
}

.product-grid--1-col .trending-products__product-title {
  /* flex: 1; */
  /* margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 121px;
  font-size:18px;
   width: 15ch;          
  word-break: break-all; 
  overflow-wrap: break-word; */

  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  font-family: 'Crimson Pro', serif;
  font-weight: normal;
  /* Ancho aproximado de 15 caracteres */
  width: 355px;
  /* Permitir múltiples líneas */
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  /* Limitar a 2 líneas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Alineación */
  text-align: left;
}
.product-grid--1-col .select-ml{
  /* display:block; */
  display:flex;
  width: 100px;
  height: 50px;
}
.select-ml{
  display:none;
  /* flex-shrink: 0; */
}
.product-grid--1-col .trending-products__select {
  min-width: 225px; /* Ajusta según tus necesidades */
  font-size: 18px;
    font-weight: bold;
    color:#000;

}
/****************************************************/

/* ==========================================
   NOTAS EN CELDAS CON LÍNEA VERTICAL
   ========================================== */

.notes-table-container {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.notes-table {
  /* border: 1px solid #d1c7b7; */
  /* border-radius: 4px; */
  overflow: hidden;
  background-color: #F8F5F1;
  padding: 0px 22px;
  margin-top:5px;
  /* margin-bottom:9px; */
}

.notes-header {
  /* background-color: #e8e0d3; */
  /* padding: 6px 12px; */
  font-family: 'Crimson', serif !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  /* border-bottom: 1px solid #d1c7b7; */
}

.notes-body {
  /* padding: 8px 12px; */
  font-family: 'Crimson', serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #333;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 9px;
  /* border-bottom: 1px solid #d1c7b7; */
}

.notes-footer {
  display: flex;
  align-items: center;
  padding: 0;
  /* background-color: #e8e0d3;
  border-top: 1px solid #d1c7b7; */
  font-size: 14px;
  color: #333;
  font-weight: 650!important;
  height: 20px;
}

.notes-footer-cell {
  flex: 1;
  /* padding: 6px 12px; */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}

.notes-footer-cell span {
  font-style: italic;
}

.notes-footer-divider {
  width: 1px;
  height: 20px;
  background-color: #d1c7b7;
}


.sub_title_buttom{
  font-size:8px;
  font-family: 'Crimson', serif;
}

.sub-title-button{
  font-size: 12px !important;
  font-family:'Crimson', serif !important;
}

/* ==========================================
   VARIABLES Y ESTILOS BASE
   ========================================== */
.subTitle {
  margin: 0px !important;
}

/* ==========================================
   PERFUME DETAILS
   ========================================== */
.perfume-details {
  font-family: 'Crimson', serif !important;
  font-size: 16px;
  color: #333;
   line-height: 1.2;
}

.details-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  justify-content: center;
}

.detail-item {
  align-items: center;
  gap: 4px;
}

.detail-item strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
}

.detail-separator {
  color: #999;
  font-weight: 500;
}

.details-divider {
  border: 0;
  /* border-top: 1px solid #d1c7b7; */
  margin: 0 0 8px;
}

.notes-section {
  margin-bottom: 8px;
}

.notes-section strong {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  margin-right: 4px;
}

strong i {
  font-size: 11px;
}

/* ==========================================
   RIBBON Y NOTAS
   ========================================== */
.ribbon {
  position: absolute;
  top: 10px;
  left: -5px;
  background: #EFEAE1;
  color: #b89f6e;
  font-size: 15px;
  padding: 4px 10px;
  border-radius: 4px 4px 4px 0;
  cursor: pointer;
  z-index: 5;
}

.ribbon.active-tooltip {
  background: #b89f6e;
  color: rgb(255, 255, 255);
}

.blur {
  /* filter: blur(2px); */
  transition: filter 0.3s ease;
  opacity: 0.7;
}

.blur::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
  border-radius: 5px;
}

#card_details {
  overflow: hidden;
}

.notes {
  position: absolute;
  top: 10px;
  left: -5px;
  font-size: 15px;
  padding: 4px 10px;
  border-radius: 4px 4px 4px 0;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s ease, background 0.3s ease;
}

.notes .custom-tooltip {
  display: none;
  position: absolute;
  top:45px;
  left: 52%;
  transform: translateX(-50%);
  background-color: #F8F5F1;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  font-size: 12px;
  color: #555;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* width: 240px; */
  width: calc(100% - 16px);
  /* max-width: 90vw; */
    max-width: 300px; 
  text-align: center;
  margin-top: 10px;
  box-sizing: border-box;
}

/* .perfume-details {
  font-family: Crimson;
} */

.notes:hover .custom-tooltip {
  display: block;
}

/* ==========================================
   TOOLTIP CONTENT
   ========================================== */
.tooltip-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tooltip-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.tooltip-section strong {
  font-family: Crimson !important;
  font-weight: 800 !important;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  margin: 0;
}

.tooltip-section p {
  font-family: Crimson !important;
  font-weight: 400;
  font-size: 14px;
  margin: 0;
  color: #333;
  line-height: 1.4;
}

.tooltip-section .duration {
  font-family: Crimson, sans-serif;
  font-weight: 800 !important;
  font-size: 14px;
  margin: 0;
  color: #333;
  font-style: italic;
}

.separator {
  width: 80%;
  border: 0;
  border-top: 1px solid #d1c7b7;
  margin: 16px auto 8px;
}

/* ==========================================
   BOTONES HOVER
   ========================================== */
.product-buttons-hover {
  position: absolute;
  z-index: 1;
  flex-direction: column;
  right: 12px;
  /* top: 104px; */
   top: 170px;
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  opacity: 0 !important;
  transform: translateY(10px);
  gap:6px;
}

.trending-products__card:hover .product-buttons-hover {
  display: flex;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ==========================================
   SECCIÓN PRINCIPAL
   ========================================== */
.trending-products {
  background: var(--background-color, #ffffff);
  /* padding: var(--section-padding-top, 60px) 0 var(--section-padding-bottom, 60px); */
}

.trending-products__container {
   max-width: 1500px;
    margin: 30px auto 0;
    padding: 0;
}

.trending-products__title {
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0;
  color: var(--title-color, #000);
}

/* ==========================================
   CARRUSEL
   ========================================== */
/* === Trending Products Carousel - Estilos Finales === */

.trending-products {
  background-color: var(--background-color, #ffffff);
  padding-top: var(--section-padding-top, 60px);
  padding-bottom: var(--section-padding-bottom, 60px);
}

.trending-products__container {
  /* max-width: var(--container-width, 1400px); */
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.trending-products__title {
  color: var(--title-color, #000000);
  margin: 0;
}

/* Wrapper del carrusel — ¡debe ser position: relative! */
.trending-products__carousel-wrapper {
  position: relative;
  margin-bottom: 10px;
  overflow: visible;
}

/* Carrusel principal */
.trending-products__carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap:18px;
  padding: var(--row-gap, 24px) var(--card-gap, 16px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0;
}

.trending-products__carousel::-webkit-scrollbar {
  display: none;
}

.trending-products__card {
  flex-shrink: 0;
  min-width: 0;
  box-sizing: border-box;
  /* El ancho será definido por JavaScript */
}

/* Contenedor de navegación: ocupa todo el área del wrapper */
.trending-products__carousel-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

/* Estilo base para los botones */
.trending-products__carousel-btn {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e0e0e0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  z-index: 10;
}

/* Flecha izquierda: esquina izquierda */
.trending-products__carousel-btn.prev {
  left: 0;
}

/* Flecha derecha: esquina derecha */
.trending-products__carousel-btn.next {
  right: 0;
}

/* Hover effect */
.trending-products__carousel-btn:hover {
  background: white;
  /* transform: translateY(-50%) scale(1.05); */
}

/* Opcional: añadir un pequeño margen desde el borde (descomenta si lo deseas) */
/*
.trending-products__carousel-btn.prev {
  left: 8px;
}
.trending-products__carousel-btn.next {
  right: 8px;
}
*/

/* Ocultar en móviles si lo deseas */
@media (max-width: 767px) {
  .trending-products__carousel-btn {
    display: none;
  }
}
/* ==========================================
   CARD
   ========================================== */
.trending-products__card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: calc((100% - (var(--cards-desktop) - 1) * var(--card-gap)) / var(--cards-desktop));
  background: var(--card-bg, #fff);
  border: 1px solid var(--card-border, #E5E5E5);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0 !important;
  height: 100%;
  border-radius: 10px;
}

.trending-products__card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); */
}

/* ==========================================
   ELEMENTOS DE LA CARD
   ========================================== */
.trending-products__wishlist {
  position: absolute;
  top: 272px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  /* background-color: #e5e5e5 !important; */
  background-color:#efeae1 !important;
  color: #b89f6e;

  box-shadow: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

.trending-products__wishlist_discovery-set{
   position: absolute;
  top: 14px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  /* background-color: #e5e5e5 !important; */
  background-color:#efeae1 !important;
  color: #b89f6e;

  box-shadow: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

.trending-products__wishlist:hover {
  transform: scale(1.1);
}

.trending-products__wishlist.active svg {
  fill: currentColor;
}

/* svg {
  fill: white !important;
  color: white !important;
} */

.trending-products__image-wrapper {
  /* position: relative;
  width: 100%;
  height: 300px !important;
  overflow: hidden;
  background: #fff;
  border-radius: 10px 10px 0 0; */

  /* position: relative; */
  /* width: 255px;
  height: 310px; */

  /* width: 100% !important;
  min-height: 270px;
  max-height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;  
  flex-shrink: 0; */
  /* padding-top:20px; */
  /* overflow: hidden !important;
  background: #fff;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center; */
   /* min-height: 300px; */

    position: relative;
    width: 100% !important;
    min-height: 270px;
    /* max-height: 270px;  */
    max-width: 270;
    justify-content: center;
    object-fit: cover;
    height:343px;

}

.trending-products__image-wrapper a {
  /* display: block;
  width: 100%;
  height: 100%; */
  /* display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 95%; */
  /* padding: 22px; */
}

.trending-products__image {
width: 100%;
height:100%;
  /* height: 110%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  border-radius: 10px 10px 0 0;
  background-color: #fff; */
}

.trending-products__card:hover .trending-products__image {
  transform: scale(1.05);
}

.trending-products__placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.trending-products__quick-view {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.trending-products__card:hover .trending-products__quick-view {
  opacity: 1;
  transform: translateY(0);
}

.trending-products__quick-view:hover {
  transform: scale(1.1);
}

/* ==========================================
   CONTENIDO DE LA CARD
   ========================================== */
.trending-products__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  /* justify-content: flex-end; */
  /* padding: 18px 18px !important; */
  padding:11px;
  min-height: 212px;
  max-height: 212px;
  max-width: 254px;
    min-width: 254px;
}

.trending-products__brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.trending-products__product-title {
  /* font-weight: 400;
  margin: 0;
  line-height: 1.3;
  font-size: clamp(14px, 2.8vw, 18px);
    min-height: 2.6em; */

     /* Ancho aproximado de 15 caracteres */
  /* width: 15ch; */
  /* Permitir múltiples líneas */
  /* white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto; */
  /* Limitar a 2 líneas */
  /* display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
  /* Alineación */
  /* text-align: left; */
  margin:0px;
  font-size:22px;
}

.title{
  line-height: 1.2;
  height: 72px;
  /* overflow: hidden; testing * */
  
}

.trending-products__product-title a {
  color: inherit;
  text-decoration: none;
}

.trending-products__product-title a:hover {
  text-decoration: underline;
}

/* ==========================================
   VARIANTES Y PRECIO
   ========================================== */
.trending-products__variant-selector {
  margin: 4px 0;
  width: 100%;
  max-width: 223px;
}

.trending-products__select {
  width: 100%;
  padding: 8px 32px 8px 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  min-width: 80px;
  outline: none;
}

.trending-products__select:hover {
  border-color: #999;
}

.trending-products__select:focus {
  border-color: #5B4FFF;
  box-shadow: 0 0 0 2px rgba(91, 79, 255, 0.2);
}

.trending-products__select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.trending-products__select option:disabled {
  color: #ccc;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 31px;
  /* margin: 12px 0; */
}

.trending-products__price-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trending-products__price--compare {
  text-decoration: line-through;
  font-weight: 400;
  color: #999;
}

.trending-products__price {
    font-weight: 700;
    color: #00264D;
    font-size: 24px !important;
}

.line-vertical{
  Background:#333;
}

/* ==========================================
   BOTONES
   ========================================== */
.trending-products__buttons {
  display: flex;
  margin-top: auto;
  padding-top: 12px;
  gap: 8px;
}

.trending-products__btn {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 10px;
}

.trending-products__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.trending-products__btn--buy {
  background: #A3934A;
  color: #fff;
}

.trending-products__btn--buy:hover:not(:disabled) {
  opacity: 0.9;
  transform: scale(1.05);
}

.trending-products__btn--cart {
  background: #656565;
  color: #fff;
}

.trending-products__btn--cart:hover:not(:disabled) {
  opacity: 0.9;
  transform: scale(1.05);
}

/* ==========================================
   NAVEGACIÓN DEL CARRUSEL
   ========================================== */
.trending-products__carousel-nav {
  position: absolute;
  top: 50%;
  width: 102%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
  transform: translateY(-50%);
  left: -8px;
}

.trending-products__carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #ddd;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.trending-products__carousel-btn:hover {
  background: white;
  transform: scale(1.15);
}

.notes-badge {
  margin: 1px !important;
}



@media( max-width:1700px ){
  .trending-products__container{
    /* max-width:96%; */
  }
}

@media( max-width:1500px ){
  .trending-products__container{
    /* max-width:100%; */
  }
}

@media (max-width: 1400px) {
  
  .trending-products__card {
    width: calc((100% - (4 - 1) * var(--card-gap)) / 4);
  }
  product-grid .custom-tooltip{
    /* width: 175px; */
  }
}

@media (max-width: 1147px) {
 
  .trending-products__card {
    width: calc((100% - (3 - 1) * var(--card-gap)) / 3);
  }
}
@media (max-width: 847px) {
 
  .trending-products__card {
    width: calc((100% - (2 - 1) * var(--card-gap)) / 2);
  }
}

@media (max-width: 376px) {
 
  .trending-products__card {
    /* width: calc((100% - (1 - 1) * var(--card-gap)) / 1); */
  }
}

/* @media (max-width:1251){
  .notes .custom-tooltip{
   position: absolute;
    top: 45px;
    left: 52%;
    transform: translate(-50%);
    background-color: #f8f5f1;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    font-size: 12px;
    color: #555;
    z-index: 1000;
    box-shadow: 0 4px 8px #0000001a;
    width: 206px;
    max-width: 90vw;
    text-align: center;
    /* margin-top: 10px; */
  }
} */


/* ==========================================
   RESPONSIVE - MÓVIL (hasta 768px)
   ========================================== */
@media (max-width: 768px) {
  .product-buttons-hover{
    transition: none !important;
  }
  .sub-title-button{
    font-size: 9px !important;
  }
  .trending-products {
    padding: 40px 0;
  }
  strong i {
    font-size: 10px !important;
}

  hr{
    display:none;
  }
  .trending-products__carousel{
    padding: 4px 12px;
  }
  .trending-products__container {
      max-width: 1440px;
    margin: 30px auto 0;
    padding: 0;
  }

  .trending-products__title {
    font-size: 14px !important;
    margin-bottom: 24px !important;
  }


  /* Forzar 1 card visible en móvil */
  .trending-products__carousel-padding {
     width: calc((100% - (2 - 1) * var(--card-gap)) / 2);
  }

  .trending-products__card {
     width: calc((100% - (2 - 1) * var(--card-gap)) / 2);
    height: auto;
  }


  /* .trending-products__image-wrapper {
    height: 150px !important;
  } */
  .trending-products__image-wrapper a {
    padding:0;
  }
  .trending-products__wishlist {
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
  }

  .trending-products__quick-view {
    width: 36px;
    height: 36px;
    bottom: 8px;
    right: 8px;
  }

  /* .trending-products__content {
    padding: 0 12px !important;
    gap: 6px;
  } */

  .trending-products__brand {
    font-size: 14px;
    line-height: 15px;
    margin-bottom:5px !important;

     /* Ancho aproximado de 15 caracteres */
  width: 15ch;
  /* Permitir múltiples líneas */
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  /* Limitar a 2 líneas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Alineación */
  text-align: left;
  }

  /* .trending-products__product-title {
    font-size: 12px;
  } */

  .trending-products__select {
    padding:0px !important;
    font-size: 12px;
    padding-left:5px !important;
  }

  .trending-products__price {
    font-size: 16px;
  }

  .trending-products__price--compare {
    font-size: 14px;
  }

  .price-row {
    gap: 8px;
    margin: 3px 0;
  }

  .trending-products__buttons {
    gap: 6px;
    padding-top: 8px;
  }

  .trending-products__btn {
    width: 36px;
    height: 36px;
    font-size: 9px;
  }

  /* .product-buttons-hover {
    top: 51px;
    right: 6px;
  } */

  .trending-products__carousel-nav {
    width: 108%;
    left: -16px;
  }

  .trending-products__carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  /* Ribbon más pequeño */
  .ribbon {
    font-size: 12px;
    padding: 3px 8px;
    top: 4px;
    left: -3px;
  }

  /* Tooltip más pequeño y posicionamiento ajustado */
  .notes .custom-tooltip {
    width: 200px;
    padding: 10px !important;
    font-size: 10px;
    /* Ajustar posición para que no se salga */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
  }

  .tooltip-section strong {
    font-size: 12px;
  }

  .tooltip-section p,
  .tooltip-section .duration {
    font-size: 11px;
  }

  .tooltip-content {
    gap: 12px;
  }

  /* .perfume-details {
    font-size: 11px;
    padding-bottom: 15px;
  } */

  .details-header {
    gap: 3px;
    margin-bottom: 6px;
  }

  .notes-section strong {
    font-size: 10px;
  }
}

/* Mostrar 3 tarjetas en pantallas ≤ 1250px */
@media (max-width: 1250px) {
  .trending-products__carousel,
  .product-grid {
   grid-template-columns: repeat(3, 1fr);
   
  }
}





  .capitalize-words {
  text-transform: capitalize;
}

.total-price::after{
display:none !important;
}

.price-label{
line-height: 1.2;

}

.info-row {
  display: flex;
  align-items: flex-start; /* permite que el texto crezca sin mover los selects */
  gap: 16px; /* espacio entre título y selects */
}

.title-section {
  flex: 1;
  min-width: 0; /* permite truncado correcto en flex */
}

.selects-section {
  flex-shrink: 0; /* evita que los selects se compriman */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* alinea al inicio, no al centro */
  gap: 8px;
}

/* Asegura que los selects tengan el mismo ancho y alineación */
.trending-products__select {
  min-width: 120px; /* ajusta según tus necesidades */
  padding: 4px 8px;
  font-size: 14px;
}

.price-label-group {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

@media (max-width: 749px) {
  .trending-products__product-title {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Número de líneas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}