/* Contenedor principal del producto */
.wd-product {
  border-radius: 12px; /* Esquinas moderadamente redondeadas */
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wd-product:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Imagen del producto */
.wd-product .wd-product-image,
.wd-product figure.woocommerce-product-gallery {
  border-radius: 12px 12px 0 0; /* Solo arriba redondeado */
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.wd-product img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
}

/* Contenedor de información del producto */
.wd-product .product-info,
.wd-product .woocommerce-loop-product-title,
.wd-product .woocommerce-loop-product__meta {
  padding: 16px 14px;
}

/* Título del producto */
.wd-product .woocommerce-loop-product-title,
.wd-product h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px 0;
  color: #1a1a1a;
}

/* Precio */
.wd-product .price {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 8px 0;
}

/* Etiquetas/Labels */
.wd-product .wd-labels-wrapper {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
}

.wd-product .product-label {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px; /* Esquinas más rectas en labels */
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Variantes de colores por categoría */
.wd-product.x-mini .product-label {
  background-color: #FF4F7F;
  color: #fff;
}

.wd-product.mini .product-label {
  background-color: #FF9500;
  color: #fff;
}

.wd-product.small .product-label {
  background-color: #00BCD4;
  color: #fff;
}

.wd-product.medium .product-label {
  background-color: #E91E63;
  color: #fff;
}

.wd-product.large .product-label {
  background-color: #FFC107;
  color: #1a1a1a;
}

.wd-product.xlarge .product-label {
  background-color: #2196F3;
  color: #fff;
}

/* Botones de cantidad y compra */
.wd-product .wd-quantity,
.wd-product .quantity {
  margin: 8px 0;
}

.wd-product .quantity input[type="number"] {
  width: 50px;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 4px; /* Esquinas rectas */
  text-align: center;
}

.wd-product .add_to_cart_button,
.wd-product .button {
  border-radius: 6px; /* Ligeramente redondeado */
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wd-product .add_to_cart_button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Grid responsivo */
@media (max-width: 1024px) {
  .wd-col {
    border-radius: 10px;
  }
  
  .wd-product .wd-product-image {
    border-radius: 10px 10px 0 0;
  }
}

@media (max-width: 768px) {
  .wd-col {
    border-radius: 8px;
  }
  
  .wd-product .wd-product-image {
    border-radius: 8px 8px 0 0;
  }
  
  .wd-product .product-info {
    padding: 12px 10px;
  }
}

/* Efecto hover diferenciado */
.wd-product.wd-hover-base:hover {
  border-radius: 12px;
}

.wd-product.wd-hover-info {
  position: relative;
}

/* Asegurar que no se corte el contenido */
.wd-product {
  contain: layout style paint;
}