@charset "UTF-8";
* {
  box-sizing: border-box;
}

html, body {
  background-image: url("../images/bg-RcVmRmu.png");
  scroll-behavior: smooth;
  z-index: 1;
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding-top: 5rem;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}
html .no-scroll, body .no-scroll {
  overflow: hidden;
  height: 100%;
}

/* Décalage du scroll sur les ancres pour éviter que le contenu
   soit caché derrière le header fixe en haut */
section[id],
[id]:not(input):not(label):not(textarea):not(select) {
  scroll-margin-top: 13rem;
}

/* Halo doux derrière les titres pour les rendre lisibles même
   quand des étoiles décoratives passent juste derrière.
   Très discret : ressemble à un léger flou de fond. */
h1, h2 {
  text-shadow: 0 0 8px rgba(255, 250, 240, 0.85), 0 0 16px rgba(255, 250, 240, 0.55);
}

h1 {
  display: none;
}

h2 {
  padding: 0.6rem 0.2rem;
  font-size: 2rem;
  font-family: "Bebas Neue", sans-serif;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 40px;
  height: auto;
  pointer-events: none;
  opacity: 0.55;
  filter: blur(0.5px);
}

main {
  margin: 0 auto;
  padding: 6rem 1rem 1rem;
  max-width: 900px;
  position: relative;
  min-height: calc(100vh - 5rem - 6rem - 1rem);
}

footer {
  padding: 1rem;
}

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

.btn {
  display: inline-block;
  background-color: rgb(172, 67, 42);
  color: rgb(236, 217, 182);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  background-color: #F5F5F7;
  color: rgb(172, 67, 42);
  transition: 0.3s ease;
}

* {
  transition: 0.3s ease;
}

input,
textarea {
  transform: scale(0.9);
  width: 90%;
  border: rgb(65, 62, 62);
}

::placeholder {
  transform: translateY(-1px);
  font-size: 0.9rem;
}

label {
  display: inline-block;
  width: auto;
  padding: 1rem 1rem 1rem 1rem;
  background-size: 1000%;
  background-position: center;
  font-family: "Lobster", sans-serif;
  border-radius: 30px;
  font-weight: 400;
  font-size: 1.2rem;
}

button,
button[type=submit] {
  cursor: pointer;
}

/* Empêche l'auto-zoom de Safari iOS au focus d'un input.
   Safari déclenche un zoom si la font-size de l'input est < 16px.
   On force 16px uniquement sur les écrans tactiles. */
@media (hover: none) and (pointer: coarse) {
  input,
  textarea,
  select {
    font-size: 16px !important;
  }
}
.success {
  color: green;
  background-color: #d4edda;
  padding: 1rem;
}

.flash {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}
.flash--error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #b91c1c;
}
.flash--success {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #15803d;
}
.flash--warning {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  color: #a16207;
}

/********************** REGISTER PAGE **********************/
.register-container ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  text-align: left;
}

.register-container ul li {
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}

/********************** INPUT REGISTER/LOGIN **********************/
.password-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* Le champ et l’œil sont ensemble */
.password-field {
  position: relative;
  width: 100%;
}

/* L’œil reste FIXE */
.password-field .toggle-password {
  position: absolute;
  right: 2.5rem;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  z-index: 10;
  background-color: rgb(245, 245, 247);
  border-radius: 50%;
  padding: 2px;
  pointer-events: all;
}

/* L’input garde de la place pour l’œil */
.password-field input {
  width: 100%;
  padding-right: 3rem;
  border-radius: 10px;
}

/* Les erreurs sont en dehors : elles ne bougent plus rien */
.password-wrapper .form-error-message,
.password-wrapper ul {
  margin-top: 0.5rem;
  margin-left: 2rem;
  color: #b30000;
  font-size: 0.9rem;
  line-height: 1.2;
}

.important {
  color: rgb(172, 67, 42) !important;
}

h2, h3 {
  font-weight: 100;
}

li {
  list-style: none;
  font-weight: 400;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  cursor: zoom-out;
  animation: lightbox-fade 0.18s ease-out;
}
.lightbox--open {
  display: flex;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: rgb(172, 67, 42);
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.lightbox__close:hover {
  background: #fff;
  transform: scale(1.08);
}

@keyframes lightbox-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.article-images img,
.event-thumb,
.zoomable {
  cursor: zoom-in;
}

header {
  text-shadow: 20px 20px 20px rgba(0, 0, 0, 0.35);
  position: relative;
}

.menu {
  background-color: rgb(172, 67, 42);
  color: rgb(236, 217, 182);
  display: flex;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  text-transform: uppercase;
  padding: 0.2rem 1.2rem;
  width: auto;
  max-width: 90vw;
  margin: 20px auto;
  box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.3);
  /*********** Menu qui suit au scroll ***********/
  position: fixed;
  top: 2.5rem;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
}
.menu .pinup-img {
  position: absolute;
  top: -55px;
  left: 135px;
  height: 100px;
  z-index: 1100;
  pointer-events: none;
  transform: scaleX(-1);
  filter: drop-shadow(7px 15px 6px rgba(0, 0, 0, 0.3));
}
.menu .menu-title {
  grid-column: 1;
  margin-right: auto;
  font-family: "Limelight", sans-serif;
}
.menu .menu-title:hover {
  color: #F5F5F7;
  transition: 0.3s ease;
}
.menu .title-main1 {
  line-height: 1.2;
  font-size: 1.3rem;
}
.menu .title-main2 {
  line-height: 1.2;
  font-size: 1.8rem;
}
.menu .title-sub {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.menu .menu-icons {
  display: flex;
  grid-column: 7;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0;
  font-size: 2rem;
}
.menu .menu-icons:hover {
  color: #fcf9f3;
}
.menu .menu-icons .menu-link {
  font-size: 2rem;
  background: none;
  border: none;
  color: rgb(236, 217, 182);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}
.menu .menu-icons i {
  pointer-events: none;
}

.side-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  top: 0;
  padding: 12rem 1rem 1rem;
  left: auto;
  right: 0;
  width: min(70vw, 250px);
  bottom: 0;
  height: 100dvh;
  max-width: 250px;
  background-color: rgb(172, 67, 42);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1200;
  transform: scaleX(0);
  transform-origin: right center;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.side-menu ul li {
  margin: 1rem 0 1.5rem;
  text-align: center;
}
.side-menu ul li a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  color: rgb(236, 217, 182);
  transition: color 0.2s ease;
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  text-shadow: 10px 10px 15px rgba(0, 0, 0, 0.35);
}
.side-menu ul li a:hover {
  color: #fcf9f3;
}
.side-menu .menu-socials {
  text-align: center;
  position: relative;
}
.side-menu .menu-socials::before {
  content: "";
  display: block;
  width: 30%;
  height: 2px;
  background-color: rgb(236, 217, 182);
  margin: 0 auto 0.5rem auto;
}
.side-menu .menu-socials ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.side-menu .menu-socials li {
  display: flex;
}
.side-menu .menu-socials a {
  font-size: 2rem;
  color: rgb(236, 217, 182);
}
.side-menu .close-btn {
  position: absolute;
  top: 50px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: rgb(236, 217, 182);
}
.side-menu .img-menu {
  position: absolute;
  top: 60%;
  left: -185px;
  transform: translateY(-50%) translateX(100px);
  opacity: 0;
  filter: drop-shadow(25px 15px 4px rgba(0, 0, 0, 0.3));
  height: 400px;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.side-menu .logo-light {
  height: 125px;
  align-self: center;
  margin: 0 3rem;
}
.side-menu.open {
  transform: scaleX(1);
  opacity: 1;
}
.side-menu.open .img-menu {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.side-menu.closing {
  transform: scaleX(0);
  opacity: 0;
}
.side-menu.closing .img-menu {
  transform: translateY(-50%) translateX(100px);
  opacity: 0;
}

#open-menu {
  min-width: 50px;
  min-height: 70px;
}
#open-menu:hover {
  color: rgb(245, 245, 247);
}

#open-menu .fa-times {
  display: none;
}

#open-menu.active .fa-bars {
  display: none;
}

#open-menu.active .fa-times {
  display: inline;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(236, 217, 182, 0.3);
  backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.no-scroll {
  overflow: hidden;
}

@media (min-width: 640px) and (max-width: 1199px) {
  .menu {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    width: 90%;
    border-radius: 50px;
  }
  .menu .title-main1,
  .menu .title-main2 {
    font-size: 2.5rem;
    margin-right: 0.5rem;
  }
  .menu-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .pinup-img {
    position: absolute !important;
    top: 41% !important;
    left: 45% !important;
    transform: scale(1.4) scaleX(-1) !important;
    height: 110px !important;
  }
}
/*********** MEDIA QUERIES 1200px et + ***********/
@media (min-width: 1200px) {
  .menu {
    max-width: 1100px;
    width: 70%;
    padding: 2rem 4rem;
    border-radius: 90px;
    gap: 3rem;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    text-align: center;
  }
  .menu .menu-title {
    text-align: center;
    margin: 0 auto;
  }
  .menu .title-main1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-right: 1.2rem;
  }
  .menu .title-main1,
  .menu .title-main2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  .menu .title-sub {
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-top: 0.3rem;
  }
  .menu .menu-icons {
    position: absolute;
    font-size: 2rem;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu #open-menu {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    min-width: 70px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu .pinup-img {
    top: 60px;
    left: 15%;
    transform: translateX(-50%) scale(1.6) scaleX(-1);
    height: 130px;
  }
  .side-menu {
    max-width: 500px;
    width: 45vw;
    padding: 7rem 3rem 3rem;
  }
  .side-menu .img-menu {
    height: 600px;
    left: -260px;
  }
  .side-menu ul li {
    margin-bottom: 2rem;
  }
  .side-menu ul li a {
    font-size: 1.5rem;
  }
  .side-menu .logo-light {
    height: 200px;
    margin-top: -1.5rem;
    margin-bottom: 1.5rem;
  }
  .side-menu .menu-socials a {
    font-size: 2.4rem;
  }
}
footer {
  background-color: rgb(172, 67, 42);
  color: rgb(236, 217, 182);
  position: relative;
  margin-top: 10rem;
  text-align: center;
}
footer img {
  position: absolute;
  top: -7rem;
  left: 0;
  transform: none;
  max-height: 150px;
  filter: drop-shadow(20px 20px 15px rgba(0, 0, 0, 0.6));
}
footer .h2-footer {
  font-family: "Bebas Neue", sans-serif;
  background: none;
  color: rgb(236, 217, 182);
  text-align: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  padding-top: 2rem;
  display: block;
  white-space: nowrap;
  text-shadow: 20px 20px 20px rgba(0, 0, 0, 0.35);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  background: transparent !important;
}
footer .h2-footer::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: rgb(236, 217, 182);
  margin: 0.5rem auto 0;
}
footer nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 4rem;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 20px 20px 0 20px;
  justify-items: start;
}
footer nav .socials ul {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  text-shadow: 20px 20px 20px rgba(0, 0, 0, 0.35);
}
footer nav .socials i {
  font-size: 2rem;
}
footer nav .socials i:hover {
  color: #F5F5F7;
}
footer div {
  padding: 0;
}
footer div h3 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  margin-bottom: 2rem;
  margin-top: -1rem;
  text-align: left;
  font-size: 1.25rem;
  text-shadow: 20px 20px 20px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}
footer div ul {
  text-align: left;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.9rem;
}
footer div li {
  margin-bottom: 1.5rem;
  font-family: "Inter", sans-serif;
}
footer div li:hover {
  color: #F5F5F7;
}
footer .mailto {
  font-size: 0.7rem;
}
footer .admin {
  font-size: 1rem;
}

@media screen and (min-width: 1200px) {
  footer {
    margin-top: 6rem;
    padding: 2rem 0 1rem 0;
    text-align: center;
  }
  footer img {
    top: -5rem;
    max-height: 120px;
    left: 2rem;
  }
  footer .h2-footer {
    font-size: 2rem;
    padding-top: 1rem;
    margin-bottom: 4rem;
  }
  footer .h2-footer::after {
    width: 100px;
    height: 2px;
  }
  footer nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: start;
    gap: 2rem;
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
  footer nav div h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  footer nav div ul {
    font-size: 0.95rem;
  }
  footer nav div ul li {
    margin-bottom: 1rem;
  }
  footer nav .socials ul {
    justify-content: center;
  }
  footer .tom {
    font-size: 0.9rem;
  }
  footer .admin {
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    font-size: 0.9rem;
  }
  footer .admin:hover {
    color: #F5F5F7;
    transition: 0.3s ease;
  }
}
.legal-page, .legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 1.65;
  font-size: 15px;
}
.legal-page h1, .legal-container h1 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 0 8px 0;
  font-family: inherit;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgb(172, 67, 42);
  text-align: left;
  text-transform: none;
  text-shadow: none;
  padding: 0;
}
.legal-page .maj, .legal-container .maj {
  margin: 0 0 28px 0;
  padding: 6px 12px;
  background: rgba(172, 67, 42, 0.08);
  border-left: 3px solid rgb(172, 67, 42);
  border-radius: 4px;
  font-style: italic;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  width: fit-content;
}
.legal-page h2, .legal-container h2 {
  margin: 32px 0 12px 0;
  padding: 0;
  background: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgb(172, 67, 42);
  text-align: left;
  text-transform: none;
  text-shadow: none;
}
.legal-page h3, .legal-container h3 {
  margin: 22px 0 8px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
}
.legal-page p, .legal-container p {
  margin: 0 0 14px 0;
  line-height: 1.65;
}
.legal-page p strong, .legal-container p strong {
  color: rgba(0, 0, 0, 0.95);
  font-weight: 700;
}
.legal-page ul, .legal-container ul, .legal-page ol, .legal-container ol {
  margin: 0 0 14px 0;
  padding-left: 22px;
}
.legal-page ul li, .legal-container ul li, .legal-page ol li, .legal-container ol li {
  margin-bottom: 6px;
  line-height: 1.55;
}
.legal-page a, .legal-container a {
  color: rgb(172, 67, 42);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page a:hover, .legal-container a:hover {
  opacity: 0.8;
}

.contact-page {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-page h1 {
  display: block;
  margin: 0 0 6px 0;
  font-size: 26px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: -0.01em;
  color: rgb(172, 67, 42);
}
.contact-page .contact-subtitle {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}
.contact-page .contact-hero {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 360px;
}
.contact-page .contact-hero__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mask-image: radial-gradient(ellipse at center, #000 55%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 55%, transparent 95%);
}
.contact-page .contact-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.contact-page .contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-page label {
  all: unset;
  display: block;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}
.contact-page input[type=text],
.contact-page input[type=email],
.contact-page textarea {
  width: 100%;
  padding: 0 14px;
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.85);
  transform: none;
  box-sizing: border-box;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-page input[type=text]:focus,
.contact-page input[type=email]:focus,
.contact-page textarea:focus {
  outline: none;
  border-color: rgb(172, 67, 42);
  box-shadow: 0 0 0 3px rgba(172, 67, 42, 0.12);
}
.contact-page input[type=text]::placeholder,
.contact-page input[type=email]::placeholder,
.contact-page textarea::placeholder {
  transform: none;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.35);
  font-family: inherit;
}
.contact-page input[type=text],
.contact-page input[type=email] {
  height: 42px;
  line-height: 1;
}
.contact-page textarea {
  min-height: 160px;
  padding: 12px 14px;
  line-height: 1.5;
  resize: vertical;
  font-family: inherit;
}
.contact-page .contact-btn,
.contact-page button[type=submit] {
  align-self: flex-start;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  margin: 4px 0 0 0;
  border-radius: 12px;
  border: 1px solid rgb(172, 67, 42);
  background: rgb(172, 67, 42);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.contact-page .contact-btn:hover,
.contact-page button[type=submit]:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}
.contact-page .contact-btn:active,
.contact-page button[type=submit]:active {
  transform: translateY(1px);
}
.contact-page .contact-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.contact-page .contact-alert--success {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #15803d;
}
.contact-page .contact-alert--error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #b91c1c;
}
.contact-page .contact-error {
  margin: 0;
  padding: 6px 10px;
  background: rgba(220, 38, 38, 0.08);
  border-left: 3px solid #b91c1c;
  border-radius: 4px;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 500;
}

.events-page {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

#calendar .fc-view-harness,
#calendar .fc-scrollgrid,
#calendar .fc-daygrid,
#calendar .fc-daygrid-body,
#calendar .fc-daygrid-day {
  display: none !important;
}

#calendar {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 2rem 0 1.5rem 0;
}

.fc-toolbar {
  position: relative;
  display: block !important;
  background: linear-gradient(135deg, rgb(172, 67, 42), #c04b2f);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(172, 67, 42, 0.2);
}
.fc-toolbar h2 {
  background: none;
  color: rgb(236, 217, 182);
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
}

.fc-toolbar-chunk:last-child {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-top: 14px;
  position: static;
  transform: none;
  bottom: auto;
  left: auto;
}

.fc-button {
  background: rgba(255, 255, 255, 0.95) !important;
  color: rgb(172, 67, 42) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 8px 16px !important;
  margin: 0 !important;
  font-family: inherit !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: none !important;
  box-shadow: none !important;
  transition: background 0.2s ease, transform 0.06s ease;
}
.fc-button:hover {
  background: #fff !important;
  color: rgb(172, 67, 42) !important;
  transform: translateY(-1px);
}
.fc-button:active {
  transform: translateY(1px);
}
.fc-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.fc-button.fc-button-primary:disabled {
  background: rgba(255, 255, 255, 0.5) !important;
  color: rgba(172, 67, 42, 0.5) !important;
}

.fc-button-group {
  display: inline-flex;
  gap: 8px;
}
.fc-button-group .fc-button {
  border-radius: 10px !important;
}

.fc-toolbar-chunk:last-child {
  gap: 10px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 1rem;
}

.event-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 245, 0.85));
  border: 1px solid rgba(172, 67, 42, 0.2);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(172, 67, 42, 0.12);
  border-color: rgba(172, 67, 42, 0.35);
}

.event-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.event-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.event-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1;
}

.event-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  color: rgb(172, 67, 42);
  text-transform: none;
  letter-spacing: -0.01em;
}

.event-date {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 4px;
}

.event-details {
  padding: 14px 16px;
  border-top: 1px solid rgba(172, 67, 42, 0.15);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.75);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.event-card.open .event-details {
  display: block;
}

.no-events {
  text-align: center;
  font-style: italic;
  color: rgba(0, 0, 0, 0.55);
  margin: 2rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
}

.event-reserve {
  text-align: left;
  margin-top: 12px;
}

.reserve-button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgb(172, 67, 42);
  background: rgb(172, 67, 42);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.reserve-button:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}
.reserve-button:active {
  transform: translateY(1px);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 16px;
}

.modal-content {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  width: 100%;
  max-width: 380px;
  margin: auto;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  line-height: 1.5;
  box-sizing: border-box;
}
.modal-content h3 {
  font-weight: 800;
  font-size: 18px;
  margin: 0 0 6px 0;
  color: rgb(172, 67, 42);
  font-family: inherit;
  letter-spacing: -0.01em;
}
.modal-content p {
  margin: 0;
}
.modal-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

#reservationList {
  padding: 0;
  margin: 0 0 12px 0;
  text-align: center;
  list-style: none;
}
#reservationList li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

#reservationMessage {
  font-size: 13px;
  margin: 10px 0;
  min-height: 20px;
  overflow-wrap: break-word;
  color: rgba(0, 0, 0, 0.7);
}
#reservationMessage p {
  margin: 4px 0;
}
#reservationMessage ul {
  text-align: left;
  margin: 6px 0;
  padding-left: 18px;
  list-style: disc;
}

#closeModal,
#reserveBtn,
#unreserveBtn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  margin-top: 8px;
  border-radius: 10px;
  border: 1px solid rgb(172, 67, 42);
  background: #fff;
  color: rgb(172, 67, 42);
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#reserveBtn {
  background: rgb(172, 67, 42);
  color: #fff;
}
#reserveBtn:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}

#unreserveBtn:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}

#closeModal {
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.65);
}
#closeModal:hover {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(0, 0, 0, 0.25);
}

.upcoming-events {
  max-width: 800px;
  margin: 3rem auto 0 auto;
}
.upcoming-events h2 {
  background: none;
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  color: rgb(172, 67, 42);
  letter-spacing: -0.01em;
  text-transform: none;
  text-shadow: none;
  margin: 0 0 18px 0;
  padding: 0;
}
.upcoming-events h2::after {
  display: none;
}
.upcoming-events__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.upcoming-event-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 245, 0.9));
  border: 1px solid rgba(172, 67, 42, 0.18);
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.upcoming-event-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: rgb(172, 67, 42);
}
.upcoming-event-card:nth-child(5n+1)::before {
  background: rgb(172, 67, 42);
}
.upcoming-event-card:nth-child(5n+2)::before {
  background: #15803d;
}
.upcoming-event-card:nth-child(5n+3)::before {
  background: #d4a017;
}
.upcoming-event-card:nth-child(5n+4)::before {
  background: #1d4ed8;
}
.upcoming-event-card:nth-child(5n+5)::before {
  background: #7c3aed;
}
@media (hover: hover) {
  .upcoming-event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(172, 67, 42, 0.15);
    border-color: rgba(172, 67, 42, 0.35);
  }
}
.upcoming-event-card:focus-visible {
  outline: 2px solid rgb(172, 67, 42);
  outline-offset: 2px;
}

.upcoming-event__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 18px 14px 26px;
}

.upcoming-event__image {
  width: 88px;
  height: 88px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.04);
  display: block;
}
.upcoming-event__image--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgb(172, 67, 42);
  background: rgba(172, 67, 42, 0.1);
}

.upcoming-event__day {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.upcoming-event__month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 4px;
  text-transform: uppercase;
}

.upcoming-event__info {
  min-width: 0;
}

.upcoming-event__title {
  margin: 0 0 4px 0;
  padding: 0;
  background: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: rgb(172, 67, 42);
  letter-spacing: -0.01em;
  text-shadow: none;
  text-transform: none;
  line-height: 1.3;
}
.upcoming-event__title::after {
  display: none;
}

.upcoming-event__meta {
  margin: 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.4;
}

.upcoming-event__badge {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(172, 67, 42, 0.1);
  color: rgb(172, 67, 42);
}
.upcoming-event__badge--gala {
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
}
.upcoming-event__badge--photo {
  background: rgba(212, 160, 23, 0.15);
  color: #a87100;
}
.upcoming-event__badge--salon {
  background: rgba(29, 78, 216, 0.1);
  color: #1d4ed8;
}
.upcoming-event__badge--reunion {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.upcoming-event__countdown {
  align-self: start;
  padding: 6px 12px;
  background: rgb(172, 67, 42);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.upcoming-event__details {
  display: none;
  padding: 0 18px 18px 26px;
  border-top: 1px solid rgba(172, 67, 42, 0.15);
  margin-top: 4px;
}

.upcoming-event-card.open .upcoming-event__details {
  display: block;
  padding-top: 14px;
}

.upcoming-event__description {
  margin: 0 0 14px 0;
  line-height: 1.55;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
}
.upcoming-event__description p {
  margin: 0 0 8px 0;
}

.upcoming-event__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.upcoming-event__gallery img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  cursor: zoom-in;
}

.upcoming-event__reserve {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgb(172, 67, 42);
  background: rgb(172, 67, 42);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.upcoming-event__reserve:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}

@media (max-width: 540px) {
  .upcoming-event__header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 14px 12px 22px;
  }
  .upcoming-event__image {
    width: 64px;
    height: 64px;
  }
  .upcoming-event__countdown {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
  .upcoming-event__details {
    padding: 0 14px 16px 22px;
  }
  .upcoming-event__gallery img {
    width: 90px;
    height: 90px;
  }
}
.blog-section {
  padding: 0;
  max-width: 800px;
  margin: 3rem auto 0 auto;
}
.blog-section h2 {
  background: none;
  font-family: inherit;
  font-size: 22px;
  font-weight: 800;
  color: rgb(172, 67, 42);
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0 0 18px 0;
  padding: 0;
}
.blog-section .category-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(172, 67, 42, 0.15);
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 20px;
}
.blog-section .tab-btn {
  flex: 0 1 auto;
  min-width: 100px;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: rgb(172, 67, 42);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-section .tab-btn:hover {
  background: rgba(172, 67, 42, 0.08);
}
.blog-section .tab-btn.active {
  background: rgb(172, 67, 42);
  color: #fff;
  border-color: rgb(172, 67, 42);
}
.blog-section .articles-container .article-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(172, 67, 42, 0.18);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.blog-section .articles-container .article-card:hover {
  border-color: rgba(172, 67, 42, 0.35);
}
.blog-section .articles-container .article-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: rgb(172, 67, 42);
  background: none;
  padding: 0;
  font-family: inherit;
  letter-spacing: -0.01em;
  text-transform: none;
}
.blog-section .articles-container .article-card .category-name {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 4px 0 10px 0;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.toggle-text {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background: transparent;
  color: rgb(172, 67, 42);
  border: 1px solid rgb(172, 67, 42);
  border-radius: 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.toggle-text:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}

.article-card.open .toggle-text::after {
  content: "Fermer";
}

.article-card:not(.open) .toggle-text::after {
  content: "Voir plus";
}

.article-card {
  position: relative;
}
.article-card .article-title {
  margin: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  color: rgb(172, 67, 42);
  display: inline-block;
}
.article-card .article-content {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin-top: 14px;
  padding: 16px;
  background: rgba(255, 248, 245, 0.6);
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.55;
  font-size: 14px;
  box-sizing: border-box;
}
.article-card .article-content > * {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: left;
}
.article-card .article-content .article-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.article-card .article-content .article-images img {
  width: 100%;
  max-width: 240px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}
.article-card .article-content p, .article-card .article-content .comments, .article-card .article-content .login-notice {
  width: 100%;
  text-align: left;
}

.article-card.open .article-content {
  display: flex;
}

.comments h4 {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 800;
  color: rgb(172, 67, 42);
}
.comments .comment {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.comments .comment strong {
  color: rgb(172, 67, 42);
  font-size: 13px;
  font-weight: 700;
}
.comments .comment small {
  color: rgba(0, 0, 0, 0.45);
  font-size: 12px;
  margin-left: 6px;
}
.comments .comment p {
  margin: 4px 0 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
}

.login-notice {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}
.login-notice a {
  color: rgb(172, 67, 42);
  font-weight: 700;
  text-decoration: underline;
}
.login-notice a:hover {
  opacity: 0.85;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.comment-form textarea {
  width: 100%;
  min-height: 90px;
  padding: 10px 12px !important;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  resize: vertical;
  transform: none;
  box-sizing: border-box;
}
.comment-form textarea:focus {
  outline: none;
  border-color: rgb(172, 67, 42);
  box-shadow: 0 0 0 3px rgba(172, 67, 42, 0.12);
}
.comment-form button {
  align-self: flex-end;
  height: 36px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgb(172, 67, 42);
  background: rgb(172, 67, 42);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.comment-form button:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}

.no-article {
  text-align: center;
  font-style: italic;
  color: rgba(0, 0, 0, 0.55);
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.6);
  padding: 1rem;
  border-radius: 12px;
}

h2:first-of-type {
  margin-top: 0 !important;
}

.logo {
  width: 60%;
  margin: 0 auto;
  background: url("../images/bg-RcVmRmu.png") center/cover no-repeat;
  border-radius: 10rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

h2 {
  background: none;
  border-radius: 0;
  font-size: 1.8rem;
  font-family: "Bebas Neue", sans-serif;
  color: rgb(172, 67, 42);
  font-weight: 400;
  text-align: center;
  position: relative;
  text-shadow: none;
  margin: 3rem 0 1.5rem 0;
  letter-spacing: 2px;
}
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: rgb(172, 67, 42);
  border-radius: 2px;
  opacity: 0.6;
}

.home-page {
  display: none;
}

.presentation-container {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 3rem;
}

.presentation {
  position: relative;
  background: linear-gradient(135deg, rgb(172, 67, 42), #bc492e);
  box-shadow: 0 10px 28px rgba(172, 67, 42, 0.3);
  border-radius: 32px;
  color: rgb(236, 217, 182);
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  overflow: visible;
}

.presentation img.pinup {
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(120px, 22vw, 220px);
  height: auto;
  transform: translate(15%, 20%) scale(1.5) scaleX(-1);
  object-fit: contain;
  filter: drop-shadow(7px 15px 6px rgba(0, 0, 0, 0.3));
}

.presentation img.vinyle {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(90px, 13vw, 160px);
  height: auto;
  transform: translate(-15%, -30%);
  object-fit: contain;
  filter: drop-shadow(7px 15px 6px rgba(0, 0, 0, 0.3));
}

/************************** GRID ****************************/
.grid-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: 2rem;
  padding: 1rem 5px 3rem 5px;
  justify-items: center;
  align-items: center;
  text-align: center;
  /* Liens cliquables : petit effet de hover sur desktop */
}
.grid-home > div,
.grid-home > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.grid-home > a {
  transition: transform 0.2s ease;
}
@media (hover: hover) {
  .grid-home > a:hover p {
    background: linear-gradient(135deg, #c54d30, #cf573a);
    box-shadow: 0 8px 22px rgba(172, 67, 42, 0.35);
    transform: translateY(-2px);
  }
  .grid-home > a:hover img {
    transform: scale(1.04);
  }
}
.grid-home img {
  display: block;
  width: 70%;
  max-width: 140px;
  height: auto;
  margin-bottom: 1rem;
  aspect-ratio: 1/1;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.grid-home p {
  font-size: 1.5rem;
  font-family: "Bebas Neue", sans-serif;
  background: linear-gradient(135deg, rgb(172, 67, 42), #bc492e);
  box-shadow: 0 6px 16px rgba(172, 67, 42, 0.25);
  border-radius: 16px;
  color: rgb(236, 217, 182);
  padding: 0.75rem;
  margin-top: 0;
  width: 90%;
  min-height: 80px;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.grid-home p {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  height: 100px;
  padding: 0 1rem !important;
}

/************************** CARROUSEL ****************************/
.carousel {
  width: 100%;
  max-width: 800px;
  height: 300px;
  margin: auto;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}

.carousel-section {
  position: relative;
  overflow: visible;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  height: 100%;
  cursor: grab;
  user-select: none;
}
.carousel-track img {
  pointer-events: none;
}

.carousel-item {
  flex: 0 0 100%;
  height: 100%;
  max-height: 300px;
}

.carousel-item img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: rgba(0, 0, 0, 0.85);
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  color: rgb(172, 67, 42);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.prev:hover, .next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.prev {
  left: 12px;
}

.next {
  right: 12px;
}

/******************************************************/
.btn {
  margin-top: 4rem;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2rem;
}

.event-btn-container {
  position: relative;
  width: fit-content;
  margin: 5rem auto 0;
}

.event-home {
  position: relative;
  z-index: 2;
  padding: 14px 32px 14px 6rem;
  background: linear-gradient(135deg, rgb(172, 67, 42), #bc492e);
  box-shadow: 0 6px 18px rgba(172, 67, 42, 0.3);
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-home:hover {
  background: #fff;
  color: rgb(172, 67, 42);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(172, 67, 42, 0.35);
}

.pinup-button {
  position: absolute;
  bottom: 100%;
  left: 1rem;
  width: 80px;
  transform: translateY(42%);
  z-index: 5;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.35));
}

/************************** MEDIA QUERIES POUR LE GRID EN UNE COLONNE ****************************/
@media (max-width: 360px) {
  .grid-home {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    padding: 0 1rem 2rem 1rem;
  }
  .grid-home div {
    min-height: auto;
    margin-bottom: 1.5rem;
  }
  .grid-home img {
    width: 50%;
    margin-bottom: 0.5rem;
  }
  .grid-home p {
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem !important;
  }
}
/************************** MEDIA QUERIES DESKTOP (1200px et +) ****************************/
@media (min-width: 1200px) {
  h2 {
    font-size: 3rem;
  }
  .logo {
    width: 30%;
    margin-bottom: 3rem;
  }
  .presentation-container {
    padding-bottom: 5rem;
  }
  .presentation {
    font-size: 1.5rem;
    max-width: 800px;
    padding: 4rem;
  }
  .presentation img.pinup {
    transform: translate(10%, 30%) scale(1.8) scaleX(-1);
  }
  .presentation img.vinyle {
    transform: translate(-40%, -40%) scale(1.2);
  }
  .grid-home {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4rem;
    row-gap: 3rem;
    padding: 2rem 0 4rem 0;
  }
  .carousel {
    max-width: 1000px;
    height: 400px;
  }
  .carousel-item {
    max-height: 400px;
  }
  .btn {
    font-size: 1.3rem;
    margin-top: 5rem;
  }
}
.auth-page {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-page h1 {
  display: block;
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: -0.01em;
  color: rgb(172, 67, 42);
}
.auth-page h2 {
  margin: 0 0 14px 0;
  padding: 0;
  background: none;
  font-size: 18px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0;
}
.auth-page p {
  margin: 0;
  line-height: 1.5;
}
.auth-page a {
  color: inherit;
}
.auth-page .auth-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(172, 67, 42);
  text-decoration: none;
  opacity: 0.85;
  width: fit-content;
  transition: opacity 0.2s ease;
}
.auth-page .auth-back i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.auth-page .auth-back:hover {
  opacity: 1;
}
.auth-page .auth-back:hover i {
  transform: translateX(-3px);
}
.auth-page .auth-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-page .auth-subtitle {
  margin: 0 0 4px 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
.auth-page .auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.auth-page .auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-page label {
  all: unset;
  display: block;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}
.auth-page input[type=text],
.auth-page input[type=email],
.auth-page input[type=password] {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  margin: 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.85);
  transform: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.auth-page input[type=text]:focus,
.auth-page input[type=email]:focus,
.auth-page input[type=password]:focus {
  outline: none;
  border-color: rgb(172, 67, 42);
  box-shadow: 0 0 0 3px rgba(172, 67, 42, 0.12);
}
.auth-page input[type=text]::placeholder,
.auth-page input[type=email]::placeholder,
.auth-page input[type=password]::placeholder {
  transform: none;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.35);
}
.auth-page .auth-password {
  position: relative;
}
.auth-page .auth-password input {
  padding-right: 42px;
}
.auth-page .auth-password__toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.auth-page .auth-password__toggle:hover {
  color: rgb(172, 67, 42);
  background: rgba(172, 67, 42, 0.08);
}
.auth-page .auth-checkbox {
  all: unset;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.4;
  font-family: inherit;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.auth-page .auth-checkbox input[type=checkbox] {
  all: unset;
  appearance: auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: rgb(172, 67, 42);
}
.auth-page .auth-checkbox a {
  color: rgb(172, 67, 42);
  text-decoration: underline;
}
.auth-page .auth-checkbox a:hover {
  opacity: 0.8;
}
.auth-page .auth-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  margin: 6px 0 0 0;
  border-radius: 12px;
  border: 1px solid rgb(172, 67, 42);
  background: #fff;
  color: rgb(172, 67, 42);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.auth-page .auth-btn:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}
.auth-page .auth-btn:active {
  transform: translateY(1px);
}
.auth-page .auth-btn--primary {
  background: rgb(172, 67, 42);
  color: #fff;
}
.auth-page .auth-btn--primary:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}
.auth-page .auth-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
}
.auth-page .auth-links a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.auth-page .auth-links a strong {
  color: rgb(172, 67, 42);
  font-weight: 700;
}
.auth-page .auth-links a:hover {
  color: rgb(172, 67, 42);
}
.auth-page .auth-link {
  color: rgb(172, 67, 42);
  font-weight: 600;
  text-decoration: underline;
}
.auth-page .auth-link:hover {
  opacity: 0.8;
}
.auth-page .auth-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.auth-page .auth-alert--error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #b91c1c;
}
.auth-page .auth-alert--success {
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #15803d;
}
.auth-page .auth-alert--info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #1e40af;
}
.auth-page .auth-error {
  margin: 0;
  padding: 6px 10px;
  background: rgba(220, 38, 38, 0.08);
  border-left: 3px solid #b91c1c;
  border-radius: 4px;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 500;
}
.auth-page .auth-help {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.4;
}

body.login-page {
  background-image: url("../images/femme10-97S_qnf.png");
  background-repeat: no-repeat;
  background-position: center -5rem;
  background-size: 220% auto;
}
@media (min-width: 640px) and (max-width: 1199px) {
  body.login-page {
    background-size: 130% auto;
    background-position: -5rem -10rem;
  }
}
@media (min-width: 1200px) {
  body.login-page {
    background-size: 90% auto;
    background-position: 15rem -10rem;
  }
}
@media (min-width: 2160px) {
  body.login-page {
    background-size: 70% auto;
    background-position: 40rem -25rem;
  }
}

.profil-page {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.profil-page h1 {
  display: block;
  margin: 0 0 18px 0;
  font-size: 26px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.profil-page h2 {
  margin: 0 0 14px 0;
  padding: 0;
  background: none;
  font-size: 18px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.profil-page p {
  margin: 0 0 14px 0;
  line-height: 1.5;
  color: inherit;
}
.profil-page a {
  color: inherit;
}
.profil-page input[type=text],
.profil-page input[type=email],
.profil-page input[type=password] {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  margin: 0 0 14px 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  transform: none;
  box-sizing: border-box;
}
.profil-page input[type=text]:focus,
.profil-page input[type=email]:focus,
.profil-page input[type=password]:focus {
  outline: none;
  border-color: rgb(172, 67, 42);
}
.profil-page input[type=text]::placeholder,
.profil-page input[type=email]::placeholder,
.profil-page input[type=password]::placeholder {
  transform: none;
  font-size: 14px;
  opacity: 0.5;
}
.profil-page label {
  all: unset;
  display: block;
  margin: 0 0 6px 0;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
}
.profil-page .profil-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px;
}
.profil-page .profil-card--danger {
  border-color: rgba(220, 38, 38, 0.3);
  background: rgba(254, 242, 242, 0.85);
}
.profil-page .profil-card--danger h2 {
  color: #b91c1c;
}
.profil-page .profil-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(172, 67, 42);
  text-decoration: none;
  opacity: 0.85;
  width: fit-content;
}
.profil-page .profil-back i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.profil-page .profil-back:hover {
  opacity: 1;
}
.profil-page .profil-back:hover i {
  transform: translateX(-3px);
}
.profil-page .profil-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgb(172, 67, 42);
  background: #fff;
  color: rgb(172, 67, 42);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.profil-page .profil-btn:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}
.profil-page .profil-btn:active {
  transform: translateY(1px);
}
.profil-page .profil-btn--primary {
  background: rgb(172, 67, 42);
  color: #fff;
}
.profil-page .profil-btn--primary:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}
.profil-page .profil-btn--danger {
  border-color: #b91c1c;
  color: #b91c1c;
  background: #fff;
}
.profil-page .profil-btn--danger:hover {
  background: #b91c1c;
  color: #fff;
}
.profil-page .profil-delete-form {
  margin: 0;
}
.profil-page .orders-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.profil-page .order-card {
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profil-page .order-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.profil-page .order-card__date {
  margin-left: 10px;
  opacity: 0.7;
  font-size: 13px;
}
.profil-page .order-card__invoice {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  color: rgb(172, 67, 42);
}
.profil-page .order-status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.profil-page .order-status--pending {
  background: rgba(234, 179, 8, 0.15);
  color: #a16207;
}
.profil-page .order-status--paid {
  background: rgba(22, 163, 74, 0.15);
  color: #15803d;
}
.profil-page .order-status--shipped {
  background: rgba(59, 130, 246, 0.15);
  color: #1d4ed8;
}
.profil-page .order-status--delivered {
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
}
.profil-page .order-status--cancelled {
  background: rgba(220, 38, 38, 0.15);
  color: #b91c1c;
}
.profil-page .order-status--refunded {
  background: rgba(107, 114, 128, 0.15);
  color: #4b5563;
}
.profil-page .order-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 14px;
}
.profil-page .order-items li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
}
.profil-page .order-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.profil-page .order-card__foot strong {
  font-size: 20px;
  font-weight: 900;
}

.shop-scope {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shop-scope .shop-title {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
}
.shop-scope .shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.shop-scope .shop-card {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 245, 0.8));
  border: 1px solid rgba(172, 67, 42, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
@media (hover: hover) {
  .shop-scope .shop-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(172, 67, 42, 0.12);
    border-color: rgba(172, 67, 42, 0.35);
  }
}
.shop-scope .shop-card__title {
  font-weight: 800;
  font-size: 16px;
  color: rgb(172, 67, 42);
  letter-spacing: -0.01em;
}
.shop-scope .shop-card__desc {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.45;
  font-size: 13px;
}
.shop-scope .shop-card__price {
  margin-top: auto;
  font-size: 20px;
  font-weight: 700;
  color: rgb(172, 67, 42);
  letter-spacing: -0.01em;
}
.shop-scope .shop-card__stock {
  font-size: 12px;
  font-weight: 700;
}
.shop-scope .shop-card__stock--low {
  color: #a16207;
}
.shop-scope .shop-card__stock--out {
  color: #b91c1c;
}
.shop-scope .shop-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgb(172, 67, 42);
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  background: #fff;
  color: rgb(172, 67, 42);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.shop-scope .shop-btn:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}
.shop-scope .shop-btn--primary {
  background: rgb(172, 67, 42);
  color: #fff;
}
.shop-scope .shop-btn--primary:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}
.shop-scope .shop-empty {
  margin: 0;
  opacity: 0.75;
}

.shop-product {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 245, 0.78));
  backdrop-filter: blur(6px);
  border: 1px solid rgba(172, 67, 42, 0.2);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.shop-product h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgb(172, 67, 42);
}
.shop-product p {
  margin: 0;
  line-height: 1.5;
}
.shop-product > p:first-of-type {
  color: rgba(0, 0, 0, 0.65);
  font-size: 15px;
}
.shop-product .shop-product__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(172, 67, 42, 0.08);
  border: 1px solid rgba(172, 67, 42, 0.2);
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.shop-product .shop-product__price strong {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: rgb(172, 67, 42);
  text-transform: none;
}
.shop-product .shop-product__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}
.shop-product .shop-product__stock--in {
  color: #15803d;
}
.shop-product .shop-product__stock--low {
  color: #a16207;
}
.shop-product .shop-product__stock--out {
  color: #b91c1c;
}
.shop-product .shop-product__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.shop-product .shop-product__actions form {
  margin: 0;
  padding: 0;
  display: inline-flex;
}
.shop-product .shop-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgb(172, 67, 42);
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  background: #fff;
  color: rgb(172, 67, 42);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.06s ease;
}
.shop-product .shop-btn:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}
.shop-product .shop-btn:active {
  transform: translateY(1px);
}
.shop-product .shop-btn i {
  font-size: 13px;
  transition: transform 0.2s ease;
}
.shop-product .shop-btn--primary {
  background: #fff;
  color: rgb(172, 67, 42);
  border: 1px solid rgb(172, 67, 42);
}
.shop-product .shop-btn--primary:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}
.shop-product .shop-btn--ghost {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.65);
}
.shop-product .shop-btn--ghost:hover {
  background: rgb(172, 67, 42);
  color: #fff;
  border-color: rgb(172, 67, 42);
}
.shop-product .shop-btn--ghost:hover i {
  transform: translateX(-3px);
}
.shop-product .shop-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.shop-card__img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  display: block;
}

.img_product {
  width: 100%;
  max-width: 520px;
  height: 380px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .shop-scope {
    margin-top: 5rem;
  }
  .shop-product {
    margin-top: 5rem;
  }
}
.shop-cart-summary {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px 20px;
  box-sizing: border-box;
  background: linear-gradient(135deg, rgba(172, 67, 42, 0.08), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(172, 67, 42, 0.25);
  border-radius: 14px;
}
.shop-cart-summary--empty {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(0, 0, 0, 0.08);
}
.shop-cart-summary--empty .shop-cart-summary__icon {
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.45);
}
.shop-cart-summary__info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.shop-cart-summary__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(172, 67, 42, 0.15);
  color: rgb(172, 67, 42);
  font-size: 16px;
  flex-shrink: 0;
}
.shop-cart-summary__count {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: rgb(172, 67, 42);
  line-height: 1.2;
}
.shop-cart-summary__total {
  font-size: 13px;
  opacity: 0.75;
}
.shop-cart-summary__total strong {
  font-weight: 700;
  opacity: 1;
}
.shop-cart-summary__text {
  margin: 0;
  font-size: 14px;
  opacity: 0.75;
}
.shop-cart-summary .shop-btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgb(172, 67, 42);
  background: #fff;
  color: rgb(172, 67, 42);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.shop-cart-summary .shop-btn:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}
.shop-cart-summary .shop-btn--primary {
  background: rgb(172, 67, 42);
  color: #fff;
}
.shop-cart-summary .shop-btn--primary:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}

.cart-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cart-container h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cart-container a {
  color: inherit;
}
.cart-container form {
  margin: 0;
  padding: 0;
  display: inline-flex;
}
.cart-container .cart-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: rgb(172, 67, 42);
  opacity: 0.85;
  width: fit-content;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cart-container .cart-back i {
  font-size: 12px;
  transition: transform 0.2s ease;
}
.cart-container .cart-back:hover {
  opacity: 1;
}
.cart-container .cart-back:hover i {
  transform: translateX(-3px);
}
.cart-container .cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.cart-container .cart-item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 540px) {
  .cart-container .cart-item {
    grid-template-columns: 110px 1fr;
    gap: 14px;
  }
}
.cart-container .cart-item__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.04);
  display: block;
}
@media (max-width: 540px) {
  .cart-container .cart-item__image {
    height: 110px;
  }
}
.cart-container .cart-item__image--empty {
  background: rgba(0, 0, 0, 0.05);
}
.cart-container .cart-item__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.cart-container .cart-item__title {
  font-size: 16px;
  font-weight: 800;
}
.cart-container .cart-item__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}
.cart-container .cart-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.9;
}
.cart-container .cart-row strong {
  opacity: 1;
}
.cart-container .cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cart-container .cart-qty__btn {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid rgb(172, 67, 42);
  background: #fff;
  color: rgb(172, 67, 42);
  font-family: inherit;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.cart-container .cart-qty__btn:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}
.cart-container .cart-qty__btn:active {
  transform: translateY(1px);
}
.cart-container .cart-qty__value {
  min-width: 28px;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
}
.cart-container .cart-remove {
  box-sizing: border-box;
  height: 32px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  color: rgba(0, 0, 0, 0.65);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cart-container .cart-remove:hover {
  background: rgb(172, 67, 42);
  color: #fff;
  border-color: rgb(172, 67, 42);
}
.cart-container .cart-remove:active {
  transform: translateY(1px);
}
.cart-container .cart-total {
  margin: 6px 0 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  font-weight: 650;
}
.cart-container .cart-total strong {
  font-size: 22px;
  font-weight: 900;
}
.cart-container .cart-actions {
  margin: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cart-container .cart-btn {
  box-sizing: border-box;
  height: 40px;
  padding: 0 18px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgb(172, 67, 42);
  background: #fff;
  color: rgb(172, 67, 42);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cart-container .cart-btn:hover {
  background: rgb(172, 67, 42);
  color: #fff;
}
.cart-container .cart-btn:active {
  transform: translateY(1px);
}
.cart-container .cart-btn--primary {
  background: rgb(172, 67, 42);
  color: #fff;
}
.cart-container .cart-btn--primary:hover {
  background: #fff;
  color: rgb(172, 67, 42);
}
.cart-container .cart-btn--danger {
  border-color: rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.65);
}
.cart-container .cart-btn--danger:hover {
  background: rgb(172, 67, 42);
  color: #fff;
  border-color: rgb(172, 67, 42);
}

.shop-payment {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}
.shop-payment h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.shop-payment p {
  margin: 0;
  line-height: 1.55;
  font-size: 15px;
  opacity: 0.9;
}
.shop-payment strong {
  font-weight: 900;
  font-size: 18px;
  opacity: 1;
}
.shop-payment .shop-payment__amount {
  font-size: 16px;
}
.shop-payment .shop-payment__status {
  font-size: 14px;
  opacity: 0.8;
}
.shop-payment .shop-payment__actions {
  margin-top: 6px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.shop-payment .shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: inherit;
  transition: transform 0.06s ease, background 0.12s ease, opacity 0.12s ease;
}
.shop-payment .shop-btn:active {
  transform: translateY(1px);
}
.shop-payment .shop-btn--primary {
  background: rgba(145, 56, 43, 0.95);
  color: #fff;
  border-color: transparent;
}
.shop-payment .shop-btn--primary:hover {
  opacity: 0.94;
}
.shop-payment .shop-btn--ghost {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.18);
  opacity: 0.85;
}
.shop-payment .shop-btn--ghost:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
}
.shop-payment--success {
  border-color: rgba(40, 160, 90, 0.35);
  box-shadow: 0 0 0 3px rgba(40, 160, 90, 0.08);
}
.shop-payment--pending {
  border-color: rgba(220, 150, 40, 0.35);
  box-shadow: 0 0 0 3px rgba(220, 150, 40, 0.08);
}
.shop-payment--cancel {
  border-color: rgba(180, 60, 60, 0.35);
  box-shadow: 0 0 0 3px rgba(180, 60, 60, 0.08);
}

/*# sourceMappingURL=app.output.css.map */
