/* Contenedor del producto */
[class^='product-'][class$='__conteiner'] {
  background: linear-gradient(135deg, #f7ffe0 70%, #e9edc9 100%),
    url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
  background-blend-mode: lighten;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.14), 0 2px 8px rgba(44, 62, 80, 0.1);
  border: 1.5px solid #b9c568;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.13),
    0 1.5px 6px rgba(44, 62, 80, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.25s, transform 0.22s;
  border: 1.5px solid #e9edc9;
  min-width: 260px;
  max-width: 340px;
  position: relative;
  overflow: hidden;
}

[class^='product-'][class$='__conteiner']:hover {
  box-shadow: 0 12px 36px rgba(44, 62, 80, 0.18),
    0 4px 16px rgba(44, 62, 80, 0.13);
  transform: translateY(-8px) scale(1.025);
  border-color: #00ad06;
}

[class^='product-'][class$='__conteiner']::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 60% 40%, #e9edc9 60%, transparent 100%);
  opacity: 0.5;
  z-index: 0;
}

[class^='product-'][class$='__conteiner']::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 40% 60%, #b9c568 60%, transparent 100%);
  opacity: 0.18;
  z-index: 0;
}

/* Imagen del producto */
[class^='product-'][class$='__image'] {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

/* Título del producto */
[class^='product-'][class$='__title'] {
  font-size: 1.5rem;
  text-align: center;
}

/* Descripción del producto */
[class^='product-'][class$='__description'] {
  font-size: 1rem;
  margin: 0;
  line-height: 1.8rem;
}

/* Precio del producto minimalista */
[class^='product-'][class$='__price'],
[class^='product-'][class$='__price--color'] {
  text-align: center;
  font-size: 1.2rem;
  color: #7a8b3a;
  background: #fff;
  padding: 6px 18px 6px 30px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(185, 197, 104, 0.08);
  font-weight: 500;
  margin: 14px 0 8px 0;
  display: inline-block;
  border: 1px solid #e9edc9;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
}

[class^='product-'][class$='__price']::before,
[class^='product-'][class$='__price--color']::before {
  content: '$';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.7;
}

[class^='product-'][class$='__price']:hover,
[class^='product-'][class$='__price--color']:hover {
  box-shadow: 0 2px 8px rgba(185, 197, 104, 0.16);
  transform: scale(1.03);
}

/* Estilos base para ambos botones */
/* === BOTONES CON FONT AWESOME === */
.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 10px;
}

.btn {
  border: none;
  background-color: rgba(220, 220, 220, 0);
  padding: 12px 46px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn i {
  font-size: 18px;
  pointer-events: none;
  transition: color 0.3s ease;
}

/* Botón carrito - success */
.btn--cart {
  border: 2px solid #04aa6d;
}

.btn--cart i {
  color: #04aa6d;
}

.btn--cart:hover {
  background-color: #46a049;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.182);
}

.btn--cart:hover i {
  color: white;
}

/* Botón favoritos - danger */
.btn--favorite {
  border: 2px solid #f44336;
}

.btn--favorite i {
  color: #f44336;
}

.btn--favorite:hover {
  background-color: #da190b;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.182);
}

.btn--favorite:hover i {
  color: white;
}
