html {
  box-sizing: border-box;
  font-size: clamp(0.95rem, 0.7vw + 0.5vh, 1.125rem);
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Oswald", sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
}

button {
  background: unset;
  border: unset;
}
section {
  width: 100%;
  overflow-x: hidden;
}

.petit-dejeuner {
  background: url("../images/detail/grunge-wall-texture.jpg") center/cover
    no-repeat;
  width: 100%;
}

.petit-dejeuner__wrapper {
  padding: 6rem 1rem;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  color: white;
}

.petit-dejeuner__info {
  text-align: center;
  flex: 0.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.petit-dejeuner__image {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.petit-dejeuner__title {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.petit-dejeuner__description {
  font-size: 1rem;
  text-align: center;
}

.petit-dejeuner__price-base,
.petit-dejeuner__price-total {
  font-weight: bold;
  font-size: 1.2rem;
  color: #b48b3c;
}

.petit-dejeuner__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  flex: 0.4;
}

.petit-dejeuner__label {
  font-weight: bold;
  font-size: 1rem;
  display: block;
}

.petit-dejeuner__select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  color: #000;
  appearance: none;
}

.petit-dejeuner__total {
  text-align: center;
}

.petit-dejeuner__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.petit-dejeuner__qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.petit-dejeuner__qty button {
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input {
  width: 3rem;
  text-align: center;
  font-size: 1rem;
  padding: 0.3rem;
  border: 1px solid #000;
  border-radius: 4px;
}

.petit-dejeuner__submit {
  background-color: #d0c5a9;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  flex: 1;
  max-width: 10rem;
}

.petit-dejeuner__footer {
  border: 4px solid #d0c5a9;
  padding: 1rem;
  border-radius: 8px;
  background: rgb(0 0 0 / 15%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 74%;
  margin-top: 2rem;
  backdrop-filter: blur(4px);
}

.petit-dejeuner__group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
}

@media (min-width: 480px) {
  .petit-dejeuner__wrapper {
    max-width: 440px;
  }
}

@media (min-width: 640px) {
  .petit-dejeuner__wrapper {
    max-width: 580px;
  }
}

@media (min-width: 768px) {
  .petit-dejeuner__wrapper {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .petit-dejeuner__wrapper {
    flex-direction: row;
    align-items: center;
    max-width: 960px;
    gap: 4rem;
  }
}

@media (min-width: 1280px) {
  .petit-dejeuner__wrapper {
    max-width: 1140px;
  }
}

@media (min-width: 1440px) {
  .petit-dejeuner__wrapper {
    max-width: 1320px;
  }
}

@media (min-width: 1920px) {
  .petit-dejeuner__wrapper {
    max-width: 1440px;
  }
}