@charset "UTF-8";
.top-section {
  width: 100%;
  display: flex;
}

.pageDetail__container {
  color: #004246;
  padding-inline: 1rem;
  padding-block: 1rem;
}

.pageDetail__description {
  padding-inline: 1rem;
}
.pageDetail__description > p:nth-child(n+5):nth-child(-n+10) {
  font-weight: 300;
}

.miniatures_container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.title {
  color: #00666C;
  font-size: 2rem;
}

.stock {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stock.success p {
  margin: 0;
  font-weight: bold;
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  background-color: #7dde9b;
  color: #335c40;
}
.stock.limit p {
  margin: 0;
  font-weight: bold;
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  background-color: #ffcb29;
  color: #745a06;
}
.stock.sold-out p {
  margin: 0;
  font-weight: bold;
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  background-color: rgba(195, 0, 0, 0.231372549);
  color: #6b0000;
}
.stock.coming-soon {
  flex-direction: column;
  align-items: flex-start;
}
.stock.coming-soon p:nth-child(1) {
  margin: 0;
  font-weight: bold;
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  background-color: rgba(195, 0, 0, 0.231372549);
  color: #6b0000;
}
.stock.coming-soon p:nth-child(2) {
  margin: 0;
  font-weight: bold;
  border-radius: 0.5rem;
  padding: 0.5rem 2rem;
  background-color: #7dde9b;
  color: #335c40;
}

.btn-container {
  display: flex;
  justify-content: center;
  padding-block: 1rem;
}
.btn-container.cart_add {
  width: 100%;
  padding-block: 1rem;
}
.btn-container.cart_add .cart-add-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}
.btn-container.cart_add .product-quantity-control {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid #335c40;
  border-bottom: none;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  background-color: #fff;
}
.btn-container.cart_add .product-quantity-input {
  flex: 1;
  min-width: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0.5rem;
  border: none;
  border-left: 1px solid #335c40;
  border-right: 1px solid #335c40;
  border-radius: 0;
  background-color: #fff;
  color: #335c40;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1;
  appearance: textfield;
  -moz-appearance: textfield;
}
.btn-container.cart_add .product-quantity-input::-webkit-outer-spin-button, .btn-container.cart_add .product-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.btn-container.cart_add .product-quantity-input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(51, 92, 64, 0.15);
}
.btn-container.cart_add .btn-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3.25rem;
  width: 3.25rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: #fff;
  color: #335c40;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.btn-container.cart_add .btn-quantity:hover, .btn-container.cart_add .btn-quantity:focus {
  outline: none;
  background-color: rgba(51, 92, 64, 0.08);
}
.btn-container.cart_add .btn-quantity:active {
  background-color: rgba(51, 92, 64, 0.14);
}
.btn-container.cart_add a.addToCart {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-weight: bold;
  border-radius: 0 0 1rem 1rem;
  border: 1px solid #335c40;
  padding: 1rem;
  background-color: initial;
  color: #335c40;
  transition: 0.4s ease-in-out;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-container.cart_add a.addToCart svg path {
  transition: fill 0.4s ease-in-out;
  fill: #335c40;
}
.btn-container.cart_add a.addToCart:hover {
  color: white;
  text-shadow: 1px 1px 1px #335c40;
  background-color: #7dde9b;
  border: 1px solid #7dde9b;
  transition: 0.4s ease-in-out;
  box-shadow: 1px 1px 2px #335c40;
}
.btn-container.cart_add a.addToCart:hover svg {
  filter: drop-shadow(1px 1px 1px #335c40);
}
.btn-container.cart_add a.addToCart:hover svg path {
  fill: white;
}
.btn-container.limit a, .btn-container.sold-out a, .btn-container.idMust a {
  display: flex;
  justify-content: center;
  font-weight: bold;
  border-radius: 1rem;
  border: 1px solid #004246;
  padding: 1rem 1.5rem;
  background-color: initial;
  color: #004246;
  transition: 0.4s ease-in-out;
  gap: 0.5rem;
}
.btn-container.limit a:hover, .btn-container.sold-out a:hover, .btn-container.idMust a:hover {
  color: white;
  background-color: rgb(0, 66, 70);
  transition: 0.4s ease-in-out;
}
.btn-container.limit a svg path:hover, .btn-container.sold-out a svg path:hover, .btn-container.idMust a svg path:hover {
  fill: white;
  transition: 0.4s ease-in-out;
}

.btn {
  border: 1px solid #abcdcf;
  border-radius: 0.5em;
  margin: 1rem;
}

.reference {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: bold;
}

.ligne-produit {
  width: 100%;
  background-color: rgba(0, 103, 108, 0.3294117647);
  height: 0.05rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.marque {
  font-weight: 300;
  font-size: 1.1rem;
}

.block-prix {
  padding-block: 1rem;
}

.prix {
  color: #00666C;
  margin: 0;
}
.prix span {
  background-color: #00666C;
  color: #ffcb29;
  padding: 1rem;
  border-radius: 1rem;
}
.prix span b {
  font-size: 1.5rem;
}

.block-prix-quantite h5 {
  color: #00666C;
}

.table {
  color: #004246;
  border-color: #abcdcf;
  border-spacing: 1px;
}
.table tbody tr td {
  font-weight: 300;
}
.table th {
  border-top: 1px solid #abcdcf;
}
.table thead th {
  border-bottom: 1px solid #abcdcf;
}

.cercle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  margin-left: 1rem;
  transition: transform 0.2s ease-in-out;
}
.cercle:hover {
  transform: scale(1.1);
  border: rgba(105, 105, 105, 0.63) 2px solid;
}

.couleurs {
  display: flex;
  flex-direction: row;
}

.carousel-inner {
  border: 1px solid #abcdcf;
  padding: 1em;
  border-radius: 1rem;
}

.main-carousel-image {
  width: 500px;
  height: 500px;
  object-fit: cover;
}

.img-thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid #abcdcf;
}

.ul {
  list-style: circle;
}

.custom-carousel .carousel-item {
  width: 100%;
  height: 500px;
}

.custom-carousel-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.custom-thumbnail {
  width: 100px;
  cursor: pointer;
  object-fit: contain;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
}

.card {
  margin: 0.5em;
  border: none;
  border-radius: 0;
  width: 7rem;
  height: 7rem;
}

.card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  background-color: #e1e1e1;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.pageDetail__form-select {
  background-color: #f4f7f7;
  width: 100%;
  height: calc(2.25rem + 2px);
  border-color: #d8d8d8;
  color: #004246;
}

.description-container {
  background-color: #f4f7f7;
  margin: 3rem;
  border-radius: 1rem;
  overflow-x: hidden;
  padding-inline: 1rem;
}
.description-container p {
  font-weight: 300;
}
.description-container h3 {
  color: #00666C;
}

.description {
  font-size: 1.2rem;
  padding: 2rem;
  padding-top: 1rem;
  color: #004246;
}
.description ul li {
  list-style: inside;
  font-weight: 300;
}
.description h2 {
  color: #00666C;
}

h1 h2 h3 h4 h5 h6 {
  padding: 0;
  margin: 0;
}

h3 {
  font-size: 2rem;
  padding-bottom: 1rem;
}

.titre-details {
  position: relative;
  left: 2rem;
  top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.ld {
  background-color: #abcdcf;
  padding: 0;
  margin-inline: 2rem;
  width: auto;
}

select#declinablesSelect {
  background-color: #fff;
  border: 1px solid #d8d8d8;
}

select#declinablesSelect option {
  background-color: #fff;
}

.mb-3 {
  display: flex;
  align-items: baseline;
  flex-direction: column;
}

.form-select {
  width: 100%;
  border-color: #004246;
  color: #004246;
}

.form-label {
  margin-bottom: 0.5rem;
}

.img-thumbnail.selected {
  border: 2px solid #00666C;
}

.miniatures-navigation {
  display: flex;
  align-items: center;
}

.miniatures-wrapper {
  overflow: hidden;
  flex-grow: 1;
  border-radius: 0.5rem;
  padding-block: 0.5rem;
}

.carousel-item {
  transition: none !important;
}

/* pagedetail.scss */
.carousel-item img {
  width: 600px; /* Largeur fixe */
  height: 400px; /* Hauteur fixe */
  object-fit: contain; /* Couvrir l'espace disponible sans déformer l'image */
}

@media screen and (max-width: 700px) {
  .description-container {
    margin: 0.5rem;
    margin-bottom: 3rem;
    padding-inline: 0.5rem;
  }
  .description {
    padding: 0.5rem;
  }
  .titre-details {
    left: 0.5rem;
  }
  .ld {
    margin-inline: 0.5rem;
  }
}
.ancien-prix {
  text-decoration: line-through;
  color: #C30000;
  font-size: 1.2rem;
  margin-right: 1rem;
  text-align: center;
}

.ancien-prix-qte {
  text-decoration: line-through;
  color: #C30000;
  font-size: 0.9rem;
  margin-right: 1rem;
  text-align: center;
}

/*# sourceMappingURL=pagedetail.css.map */
