
/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 20px;
}

.hero-card {
  background: var(--card);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.hero-card[data-product-link] {
  cursor:pointer;
}

.hero-card .muted p:last-child {
  margin-bottom: 0;
}

.hero-card:first-child {
  text-align: center;
}

.hero-card:first-child h2 {
  text-transform: uppercase;
}

.hero-card {
  text-align: center;
}

.hero-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.hero-card:hover {
  transform: translateY(-2px);
}

.hero-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* Image Noël sans carrousel */
.hero-image-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  min-height: 250px;
}

.hero-image-container picture {
  width: 100%;
}

.hero-image {
  width: 70%;
  max-width: 70%;
  max-height: 250px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.hero-card .carousel {
  min-height: 250px;
}

.hero-card .carousel-images {
  height: 200px;
}

/* Search Row */
.search-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.search-row select {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

@media (max-width: 680px) {
  .hero-image {
    width: 100%;
    max-width: 100%;
  }
}