@charset "UTF-8";
@font-face {
  font-family: "Luciole";
  src: url(../fonts/Luciole-Regular.woff) format("woff");
}
@font-face {
  font-family: "LucioleBold";
  src: url(../fonts/Luciole-Bold.woff) format("woff");
}
#basket {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  color: black;
}
#basket .basketItemCard {
  display: flex;
  gap: 16px;
  width: 100%;
  margin: auto 1%;
  border: 2px solid #096a09;
  align-items: center;
}
#basket .basketItemCard img {
  max-width: 150px;
  max-height: 150px;
  height: auto;
}
#basket .basketItemCard .basketDescriptionSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 18px;
  gap: 8px;
  padding: 8px 0;
  margin-right: 16px;
}
#basket .basketItemCard .basketDescriptionSection .basketQuantity {
  display: flex;
  text-align: center;
  align-items: center;
  width: 100%;
  gap: 32px;
}
#basket #basketPaymentButton {
  width: fit-content;
}

#noItemInBasket {
  color: rgba(0, 0, 0, 0.75);
  font-size: 20px;
}

#commentSection #commentSectionHeader {
  display: flex;
}
#commentSection #commentSectionHeader #addComment {
  color: rgb(56, 72, 163);
}
#commentSection #commentSectionHeader #addComment:hover {
  text-decoration: underline;
  cursor: pointer;
}
#commentSection .commentHeader {
  display: flex;
  width: 100%;
}
#commentSection .commentHeader .editComment {
  color: grey;
}
#commentSection .commentHeader .deleteComment {
  color: rgb(56, 72, 163);
}
#commentSection .commentHeader .deleteComment:hover {
  text-decoration: underline;
  cursor: pointer;
}

.articleCard {
  display: flex;
  flex: 0 0 350px;
  width: 100%;
  max-height: 130px;
  border: 2px solid #096a09;
}
.articleCard .articleCardLink {
  display: flex;
  width: 100%;
  text-decoration: none;
}
.articleCard .articleCardLink .articleCardImage {
  width: 35%;
  height: 100%;
}
.articleCard .articleCardLink .articleCardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articleCard .articleCardLink .articleCardDescription {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}
.articleCard .articleCardLink .articleCardDescription .articleCardTitle,
.articleCard .articleCardLink .articleCardDescription .articleCardBrand,
.articleCard .articleCardLink .articleCardDescription .promotion,
.articleCard .articleCardLink .articleCardDescription .normalPrice {
  text-align: center;
  color: black;
}

#homePage {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.articleCardSlider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 16px;
  /* Pour ne pas couper la scrollbar */
}

#connexionMenu {
  flex-direction: column;
  gap: 16px;
}
#connexionMenu #welcomeMenu {
  display: flex;
  flex-direction: column;
  margin: 0 16px;
  gap: 32px;
}
#connexionMenu #welcomeMenu hr {
  width: 75%;
}
#connexionMenu #welcomeMenu .menuLoginForm {
  color: rgba(0, 0, 0, 0.75);
  font-size: 20px;
}
#connexionMenu #loginForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#connexionMenu #loginForm #loginInputs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#connexionMenu #accountCreationLink {
  color: rgba(0, 0, 0, 0.75);
  font-size: 20px;
  text-align: center;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slider #sliderWrapper {
  position: relative;
  width: 100%;
}
.slider #sliderWrapper i {
  font-size: 48px;
}
.slider #sliderWrapper #caption {
  position: absolute;
  display: flex;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background-color: rgba(128, 128, 128, 0.5);
  padding: 32px 0;
}
.slider #sliderWrapper #caption #captionText {
  text-align: center;
  width: 100%;
  color: #eeeeee;
  font-size: 32px;
}
.slider #sliderWrapper #sliderImages {
  display: flex;
  width: 100%;
}
.slider #sliderWrapper #sliderImages .sliderImage {
  min-width: 100%;
  width: 100%;
}
.slider #sliderWrapper #sliderImages .sliderImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider #sliderWrapper #leftButton,
.slider #sliderWrapper #rightButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
.slider #sliderWrapper #leftButton {
  left: 16px;
}
.slider #sliderWrapper #rightButton {
  right: 16px;
}

#searchResults {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#searchResults #filterBar {
  display: flex;
  justify-content: center;
}
#searchResults #filterBar #filterButton {
  background: none;
  border: 1px solid #096a09;
  border-radius: 16px;
  padding: 4px 16px;
  cursor: pointer;
  color: #096a09;
}
#searchResults #filterBar #filterButton:hover {
  background-color: #096a09;
  color: #eeeeee;
}
#searchResults #articleList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 32px;
}
@media screen and (min-width: 750px) {
  #searchResults #articleList {
    grid-template-columns: repeat(2, 1fr);
  }
}

#filterOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

#filterModal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  background-color: #eeeeee;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  z-index: 101;
}
#filterModal #filterModalContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#filterModal #filterModalContent #closeModal {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
#filterModal #filterModalContent .filterSection {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  #filterModal {
    width: 400px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

#noResults {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 24px;
  text-align: center;
}
#noResults p {
  color: #096a09;
}
#noResults p:first-child {
  font-size: 20px;
  font-family: "LucioleBold", "sans-serif";
}
#noResults p:last-of-type {
  font-size: 14px;
  color: grey;
}
#noResults ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #d9d9d9;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid #096a09;
  width: 100%;
  box-sizing: border-box;
}
#noResults ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: grey;
  font-size: 14px;
  text-align: left;
}
#noResults ul li::before {
  content: "";
  min-width: 8px;
  height: 8px;
  background-color: #096a09;
  border-radius: 50%;
}
#noResults .btn1 {
  margin-top: 8px;
}

#contactPage {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 16px;
}
#contactPage h1 {
  color: #096a09;
}
#contactPage p {
  color: grey;
  font-size: 14px;
}
#contactPage #contactForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contactPage #contactForm .formRow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 750px) {
  #contactPage #contactForm .formRow {
    flex-direction: row;
  }
  #contactPage #contactForm .formRow .formGroup {
    flex: 1;
  }
}
#contactPage #contactForm .formGroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#contactPage #contactForm .formGroup label {
  font-size: 14px;
  font-family: "LucioleBold", "sans-serif";
  color: #096a09;
}
#contactPage #contactForm .formGroup input,
#contactPage #contactForm .formGroup select,
#contactPage #contactForm .formGroup textarea {
  padding: 12px 16px;
  border: 2px solid #096a09;
  border-radius: 8px;
  font-size: 14px;
  background-color: #d9d9d9;
  color: black;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.2s;
}
#contactPage #contactForm .formGroup input:focus,
#contactPage #contactForm .formGroup select:focus,
#contactPage #contactForm .formGroup textarea:focus {
  outline: none;
  border-color: #096a09;
}
#contactPage #contactForm .formGroup input::placeholder,
#contactPage #contactForm .formGroup select::placeholder,
#contactPage #contactForm .formGroup textarea::placeholder {
  color: grey;
}
#contactPage #contactForm .formGroup textarea {
  resize: vertical;
  min-height: 120px;
}
#contactPage #contactForm .formGroup select {
  cursor: pointer;
}
#contactPage #contactForm #gdprGroup #gdprLabel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: grey;
  cursor: pointer;
  font-family: "Luciole", "sans-serif";
}
#contactPage #contactForm #gdprGroup #gdprLabel input[type=checkbox] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  border: 2px solid #096a09;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}
#contactPage #contactForm #submitButton {
  align-self: center;
  padding: 12px 48px;
  cursor: pointer;
  transition: opacity 0.2s;
}
#contactPage #contactForm #submitButton:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: grey;
}

.product-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
  box-sizing: border-box;
}
.product-page .articleInfos {
  background-color: #096a09;
  color: #eeeeee;
  padding: 8px 16px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.product-page .articleInfos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #096a09;
}
.product-page .articleInfos-header .articleInfos {
  flex: 1;
}
.product-page .articleInfos-header #addComment {
  color: #eeeeee;
  font-size: 13px;
  padding: 8px 16px;
  cursor: pointer;
}
.product-page .articleInfos-header #addComment:hover {
  text-decoration: underline;
}
.product-page .product-section-content {
  background-color: #d9d9d9;
  padding: 16px;
}
.product-page .product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.product-page .product-header h1 {
  font-size: 26px;
  font-family: "LucioleBold", "sans-serif";
  color: black;
}
.product-page .product-header #gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.product-page .product-header #gallery #mainImage {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.product-page .product-header #gallery #thumbnails {
  display: flex;
  gap: 8px;
  justify-content: center;
  overflow-x: auto;
}
.product-page .product-header #gallery #thumbnails::-webkit-scrollbar {
  height: 4px;
}
.product-page .product-header #gallery #thumbnails::-webkit-scrollbar-thumb {
  background: #096a09;
  border-radius: 2px;
}
.product-page .product-header #gallery #thumbnails img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.product-page .product-header #gallery #thumbnails img:hover, .product-page .product-header #gallery #thumbnails img.active {
  border-color: #096a09;
}
.product-page .product-header .product-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.product-page .product-header .product-details .product-brand {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: grey;
}
.product-page .product-header .product-details .price {
  font-size: 22px;
  font-family: "LucioleBold", "sans-serif";
}
.product-page .product-header .product-details .deliveryDate {
  font-size: 13px;
  color: grey;
  font-style: italic;
}
.product-page .product-header .product-details .addBasketButton {
  width: 60%;
  text-align: center;
  padding: 12px;
  font-size: 15px;
  border-radius: 24px;
}
.product-page .modality {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgb(78.947826087, 240.052173913, 78.947826087);
}
.product-page .modality:last-child {
  border-bottom: none;
}
.product-page .modality .modality-label {
  color: grey;
}
.product-page .modality .modality-label::after {
  content: " :";
}
.product-page .modality .modality-color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid grey;
}
.product-page #variantsList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-page #variantsList .variant-card {
  padding: 8px 16px;
  border: 2px solid #096a09;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.product-page #variantsList .variant-card .modality-value {
  font-size: 14px;
  color: #096a09;
}
.product-page #variantsList .variant-card .modality-color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid grey;
  display: block;
}
.product-page #variantsList .variant-card:hover, .product-page #variantsList .variant-card.active {
  background-color: #096a09;
}
.product-page #variantsList .variant-card:hover .modality-value, .product-page #variantsList .variant-card.active .modality-value {
  color: #eeeeee;
}
.product-page #commentSection #commentSectionHeader #addComment {
  color: #eeeeee;
}
.product-page #commentSection #allComments {
  display: flex;
  flex-direction: column;
}
.product-page #commentSection #allComments .comment {
  padding: 12px 0;
  border-bottom: 1px solid rgb(78.947826087, 240.052173913, 78.947826087);
}
.product-page #commentSection #allComments .comment:last-child {
  border-bottom: none;
}
.product-page #commentSection #allComments .comment .commentHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.product-page #commentSection #allComments .comment .commentHeader h4 {
  font-size: 14px;
  color: black;
}
.product-page #commentSection #allComments .comment .commentHeader .commentActions {
  display: flex;
  gap: 8px;
}
.product-page #commentSection #allComments .comment .commentHeader .commentActions .editComment,
.product-page #commentSection #allComments .comment .commentHeader .commentActions .deleteComment {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
}
.product-page #commentSection #allComments .comment .commentHeader .commentActions .editComment {
  color: #096a09;
  border: 1px solid #096a09;
}
.product-page #commentSection #allComments .comment .commentHeader .commentActions .editComment:hover {
  background-color: #096a09;
  color: #eeeeee;
}
.product-page #commentSection #allComments .comment .commentHeader .commentActions .deleteComment {
  color: red;
  border: 1px solid red;
}
.product-page #commentSection #allComments .comment .commentHeader .commentActions .deleteComment:hover {
  background-color: red;
  color: white;
}
.product-page #commentSection #allComments .comment p {
  font-size: 13px;
  color: grey;
  font-style: italic;
  line-height: 1.5;
}
.product-page #commentSection .noComment {
  font-size: 14px;
  color: grey;
  font-style: italic;
}
.product-page #commentSection #addCommentSection {
  margin-top: 16px;
}
.product-page #commentSection #addCommentSection form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-page #commentSection #addCommentSection form #addCommentFormTitle {
  color: #096a09;
  font-size: 15px;
}
.product-page #commentSection #addCommentSection form textarea {
  padding: 12px;
  border: 2px solid #096a09;
  border-radius: 8px;
  min-height: 100px;
  resize: vertical;
  font-size: 14px;
  background-color: #eeeeee;
}
.product-page #commentSection #addCommentSection form textarea:focus {
  outline: none;
}
.product-page #commentSection #addCommentSection form button[type=submit] {
  align-self: flex-end;
}
@media screen and (min-width: 1024px) {
  .product-page .product-header {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 48px;
  }
  .product-page .product-header #gallery {
    width: 45%;
    flex-shrink: 0;
  }
  .product-page .product-header .product-details {
    align-items: flex-start;
    flex: 1;
  }
}

#aboutPage {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px;
  box-sizing: border-box;
}
#aboutPage #aboutHero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background-color: #096a09;
  border-radius: 16px;
  gap: 16px;
}
#aboutPage #aboutHero h1 {
  font-size: 32px;
  font-family: "LucioleBold", "sans-serif";
  color: #eeeeee;
}
#aboutPage #aboutHero p {
  font-size: 18px;
  color: #eeeeee;
  opacity: 0.85;
  font-style: italic;
}
#aboutPage .aboutSection {
  display: flex;
  flex-direction: column;
}
#aboutPage .aboutSection .aboutSectionContent {
  background-color: #d9d9d9;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#aboutPage .aboutSection .aboutSectionContent p {
  font-size: 14px;
  color: grey;
  line-height: 1.7;
}
#aboutPage #valuesGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
#aboutPage #valuesGrid .valueCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 24px 16px;
  background-color: #eeeeee;
  border-radius: 12px;
  border-bottom: 3px solid #096a09;
}
#aboutPage #valuesGrid .valueCard .valueIcon {
  font-size: 32px;
}
#aboutPage #valuesGrid .valueCard h3 {
  font-family: "LucioleBold", "sans-serif";
  color: #096a09;
  font-size: 16px;
}
#aboutPage #valuesGrid .valueCard p {
  font-size: 13px;
  color: grey;
  line-height: 1.6;
}
@media screen and (min-width: 750px) {
  #aboutPage #valuesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
#aboutPage #statsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
#aboutPage #statsGrid .statCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 16px;
  background-color: #eeeeee;
  border-radius: 12px;
  border-top: 4px solid #096a09;
  gap: 8px;
}
#aboutPage #statsGrid .statCard .statNumber {
  font-size: 32px;
  font-family: "LucioleBold", "sans-serif";
  color: #096a09;
}
#aboutPage #statsGrid .statCard .statLabel {
  font-size: 13px;
  color: grey;
}
@media screen and (min-width: 750px) {
  #aboutPage #statsGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
#aboutPage #founderSection #founderQuote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background-color: #eeeeee;
  border-radius: 12px;
  border-left: 4px solid #096a09;
}
#aboutPage #founderSection #founderQuote p {
  font-size: 15px;
  font-style: italic;
  color: black;
  line-height: 1.8;
}
#aboutPage #founderSection #founderQuote p::before {
  content: "“";
}
#aboutPage #founderSection #founderQuote p::after {
  content: "”";
}
#aboutPage #founderSection #founderQuote #founderName {
  font-size: 13px;
  color: #096a09;
  font-family: "LucioleBold", "sans-serif";
  align-self: flex-end;
}
#aboutPage #locationSection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#aboutPage #locationSection #locationInfos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#aboutPage #locationSection #locationInfos h3 {
  color: #096a09;
  font-family: "LucioleBold", "sans-serif";
  margin-bottom: 8px;
}
#aboutPage #locationSection #locationInfos p {
  font-size: 14px;
  color: grey;
}
#aboutPage #locationSection #locationInfos .btn1 {
  margin-top: 16px;
  align-self: flex-start;
}
#aboutPage #locationSection #aboutMap {
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  #aboutPage #locationSection {
    flex-direction: row;
    align-items: flex-start;
  }
  #aboutPage #locationSection #locationInfos {
    width: 30%;
    flex-shrink: 0;
  }
}

#legalPage {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px;
  box-sizing: border-box;
}
#legalPage #legalHero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background-color: #096a09;
  border-radius: 16px;
  gap: 12px;
}
#legalPage #legalHero h1 {
  font-size: 28px;
  font-family: "LucioleBold", "sans-serif";
  color: #eeeeee;
}
#legalPage #legalHero p {
  font-size: 13px;
  color: #eeeeee;
  opacity: 0.75;
  font-style: italic;
}
#legalPage .legalSection {
  display: flex;
  flex-direction: column;
}
#legalPage .legalSection .legalSectionContent {
  background-color: #d9d9d9;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#legalPage .legalSection .legalSectionContent p {
  font-size: 14px;
  color: grey;
  line-height: 1.7;
}
#legalPage .legalGrid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
#legalPage .legalGrid .legalItem {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgb(78.947826087, 240.052173913, 78.947826087);
}
#legalPage .legalGrid .legalItem:last-child {
  border-bottom: none;
}
#legalPage .legalGrid .legalItem .legalLabel {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #096a09;
  font-family: "LucioleBold", "sans-serif";
}
#legalPage .legalGrid .legalItem .legalValue {
  font-size: 14px;
  color: black;
}
#legalPage .legalGrid .legalItem .legalValue a {
  color: #096a09;
  text-decoration: underline;
}
@media screen and (min-width: 750px) {
  #legalPage .legalGrid .legalItem {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  #legalPage .legalGrid .legalItem .legalLabel {
    min-width: 220px;
    flex-shrink: 0;
  }
}
#legalPage .legalSubSection {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(78.947826087, 240.052173913, 78.947826087);
}
#legalPage .legalSubSection:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#legalPage .legalSubSection h3 {
  font-size: 15px;
  font-family: "LucioleBold", "sans-serif";
  color: #096a09;
}
#legalPage .legalSubSection p {
  font-size: 14px;
  color: grey;
  line-height: 1.7;
}
#legalPage .legalList {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
}
#legalPage .legalList li {
  font-size: 14px;
  color: grey;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}
#legalPage .legalList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background-color: #096a09;
  border-radius: 50%;
}

main {
  padding: 16px;
  box-sizing: border-box;
}
main h2 {
  color: #096a09;
  font-family: "LucioleBold", "sans-serif";
  margin-bottom: 24px;
  font-size: 24px;
}
main form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
main form .form-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
main form .form-item label {
  font-size: 13px;
  font-family: "LucioleBold", "sans-serif";
  color: #096a09;
  text-transform: uppercase;
  letter-spacing: 1px;
}
main form .form-item input,
main form .form-item select {
  padding: 12px 16px;
  border: 2px solid rgb(78.947826087, 240.052173913, 78.947826087);
  border-radius: 8px;
  font-size: 14px;
  background-color: #d9d9d9;
  color: black;
  box-sizing: border-box;
  width: 100%;
  transition: border-color 0.2s;
}
main form .form-item input:focus,
main form .form-item select:focus {
  outline: none;
  border-color: #096a09;
}
main form .form-item input::placeholder,
main form .form-item select::placeholder {
  color: grey;
  font-size: 13px;
}
main form .form-item select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23808080' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
main form .form-item select option {
  background-color: #d9d9d9;
  color: black;
  padding: 8px;
}
main form .form-item select option:disabled {
  color: grey;
  font-family: "LucioleBold", "sans-serif";
}
main form .form-item .error {
  font-size: 12px;
  color: red;
  margin-top: -4px;
  padding-left: 4px;
}
main form .form-item .error::before {
  content: "⚠ ";
}
main form button[type=submit] {
  margin-top: 16px;
  align-self: center;
  width: 60%;
  padding: 14px;
  font-size: 16px;
  border-radius: 24px;
  text-align: center;
}
main form p:last-child {
  text-align: center;
  font-size: 14px;
  color: grey;
  margin-top: 8px;
}
@media screen and (min-width: 750px) {
  main {
    max-width: 600px;
    margin: 0 auto;
  }
  main form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  main form .form-item:nth-child(5),
  main form .form-item:nth-last-child(1),
  main form button[type=submit],
  main form input[type=hidden],
  main form p {
    grid-column: 1/-1;
  }
  main form h2 {
    grid-column: 1/-1;
  }
}

#notFoundPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 16px;
  gap: 32px;
}
#notFoundPage #notFoundCode {
  font-size: 120px;
  font-family: "LucioleBold", "sans-serif";
  color: rgb(78.947826087, 240.052173913, 78.947826087);
  line-height: 1;
}
#notFoundPage #notFoundContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 500px;
}
#notFoundPage #notFoundContent h1 {
  font-size: 28px;
  font-family: "LucioleBold", "sans-serif";
  color: #096a09;
}
#notFoundPage #notFoundContent > p {
  font-size: 15px;
  color: grey;
  line-height: 1.6;
}
#notFoundPage #notFoundContent #notFoundActions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
#notFoundPage #notFoundContent #notFoundSuggestions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  background-color: #d9d9d9;
  padding: 20px 24px;
  border-radius: 16px;
  border-left: 4px solid #096a09;
  width: 100%;
  box-sizing: border-box;
}
#notFoundPage #notFoundContent #notFoundSuggestions p {
  font-size: 14px;
  color: grey;
  font-style: italic;
}
#notFoundPage #notFoundContent #notFoundSuggestions ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#notFoundPage #notFoundContent #notFoundSuggestions ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
#notFoundPage #notFoundContent #notFoundSuggestions ul li::before {
  content: "";
  min-width: 8px;
  height: 8px;
  background-color: #096a09;
  border-radius: 50%;
}
#notFoundPage #notFoundContent #notFoundSuggestions ul li a {
  font-size: 14px;
  color: #096a09;
  text-decoration: underline;
}
#notFoundPage #notFoundContent #notFoundSuggestions ul li a:hover {
  color: black;
}

#confirmationPage {
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  box-sizing: border-box;
}
#confirmationPage #confirmationCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 680px;
}
#confirmationPage #confirmationCard #confirmationIcon i {
  font-size: 80px;
  color: #096a09;
}
#confirmationPage #confirmationCard h1 {
  font-size: 28px;
  font-family: "LucioleBold", "sans-serif";
  color: #096a09;
  text-align: center;
}
#confirmationPage #confirmationCard .confirmationSubtitle {
  font-size: 16px;
  color: grey;
  text-align: center;
  margin-top: -20px;
}
#confirmationPage #confirmationCard #orderSummary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
#confirmationPage #confirmationCard #orderSummary h2 {
  background-color: #096a09;
  color: #eeeeee;
  padding: 8px 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#confirmationPage #confirmationCard #orderSummary #orderItems {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #d9d9d9;
}
#confirmationPage #confirmationCard #orderSummary #orderItems .orderItem {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgb(78.947826087, 240.052173913, 78.947826087);
}
#confirmationPage #confirmationCard #orderSummary #orderItems .orderItem:last-child {
  border-bottom: none;
}
#confirmationPage #confirmationCard #orderSummary #orderItems .orderItem img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: #eeeeee;
}
#confirmationPage #confirmationCard #orderSummary #orderItems .orderItem .orderItemDetails {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#confirmationPage #confirmationCard #orderSummary #orderItems .orderItem .orderItemDetails .orderItemName {
  font-size: 14px;
  font-family: "LucioleBold", "sans-serif";
  color: black;
}
#confirmationPage #confirmationCard #orderSummary #orderItems .orderItem .orderItemDetails .orderItemBrand {
  font-size: 12px;
  color: grey;
  font-style: italic;
}
#confirmationPage #confirmationCard #orderSummary #orderItems .orderItem .orderItemDetails .orderItemQuantity {
  font-size: 12px;
  color: grey;
}
#confirmationPage #confirmationCard #orderSummary #orderItems .orderItem .orderItemPrice {
  text-align: right;
  flex-shrink: 0;
  font-size: 14px;
}
#confirmationPage #confirmationCard #confirmationActions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
#confirmationPage #confirmationCard #confirmationActions a {
  text-align: center;
  padding: 14px;
  border-radius: 24px;
  font-size: 15px;
}
@media screen and (min-width: 750px) {
  #confirmationPage #confirmationCard #confirmationActions {
    flex-direction: row;
    justify-content: center;
  }
  #confirmationPage #confirmationCard #confirmationActions a {
    width: auto;
    padding: 14px 32px;
  }
}

* {
  margin: 0;
  padding: 0;
  accent-color: #096a09;
}

body {
  margin: 0 auto;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: "LucioleBold", "sans-serif";
}

a {
  font-family: "Luciole", "sans-serif";
  color: #eeeeee;
  text-decoration: none;
}

hr {
  color: #eeeeee;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 90px;
}

.visible {
  display: flex;
}

.hidden {
  display: none;
}

.error {
  color: red;
  font-size: 14px;
}

.miniButton {
  padding: 2px 4px;
  color: #eeeeee;
  background-color: #096a09;
  border: none;
  outline: none;
}
.miniButton:hover {
  color: #eeeeee;
  background-color: black;
}

.btn1 {
  padding: 8px 16px;
  color: #eeeeee;
  background-color: #096a09;
  border: none;
  outline: none;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.btn1:hover {
  color: #eeeeee;
  background-color: black;
}

.btn2 {
  padding: 8px 16px;
  background-color: #eeeeee;
  color: #096a09;
  border: none;
  outline: none;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.btn2:hover {
  color: #eeeeee;
  background-color: black;
}

.price {
  display: flex;
  gap: 8px;
}
.price .promotion {
  text-decoration: line-through;
}
.price .promotionNewPrice {
  color: #096a09;
}

#banner {
  position: fixed;
  background-color: #096a09;
  color: #eeeeee;
  margin-bottom: 90px;
  width: 100%;
  z-index: 50;
}
#banner #baseMenu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 4vw, 64px);
  font-size: 32px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px;
}
#banner #baseMenu #burger {
  position: absolute;
  left: 5%;
}
#banner #baseMenu .menuItem {
  cursor: pointer;
  width: auto;
  justify-content: center;
}
#banner #baseMenu .brand {
  font-size: 32px;
  font-family: "LucioleBold", "sans-serif";
  flex-shrink: 0;
}
#banner #baseMenu #menuIcons {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex-shrink: 0;
}
#banner #baseMenu #menuIcons .navItem {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#banner #baseMenu #menuIcons .navItem .menuIcon {
  width: auto;
  font-size: 22px;
  cursor: pointer;
}
#banner #baseMenu #menuIcons .navItem .menuIcon:hover {
  color: black;
}
#banner #baseMenu #menuIcons .navItem .topMenuIcon {
  position: absolute;
  background-color: #d9d9d9;
  padding: 24px;
  border: 2px solid #096a09;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  top: 100%;
  right: 0;
  left: auto;
  z-index: 10;
}
#banner #baseMenu #menuIcons .navItem .searchForm {
  display: flex;
  align-items: center;
  background-color: #eeeeee;
  border: 2px solid #096a09;
  border-radius: 16px;
  height: 30px;
  padding: 0 8px;
}
#banner #baseMenu #menuIcons .navItem .searchForm input {
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  width: 160px;
}
#banner #baseMenu #menuIcons .navItem .searchForm button {
  background: none;
  border: none;
  cursor: pointer;
}
#banner #baseMenu #menuIcons .mobileMenuItem {
  display: block;
}
#banner #baseMenu #menuIcons .desktopMenuItem {
  display: none;
}
#banner #navMenu {
  position: absolute;
  width: 100%;
  flex-direction: column;
  padding-top: 16px;
  background-color: #096a09;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
#banner #navMenu .navItem {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around start;
  align-items: center;
}
#banner #navMenu .navItem .dropDownMenu {
  padding: 8px 0;
  flex-direction: row;
  background-color: #eeeeee;
  width: 100vw;
  gap: 8px;
  white-space: nowrap;
}
#banner #navMenu .navItem .dropDownMenu .droppingList {
  display: flex;
  width: 50%;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
#banner #navMenu .navItem .dropDownMenu .droppingList a {
  padding: 16px;
  color: black;
}
#banner #navMenu .navItem a {
  width: 33%;
  padding: 8px 0;
  padding-left: 8px;
  text-align: left;
}
#banner #navMenu .navItem i {
  width: 60%;
  text-align: right;
}

#footer {
  background-color: #096a09;
  padding: 32px 0;
  margin-top: 32px;
}
#footer #footerContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
#footer #footerContainer hr {
  width: 80%;
  margin: 0 auto;
}
#footer #footerContainer #footerMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
#footer #footerContainer #footerMenu ul li {
  width: 100%;
  padding: 8px;
  text-align: center;
}
#footer #footerContainer #footerMenu ul li a:hover {
  color: black;
  text-decoration: underline;
}
#footer #footerContainer #footerContact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 75%;
  padding: 16px;
  gap: 24px;
}
#footer #footerContainer #footerContact h2,
#footer #footerContainer #footerContact p {
  color: #eeeeee;
}
#footer #footerContainer #footerContact p {
  font-weight: bold;
  font-size: 18px;
}
#footer #footerContainer #footerContact #socials {
  width: fit-content;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
#footer #footerContainer #footerContact #socials i {
  color: #eeeeee;
  font-size: 32px;
}
#footer #footerContainer #footerContact #socials i:hover {
  color: black;
}
#footer #footerContainer #footerLocalisation {
  display: flex;
  width: 75%;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  color: #eeeeee;
}
#footer #footerContainer #footerLocalisation h2 {
  margin-bottom: 16px;
}
#footer #footerContainer #footerLocalisation #map {
  height: 300px;
  z-index: 2;
}

@media screen and (min-width: 1024px) {
  .container {
    padding-top: 0;
  }
  #banner {
    position: relative;
    margin-bottom: 48px;
  }
  #banner #baseMenu {
    padding: 16px 0;
  }
  #banner #baseMenu #burger {
    display: none;
  }
  #banner #baseMenu #menuIcons i {
    position: relative;
  }
  #banner #baseMenu #menuIcons i .dropDownMenu {
    position: absolute;
  }
  #banner #baseMenu #menuIcons .topMenuIcon {
    width: fit-content;
    white-space: nowrap;
  }
  #banner #baseMenu #menuIcons .searchForm {
    min-width: 400px;
    display: flex;
    justify-content: space-between;
    border: 6px solid black;
  }
  #banner #baseMenu #menuIcons .mobileMenuItem {
    display: none;
  }
  #banner #baseMenu #menuIcons .desktopMenuItem {
    display: block;
  }
  #banner #navMenu {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    background-color: #eeeeee;
    border-radius: 0px;
    padding-top: 0;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
  }
  #banner #navMenu .navItem {
    position: relative;
  }
  #banner #navMenu .navItem a {
    color: black;
  }
  #banner #navMenu .navItem:hover .dropDownMenu {
    border: 1px solid #096a09;
    width: max-content;
    position: absolute;
    display: flex;
    top: 35px;
  }
  #banner #navMenu .navItem:hover .dropDownMenu a:hover {
    color: #096a09;
    text-decoration: underline;
  }
  #banner #navMenu .mobileMenuItem {
    display: none;
  }
  #footer #footerContainer {
    flex-direction: row;
  }
  #footer #footerContainer hr {
    display: none;
  }
  #footer #footerContainer #footerMenu {
    width: 30%;
  }
  #footer #footerContainer #footerLocalisation {
    order: 2;
    width: 40%;
  }
  #footer #footerContainer #footerContact {
    width: 30%;
    order: 3;
  }
}

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