/* Désactive le défilement horizontal */
body {
  overflow-x: hidden;
}

/* Définit la hauteur du logo tout en maintenant la largeur proportionnelle */
.custom-logo {
  height: 100px;
  width: auto;
}

/* Limite la largeur maximale de l'image du logo et ajuste la hauteur proportionnellement */
.custom-logo-link img {
  max-width: 80px;
  height: auto;
  border-radius: 50% !important;
}

/* Cible uniquement les éléments des sous-menus */
.submenu-item .inline-block::after {
  content: none;
}

/* Assure l'espacement entre les éléments de menu */
nav ul.flex > li {
  margin-right: 32px;
}

nav ul.flex > li:last-child {
  margin-right: 0;
  /* Évite un surplus de marge sur le dernier élément */
}

.submenu-regular {
  font-weight: 400; /* Police Regular */
}

/*nav bar*/

nav ul li:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 5px; /* Ajuste selon la taille de la flèche */
}

/**
ACCUEIL
**/

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 41, 107, 0.5); /* Bleu avec opacité */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: scale(0); /* Masquer l'overlay */
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.product-card:hover .overlay {
  opacity: 1;
  transform: scale(1); /* Afficher l'overlay au survol */
}

/*SVG accueil*/

.svg-separator {
  margin: 0 auto; /* Centre horizontalement */
  padding: 0;
  max-width: 100%; /* Empêche le débordement */
  overflow: hidden; /* Coupe tout débordement */
}

.svg-separator svg {
  margin: 0;
  padding: 0;
  display: block; /* Évite les espaces blancs liés à inline-block */
}

/*img article*/

.article-card img {
  width: 500px;
  height: 300px;
  object-fit: cover;
}

/*selecteur*/

/* Styliser le conteneur du sélecteur de tri */
.woocommerce .woocommerce-ordering {
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Styliser le label de tri */
.woocommerce .woocommerce-ordering label {
  margin-right: 8px;
  font-weight: bold;
  color: #333;
}

/* Styliser le menu déroulant du tri */
.woocommerce .woocommerce-ordering select.orderby {
  padding: 8px 12px;
  font-size: 14px;
  color: #333;
  background-color: #eb2121;
  border: 1px solid #902222;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Changer la couleur et le style au survol */
.woocommerce .woocommerce-ordering select.orderby:hover {
  background-color: #e0e0e0;
  border-color: #bbb;
}

/* Style spécifique pour les options du menu */
.woocommerce .woocommerce-ordering select.orderby option {
  padding: 4px;
  color: #555;
}

/* */

.woocommerce ul.products li.product .button {
  margin-top: 0 !important; /* Enlève la marge supérieure pour aligner le bouton avec le prix */
}

/* titre du livre content-product*/
.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
  font-size: 1.3rem;
}

/* Style pour la catégorie active */
.active-category {
  color: #00296b; /* Couleur de la catégorie active */
  font-weight: bold; /* Optionnel : mettre en gras */
  text-decoration: underline; /* Optionnel : souligner la catégorie active */
}

/*resultat de recherche*/

.woocommerce .woocommerce-result-count {
  font-family: "Roboto Condensed", serif;
}

/*Page produit*/

.products {
  display: flex;
  gap: 15px;
}

/* Style du Prix */
.product-price {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Style des Attributs (Genre, Auteur) */
.product-attributes {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.product-genre {
  font-weight: 300;
}

/* Style du Résumé (Extrait) */
.product-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Masquer l'état du stock sur la page produit */
.add-to-cart-button .stock .in-stock {
  display: none !important;
}

/* Style pour les conteneurs */
.product-description,
.product-additional-info,
.product-reviews,
.related-products {
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

/* Style pour les titres */
.product-description h2,
.product-additional-info h2,
.product-reviews h2,
.related-products h2 {
  font-size: 1.75rem;
  color: #1e88e5;
  margin-bottom: 1rem;
}

.product-additional-info h2 {
  display: none;
}

.related-products h2 {
  display: none;
}

/* Style pour le texte "En stock" */
.woocommerce .stock.in-stock {
  color: #28a745 !important; /* Couleur verte pour "En stock" */
  font-weight: normal !important;
  background-color: #e7f9ee !important; /* Fond vert clair */
  padding: 0.25rem 0.5rem !important;
  border-radius: 4px !important;
  width: fit-content !important;
  margin-bottom: 10px;
  display: inline-block !important;
  font-family: "Roboto Condensed", serif;
  text-transform: uppercase;
}

/* Style pour le texte "Rupture de stock" */
.woocommerce .stock.out-of-stock {
  color: #ff4d4f !important; /* Couleur rouge pour "Rupture de stock" */
  font-weight: normal !important;
  background-color: #ffe7e7 !important; /* Fond rouge clair */
  padding: 0.25rem 0.5rem !important;
  border-radius: 4px !important;
  width: fit-content !important;
  margin-bottom: 10px;
  display: inline-block !important;
  font-family: "Roboto Condensed", serif;
  text-transform: uppercase;
}

/*taille img*/

.woocommerce ul.products li.product a img {
  width: 300px;
  height: 414px;
}

/*PANIER*/
/* Styles de la table du panier */
.shop_table {
  width: 100%; /* Utilisation de toute la largeur disponible */
  border-collapse: collapse;
}

.shop_table th {
  text-align: left;
  padding: 10px;
  font-weight: bold;
}

.shop_table td {
  padding: 10px;
}

/* Centrage du contenu */
.woocommerce-cart-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.cart_totals h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Style des boutons */
button[name="update_cart"],
button[name="apply_coupon"] {
  background-color: #004b2e;
  color: #f9f9f9;
  border: none;
  cursor: pointer;
}

button[name="update_cart"]:hover,
button[name="apply_coupon"]:hover {
  background-color: #333;
}

/* Autres ajustements */
.product-name a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.product-subtotal {
  font-size: 16px;
  text-align: right;
}

.coupon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
  width: fit-content;
}

.woocommerce #content table.cart img,
.woocommerce table.cart img,
.woocommerce-page #content table.cart img,
.woocommerce-page table.cart img {
  width: 100px;
  height: 100px;
}

/*compteur*/

.woocommerce .woocommerce-result-count {
  display: none;
}

/*message ajout panier*/

.custom-add-to-cart-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #28a745; /* Couleur de fond du message */
  color: #fff; /* Couleur du texte */
  border-radius: 5px;
  z-index: 1000;
  display: none; /* Cacher par défaut */
  font-weight: bold;
}

/*message*/

/* Style pour le message de succès (produit ajouté) */
.woocommerce-message {
  font-family: "Roboto Condensed", serif;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: center;
  color: black;
  width: 500px;
  border: solid;
  border-color: #004b2e;
  border-top-width: thick;
  margin: auto;
}

.woocommerce-message a {
  text-decoration: underline;
}

/*caroussel index*/

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  gap: 1rem;
  max-width: 100%; /* Limite la largeur totale du carrousel */
  justify-content: center; /* Centre les éléments dans le carrousel */
  padding: 0 1rem; /* Espacement horizontal */
}

.product-card {
  flex-shrink: 0;
  width: 200px; /* Taille par défaut pour mobile */
  margin-right: 1rem;
}

/* Ajustement pour Desktop */
@media (min-width: 1024px) {
  .product-card {
    width: 300px; /* Ajuste la largeur pour desktop */
  }
}

/*account*/
.account-dashboard {
  gap: 2rem;
}

/* Colonne de navigation */
.woocommerce-MyAccount-navigation {
  background-color: #f9f9f9;
}

/* Colonne de contenu */
.woocommerce-MyAccount-content {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

/* Liens de navigation du tableau de bord */
.woocommerce-MyAccount-navigation-link a {
  color: #00296b; /* Couleur de base des liens */
  font-weight: 600;
  padding: 0.5rem;
  display: block;
  border-radius: 4px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.woocommerce-MyAccount-navigation-link a:hover {
  text-decoration: underline;
}

/* Lien actif */
.woocommerce-MyAccount-navigation-link.is-active a {
  color: #ffffff; /* Couleur de texte pour le lien actif */
  background-color: #004b2e; /* Fond pour le lien actif */
  width: 100%;
  border-radius: 2px;
}

/* Liens dans le message de bienvenue et la description du tableau de bord */
.woocommerce-MyAccount-content a {
  color: #00296b; /* Couleur de base des liens */
  font-weight: bold;
  text-decoration: underline; /* Style souligné */
  transition: color 0.3s ease;
}

.woocommerce-MyAccount-content a:hover {
  color: #004b2e; /* Couleur au survol */
}

/*dashboard input*/
/* Style pour les champs d'input dans le tableau de bord "Mon compte" */
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea,
.woocommerce-Address input[type="text"],
.woocommerce-Address input[type="email"],
.woocommerce-Address input[type="tel"],
.woocommerce-Address select,
.woocommerce-Address textarea,
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"],
.woocommerce-EditAccountForm input[type="tel"],
.woocommerce-EditAccountForm select,
.woocommerce-EditAccountForm textarea {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Couleur de bordure et ombrage au focus */
.woocommerce-MyAccount-content input[type="text"]:focus,
.woocommerce-MyAccount-content input[type="email"]:focus,
.woocommerce-MyAccount-content input[type="password"]:focus,
.woocommerce-MyAccount-content input[type="tel"]:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus,
.woocommerce-Address input[type="text"]:focus,
.woocommerce-Address input[type="email"]:focus,
.woocommerce-Address input[type="tel"]:focus,
.woocommerce-Address select:focus,
.woocommerce-Address textarea:focus,
.woocommerce-EditAccountForm input[type="text"]:focus,
.woocommerce-EditAccountForm input[type="email"]:focus,
.woocommerce-EditAccountForm input[type="password"]:focus,
.woocommerce-EditAccountForm input[type="tel"]:focus,
.woocommerce-EditAccountForm select:focus,
.woocommerce-EditAccountForm textarea:focus {
  border-color: #004b2e;
  box-shadow: 0 0 5px rgba(0, 75, 46, 0.453);
  outline: none;
}

/* Style pour les boutons */
.woocommerce-MyAccount-content button,
.woocommerce-MyAccount-content input[type="submit"],
.woocommerce-Address button,
.woocommerce-EditAccountForm button,
.woocommerce-EditAccountForm input[type="submit"] {
  background-color: #004b2e;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.woocommerce-MyAccount-content button:hover,
.woocommerce-MyAccount-content input[type="submit"]:hover,
.woocommerce-Address button:hover,
.woocommerce-EditAccountForm button:hover,
.woocommerce-EditAccountForm input[type="submit"]:hover {
  background-color: #005780;
}

/*section commentaire dans les articles*/

/* Conteneur principal de la section des commentaires */
.comments-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

/* Titre de la section des commentaires */
.comments-section h2 {
  font-size: 1.75rem;
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Liste des commentaires */
.comment-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* Style pour chaque commentaire */
.comment {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

/* Auteur du commentaire */
.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.comment-author cite {
  font-weight: bold;
  color: #333;
}

.comment-author .says {
  display: none; /* Masque le texte "says" */
}

/* Date du commentaire */
.comment-meta {
  font-size: 0.875rem;
  color: #666;
  margin-left: auto;
}

/* Contenu du commentaire */
.comment-body p {
  color: #555;
  line-height: 1.6;
}

/* Répondre au commentaire */
.comment-reply-link {
  font-size: 0.875rem;
  color: #004b2e;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s;
}

.comment-reply-link:hover {
  color: #004b2e;
}

/* Formulaire de commentaire */
#respond {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f1f1f1;
  border-radius: 8px;
  border: 1px solid #ddd;
}

#respond h3 {
  font-size: 1.5rem;
  color: #333;
  font-family: "Gilda Display", serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Champs de saisie du formulaire de commentaire */
#respond input[type="text"],
#respond input[type="email"],
#respond textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 1rem;
  background-color: #ffffff;
  transition: border-color 0.3s;
}

#respond input[type="text"]:focus,
#respond input[type="email"]:focus,
#respond textarea:focus {
  border-color: #004b2e;
  outline: none;
}

/* Bouton de soumission du commentaire */
#respond input[type="submit"] {
  background-color: #004b2e;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 2px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

#respond input[type="submit"]:hover {
  background-color: #00296b;
}

/**
CHECKOUT
**/

/* Conteneur principal */
.woocommerce-checkout {
  font-family: "Roboto Condensed", serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9; /* Fond clair */
  border-radius: 8px; /* Coins arrondis */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre subtile */
}

/* Titres principaux */
.woocommerce-checkout h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937; /* Gris foncé */
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #d1d5db; /* Ligne sous le titre */
  padding-bottom: 10px;
}

/* Section : Informations client */
#customer_details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#customer_details .col-1,
#customer_details .col-2 {
  background: #ffffff; /* Fond blanc */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb; /* Bordure subtile */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Ombre légère */
}

/* Champs du formulaire */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #f9fafb;
  font-size: 1rem;
  color: #374151; /* Gris moyen */
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  border-color: #2563eb; /* Bleu */
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2); /* Contour bleu clair */
}

/* Boutons */
.woocommerce-checkout .button {
  display: inline-block;
  background-color: #2563eb; /* Bleu Tailwind */
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.woocommerce-checkout .button:hover {
  background-color: #1e40af; /* Bleu foncé */
}

/* Résumé de commande */
#order_review {
  margin-top: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#order_review table {
  width: 100%;
  border-collapse: collapse;
}

#order_review table th,
#order_review table td {
  text-align: left;
  padding: 10px;
  font-size: 1rem;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

#order_review table th {
  font-weight: 600;
  text-transform: uppercase;
}

#order_review table tr:last-child td {
  border-bottom: none;
}

/* Méthodes de paiement */
.woocommerce-checkout-payment {
  margin-top: 20px;
}

.woocommerce-checkout-payment .payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-checkout-payment .payment_methods li {
  margin-bottom: 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 10px;
  background-color: #f9fafb;
}

.woocommerce-checkout-payment .payment_methods li label {
  font-weight: 600;
  font-size: 1rem;
  color: #1f2937;
  cursor: pointer;
}

/* Messages d'erreur */
.woocommerce-error {
  background-color: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 10px 15px;
  margin-bottom: 20px;
}

/*bouton commander*/
body:not(.woocommerce-block-theme-has-button-styles)
  .wc-block-components-button:not(.is-link) {
  background-color: #82669c;
  border-radius: 2px;
}

.wc-block-components-button:not(.is-link) .wc-block-components-button__text {
  text-transform: uppercase;
  color: #f9f9f9;
}

/*MINI CART*/

/* Panneau du mini-cart */
#cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px; /* Largeur du panneau */
  height: 100%;
  background-color: #ffffff; /* Fond blanc */
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2); /* Ombre subtile */
  transform: translateX(100%); /* Panneau caché par défaut */
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
}

#cart-panel.show {
  transform: translateX(0); /* Affiche le panneau */
  opacity: 1;
  pointer-events: auto;
}

/* Bouton de fermeture */
.close-cart-panel {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333; /* Couleur du bouton */
}

/* Contenu du mini-cart */
#cart-panel .mini-cart-content {
  padding: 20px;
  overflow-y: auto; /* Permet le défilement si le contenu est trop grand */
  height: calc(100% - 60px); /* Ajuste la hauteur en fonction du panneau */
}

/* Titre du mini-cart */
#cart-panel .mini-cart-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1f2937; /* Gris foncé */
}

/* Liste des produits */
#cart-panel .mini-cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#cart-panel .mini-cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e7eb; /* Ligne séparatrice */
  padding-bottom: 10px;
}

#cart-panel .mini-cart-item:last-child {
  border-bottom: none; /* Pas de ligne pour le dernier élément */
}

/* Image du produit */
#cart-panel .mini-cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover; /* Ajuste l'image */
  border-radius: 8px; /* Coins arrondis */
  margin-right: 15px;
}

/* Nom du produit */
#cart-panel .mini-cart-item .product-name {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  flex-grow: 1;
}

/* Quantité et prix */
#cart-panel .mini-cart-item .product-info {
  text-align: right;
  font-size: 0.875rem;
  color: #4b5563; /* Gris moyen */
}

/* Sous-total */
#cart-panel .mini-cart-subtotal {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #e5e7eb;
  padding-top: 15px;
}

/* Boutons d'action */
#cart-panel .mini-cart-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#cart-panel .mini-cart-actions a {
  display: block;
  text-align: center;
  color: #ffffff;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

#cart-panel .mini-cart-actions a:hover {
  background-color: #1d4ed8; /* Bleu foncé */
}

#cart-panel .mini-cart-actions .button-secondary {
  background-color: #e5e7eb; /* Gris clair */
  color: #1f2937; /* Gris foncé */
}

#cart-panel .mini-cart-actions .button-secondary:hover {
  background-color: #d1d5db; /* Gris moyen */
}

/**
MENU MOBILE 
**/

#mobile-menu {
  display: none;
}

#mobile-menu.flex {
  display: flex;
}

/** 
CONTACT
**/

.input-field {
  border-radius: 8px;
  padding: 8px;
  width: 100%;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
  background-color: #004b2e;
  padding: 8px 40px 8px 40px;
  border-radius: 8px;
  color: #f9f9f9;
  text-transform: uppercase;
}

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]):hover {
  background-color: #257556;
  padding: 8px 40px 8px 40px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

#burger-menu-button,
#close-menu-button {
  background-color: #f9f9f9;
}
