/** Shopify CDN: Minification failed

Line 76:3 Expected "}" to go with "{"

**/
.hero-title {
  margin-bottom: 1rem;
  color: #1E1E1E;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #4B5563;
  margin-bottom: 2rem;
}

.hero-button {
  display: inline-block;
  background-color: #2563EB;
  color: #FFFFFF;
  padding: 0.9rem 1.8rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.hero-button:hover {
  background-color: #1E40AF;
}
/* ✅ Ajustements pour mobile */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
    text-align: center;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto 24px;
  }

  .hero-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero-rating {
    justify-content: center;
  }

  .hero-list {
    font-size: 15px;
    text-align: left;
    margin: 20px auto;
    display: inline-block;
  }