/* SECCIÓN GENERAL */

.af-featured {
  padding: 32px 0 40px;
  background: var(--af-bg-page);
}

.af-featured-title {
  margin: 0 0 18px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--af-text-main);
}

/* CONTENEDOR: 5 tarjetas visibles en desktop */

.af-featured-slider {
  position: relative;
  overflow: hidden;
}

.af-featured-track {
  display: flex;
  gap: 18px;
}

/* TARJETAS */

.af-product-card {
  flex: 0 0 calc(20% - 14.4px);
  max-width: calc(20% - 14.4px);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  padding: 18px 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.af-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

/* imagen */

.af-product-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.af-product-image img {
  max-height: 100%;
  width: auto;
  display: block;
}

/* textos */

.af-product-name {
  margin: 0 0 6px 0;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--af-primary);
}

.af-product-meta {
  margin: 0 0 10px 0;
  font-size: 0.82rem;
  color: var(--af-text-muted);
}

/* precio */

.af-product-price {
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--af-primary);
}

.af-product-price-main {
  font-size: 1.6rem;
}

.af-product-price-decimals {
  font-size: 1.05rem;
}

/* BANDA INFERIOR */

.af-product-action {
  margin-top: auto;
  background: #e9f6dd; /* estado inicial claro */
  border-radius: 18px 18px 24px 24px;
  padding: 10px 14px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.18s ease;
}

.af-product-action::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px 30px 40px 40px;
  box-shadow: 0 -14px 22px rgba(0, 0, 0, 0.04) inset;
  pointer-events: none;
}

/* ESTADO 0: sólo + */

.af-product-add-btn {
  border: none;
  background: transparent;
  color: var(--af-primary);
  font-size: 1.6rem;
  line-height: 1;
  width: 46px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ESTADO n>0: banda activa */

.af-product-action.af-product-action-active {
  background: var(--af-secondary); /* #00badb */
}

/* control - cantidad + */

.af-product-qty {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.af-product-qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(6, 33, 51, 0.15);
  background: #ffffff;
  color: #062133;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.af-product-qty-value {
  min-width: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #062133;
}

/* RESPONSIVE */

/* tablet: 3 visibles */

@media (max-width: 1024px) {
  .af-product-card {
    flex: 0 0 calc(33.333% - 12px);
    max-width: calc(33.333% - 12px);
  }

  .af-product-image {
    height: 110px;
  }

  .af-product-name {
    font-size: 0.9rem;
  }

  .af-product-price-main {
    font-size: 1.4rem;
  }
}

/* móvil: 1 visible */

@media (max-width: 768px) {
  .af-featured {
    padding: 24px 0 30px;
  }

  .af-featured-title {
    font-size: 1.15rem;
  }

  .af-featured-track {
    gap: 14px;
  }

  .af-product-card {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .af-product-image {
    height: 120px;
  }
}
