/* Caro Shop Bridge v1.3.0 — aligné sur le design Next.js (components/products/product-card.tsx) */

.caro-shop-widget {
  margin: 40px 0;
  max-width: 100%;
  font-family: inherit;
  --caro-gold: #eec42f;
  --caro-black: #111827;
  --caro-gray-100: #f3f4f6;
  --caro-gray-200: #e5e7eb;
  --caro-gray-500: #6b7280;
  --caro-yellow-100: #fef3c7;
  --caro-yellow-200: #fde68a;
  --caro-yellow-800: #92400e;
}

.caro-shop-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* --- Card --- */
.caro-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  color: inherit;
}

.caro-product-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

/* --- Image --- */
.caro-product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* ratio 4:3 fixe — ne s'étire pas avec la carte */
  overflow: hidden;
  background-color: #f3f4f6;
  display: block;
  flex-shrink: 0; /* bloque l'étirement flex quand la carte est plus haute */
}

.caro-product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.caro-product-card:hover .caro-product-image {
  transform: scale(1.05);
}

/* --- Badges image --- */
.caro-product-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.caro-badge-new {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 9999px;
  background: var(--caro-gold);
  color: var(--caro-black);
}

/* --- Overlay "Voir le produit" --- */
.caro-product-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.caro-product-card:hover .caro-product-overlay {
  transform: translateY(0);
}

.caro-overlay-btn {
  display: block;
  width: 100%;
  padding: 8px 14px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  background: var(--caro-black);
  color: #fff;
  text-decoration: none !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease;
}

.caro-overlay-btn:hover {
  background: var(--caro-gold);
  color: var(--caro-black);
}

/* --- Contenu --- */
.caro-product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1; /* prend l'espace restant sous l'image */
}

.caro-product-category {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--caro-gray-500);
  margin: 0;
}

.caro-product-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 !important;
  line-height: 1.4;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.caro-product-card:hover .caro-product-title {
  color: var(--caro-gold);
}

.caro-product-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.caro-product-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.caro-product-price-suffix {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--caro-gray-500);
}

.caro-badge-sample {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 6px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid var(--caro-yellow-200);
  background: var(--caro-yellow-100);
  color: var(--caro-yellow-800);
  white-space: nowrap;
}

/* --- Titre de section optionnel --- */
.caro-shop-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--caro-black);
  margin: 0 0 1.25rem 0;
}

/* --- Cart Shortcode Styles (inchangé) --- */
.caro-shop-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  transition: color 0.2s;
}

.caro-shop-cart-link:hover {
  color: var(--caro-gold);
}

.caro-cart-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.caro-cart-label {
  font-size: 1rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .caro-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .caro-shop-grid {
    grid-template-columns: 1fr !important;
  }

  .caro-product-info {
    padding: 12px;
  }
}
