@charset "UTF-8";
.header__menu-container {
  position: relative;
  display: none;
  z-index: 10;
}

.header__menu-btn {
  background: #7A5C3E;
  color: #151515;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, color 0.3s;
}
.header__menu-btn:hover {
  background: #5E4530;
  color: #fff;
}

.header__menu-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(122, 92, 62, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  min-width: 220px;
  padding: 8px 0;
  z-index: 20;
}
.header__menu-dropdown.show {
  display: flex;
}
.header__menu-dropdown a {
  color: #f0f0f0;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.header__menu-dropdown a:hover {
  background: rgba(122, 92, 62, 0.15);
  color: #7A5C3E;
}

.header__menu-login {
  border-top: 1px solid rgba(122, 92, 62, 0.2);
  margin-top: 8px;
  padding: 14px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.header__menu-login-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__menu-login-input {
  padding: 8px 12px;
  border: 1px solid rgba(122, 92, 62, 0.5);
  border-radius: 6px;
  font-size: 0.95rem;
  background: #2a2a2a;
  color: #f0f0f0;
  outline: none;
  transition: border-color 0.2s;
}
.header__menu-login-input::placeholder {
  color: #888;
}
.header__menu-login-input:focus {
  border-color: #7A5C3E;
}

.header__menu-login-btn {
  background: #7A5C3E;
  color: #151515;
  border: none;
  border-radius: 6px;
  padding: 9px 0;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.3s, color 0.3s;
}
.header__menu-login-btn:hover {
  background: #5E4530;
  color: #fff;
}

.header__menu-login-create {
  text-align: center;
  margin-top: 4px;
}

.header__menu-login-link {
  color: #7A5C3E;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.header__menu-login-link:hover {
  color: #533D2A;
}

.header__menu-login-create-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 900px) {
  .header__menu-container {
    display: block;
  }
}
:root {
  --max: 1100px;
  --pad: 16px;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  font-family: "Faculty Glyphic", sans-serif;
  font-style: normal;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #151515;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  width: 100%;
  height: 530px;
  margin: 0;
  z-index: 0;
  box-shadow: 0 10px 20px black;
  overflow: hidden;
}
.header__background-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.header__background-container .header__background-bar {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(122, 92, 62) 30%, rgb(255, 255, 255) 50%, rgb(122, 92, 62) 70%, rgba(0, 0, 0, 0) 100%);
}
.header__background-container .header__background {
  position: relative;
  top: -80px;
  width: 100%;
  height: 1000px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35);
}
.header__background-container .header__background-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.header__logo-container {
  position: absolute;
  top: 30px;
  left: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
}
.header__circle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 20px;
  width: 80px;
  height: 80px;
  border: 2px solid #7a5c3e;
  border-radius: 50%;
  box-shadow: 0 0 25px #7a5c3e;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.header__logo-container:hover .header__circle-container {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(122, 92, 62, 0.7);
}
.header__logo-link {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
.header__logo-link:hover .header__logo-img {
  transform: scale(1.12);
}
.header__logo-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.header__top-right {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: 24px;
  right: 40px;
  z-index: 10;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__action-link {
  font-family: "Faculty Glyphic", sans-serif;
  font-style: normal;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: color 0.3s ease, transform 0.3s ease;
}
.header__action-link:hover {
  color: #7A5C3E;
  transform: scale(1.08);
}
.header__action-link--account {
  padding: 8px 20px;
  border: 1px solid #7A5C3E;
  border-radius: 20px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.header__action-link--account:hover {
  background: #7A5C3E;
  color: #18140c;
  text-shadow: none;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  padding: 12px 32px;
  border-radius: 40px;
  border: 1px solid rgba(122, 92, 62, 0.4);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header__nav-link {
  font-family: "Faculty Glyphic", sans-serif;
  font-style: normal;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.08em;
  transition: color 0.3s ease, transform 0.3s ease;
}
.header__nav-link:hover {
  color: rgba(255, 255, 255, 0.6);
  transform: scale(1.08);
}
.header__nav-bar {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.2) 70%, rgba(0, 0, 0, 0) 100%);
}
.header--minimal {
  height: auto;
  background: #18140c;
  border-bottom: 1px solid rgba(122, 92, 62, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__logo-container--minimal {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 50px;
}
.header__circle-container--minimal {
  position: absolute;
  width: 85px;
  height: 85px;
  top: 55%;
  left: 50%;
  transform: translate(-35%, -50%);
  border: 2px solid #7a5c3e;
  border-radius: 50%;
  box-shadow: 0 0 25px #7a5c3e;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.header__logo-container--minimal:hover .header__circle-container--minimal {
  transform: translate(-35%, -50%) scale(1.05);
  box-shadow: 0 0 40px rgba(122, 92, 62, 0.7);
}
.header__logo-link--minimal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin-right: 30px;
}
.header__logo-link--minimal:hover .header__logo-img--minimal {
  transform: scale(1.12);
}
.header__logo-img--minimal {
  width: 130px;
  height: 130px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.header__menu-container--minimal {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .header__nav, .header__actions {
    display: none;
  }
  .header__top-right {
    top: 16px;
    right: 20px;
  }
  .header__logo-container {
    top: 16px;
    left: 20px;
  }
}
.main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  background: #0d0a07;
  overflow: hidden;
}
.main__choices-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.main__choices-container .main__choices {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.main__choices-container .main__choices-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s ease;
}
.main__choices-container .main__choices-item:hover {
  transform: scale(1.07);
}
.main__choices-container .main__choices-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.main__choices-container .main__choices-item .main__choices-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transition: opacity 0.6s ease;
}
.main__choices-container .main__choices-item .main__choices-img:hover {
  opacity: 0;
}
.main__choices-container .main__choices .main__choices-video {
  height: 580px;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  display: block;
  transition: opacity 0.6s ease;
}
.main__choices-container .main__choices .main__choices-video:hover {
  opacity: 1;
}
.main__choices-container .main__description-container {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.main__choices-container .main__description-container .main__description {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  background: #fff;
  padding: 48px 24px;
  position: relative;
}
.main__choices-container .main__description-container .main__description-back {
  position: absolute;
  inset: 20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 0;
}
.main__choices-container .main__description-container .main__description .main_description-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.main__choices-container .main__description-container .main__description .main_description-text strong {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: #111;
  font-weight: 400;
  text-transform: uppercase;
}
.main__choices-container .main__description-container .main__description .main__button-order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(0, 0, 0);
  background: transparent;
  cursor: pointer;
  margin-top: 8px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.main__choices-container .main__description-container .main__description .main__button-order:hover {
  border-color: #111;
  background: #111;
  transform: scale(1.08);
}
.main__choices-container .main__description-container .main__description .main__button-order:hover .main__button-text {
  color: #fff;
}
.main__choices-container .main__description-container .main__description .main__button-order .main__button-text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-family: "arial", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  transition: color 0.3s ease;
}
.main__separator {
  width: 30%;
  height: 1px;
  margin: 40px auto;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(122, 92, 62, 0.6) 30%, rgba(210, 195, 175, 0.8) 50%, rgba(122, 92, 62, 0.6) 70%, rgba(0, 0, 0, 0) 100%);
}
.main .histoire__section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-top: 1px solid rgba(122, 92, 62, 0.3);
  width: 100%;
  height: 700px;
}
.main .histoire__section .histoire__video {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
  background: #18140c;
  position: relative;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 420px;
  color: white;
  background-color: #151515;
  padding: 30px;
}
.footer__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.footer__container .footer__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  gap: 30px;
  padding: 10px 0 0 0;
}
.footer__container .footer__nav .footer__nav-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 100%;
  gap: 26px;
}
.footer__container .footer__nav .footer__nav-left .footer__info-text {
  font-size: 1rem;
  color: #7a5c3e;
}
.footer__container .footer__nav-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: auto;
  gap: 26px;
}
.footer__container .footer__nav-right .footer__link {
  font-size: 1rem;
  color: white;
  transition: color 0.3s;
}
.footer__container .footer__nav-right .footer__link:hover {
  color: #7a5c3e;
}
.footer__container .footer__nav-right .footer__link--merci {
  color: #c9a96e;
  text-shadow: 0 0 8px rgba(201,169,110,0.6), 0 0 20px rgba(201,169,110,0.3);
  transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
  display: inline-block;
}
.footer__container .footer__nav-right .footer__link--merci:hover {
  color: #f0d9a8;
  text-shadow: 0 0 12px rgba(240,217,168,0.9), 0 0 30px rgba(201,169,110,0.6), 0 0 50px rgba(201,169,110,0.3);
  transform: scale(1.08);
}
.footer__social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 180px;
  height: 180px;
  margin: 30px 0;
}
.footer__logo-container .footer__logo-link {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.footer__logo-container .footer__logo-link .footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.footer__logo-container .footer__logo-link:hover .footer__logo-img {
  transform: scale(1.08);
}
.footer__circle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -2px;
  left: 26px;
  width: 120px;
  height: 120px;
  border: 2px solid #7A5C3E;
  border-radius: 50%;
  box-shadow: 0 0 25px #7A5C3E;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.footer__logo-container:hover .footer__circle-container {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(122, 92, 62, 0.7);
}
.footer__bar {
  position: relative;
  bottom: 298px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(122, 92, 62) 30%, rgb(255, 255, 255) 50%, rgb(122, 92, 62) 70%, rgba(0, 0, 0, 0) 100%);
}
.footer__date {
  margin: 30px 0 0 0;
  padding: 0;
  text-decoration: underline;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer__contact-name {
  font-size: 0.9rem;
  color: #7a5c3e;
  font-weight: 500;
  min-width: 80px;
}
.footer__phone-number {
  font-size: 0.85rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__phone-number:hover {
  color: #7A5C3E;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  text-align: center;
}
.footer__recaptcha {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
  line-height: 1.4;
}
.footer__recaptcha a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
.footer__recaptcha a:hover {
  color: #7A5C3E;
}

.legal-page {
  min-height: 100vh;
  padding: 120px 20px 80px;
  background: #18140c;
}
.legal-page__container {
  max-width: 900px;
  margin: 0 auto;
}
.legal-page__title {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 2.5rem;
  color: #7A5C3E;
  text-align: center;
  margin-bottom: 10px;
}
.legal-page__updated {
  font-family: Comfortaa, sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 50px;
}
.legal-page__section {
  margin-bottom: 40px;
}
.legal-page__section h2 {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 1.4rem;
  color: #7A5C3E;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(122, 92, 62, 0.3);
}
.legal-page__section p {
  font-family: Comfortaa, sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 15px;
}
.legal-page__section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}
.legal-page__section ul li {
  font-family: Comfortaa, sans-serif;
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.legal-page__section ul li::before {
  content: "•";
  color: #7A5C3E;
  position: absolute;
  left: 0;
}
.legal-page__section ul li strong {
  color: #7A5C3E;
}
.legal-page__section a {
  color: #7A5C3E;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.legal-page__section a:hover {
  opacity: 0.8;
}

.account-page {
  min-height: 100vh;
  padding: 120px 20px 80px;
  background: #18140c;
}
.account-page__container {
  max-width: 900px;
  margin: 0 auto;
}
.account-page__title {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 2.5rem;
  color: #7A5C3E;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}
.account-page__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7a5c3e, transparent);
  box-shadow: 0 5px 15px #7a5c3e, 0 10px 30px rgba(122, 92, 62, 0.5);
}
.account-page__section {
  margin-bottom: 30px;
  border-radius: 12px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.account-page__section--highlight {
  animation: section-highlight 2s ease-out;
}
.account-page__section--duo .account-page__section-title {
  margin-bottom: 15px;
}
.account-page__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 900px) {
  .account-page__duo {
    grid-template-columns: 1fr;
  }
}
.account-page__duo-col {
  display: flex;
  flex-direction: column;
}
.account-page__section-title {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(122, 92, 62, 0.3);
}
.account-page__section-title svg {
  color: #7A5C3E;
}
.account-page__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(122, 92, 62, 0.2);
  border-radius: 12px;
  padding: 20px;
}
.account-page__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 600px) {
  .account-page__info-grid {
    grid-template-columns: 1fr;
  }
}
.account-page__info-item--full {
  grid-column: 1/-1;
}
.account-page__info-label {
  display: block;
  font-family: Comfortaa, sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.account-page__info-value {
  display: block;
  font-family: Comfortaa, sans-serif;
  font-size: 1rem;
  color: #fff;
}
.account-page__table {
  width: 100%;
  border-collapse: collapse;
  font-family: Comfortaa, sans-serif;
}
.account-page__table th,
.account-page__table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.account-page__table th {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.account-page__table td {
  font-size: 0.9rem;
  color: #fff;
}
.account-page__table tbody tr:hover {
  background: rgba(122, 92, 62, 0.05);
}
.account-page__empty {
  font-family: Comfortaa, sans-serif;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 30px;
}
.account-page__more {
  font-family: Comfortaa, sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 15px;
}
.account-page__orders-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.account-page__order {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  transition: border-color 0.3s;
}
.account-page__order:hover {
  border-color: rgba(122, 92, 62, 0.4);
}
.account-page__order-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.account-page__order-id {
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 1rem;
  color: #7A5C3E;
}
.account-page__order-date {
  font-family: Comfortaa, sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.account-page__order-status {
  font-family: Comfortaa, sans-serif;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: auto;
}
.account-page__order-status--en-cours-de-traitement {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}
.account-page__order-status--expédié {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
}
.account-page__order-status--livré {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}
.account-page__order-details {
  display: flex;
  justify-content: space-between;
  font-family: Comfortaa, sans-serif;
}
.account-page__order-total {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}
.account-page__order-items {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
.account-page__actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.account-page__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-family: Comfortaa, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.account-page__btn--logout {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}
.account-page__btn--logout:hover {
  background: rgba(231, 76, 60, 0.3);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal.active {
  display: flex;
  opacity: 1;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  width: 90%;
  max-width: 420px;
  background: rgb(28, 28, 28);
  border: 1px solid rgba(122, 92, 62, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal.active .modal__content {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(122, 92, 62, 0.1);
  border: 1px solid rgba(122, 92, 62, 0.2);
  border-radius: 50%;
  color: #7A5C3E;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.modal__close:hover {
  background: #7A5C3E;
  color: #18140c;
  transform: rotate(90deg);
}
.modal__header {
  text-align: center;
  margin-bottom: 2rem;
}
.modal__gold {
  background: linear-gradient(135deg, #d4a574, #f0d9b5, #c9a055, #e8c673);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease infinite;
}
.modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(122, 92, 62, 0.2), rgba(122, 92, 62, 0.05));
  border: 1px solid rgba(122, 92, 62, 0.3);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.modal__icon svg {
  color: #7A5C3E;
}
.modal__icon--dark {
  background: linear-gradient(135deg, rgba(122, 92, 62, 0.1), rgba(122, 92, 62, 0.02));
  border-color: rgba(122, 92, 62, 0.15);
}
.modal__icon--dark svg {
  color: rgba(122, 92, 62, 0.5);
}
.modal__title {
  color: #fff;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.modal__subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-family: Comfortaa, sans-serif;
  font-size: 0.9rem;
  margin: 0;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal__step {
  display: none;
  flex-direction: column;
  gap: 1rem;
}
.modal__step--active {
  display: flex;
}
.modal__buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.modal__back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(122, 92, 62, 0.4);
  border-radius: 12px;
  color: #7A5C3E;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal__back:hover {
  background: rgba(122, 92, 62, 0.1);
  border-color: #7A5C3E;
}
.modal__field {
  position: relative;
}
.modal__input {
  width: 100%;
  padding: 1rem 2.5rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(122, 92, 62, 0.3);
  border-radius: 12px;
  color: #fff;
  font-family: Comfortaa, sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.modal__input:focus {
  border-color: #7A5C3E;
  background: rgba(122, 92, 62, 0.05);
  box-shadow: 0 0 0 3px rgba(122, 92, 62, 0.1);
}
.modal__input:focus + .modal__label, .modal__input:not(:placeholder-shown) + .modal__label {
  top: -8px;
  left: 12px;
  font-size: 0.75rem;
  background: rgb(28, 28, 28);
  padding: 0 6px;
  color: #7A5C3E;
}
.modal__input.error {
  border-color: #e74c3c;
  animation: shake 0.4s ease;
}
.modal__label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-family: Comfortaa, sans-serif;
  font-size: 0.95rem;
  pointer-events: none;
  transition: all 0.3s ease;
}
.modal__label-top {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: Comfortaa, sans-serif;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.modal__toggle-password {
  position: absolute;
  right: 12px;
  top: 34px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  z-index: 10;
}
.modal__toggle-password:hover {
  color: #7A5C3E;
}
.modal__password-strength {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}
.modal__password-strength.show {
  display: flex;
}
.modal__password-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.modal__password-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.modal__password-text {
  font-family: Comfortaa, sans-serif;
  font-size: 0.75rem;
  text-align: right;
}
.modal__password-requirements {
  display: none;
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  font-family: Comfortaa, sans-serif;
  font-size: 0.75rem;
}
.modal__password-requirements.show {
  display: block;
}
.modal__password-requirements li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.modal__password-requirements li .req-icon {
  font-weight: bold;
  color: #e74c3c;
  transition: color 0.2s ease;
}
.modal__password-requirements li.valid {
  color: #2ecc71;
}
.modal__password-requirements li.valid .req-icon {
  color: #2ecc71;
}
.modal__password-requirements li.optional {
  opacity: 0.7;
  font-style: italic;
}
.modal__password-requirements.show-errors li:not(.valid):not(.optional) {
  color: #e74c3c;
}
.modal__error-msg {
  display: block;
  font-family: Comfortaa, sans-serif;
  font-size: 0.75rem;
  color: #e74c3c;
  margin-top: 4px;
  min-height: 1em;
}
.modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #7A5C3E, rgb(88.1847826087, 66.5, 44.8152173913));
  border: none;
  border-radius: 12px;
  color: #18140c;
  font-family: "Faculty Glyphic", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.modal__submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.modal__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(122, 92, 62, 0.6), 0 0 40px rgba(122, 92, 62, 0.3);
}
.modal__submit:hover::before {
  left: 100%;
}
.modal__submit:active {
  transform: translateY(0);
}
.modal__submit-icon {
  transition: transform 0.3s ease;
}
.modal__submit:hover .modal__submit-icon {
  transform: translateX(4px);
}
.modal__message {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}
.modal__message svg {
  color: #2ecc71;
  animation: checkmark 0.5s ease;
}
.modal__message span {
  color: #fff;
  font-family: Comfortaa, sans-serif;
  font-size: 1rem;
}
.modal__message.active {
  display: flex;
}
.modal__footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.modal__footer-text {
  color: rgba(255, 255, 255, 0.6);
  font-family: Comfortaa, sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.modal__footer-link {
  color: #7A5C3E;
  font-family: Comfortaa, sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.modal__footer-link:hover {
  color: rgb(155.8152173913, 117.5, 79.1847826087);
  text-decoration: underline;
}
.modal--user .modal__content--user {
  max-width: 320px;
  padding: 1.5rem;
}
.modal__user-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1.5rem;
}
.modal__user-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(122, 92, 62, 0.2);
  border-radius: 10px;
  color: #fff;
  font-family: Comfortaa, sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal__user-link svg {
  color: #7A5C3E;
  transition: transform 0.3s ease;
}
.modal__user-link:hover {
  background: rgba(122, 92, 62, 0.1);
  border-color: #7A5C3E;
  transform: translateX(4px);
}
.modal__user-link:hover svg {
  transform: scale(1.1);
}
.modal__user-link--logout {
  margin-top: 8px;
  background: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}
.modal__user-link--logout svg {
  color: #e74c3c;
}
.modal__user-link--logout:hover {
  background: rgba(231, 76, 60, 0.2);
  border-color: #e74c3c;
}
.modal__logout-confirm {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 1.5rem;
  padding: 20px;
  text-align: center;
}
.modal__logout-confirm.active {
  display: flex;
}
.modal__logout-text {
  font-family: Comfortaa, sans-serif;
  font-size: 1.25rem;
  color: #fff;
}
.modal__logout-buttons {
  display: flex;
  gap: 12px;
  width: 100%;
}
.modal__logout-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-family: Comfortaa, sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal__logout-btn--cancel {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.modal__logout-btn--cancel:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.modal__logout-btn--confirm {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid #e74c3c;
  color: #e74c3c;
}
.modal__logout-btn--confirm:hover {
  background: #e74c3c;
  color: #fff;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20%, 60% {
    transform: translateX(-8px);
  }
  40%, 80% {
    transform: translateX(8px);
  }
}
@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes section-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(122, 92, 62, 0);
    transform: scale(1);
  }
  15% {
    box-shadow: 0 0 30px 5px rgba(122, 92, 62, 0.6), inset 0 0 20px rgba(122, 92, 62, 0.1);
    transform: scale(1.01);
  }
  30% {
    box-shadow: 0 0 20px 3px rgba(122, 92, 62, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px 4px rgba(122, 92, 62, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(122, 92, 62, 0);
  }
}
@keyframes contactGlow {
  0% {
    box-shadow: none;
    background: transparent;
  }
  20% {
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.5), 0 0 40px rgba(201, 169, 110, 0.35), inset 0 0 25px rgba(201, 169, 110, 0.08);
    background: rgba(201, 169, 110, 0.05);
  }
  70% {
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.25), 0 0 20px rgba(201, 169, 110, 0.2);
    background: rgba(201, 169, 110, 0.03);
  }
  100% {
    box-shadow: none;
    background: transparent;
  }
}
#contact:target ~ .footer__container .footer__nav-left,
.footer__nav-left.contact-glow {
  animation: contactGlow 2.5s ease-out;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .header {
    height: 220px;
    width: 100%;
  }
  .header__background-container {
    display: none;
  }
  .header__logo-container {
    top: 30px;
    left: 30px;
  }
  .header__logo-img {
    width: 120px;
    height: 120px;
  }
  .header__top-right {
    top: 50px;
    right: 30px;
    bottom: auto;
    transform: none;
  }
  .header__menu-dropdown {
    right: 0;
    width: 280px;
  }
  .main__choices-container {
    padding: 20px 10px;
  }
  .main__choices-container .main__choices {
    flex-direction: column;
    gap: 20px;
  }
  .main__choices-container .main__choices-item {
    width: 100%;
    height: 300px;
  }
  .main__description-container {
    flex-direction: column;
    gap: 15px;
    padding: 20px 15px;
  }
  .main__description-container .main__description {
    width: 100%;
    padding: 20px;
  }
  .main__separator {
    width: 60%;
    margin: 30px auto;
  }
  .main .histoire__section {
    height: auto;
    min-height: 300px;
    padding: 20px;
  }
  .main .histoire__section .histoire__video {
    height: 250px;
  }
  .modal__content {
    width: 95%;
    max-width: none;
    margin: 10px;
    padding: 1.5rem 1rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal__title {
    font-size: 1.2rem;
  }
  .modal__subtitle {
    font-size: 0.85rem;
  }
  .modal__icon {
    width: 48px;
    height: 48px;
  }
  .modal__form {
    gap: 1rem;
  }
  .modal__input {
    padding: 0.8rem 2.5rem 0.8rem 0.8rem;
    font-size: 0.9rem;
  }
  .modal__submit {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }
  .modal__buttons {
    flex-direction: column;
    gap: 10px;
  }
  .modal__back, .modal__submit {
    width: 100%;
    justify-content: center;
  }
  .modal__password-requirements {
    font-size: 0.75rem;
  }
  .modal__toggle-password {
    top: 32px;
    right: 10px;
  }
  .modal__content--user {
    max-width: none;
    width: 90%;
  }
  .modal__user-link {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  .modal__logout-buttons {
    flex-direction: column;
  }
  .modal__logout-btn {
    width: 100%;
  }
  .footer {
    height: auto;
    padding: 30px 20px;
  }
  .footer__container {
    width: 100%;
  }
  .footer__nav {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .footer__nav-left, .footer__nav-right {
    align-items: center;
  }
  .footer__contact-item {
    flex-direction: column;
    gap: 5px;
  }
  .footer__bar {
    display: none;
  }
  .footer__logo-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 16px auto;
  }
  .footer__logo-img {
    width: 80px;
    height: 80px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .header {
    height: 180px;
    width: 100%;
  }
  .header__logo-container {
    top: 20px;
    left: 20px;
  }
  .header__logo-img {
    width: 100px;
    height: 100px;
  }
  .header__top-right {
    top: 40px;
    right: 20px;
    bottom: auto;
    transform: none;
  }
  .header__menu-dropdown {
    width: 100vw;
    right: -15px;
    transform: none;
  }
  .main__choices-container .main__choices-item {
    height: 250px;
  }
  .main .histoire__section .histoire__video {
    height: 200px;
  }
  .modal__content {
    padding: 1.2rem 0.8rem;
    margin: 5px;
  }
  .modal__header {
    margin-bottom: 1.5rem;
  }
  .modal__title {
    font-size: 1.1rem;
  }
  .footer {
    padding: 20px 15px;
  }
  .footer__logo-img {
    width: 60px;
    height: 60px;
  }
}

.footer__link--merci {
  color: #c9a96e;
  text-shadow: 0 0 8px rgba(201, 169, 110, 0.6), 0 0 20px rgba(201, 169, 110, 0.3);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
  display: inline-block;
}
.footer__link--merci:hover {
  color: #f0d9a8;
  font-size: 1.1rem;
  text-shadow: 0 0 12px rgba(240, 217, 168, 0.9), 0 0 30px rgba(201, 169, 110, 0.6), 0 0 50px rgba(201, 169, 110, 0.3);
  transform: scale(1.08);
}

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