﻿@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;
}

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

.header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 72px;
  padding: 0 32px;
  margin: 0;
  z-index: 100;
  background: #0d0a07;
  border-bottom: 1px solid rgba(122, 92, 62, 0.25);
}
.header__logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 0;
  z-index: 1;
}
.header__logo-link:hover .header__logo-img {
  transform: scale(1.08);
}
.header__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 0 0 auto;
}
.header__nav-link {
  font-family: "Faculty Glyphic", sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: white;
  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.06);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__action-link {
  font-family: "Faculty Glyphic", sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: white;
  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: 6px 18px;
  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: #0d0a07;
  text-shadow: none;
}
@media (max-width: 900px) {
  .header__nav, .header__actions {
    display: none;
  }
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-self: start;
  width: 100%;
  height: auto;
  min-height: 100%;
  background: #1C1713;
}
.main .main__choices-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #1C1713;
  width: 100%;
  height: auto;
}
.main .main__choices-container .main__choices-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  gap: 32px;
  padding: 60px 80px;
  border-bottom: 1px solid rgba(122, 92, 62, 0.15);
}
.main .main__choices-container .main__choices-row .main__choice-img-container {
  width: 450px;
  min-width: 250px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.main .main__choices-container .main__choices-row .main__choice-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 92, 62, 0.25) 0%, transparent 50%, rgba(122, 92, 62, 0.15) 100%);
  pointer-events: none;
  z-index: 1;
}
.main .main__choices-container .main__choices-row .main__choice-img-container .main__choice-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(122, 92, 62, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.main .main__choices-container .main__choices-row .main__choice-img-container .main__choice-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 56px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(122, 92, 62, 0.6);
}
.main .main__choices-container .main__choices-row .main__description-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  padding-right: 30px;
  height: 100%;
}
.main .main__choices-container .main__choices-row .main__description-left .main__description-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  font-weight: 300;
}
.main .main__choices-container .main__choices-row .main__description-left .main__description-text .main__description-headings {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #EDE8E0;
  margin: 0 0 0.5em 0;
}
.main .main__choices-container .main__choices-row .main__description-left .main__description-text em {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.8;
}
.main .main__choices-container .main__choices-row .main__description-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 60px;
}
.main .main__choices-container .main__choices-row .main__description-right .main__order-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 450px;
  max-width: 450px;
  background: #111009;
  border: 1px solid rgba(122, 92, 62, 0.3);
  border-radius: 16px;
  padding: 36px;
}
.main .main__choices-container .main__choices-row .main__description-right .main__order-container .main__order-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.main .main__choices-container .main__choices-row .main__description-right .main__order-container .main__order-form .main__order-ml-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.main .main__choices-container .main__choices-row .main__description-right .main__order-container .main__order-form .main__order-ml-select {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(122, 92, 62, 0.4);
  background: #1A1610;
  color: white;
  font-size: 1.1rem;
  margin: 0 0 0.5em 0;
  cursor: pointer;
}
.main .main__choices-container .main__choices-row .main__description-right .main__order-container .main__order-form .main__order-ml-select:focus {
  border-color: #7A5C3E;
  outline: none;
}
.main .main__choices-container .main__choices-row .main__description-right .main__order-container .main__order-form .main__order-ml-btn {
  width: 100%;
  background: #7A5C3E;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 0.6em 0;
  font-size: 1.1rem;
  cursor: pointer;
  margin: 0 0 1em 0;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.2s;
}
.main__order-ml-btn {
  width: 100%;
  font-weight: bold;
  font-size: 1rem;
  margin: 0 0 1em 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.main .main__choices-container .main__choices-row .main__description-right .main__order-container .main__order-form .main__order-ml-btn:hover {
  background: #5E4530;
  transform: scale(1.02);
}
.main .main__message-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0px;
  background: #1C1713;
  border-top: 1px solid rgba(122, 92, 62, 0.2);
  padding: 60px 40px;
}
.main .main__message-container .main__message-h2 {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.main .main__message-container .main__create-account-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 200px;
  height: 40px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  border: 1px solid rgba(122, 92, 62, 0.5);
  border-radius: 8px;
  padding: 0.6em 0;
  font-size: 1.1rem;
  cursor: pointer;
  background: transparent;
  margin-bottom: 10px;
  transition: border 0.3s ease, color 0.3s ease;
}
.main .main__message-container .main__create-account-btn:hover {
  border-color: #7A5C3E;
  color: white;
}
.main .main__message-container .main__message-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  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: 50px;
}
.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: 50px;
}
.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__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__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;
}
@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;
}

.modal-commander {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s;
  opacity: 0;
}
.modal-commander__content {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  max-width: 350px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
  position: relative;
  text-align: center;
  transform: translateY(40px);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
}
.modal-commander__content h3 {
  color: #7A5C3E;
  margin-bottom: 1rem;
}
.modal-commander__content p {
  margin-bottom: 1.2em;
}
.modal-commander__content p:last-of-type {
  font-size: 0.95em;
  color: #555;
}
.modal-commander__content > div {
  text-align: left;
  margin-bottom: 1em;
}
.modal-commander__content > div p {
  margin-bottom: 0.5em;
}

#closeModalCommander {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
}

.parfum-order {
  background: rgb(28, 28, 28);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.13);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin: 2rem auto 1.5rem auto;
  color: #fff;
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.parfum-order__create-account-btn {
  width: 90%;
  min-width: 140px;
  max-width: 240px;
  background: linear-gradient(0deg, #18140c 0%, #4A3220 40%, #7A5C3E 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.55em 0.5em;
  font-size: 1.08em;
  cursor: pointer;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.13);
}
.parfum-order__create-account-btn:hover {
  background: linear-gradient(0deg, #18140c 0%, #7A5C3E 80%, #9E7A58 100%);
}
.parfum-order__ml-form {
  width: 100%;
  gap: 0.7rem;
}
.parfum-order__ml-label {
  font-weight: 600;
  color: #7A5C3E;
  margin-bottom: 0.2em;
}
.parfum-order__ml-select {
  width: 100%;
  padding: 0.5em 1em;
  border-radius: 8px;
  border: 2px solid #7A5C3E;
  background: #232323;
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.parfum-order__ml-select:focus {
  border-color: #9E7A58;
  outline: none;
}
.parfum-order__ml-select:focus .main__image-border-square {
  position: absolute;
  z-index: 0;
  width: 90%;
  height: 90%;
  left: 5%;
  top: 5%;
  background: linear-gradient(135deg, #7A5C3E 0%, #fff 50%, #7A5C3E 100%);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(160, 128, 96, 0.15);
}
.parfum-order__ml-select .main__choices-item {
  position: relative;
  z-index: 1;
}
.parfum-order__ml-btn {
  width: 100%;
  background: linear-gradient(0deg, #18140c 0%, #4A3220 40%, #7A5C3E 100%);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 0.6em 0;
  font-size: 1.1em;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.parfum-order__ml-btn:hover {
  background: linear-gradient(0deg, #18140c 0%, #7A5C3E 80%, #9E7A58 100%);
}
.parfum-order__account-create {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 1.2em 1em 1em 1em;
  margin-top: 1.2em;
  gap: 0.7rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.parfum-order__account-title {
  color: #7A5C3E;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.parfum-order__account-input {
  width: 100%;
  padding: 0.5em 1em;
  border-radius: 8px;
  border: 2px solid #7A5C3E;
  background: #232323;
  color: #fff;
  font-size: 1em;
  margin-bottom: 0.3em;
}
.parfum-order__account-input:focus {
  border-color: #9E7A58;
  outline: none;
}
.parfum-order__account-btn {
  width: 100%;
  background: #7A5C3E;
  color: #18140c;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 0.6em 0;
  font-size: 1.1em;
  cursor: pointer;
  display: none;
  margin: 0 auto;
}
.parfum-order__account-btn:hover {
  background: #9E7A58;
}

.parfum-order__account-desc {
  color: #7A5C3E;
  font-size: 1em;
  margin: 1em 0 0.5em 0;
  font-weight: 500;
  text-align: center;
}

.parfum-order__account-message {
  color: #7A5C3E;
  font-size: 1.05em;
  margin-top: 1em;
  font-weight: bold;
  text-align: center;
}

#account-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2000;
}

.order-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.order-modal__content {
  background: #18140e;
  border: 1px solid rgba(122, 92, 62, 0.4);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}
.order-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5em;
  cursor: pointer;
  transition: color 0.2s;
}
.order-modal__close:hover {
  color: white;
}
.order-modal__title {
  color: #EDE8E0;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}
.order-modal__summary {
  color: #7A5C3E;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}
.order-modal #order-modal-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-modal__input {
  width: 100%;
  padding: 0.6em 1em;
  border-radius: 8px;
  border: 1px solid rgba(122, 92, 62, 0.4);
  background: #0d0a07;
  color: white;
  font-size: 0.95rem;
  font-family: "Faculty Glyphic", sans-serif;
  transition: border-color 0.2s;
}
.order-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.order-modal__input:focus {
  outline: none;
  border-color: #7A5C3E;
}
.order-modal__btn {
  width: 100%;
  background: #7A5C3E;
  color: #0d0a07;
  font-family: "Faculty Glyphic", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 0.7em 0;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.order-modal__btn:hover {
  background: #9E7A58;
  transform: scale(1.02);
}
.order-modal__confirmation {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.order-modal__thanks {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}
.order-modal__token-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}
.order-modal__token {
  color: #7A5C3E;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  word-break: break-all;
  border: 1px solid rgba(122, 92, 62, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(122, 92, 62, 0.08);
  margin: 0;
  width: 100%;
}

@keyframes headerVideoFade {
  0% {
    opacity: 1;
  } /* 0s   — noir */
  6% {
    opacity: 0;
  } /* 0.3s — fondu vers vidéo */
  54% {
    opacity: 0;
  } /* 2.7s — vidéo visible */
  60% {
    opacity: 1;
  } /* 3s   — retour au noir */
  100% {
    opacity: 1;
  } /* 5s   — noir, relance */
}

/* ── TABLET ─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .main .main__choices-container .main__choices-row {
    padding: 48px 40px;
    gap: 24px;
  }
  .main .main__choices-container .main__choices-row .main__choice-img-container {
    width: 340px;
    min-width: 200px;
    flex-shrink: 0;
  }
  .main .main__choices-container .main__choices-row .main__choice-img-container .main__choice-img {
    height: 360px;
  }
  .main .main__choices-container .main__choices-row .main__description-right .main__order-container {
    width: 100%;
    max-width: 360px;
    padding: 28px 20px;
  }
}

@media (max-width: 900px) {
  .main .main__choices-container .main__choices-row {
    padding: 36px 24px;
    gap: 20px;
  }
  .main .main__choices-container .main__choices-row .main__choice-img-container {
    width: 240px;
    min-width: 160px;
  }
  .main .main__choices-container .main__choices-row .main__choice-img-container .main__choice-img {
    height: 300px;
  }
  .main .main__choices-container .main__choices-row .main__description-right {
    margin-right: 0;
  }
  .main .main__choices-container .main__choices-row .main__description-right .main__order-container {
    width: 100%;
    max-width: none;
    padding: 24px 14px;
  }
  .main .main__choices-container .main__choices-row .main__description-left .main__description-text .main__description-headings {
    font-size: 2rem;
  }
}

/* ── MOBILE ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Header */
  .header {
    height: auto;
    min-height: 64px;
    padding: 10px 16px;
  }
  .header__logo-img {
    width: 36px;
    height: 36px;
  }

  /* Produit rows : basculement vertical */
  .main .main__choices-container .main__choices-row {
    flex-direction: column;
    padding: 32px 20px;
    gap: 28px;
  }
  .main .main__choices-container .main__choices-row .main__choice-img-container {
    width: 100%;
    min-width: unset;
    flex-shrink: unset;
  }
  .main .main__choices-container .main__choices-row .main__choice-img-container .main__choice-img {
    height: 240px;
  }
  .main .main__choices-container .main__choices-row .main__description-left {
    padding-right: 0;
  }
  .main .main__choices-container .main__choices-row .main__description-left .main__description-text .main__description-headings {
    font-size: 1.8rem;
  }
  .main .main__choices-container .main__choices-row .main__description-right {
    margin-right: 0;
    width: 100%;
    align-items: stretch;
  }
  .main .main__choices-container .main__choices-row .main__description-right .main__order-container {
    width: 100%;
    max-width: none;
    padding: 28px 20px;
  }
  .main .main__message-container {
    padding: 40px 20px;
  }

  /* Footer */
  .footer {
    height: auto;
    padding: 30px 20px 20px;
  }
  .footer__nav {
    flex-direction: column;
    gap: 24px;
    height: auto;
  }
  .footer__nav-left,
  .footer__nav-right {
    width: 100%;
    gap: 20px;
  }
  .footer__bar {
    display: none;
  }
  .footer__logo-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 16px auto;
  }
}

/* ============================================================
   Section INCI / Composition réglementaire
   ============================================================ */

.product-inci {
  background: #0f0d09;
  border-top: 1px solid rgba(122, 92, 62, 0.3);
  border-bottom: 1px solid rgba(122, 92, 62, 0.3);
  padding: 60px 40px;
}

.product-inci__container {
  max-width: 1100px;
  margin: 0 auto;
  color: #d4b896;
}

.product-inci__title {
  font-size: 1.6rem;
  color: #c49a6c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.product-inci__intro {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #a08060;
  margin-bottom: 40px;
  max-width: 760px;
}

.product-inci__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.product-inci__card {
  background: #1a1208;
  border: 1px solid rgba(122, 92, 62, 0.4);
  border-radius: 8px;
  padding: 24px;
  font-size: 0.875rem;
  line-height: 1.7;
}

.product-inci__card-title {
  font-size: 1rem;
  color: #c49a6c;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(122, 92, 62, 0.3);
  padding-bottom: 10px;
}

.product-inci__label {
  font-weight: 600;
  color: #7A5C3E;
  margin-top: 10px;
  margin-bottom: 2px;
}

.product-inci__ingredients {
  font-style: italic;
  color: #d4b896;
}

.product-inci__precautions {
  background: #1a1208;
  border: 1px solid rgba(122, 92, 62, 0.3);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 24px;
}

.product-inci__precautions-title {
  font-size: 1rem;
  color: #c49a6c;
  margin-bottom: 14px;
}

.product-inci__precautions ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #b09070;
}

.product-inci__allergens {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #806040;
  border-left: 2px solid #7A5C3E;
  padding-left: 14px;
}

@media (max-width: 768px) {
  .product-inci {
    padding: 40px 20px;
  }

  .product-inci__grid {
    grid-template-columns: 1fr;
  }
}
}

/* ── Order tiers ── */
.order-tiers {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  width: 100%;
  border: 1px solid rgba(122, 92, 62, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.order-tier {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(122, 92, 62, 0.15);
}

.order-tier:last-child {
  border-bottom: none;
}

.order-tier__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(122, 92, 62, 0.3);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.order-tier__btn:hover {
  border-color: rgba(201, 169, 110, 0.6);
  background: rgba(122, 92, 62, 0.1);
}

.order-tier__btn.active {
  background: rgba(122, 92, 62, 0.22);
  border-color: #c9a96e;
  box-shadow: 0 0 14px rgba(201, 169, 110, 0.18);
}

.order-tier__btn-ml {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.order-tier__btn.active .order-tier__btn-ml {
  color: #fff;
}

.order-tier__btn-price {
  font-size: 0.72rem;
  color: rgba(201, 169, 110, 0.55);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.order-tier__btn.active .order-tier__btn-price {
  color: #c9a96e;
}

.order-tier__label {
  margin-left: auto;
  font-size: 0.7rem;
  color: rgba(201, 169, 110, 0.35);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Bouton panier dynamique */
.main__order-ml-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.cart-btn__text {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.cart-btn__price {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.main__order-ml-btn:not(.has-selection) {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(122, 92, 62, 0.3);
  border-radius: 6px;
  padding: 14px 28px;
  cursor: default;
}

.main__order-ml-btn.has-selection {
  background: rgba(122, 92, 62, 0.22);
  border: 1px solid #c9a96e;
  border-radius: 6px;
  padding: 14px 28px;
  cursor: pointer;
}

@media (max-width: 480px) {
  /* Header */
  .header {
    padding: 8px 12px;
  }
  .header__menu-btn {
    font-size: 1.3rem;
    padding: 6px 10px;
  }

  /* Product rows */
  .main .main__choices-container .main__choices-row {
    padding: 24px 14px;
    gap: 20px;
  }
  .main .main__choices-container .main__choices-row .main__choice-img-container .main__choice-img {
    height: 200px;
  }
  .main .main__choices-container .main__choices-row .main__description-left .main__description-text .main__description-headings {
    font-size: 1.5rem;
  }
  .main .main__choices-container .main__choices-row .main__description-right .main__order-container {
    padding: 20px 14px;
  }
  .main .main__message-container {
    padding: 30px 14px;
  }

  /* Order tiers */
  .order-tier {
    padding: 12px 10px;
    gap: 6px;
    flex-wrap: wrap;
  }
  .order-tier__btn {
    padding: 8px 12px;
    flex: 1;
    min-width: 64px;
  }
  .order-tier__btn-ml {
    font-size: 0.8rem;
  }
  .order-tier__btn-price {
    font-size: 0.65rem;
  }
  .order-tier__label {
    width: 100%;
    margin-left: 0;
    text-align: right;
    font-size: 0.65rem;
    padding-top: 2px;
  }
  .main__order-ml-btn:not(.has-selection),
  .main__order-ml-btn.has-selection {
    width: 100%;
    padding: 14px 16px;
  }
  .main .main__choices-container .main__choices-row .main__description-right .main__order-container {
    padding: 20px 14px;
  }
}