/* ── Favoritos ── */

.ceccato-fav-product-link {
  color: inherit;
  text-decoration: none;
}

.ceccato-fav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceccato-favorite-toggle {
    align-items: center;
    background: var(--blanco)!important;
    border: 1px solid var(--blanco-gris)!important;
    border-radius: 50px!important;
    color: var(--balnco)!important;
    display: flex!important;
    flex-shrink: 0;
    justify-content: center;
    cursor: pointer;
    height: 35px!important;
    padding: 0!important;
    transition: all .4s ease;
    vertical-align: middle;
    width: 35px!important;
}

.ceccato-favorite-toggle:hover, .ceccato-favorite-toggle.is-active {
    background: var(--celeste)!important;
    border-color: var(--celeste)!important;
}

path.ceccato-favorite-icon-outline {
    stroke: var(--blanco-gris);
}

.ceccato-favorite-icon-fill {
    opacity: 0;
    transition: opacity .16s ease;
}

.ceccato-favorite-toggle.is-active .ceccato-favorite-icon-fill, .ceccato-favorite-toggle:hover .ceccato-favorite-icon-fill {
    opacity: 1;
    fill: var(--blanco);
}

.ceccato-favorite-toggle.is-active .ceccato-favorite-icon-outline {
    opacity: 0;
}

.ceccato-favorite-toggle[disabled] {
    cursor: wait;
    opacity: .6;
}

.ceccato-favorite-toggle--loop {
  position: relative;
  top: 2px;
}

.ceccato-favorite-toggle--account {
  margin-left: 0;
}

.single-product form.cart .ceccato-favorite-toggle {
  display: inline-flex;
}

.ceccato-favorites-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ceccato-favorite-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ceccato-border);
}
.ceccato-favorite-row:last-child { border-bottom: none; }

.ceccato-fav-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--ceccato-radius-sm);
  border: 1px solid var(--ceccato-border);
  background: var(--ceccato-bg);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ceccato-fav-badge-catalogo {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  text-align: center;
  padding: 2px 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  pointer-events: none;
}

.ceccato-fav-info {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 0 12px;
  align-items: center;
}

.ceccato-fav-field-label {
  font-size: 11px;
  color: var(--ceccato-text-light);
  margin-bottom: 2px;
}
.ceccato-fav-field-value {
  font-size: 13px;
  color: var(--ceccato-text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ceccato-fav-field-value strong { font-weight: 700; }

.ceccato-fav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ceccato-fav-actions .ceccato-favorite-toggle {
  margin-left: 0;
}

.ceccato-context-menu .ceccato-favorite-toggle {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: block;
  padding: 8px 12px;
  color: #b91c1c;
  margin-left: 0;
}

.ceccato-context-menu .ceccato-favorite-toggle .screen-reader-text,
.ceccato-context-menu .ceccato-favorite-toggle .ceccato-favorite-icon {
  display: none;
}

/* Producto: Favorito */
.elementor-add-to-cart .ceccato-favorite-toggle {
    position: absolute!important;
    right: 0!important;
    top: 0!important;
}

.producto-catalogo .elementor-add-to-cart .ceccato-favorite-toggle {
    top: inherit!important;
}

/* Mobile */
@media (max-width: 920px) {
  .ceccato-favorite-row {
    gap: 16px;
    padding: 14px 0;
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
  }

  .ceccato-fav-info {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .ceccato-fav-thumb{
      width: 100%;
      height: auto;
      aspect-ratio: 1/1
  }
  .ceccato-fav-thumb{
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .ceccato-fav-field:first-child .ceccato-fav-field-value {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
  }

  .ceccato-fav-field:not(:first-child) .ceccato-fav-field-label {
    display: none;
  }

  .ceccato-fav-field-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--ceccato-text);
    margin-top: 2px;
  }

  /*.ceccato-fav-actions-desktop { display: none; }*/
  .ceccato-fav-actions-mobile {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .woocommerce ul.products li.product .ceccato-favorite-toggle,
  .woocommerce-page ul.products li.product .ceccato-favorite-toggle {
    width: 36px;
    height: 36px;
  }
}

  .ceccato-fav-actions-mobile { display: none; }

