.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  padding: 0;
  display: grid;
  width: 600px;
  max-height: 80%;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.modal-content:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-image {
  width: 100%;
  height: 18.75rem;
  object-fit: cover;
}

.modal-content-wrapper {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(80vh - 18.75rem);
}

.modal-header {
  position: relative;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1.25rem;
}

.modal-description {
  line-height: 1.6;
  color: #666;
  padding: 0 10px 20px 10px;
  border-bottom: 1px solid var(--background-color-grey);
}

.modal-ingredients-section {
  padding: 20px 10px;
  border-bottom: 1px solid var(--background-color-grey);
}

.modal-appareils-section {
  padding: 20px 10px;
  border-bottom: 1px solid var(--background-color-grey);
}

.modal-ustensils-section {
  padding: 20px 10px;
  border-bottom: 1px solid var(--background-color-grey);
}

.close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 14px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.close:hover {
  color: var(--color-noir);
}

