body {
  font-family: Arial, sans-serif;
  background-color: #fff5f5;
  margin: 0;
  padding: 20px;
  color: #333;
  text-align: center;
}

.header h1 {
  color: #007bff;
  margin-bottom: 5px;
}

.subheader {
  color: #555;
  margin-bottom: 20px;
}

.boutique-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-height: 600px;
  overflow-y: auto;
  padding: 0 40px;
}

.boutique-card {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 10px;
  text-align: center;
}

.boutique-card:hover {
  transform: scale(1.02);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.boutique-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
  position: relative;
}

.boutique-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boutique-name-placeholder {
  color: #007bff;
  font-size: 16px;
  padding: 10px;
}

.boutique-nom {
  font-weight: bold;
  color: #007bff;
  margin-bottom: 5px;
}

/* Popup styles */

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
}

.message-red {
  color: red;
  font-size: 18px;
  margin-bottom: 20px;
}

.popup-content button {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
