/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #fdf5f7;
  color: #333;
}

/* Bandeau top info */
.top-info {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Header principal */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

.header-main a {
  text-decoration: none;
  color: #000;
  margin-left: 15px;
  font-size: 14px;
}

.header-main h1 {
  font-size: 24px;
  letter-spacing: 2px;
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: center;
  background-color: #f3e4e8;
  padding: 10px 0;
  flex-wrap: wrap;
}

.main-nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 14px;
}

/* Barre de recherche */
.search-bar {
  text-align: center;
  padding: 15px;
  background-color: #fff0f5;
}

.search-bar input {
  width: 50%;
  padding: 8px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 25px;
}

/* Hero Section */
.hero-section {
  position: relative;
  text-align: center;
  color: white;
}

.hero-section img {
  width: 100%;
  height: auto;
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.hero-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-button {
  background-color: #000;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

/* Produits */
.products-section {
  padding: 40px;
  background: linear-gradient(to right, #fff0f5, #fdf5f7);
}

.products-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.products-section p {
  margin-bottom: 30px;
  font-size: 16px;
  color: #666;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}

.product {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.product img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.product h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product .price {
  font-weight: bold;
  margin-bottom: 10px;
}

.add-to-cart {
  background-color: #000;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 14px;
}
.search-form {
  display: flex;
  max-width: 500px;
  margin: 30px auto;
  border: 2px solid #000;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-form input[type="text"] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-form button {
  background-color: #EFE5E8;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-form button:hover {
  background-color: #a40052;
}

