* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wrapper {
  width: calc(100vw - (100vw - 100%));
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
}
/* Styles par défaut */
.hero {
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: slideShow 60s infinite;
}

.section .p {
  color: #242323;
  font-size: 30px;
  color: #fbf8f8;
  font-family: Georgia, "Times New Roman", Times, serif;
  padding: 30px;
  min-height: 180px;
  width: 500px;
  margin-top: 75px;
  margin-bottom: 50px;
  background: rgba(75, 73, 73, 0.3);
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 3);
}

@keyframes slideShow {
  0% {
    background-image: url(../images/robe_de_mariage_manche_longue_vert.jpg);
  }
  20% {
    background-image: url(../images/fond.jpg);
  }

  40% {
    background-image: url(../images/robe_de_mariée_plusieurs_coloris_bleu.webp);
  }
  60% {
    background-image: url(../images/robe_de_mariée_à_la_plage_noir.png);
  }
  80% {
    background-image: url(../images/robe_de_noce_blanc.webp);
  }
  100% {
    background-image: url(../images/robe_de_soie_en_perle_et_diamants_blanc.webp);
  }
}

.hero h3,
.hero h1,
.section .p {
  animation: fadeIn 1.5s ease-in-out;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero h1 {
  color: #211e1e;
  text-align: center;
  font-size: 72px;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.hero h3 {
  color: #211e1e;
  text-align: center;
  font-size: 30;
}
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #292928;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 5px;
  margin-top: 30px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #fffdfc;
  color: #292928;
}

/* Media Query Accueil */
@media screen and (max-width: 968px) {
  .hero {
    min-height: 600px;
  }
  .section .p {
    width: 400px;
    font-size: 24px;
    padding: 25px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 568px) {
  .hero {
    min-height: 400px;
    padding: 0 20px;
  }
  .section .p {
    width: 100%;
    font-size: 20px;
    padding: 40px 30px;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #fbf8f8;
    background: rgba(75, 73, 73, 0.3);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  }
  .hero h1 {
    font-size: 40px;
    color: #211e1e;
  }
  .hero h3 {
    font-size: 20px;
    color: #211e1e;
  }
}

.navbar {
  background-color: #211e1e;
  color: #9a7717;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.navbar-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.navbar-brand img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-links li {
  display: inline-block;
}

.navbar-links #logo_panier {
  display: flex;
  align-items: center;
}

.navbar-links #a_panier {
  padding-right: 0;
}

.navbar-links a {
  color: #fbf8f8;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 7px 12px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 4px;
  border: 1px solid transparent;
}

.navbar-links a:hover {
  background-color: #555;
  color: #fff;
  border: 1px solid #555;
}
.navbar-links img:hover {
  background-color: #555;
  color: #fff;
  border: 1px solid #555;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: white;
}

#menu_div {
  display: none;
  position: fixed;
  top: 0;
  right: -300px; /* Le menu est caché hors de l'écran */
  width: 250px;
  height: 100vh;
  background-color: #211e1e;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease-in-out;
  padding-top: 60px;
  z-index: 1000;
}

#menu_div ul {
  list-style-type: none;
  padding: 0;
}

#menu_div li {
  padding: 15px;
  text-align: center;
}

#menu_div a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

#menu_div a:hover {
  background-color: #555;
  display: block;
  border-radius: 5px;
}

/* Div des avis de la page details */

.avis_div {
  display: flex;
  max-width: 600px;
}

.avis_div > a {
  width: 200px;
}

/* Quand le menu est ouvert */
#menu_div.show {
  display: block;
  right: 0;
}

@media (max-width: 968px) {
  .hamburger-menu {
    display: block;
  }

  .navbar-links {
    display: none;
  }
}

@media (max-width: 568px) {
  #menu_div {
    width: 50%;
  }
}

.wrapper > div {
  margin: 50px auto;
}

.cart-container {
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cart-title {
  font-size: 40px;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.cart-empty {
  text-align: center;
  color: #888;
  font-size: 1.5rem;
}

.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-items > li {
  text-align: center;
}

.cart-items > li > span {
  width: 200px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.div-img-cart {
  width: 80px;
}

.div-img-cart img {
  width: 100%;
}

.item-name {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

.item-details {
  font-size: 0.9rem;
  color: #555;
}

.item-price {
  margin-left: 5px;
  font-weight: bold;
  color: #000;
}

.remove-btn {
  font-size: 0.8rem;
  background-color: #ff4d4d;
  border: none;
  color: #fff;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
}

.remove-btn:hover {
  background-color: #e60000;
}

.cart-summary {
  margin-top: 20px;
  text-align: center;
}

.cart-total {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.checkout-btn {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #222223;
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

.checkout-btn:hover {
  background-color: #222223;
}

@media (max-width: 968px) {
  .cart-container {
    max-width: 90%;
    padding: 15px;
  }

  .cart-title {
    font-size: 35px;
  }

  .cart-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 0;
  }

  .div-img-cart {
    width: 100px;
    margin-bottom: 10px;
  }

  .item-name {
    font-size: 1.2rem;
  }

  .item-details,
  .item-price {
    font-size: 1rem;
  }

  .remove-btn {
    font-size: 0.9rem;
    padding: 7px 15px;
  }

  .checkout-btn {
    width: 100%;
    max-width: 400px;
    padding: 12px;
  }
}

@media (max-width: 568px) {
  .cart-container {
    max-width: 95%;
    padding: 10px;
  }

  .cart-title {
    font-size: 30px;
  }

  .cart-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
  }

  .div-img-cart {
    width: 80px;
  }

  .item-name {
    font-size: 1rem;
  }

  .item-details,
  .item-price {
    font-size: 0.9rem;
  }

  .remove-btn {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  .cart-summary {
    margin-top: 15px;
  }

  .cart-total {
    font-size: 1.3rem;
  }

  .checkout-btn {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Connection */

.login {
  background-color: #dbd8d8; 
  
  padding: 45px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
  width: 700px;
  height: 450px;
  
  text-align: center; 
}
.login:hover {
  transform: scale(
    1.05
  ); /* Légère animation au survol pour ajouter du dynamisme */
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15); /* Ombre plus marquée au survol */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.login h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
  font-weight: bold;
}


.login label {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  display: block;
  text-align: left; 
  margin-bottom: 8px;
}

.login input[type="email"],
.login input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #333;
  background-color: #fafafa;
  transition: border-color 0.3s ease, box-shadow 0.2s ease;
}

/* Effets au focus des champs de saisie */
.login input[type="email"]:focus,
.login input[type="password"]:focus {
  border-color: #555555;
  box-shadow: 0 0 8px rgba(10, 14, 17, 0.3);
  outline: none;
}


.login button {
  background-color: #272828;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}


.login button:hover {
  background-color: #2f2f30;
  transform: translateY(-2px); 
}

/* Message d'alerte pour les erreurs */
.alert {
  font-size: 0.9rem;
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  text-align: left;
}

.alert.alert-danger {
  background-color: #e74c3c; 
  color: #fff; 
  border: 1px solid #c0392b; 
}


.mb-3 {
  margin-bottom: 20px;
}

.mb-3 h3 {
  font-size: 1.2rem;
  color: #2c3e50;
}

.mb-3 a {
  color: #2a2b2b;
  text-decoration: none; 
  font-weight: bold;
}

.mb-3 a:hover {
  text-decoration: underline; 
  color: #6c6e70;
}
@media (max-width: 968px) {
  .login {
    width: 100%;
  }
  .login h1 {
    font-size: 1.7rem;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .login h1 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}

/* Inscription */

.contenaire_registration {
  margin: auto;
  background: rgba(141, 140, 140, 0.751);
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 700px;
}
.contenaire_registration:hover {
  transform: scale(1.05);
  /* Légère animation au survol pour ajouter du dynamisme */
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.errors {
  color: #e74c3c;
  font-size: 14px;
  margin-bottom: 15px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

label {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  color: #211e1e;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #555;
  outline: none;
  box-shadow: 0px 4px 8px rgba(85, 85, 85, 0.2);
}

input[type="checkbox"] {
  margin-right: 10px;
  vertical-align: middle;
}

button.btn {
  background-color: #555;
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 10px;
}

button.btn:hover {
  background-color: #b19e9e;
  transform: scale(1.03);
}

.alert {
  padding: 12px 16px;
  margin-bottom: 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.alert.alert-danger {
  background-color: #f4220b;
  color: #fff;
}

/* Robe(produit) */

.description {
  display: flex;
  flex-direction: column;
  background-color: #ebe2e2;
}

.produit {
  margin: 100px;
  padding-bottom: 30px;
}

.produit img {
  width: 350px;
  height: 600px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 1);
  transition: transform 0.1s;
  margin: 70px;

  transition: 0.3s;
}

.produit img.clicked {
  -ms-transform: scale(1.2) scaleX(-1); /* IE 9 */
  -webkit-transform: scale(1.2) scaleX(-1); /* Safari 3-8 */
  transform: scaleX(-1);
}

.produit img:hover {
  -ms-transform: scale(1.2); /* IE 9 */
  -webkit-transform: scale(1.2); /* Safari 3-8 */
  transform: scale(1.2);
}

.p {
  width: 200px;
  color: #7a5e50;
}

.p h2 {
  color: #5b4747;
}

/* Media Query pour Robes*/
@media (max-width: 968px) {

  .produit {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .produit img {
    margin-bottom: 20px;
    width: 80%;
    margin: auto 40px;
  }

  .p {
   min-width: 180px;
   margin: auto;
  }
}

@media (max-width: 568px) {
  .description {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .produit {
    margin-left: 20px;
    margin-top: 50px;
  }

  .produit img {
    margin-bottom: 35px;
  }

  .p {
    width: 50%;
  }
  .p p {
    width: 100%;
    color: #e60000;
    padding-top: 10px;
  }
}

/* detail produit */

.detailsProduit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 20px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.detailsProduit img {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  margin-right: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.detailsProduit .p {
  max-width: 400px;
}

.detailsProduit h2 {
  font-size: 24px;
  color: #333333;
  margin-bottom: 10px;
}

.detailsProduit p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 10px;
}

.detailsProduit .prix {
  font-weight: bold;
  color: #d9534f;
}

#optionsTailles {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
}

.couleurs {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.couleurs div p {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  text-transform: uppercase;
}
.couleurs div p:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1);
}

button.btn-success {
  background-color: #262726;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button.btn-success:hover {
  background-color: #9d9f9d;
}

#success_add {
  color: #f2f9f4;
  font-size: 18px;
  margin-top: 10px;
}

@media screen and (max-width: 963px) {
  .detailsProduit {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .detailsProduit img {
    max-width: 300px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .detailsProduit .p {
    max-width: 90%;
  }

  .couleurs {
    justify-content: center;
  }

  button.btn-success {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 568px) {
  .detailsProduit {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    margin: 10px;
  }

  .detailsProduit img {
    max-width: 250px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .detailsProduit h2 {
    font-size: 20px;
  }

  .detailsProduit p {
    font-size: 14px;
  }

  .detailsProduit .prix {
    font-size: 18px;
  }

  .couleurs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .couleurs div p {
    width: 40px;
    height: 40px;
    font-size: 9px;
  }

  button.btn-success {
    width: 100%;
    max-width: 250px;
    padding: 8px 15px;
    font-size: 14px;
  }
}

/* Contactez-nous */

.contact {
  background-color: #f7f7f7;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 100%;
  text-align: center;
  margin: auto;
  font-family: "Georgia", serif;
  color: #333;
}

.contact h2 {
  font-size: 36px;
  color: #6d4c41;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.contact button {
  background-color: #423016;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 18px;
  font-family: "Georgia", serif;
  color: white;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #d4af7f;
}
@media (max-width: 768px) {
  .contact {
    padding: 20px;
    max-width: 90%;
  }

  .contact h2 {
    font-size: 28px;
  }

  .contact p {
    font-size: 16px;
  }

  .contact button {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 15px;
  }

  .contact h2 {
    font-size: 24px;
  }

  .contact p {
    font-size: 14px;
  }

  .contact button {
    font-size: 14px;
    padding: 8px 16px;
  }
}
/* Message de confirmation de réception de message */

.container_text-center {
  max-width: 600px;
  margin: 50px auto;
  padding: 50px;
  background-image: url(../images/letter-8853380_640.png);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.lead {
  font-size: 1.4rem;
  color: #555;
  padding-bottom: 30px;
}

@media (max-width: 968px) {
  .container {
    width: 90%;
    padding: 25px;
  }

  .lead {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .container {
    width: 90%;
    padding: 15px;
  }

  .lead {
    font-size: 1rem;
  }
}

/*Page Qui somme-nous */

.section_aboutus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #f4f4f4;
  padding: 50px 0;
}

.aboutUs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
#aboutUs {
  font-family: "Times New Roman", Times, serif;
  font-size: 45px;
  margin: 0 20px;
  color: #333;
  text-align: center;
}
.video {
  width: 600px;
  height: 300px;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  background-color: #000;
  overflow: hidden;
}

.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.paragraph {
  width: 600px;
  padding: 25px;
  background-color: #fafafa;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}

.aboutUs .paragraph,
.video {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.aboutUs .paragraph:hover,
.video:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 968px) {
  .video,
  .paragraph {
    width: 400px;
  }

  #aboutUs {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .aboutUs {
    flex-direction: column;
    gap: 20px;
  }

  .video,
  .paragraph {
    width: 90%;
  }

  #aboutUs {
    font-size: 32px;
    margin: 0 10px;
  }
}

@media (max-width: 568px) {
  .video {
    height: 200px;
  }

  .paragraph {
    font-size: 14px;
    padding: 15px;
  }

  #aboutUs {
    font-size: 28px;
  }
}

/* Detail produit */
.detailsProduit {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  background-color: #3b3a3a;
  margin: auto;
}
.detailsProduit h2 {
  color: rgb(247, 242, 242);
  padding: 10px;
}
.detailsProduit p {
  color: rgb(247, 242, 242);
  padding: 10px;
}
.detailsProduit .prix {
  color: orangered;
}
#add-to-cart {
  background-color: #323030;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#add-to-cart:hover {
  background-color: #d0d3d0;
  color: #463c3c;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #555;
}

/* modal */
.hidden {
  display: none;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.dialog-content {
  background: rgb(156, 151, 151);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#dialog-ok {
  background: #686767;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

#dialog-ok:hover {
  background: #2d2e2e;
}
/* CONTACTEZ NOUS */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border: 1px solid #b6b3b3;
  border-radius: 5px;
  box-sizing: border-box;
}

textarea {
  resize: none;
  height: 120px;
}

.btn {
  display: inline-block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  background-color: #524c4c;
  color: rgb(246, 240, 240);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
  text-decoration: none;
}

.btn:hover {
  background-color: #444241;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
  font-style: italic;
}
/* profil */
.profil {
  width: 600px;
  height: auto;
  margin: 100px auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background-color: #fff;
  border: 1px solid #ddd;
  font-family: "Georgia", serif;
}

.profil:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profil label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  color: #6d4c41;
}

/*Profil Inputs */
.profil input {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.5s ease;
}

.profil input:focus {
  border-color: #d4af7f;
  box-shadow: 0 0 10px rgba(212, 175, 127, 0.4);
  outline: none;
}

/*Profil Bouton */
.profil button {
  display: block;
  width: 100%;
  padding: 14px;
  margin-top: 20px;
  background-color: #2d2e2e;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.profil button:hover {
  background-color: #b88b4a;
  transform: translateY(-3px);
  color: white;
}

@media (max-width: 968px) {
  .profil {
    width: 75%;
    padding: 25px;
  }

  .profil label {
    font-size: 17px;
  }

  .profil input {
    font-size: 15px;
    padding: 10px;
  }

  .profil button {
    font-size: 17px;
    padding: 12px;
  }
}

@media (max-width: 768px) {
  .profil {
    width: 85%;
    padding: 20px;
  }

  .profil label {
    font-size: 16px;
  }

  .profil input {
    font-size: 14px;
    padding: 9px;
  }

  .profil button {
    font-size: 16px;
    padding: 10px;
  }
}

@media (max-width: 568px) {
  .profil {
    width: 95%;
    padding: 15px;
    border-radius: 10px;
  }

  .profil label {
    font-size: 15px;
  }

  .profil input {
    font-size: 13px;
    padding: 8px;
  }

  .profil button {
    font-size: 15px;
    padding: 9px;
  }
}

/* page error Admin */

.video_error {
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
  padding: 220px;
}

.video_error video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 800px;
  object-fit: cover;
  z-index: -1;
}

#error_page {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

#error_page h1 {
  font-size: 80px;
  margin-bottom: 20px;
}

#error_page p {
  font-size: 32px;
  color: #121212;
}

#error_page a {
  color: #a50707;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#error_page a:hover {
  color: #ec0cd5;
}

@media screen and (max-width: 968px) {
  .video_error {
    padding: 130px;
  }

  .video_error video {
    width: 100%;
    height: 500px;
  }

  #error_page h1 {
    font-size: 60px;
  }

  #error_page p {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .video_error {
    padding: 100px;
  }

  .video_error video {
    width: 100%;
    height: 400px;
  }

  #error_page h1 {
    font-size: 50px;
  }

  #error_page p {
    font-size: 24px;
  }
}

@media (max-width: 568px) {
  .video_error {
    padding: 40px;
  }

  .video_error video {
    width: 100%;
    height: 400px;
  }

  #error_page h1 {
    font-size: 40px;
  }

  #error_page p {
    font-size: 20px;
  }
}

/* Page payment*/

.paiment {
  width: 450px;
  min-height: 450px;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  color: #333;
  margin: 40px auto;
  background-color: #fff;
  padding: 30px;
  font-family: "Arial", sans-serif;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.paiment:hover {
  background-color: #f9f9f9;
  transform: scale(1.02);
}

.title h2 {
  font-size: 2rem;
  margin-top: 20px;
  text-align: center;
  color: #2d3436;
  font-weight: bold;
}

.total {
  margin-top: 30px;
  text-align: center;
  font-size: 1.4rem;
  color: #555;
}

.total strong {
  font-size: 1.8rem;
  color: #e74c3c;
  font-weight: bold;
}

.detail h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.detail ul {
  list-style-type: none;
  padding: 0;
}

.detail li {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #7f8c8d;
  padding-left: 30px;
  position: relative;
}

.detail li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #222323;
  font-size: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.detail li:last-child {
  margin-bottom: 0;
}

.payment-button {
  width: 100%;
  padding: 15px;
  margin-top: 30px;
  background-color: #353637;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.payment-button:hover {
  background-color: #2f2f31;
  transform: translateY(-2px);
}
@media (max-width: 968px) {
  .payement {
    width: 90%;
    padding: 25px;
  }

  .title h2 {
    font-size: 1.8rem;
  }

  .total {
    font-size: 1.3rem;
  }

  .total strong {
    font-size: 1.6rem;
  }

  .detail h3 {
    font-size: 1.4rem;
  }

  .detail li {
    font-size: 1.1rem;
  }

  .payment-button {
    font-size: 1.1rem;
    padding: 14px;
  }
}

@media (max-width: 768px) {
  .paiment {
    width: 90%;
    min-height: 400px;
    padding: 20px;
  }

  .title h2 {
    font-size: 1.6rem;
  }

  .total {
    font-size: 1.2rem;
  }

  .total strong {
    font-size: 1.5rem;
  }

  .detail h3 {
    font-size: 1.3rem;
  }

  .detail li {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .payment-button {
    font-size: 1rem;
    padding: 12px;
  }
}

@media (max-width: 568px) {
  .paiment {
    width: 90%;
    padding: 15px;
  }

  .title h2 {
    font-size: 1.4rem;
  }

  .total {
    font-size: 1.1rem;
  }

  .total strong {
    font-size: 1.4rem;
  }

  .detail h3 {
    font-size: 1.2rem;
  }

  .detail li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .payment-button {
    font-size: 0.9rem;
    padding: 10px;
  }
}

/* Formulaire */
form {
  background-color: #f7f7f7;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  width: 100%;
  text-align: center;
  margin: auto;
  font-family: "Georgia", serif;
  color: #333;
}
form:hover {
  background-color: rgba(64, 67, 68, 0.2);
}

form div {
  margin-bottom: 15px;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

form input,
form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

form button {
  background-color: #232121;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  width: 100%;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #3a3839;
  transform: scale(1.02);
}

@media (max-width: 968px) {
  form {
    max-width: 80%;
    padding: 25px 30px;
  }

  form input,
  form select {
    font-size: 0.95rem;
    padding: 9px;
  }

  form button {
    font-size: 1rem;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  form {
    max-width: 85%;
    padding: 20px 20px;
  }

  form label {
    font-size: 0.95rem;
  }

  form input,
  form select {
    font-size: 0.9rem;
    padding: 8px;
  }

  form button {
    font-size: 1rem;
    padding: 10px;
  }
}

@media (max-width: 568px) {
  form {
    max-width: 95%;
    padding: 15px;
    border-radius: 8px;
  }

  form label {
    font-size: 0.9rem;
  }

  form input,
  form select {
    font-size: 0.85rem;
    padding: 7px;
  }

  form button {
    font-size: 0.95rem;
    padding: 9px;
  }
}

/* Confirmation de payement  */
.video-container {
  position: relative;
  display: inline-block;
}

video {
  width: 100%;
  height: 800px;
}

.video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  width: 80%;
}

.video-text h2,
.video-text p {
  margin: 0;
}

/* Footer */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 50px 10%;
  flex-wrap: wrap;
  border-top: 3px solid #3a3a3a;
  gap: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin: 12px 0;
}

.footer ul li a {
  text-decoration: none;
  color: #d0cbc9;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer ul li a:hover {
  color: #f39c12;
  transform: translateY(-3px);
}

/*  les icônes sociales */
.footer ul li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.footer ul li a:hover img {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 5%;
  }
  .footer ul {
    width: 100%;
  }
  .footer ul li {
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 5%;
  }
  .footer ul li a {
    font-size: 16px;
  }
  .footer ul li img {
    width: 20px;
    height: 20px;
  }
}

/* FAQ  */
.faq-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 3rem;
}
.titre_faq h1 {
  text-align: center;
  font-size: 2rem;
  color: #3f3f3f;
  font-family: "Georgia", serif;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.sous_titre_faq h2 {
  font-size: 2rem;
  color: #6c757d;
  margin-top: 2.5rem;
  border-bottom: 3px solid #f1c40f;
  padding-bottom: 0.8rem;
  text-align: center;
  font-family: "Georgia", serif;
  font-weight: normal;
}
.liste_faq {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}
.liste_faq ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.liste_faq li {
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, background-color 0.3s ease;
  width: 100%;
  max-width: 850px;
}

.liste_faq li:hover {
  background-color: #f9f9f9;
  transform: translateY(-4px);
}

.liste_faq li strong {
  font-size: 1.4rem;
  color: #333;
  font-weight: bold;
}

.liste_faq li p {
  font-size: 1.1rem;
  color: #757575;
  margin-top: 0.6rem;
  line-height: 1.7;
}

.separation_faq {
  margin-top: 5rem;
  border-top: 4px solid #f1c40f;
  padding-top: 4rem;
}

/* cgv */

.container_cgv {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Titres */
.cgv {
  font-size: 2.5rem;
  color: #201e1e;
  text-align: center;
  margin-bottom: 20px;
}

.cgv2 {
  font-size: 1.8rem;
  color: #3b3a3a;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Paragraphes */
.cgvp {
  margin-bottom: 15px;
  text-align: justify;
}

/* Listes */
ul {
  margin: 10px 0;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* Liens */
a {
  color: #201e1e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* RESEAUX SOCIAUX */

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  text-decoration: none;
  color: #333;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #201e1e;
}

/* avis */

.avis-section {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

/* Messages d'erreur */
.alert {
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 15px;
}

.alert-danger {
  background-color: #ffdddd;
  color: #a94442;
  border: 1px solid #a94442;
}

.alert-warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #856404;
}

/* Champs du formulaire */
.form-group {
  margin-bottom: 15px;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

textarea,
input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Messages d’aide */
.form-text {
  font-size: 14px;
  color: #666;
}
.btn:hover {
  background: #2a2b2b;
}

.btn:focus {
  background: #2e2e2b;
}

/* Lien de connexion */
.alert-warning a {
  color: #1d1e1e;
  text-decoration: none;
  font-weight: bold;
}

.alert-warning a:hover {
  text-decoration: underline;
}

/* récapitulatif de la commande */
.recapitulatif {
  margin: 30px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.recapitulatif h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

/* Le tableau récapitulatif */
.recapitulatif table {
  width: 100%;
  border-collapse: separate;
  margin-bottom: 20px;
}

.recapitulatif th,
.recapitulatif td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.recapitulatif th {
  background-color: #f1f1f1;
  font-weight: bold;
}

.recapitulatif tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.recapitulatif tfoot tr {
  font-weight: bold;
  background-color: #f1f1f1;
}

/* Totaux */
.recapitulatif tfoot td {
  font-size: 18px;
  text-align: right;
}

.recapitulatif td {
  font-size: 16px;
}

.recapitulatif td strong {
  color: #2d2d2d;
}
@media (max-width: 968px) {
  .recapitulatif {
    margin: 15px 0;
    padding: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 90%;
  }
  .recapitulatif table {
    width: 70%;
    border-collapse: separate;
    margin-bottom: 18px;
  }
}
@media (max-width: 568px) {
  .recapitulatif {
    margin: 15px 0;
    padding: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 90%;
  }
  .recapitulatif table {
    width: 60%;
    border-collapse: separate;
    margin-bottom: 12px;
    font-size: 12px;
  }
  .recapitulatif tfoot tr {
    font-size: 11px;
    text-align: right;
  }
  .recapitulatif h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .recapitulatif tfoot td {
    font-size: 11px;
    text-align: right;
  }
}
/* Adresse */

.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
h1 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}
.form-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.btn-submit:hover {
  background-color: #575350;
}
input:focus,
button:focus {
  outline: 2px solid #2b2b2b;
}

/* Pagination */

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  list-style: none;
  border-top: 2px solid #ddd; /* Ligne pour séparer la pagination du contenu */
  padding-top: 15px;
  margin-top: 20px;
}

.pagination li {
  margin: 0 5px;
}

.pagination a,
.pagination span {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: #2a2b2b;
  color: #fff;
  border-color: #2a2b2b;
}

.pagination .current {
  background-color: #2a2b2b;
  color: white;
  font-weight: bold;
  border-color: #2a2b2b;
}

.pagination .disabled {
  color: #ccc;
  border-color: #ddd;
  pointer-events: none;
}

/* message */

.message {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 50px;
  margin: 20px auto;
  max-width: 600px;
  height: 300px;
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.message a {
  color: #06700e;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.message a:hover {
  color: #06700e;
}
