@charset "UTF-8";
/* ==========================================
-------THEME COULEURS - LA TERRE EST RONDE
============================================= */
/* Couleurs principales */
/* Couleurs textes neutres */
/* Couleurs background */
/* Ombres */
/* Bordures */
/* Typographie */
/* Animation fluide et naturelle*/
/* paramètre décalage du header*/
/*coleurs de retours utilisateurs */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  color: #2c2c2c;
  background-color: #ffffff;
}

h1,
.title_main,
.section-title,
.profile__title,
.about-page__title {
  font-family: "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  text-align: center;
  color: #7a5933;
  margin-bottom: 1.4rem;
  font-weight: normal;
  font-style: italic;
  position: relative;
}
h1::after,
.title_main::after,
.section-title::after,
.profile__title::after,
.about-page__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #c9b095;
  margin: 1rem auto 0;
}

h3 {
  font-family: "Times New Roman", serif;
  font-size: clamp(1.2rem, 1vw, 2rem);
  text-align: center;
  color: #7a5933;
  margin-bottom: 1.4rem;
  font-weight: normal;
  font-style: italic;
  position: relative;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 10px;
}

.main-page-container {
  padding-top: calc(94px + 4rem);
  padding-bottom: 5rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.form-error-text {
  color: #d32f2f !important;
  font-size: 0.85rem;
  margin-top: 8px;
  font-weight: 600;
  min-height: 1.2rem;
}
.form-error-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.form-error-text ul li {
  color: #d32f2f;
  animation: fadeIn 0.3s ease;
}

input.form-control:invalid,
.form-group.has-error input {
  border-color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.02);
}

.info-local {
  text-align: center;
  margin-top: 3rem;
  font-style: italic;
  color: #999;
  font-size: 0.9rem;
}
.info-local a {
  color: #7a5933;
  text-decoration: none;
  font-weight: 600;
  font-style: normal;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.info-local a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #c9b095;
  transition: width 0.4s ease;
}
.info-local a:hover {
  color: #5e4528;
}
.info-local a:hover::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Barlow", sans-serif;
  border: none;
}
.btn--primary {
  background: #7a5933;
  color: #ffffff;
}
.btn--primary:hover {
  background: #5e4528;
  transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  border: 1px solid #7a5933;
  color: #7a5933;
}
.btn--secondary:hover {
  background: rgba(122, 89, 51, 0.1);
}

.status-badge,
.status_tag {
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  font-family: "Barlow", sans-serif;
}

.flash-container {
  position: fixed;
  top: 150px;
  right: 20px;
  z-index: 9999;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.alert,
.invalid-feedback,
.form-errors ul {
  pointer-events: auto;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  list-style: none;
  margin-bottom: 0.5rem;
  animation: slideInAlert 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.alert i,
.invalid-feedback i,
.form-errors ul i {
  margin-right: 0.85rem;
  font-size: 1.25rem;
}
.alert.alert-danger, .alert.alert-error, .alert.invalid-feedback,
.alert li,
.invalid-feedback.alert-danger,
.invalid-feedback.alert-error,
.invalid-feedback.invalid-feedback,
.invalid-feedback li,
.form-errors ul.alert-danger,
.form-errors ul.alert-error,
.form-errors ul.invalid-feedback,
.form-errors ul li {
  background-color: #fff5f5;
  color: #d32f2f;
  border-color: #f5c6cb;
}
.alert.alert-success,
.invalid-feedback.alert-success,
.form-errors ul.alert-success {
  background-color: #f1f9f1;
  color: #28a745;
  border-color: #c3e6cb;
}
.alert.alert-warning,
.invalid-feedback.alert-warning,
.form-errors ul.alert-warning {
  background-color: #fff9e6;
  color: #f39c12;
  border-color: #ffeeba;
}

form ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0.25rem 0 0.75rem 0 !important;
}
form ul li {
  color: #d32f2f !important;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 0.3s ease-out;
}
form ul li::before {
  content: "\f06a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9rem;
}

.custom-auth-form .form-group {
  margin-bottom: 1.25rem;
}
.custom-auth-form .form-group ul li {
  margin-top: 5px;
}

@keyframes slideInAlert {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.creation-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  max-width: 350px;
}
.creation-card:hover, .creation-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.creation-card:hover .creation-card__overlay, .creation-card:focus-within .creation-card__overlay {
  opacity: 1;
}
.creation-card:hover .creation-card__image-wrapper img, .creation-card:focus-within .creation-card__image-wrapper img {
  transform: scale(1.05);
}
.creation-card__image-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  background: #fafafa;
  overflow: hidden;
}
.creation-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.creation-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.creation-card__badge .status-badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.creation-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(94, 69, 40, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.creation-card__overlay .btn-detail {
  background: #ffffff;
  color: #2c2c2c;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.creation-card__overlay .btn-detail:hover {
  background: #ffffff;
}
.creation-card__img-link:focus-visible {
  outline: 3px solid #7a5933;
  outline-offset: 3px;
}
.creation-card__content {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  font-family: "Barlow", sans-serif;
}
.creation-card__header {
  text-align: center;
  margin-bottom: 1rem;
}
.creation-card__title {
  font-family: "Times New Roman", serif;
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.creation-card__title a {
  text-decoration: none;
  color: #2c2c2c;
  transition: color 0.2s;
}
.creation-card__title a:hover {
  color: #7a5933;
}
.creation-card__price {
  font-weight: 700;
  color: #7a5933;
  font-size: 1.1rem;
}
.creation-card__actions {
  margin-top: auto;
}
.creation-card__actions .btn--full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  padding: 0.7rem;
}
.creation-card--sold-out {
  filter: grayscale(0.6);
}
.creation-card--sold-out .creation-card__image-wrapper img {
  opacity: 0.6;
}
.creation-card--sold-out .creation-card__price,
.creation-card--sold-out .creation-card__title a {
  color: #999;
}
.creation-card--sold-out:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.creation-card--sold-out:hover img {
  transform: none;
}

.status-badge {
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: "Barlow", sans-serif;
}
.status-badge i {
  font-size: 0.9em;
}
.status-badge.status-Paye, .status-badge.status-Livree, .status-badge.status-Validee, .status-badge.status-disponible {
  background-color: #e6f4ea;
  color: #1e7e34;
  border-color: #c3e6cb;
}
.status-badge.status-En-attente, .status-badge.status-En-preparation, .status-badge.status-Virement {
  background-color: #fff4e5;
  color: #664d03;
  border-color: #ffeeba;
}
.status-badge.status-Expediee, .status-badge.status-Stripe, .status-badge.status-Paypal {
  background-color: #e3f2fd;
  color: #1565c0;
  border-color: #bbdefb;
}
.status-badge.status-Annulee, .status-badge.status-Echec, .status-badge.status-epuise {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 9999 !important;
  display: flex;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.header--transparent {
  background: transparent;
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  height: 94px;
}
.header__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* --- BURGER --- */
.burger {
  flex: 0 0 50px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9999;
  position: relative;
  pointer-events: auto !important;
}
.burger span {
  width: 30px;
  height: 2px;
  background: #7a5933;
  transition: 0.3s ease;
  border-radius: 2px;
}
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- LOGO --- */
.header__logo {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__logo img {
  width: 85px;
  height: auto;
  transition: width 0.3s ease;
}

/* --- PANIER & BADGE --- */
.header__cart {
  flex: 0 0 50px;
  display: flex;
  justify-content: flex-end;
}
.header__cart-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.header__cart img {
  width: 48px;
  height: auto;
  transition: transform 0.3s ease;
}
.header__cart img:hover {
  transform: scale(1.1);
}
.header__cart-badge {
  position: absolute;
  top: 26px;
  left: 6px;
  background: #7a5933;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  animation: pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pop-in {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
/* --- DESKTOP --- */
@media (min-width: 950px) {
  .header {
    height: 90px;
  }
  .burger {
    display: none;
  }
  .header__logo {
    flex: 0;
    justify-content: flex-start;
  }
  .header__logo img {
    width: 110px;
  }
}
.nav {
  position: absolute;
  top: 82px;
  left: 0.5rem;
  width: 260px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(122, 89, 51, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  /* --- DESKTOP --- */
}
.nav.active {
  max-height: 600px;
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
  padding: 1.5rem;
}
.nav.active ul li {
  opacity: 1;
  transform: translateX(0);
}
.nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.nav ul li {
  border-bottom: 1px solid rgba(122, 89, 51, 0.05);
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.4s ease;
}
.nav ul li:nth-child(1) {
  transition-delay: 0.07s;
}
.nav ul li:nth-child(2) {
  transition-delay: 0.14s;
}
.nav ul li:nth-child(3) {
  transition-delay: 0.21s;
}
.nav ul li:nth-child(4) {
  transition-delay: 0.28s;
}
.nav ul li:nth-child(5) {
  transition-delay: 0.35s;
}
.nav ul li:nth-child(6) {
  transition-delay: 0.42s;
}
.nav ul li:nth-child(7) {
  transition-delay: 0.49s;
}
.nav ul li:nth-child(8) {
  transition-delay: 0.56s;
}
.nav ul li:nth-child(9) {
  transition-delay: 0.63s;
}
.nav ul li:nth-child(10) {
  transition-delay: 0.7s;
}
.nav ul li:last-child {
  border-bottom: none;
}
.nav ul li a {
  text-decoration: none;
  color: #2c2c2c;
  font-family: "Barlow", sans-serif;
  font-size: 1.05rem;
  display: block;
  padding: 0.8rem 0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav ul li a:hover {
  color: #7a5933;
  padding-left: 5px;
}
@media (min-width: 950px) {
  .nav {
    position: static;
    width: auto;
    max-height: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    transform: none;
    display: flex !important;
    overflow: visible;
  }
  .nav ul {
    flex-direction: row;
    gap: 2.5rem;
  }
  .nav ul li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    border: none;
    padding: 0;
  }
  .nav ul li a {
    padding: 0;
    font-weight: 500;
    font-size: 0.95rem;
  }
  .nav ul li a:hover {
    padding-left: 0;
    transform: translateY(-2px);
  }
}

.footer {
  border-top: 1px solid rgba(122, 89, 51, 0.4);
  background: #fafafa;
  padding: 4rem 1.5rem 2rem;
  color: #2c2c2c;
  font-family: "Barlow", sans-serif;
}
.footer__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
  }
}
.footer__col {
  flex: 1;
}
.footer__col--brand img {
  max-width: 140px;
  height: auto;
  margin-bottom: 1rem;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer__tagline {
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
}
.footer__title {
  font-family: "Times New Roman", serif;
  color: #7a5933;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  font-style: italic;
}
.footer__nav ul {
  list-style: none;
  padding: 0;
}
.footer__nav ul li {
  margin-bottom: 0.8rem;
}
.footer__nav ul li a {
  text-decoration: none;
  color: #2c2c2c;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer__nav ul li a:hover {
  color: #7a5933;
  padding-left: 5px;
}
.footer .social {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}
.footer .social img {
  width: 28px;
  height: 28px;
  filter: grayscale(1);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer .social img:hover {
  filter: grayscale(0);
  transform: translateY(-3px);
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.footer__legal a {
  color: #2c2c2c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__legal a:hover {
  color: #7a5933;
  text-decoration: underline;
}
.footer__copyright {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(153, 153, 153, 0.1);
  text-align: center;
  font-size: 0.8rem;
  color: #2c2c2c;
}

.auth-page {
  padding: 110px 20px 60px;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 85vh;
  font-family: "Barlow", sans-serif;
  /* --- Alertes & Erreurs --- */
}
.auth-page .page-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.6s ease forwards;
}
.auth-page .page-header .section-subtitle {
  color: #555;
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
}
.auth-page .auth-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  animation: fadeIn 0.8s ease 0.2s forwards;
  opacity: 0;
}
.auth-page .auth-container--centered {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-template-columns: none;
}
.auth-page .auth-container--centered .auth-card-wrapper {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .auth-page .auth-container:not(.auth-container--centered) {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
.auth-page .auth-card {
  background: #ffffff;
  padding: 1rem;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201, 176, 149, 0.2);
}
@media (min-width: 480px) {
  .auth-page .auth-card {
    padding: 3rem;
  }
}
.auth-page .auth-card__title {
  font-family: "Times New Roman", serif;
  font-size: 1.6rem;
  color: #5e4528;
  margin-bottom: 2rem;
  text-align: center;
}
.auth-page .auth-card--alt {
  background: #fafafa;
  border: 1px dashed rgba(122, 89, 51, 0.3);
  box-shadow: none;
  text-align: center;
  margin-top: 2rem;
}
.auth-page .auth-card--alt p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.auth-page .custom-auth-form {
  width: 100%;
}
.auth-page .custom-auth-form .form-group {
  margin-bottom: 1.5rem;
}
.auth-page .custom-auth-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.auth-page .custom-auth-form .form-group input[type=text],
.auth-page .custom-auth-form .form-group input[type=email],
.auth-page .custom-auth-form .form-group input[type=password],
.auth-page .custom-auth-form .form-group .form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #c9b095;
  border-radius: 8px;
  background: #f4f4f4;
  color: #2c2c2c;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.auth-page .custom-auth-form .form-group input[type=text]:focus,
.auth-page .custom-auth-form .form-group input[type=email]:focus,
.auth-page .custom-auth-form .form-group input[type=password]:focus,
.auth-page .custom-auth-form .form-group .form-control:focus {
  background: #ffffff;
  border-color: #7a5933;
  box-shadow: 0 0 0 4px rgba(122, 89, 51, 0.1);
  outline: none;
}
.auth-page .custom-auth-form .form-group input[type=text]::placeholder,
.auth-page .custom-auth-form .form-group input[type=email]::placeholder,
.auth-page .custom-auth-form .form-group input[type=password]::placeholder,
.auth-page .custom-auth-form .form-group .form-control::placeholder {
  color: #999;
  opacity: 0.5;
}
.auth-page .custom-auth-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 1.5rem 0;
  cursor: pointer;
}
.auth-page .custom-auth-form .form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #7a5933;
  cursor: pointer;
}
.auth-page .custom-auth-form .form-check label {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  cursor: pointer;
}
.auth-page .auth-error {
  background: rgba(211, 47, 47, 0.08);
  color: #d32f2f;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid #d32f2f;
}
.auth-page .auth-info {
  background: rgba(40, 167, 69, 0.08);
  color: #28a745;
  padding: 1.2rem;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth-page .form-error-text {
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 5px;
  font-weight: 600;
  min-height: 1rem;
}
.auth-page .form-error-text ul {
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
}
.auth-page .form-error-text ul li {
  color: #d32f2f;
  font-size: 0.8rem;
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}
.auth-page .btn--full {
  width: 100%;
  padding: 1rem;
  justify-content: center;
  display: flex;
}
.auth-page .form-footer {
  margin-top: 1.5rem;
  text-align: center;
}
.auth-page .form-footer .forgot-link {
  font-size: 0.85rem;
  color: #999;
  text-decoration: none;
  transition: color 0.3s;
}
.auth-page .form-footer .forgot-link:hover {
  color: #7a5933;
  text-decoration: underline;
}
.auth-page .auth-benefits {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.auth-page .auth-benefits .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #2c2c2c;
  text-align: left;
}
.auth-page .auth-benefits .benefit-item i {
  color: #7a5933;
  font-size: 1rem;
}

.hidden {
  position: absolute;
  left: -9999px;
}

.turnstile-wrapper {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.about-page {
  background-color: #ffffff;
}
.about-page__header {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}
.about-page__title {
  font-family: "Times New Roman", serif;
  font-size: 2.8rem;
  color: #7a5933;
  margin-bottom: 3rem;
  position: relative;
}
.about-page__title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #c9b095;
  margin: 1rem auto 0;
}
.about-page__image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.about-page__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.about-page__image img:hover {
  transform: scale(1.01);
}
.about-page__content {
  max-width: 750px;
  margin: 0 auto;
}
.about-page__text {
  line-height: 1.9;
  color: #2c2c2c;
  font-size: 1.05rem;
  text-align: justify;
  hyphens: auto;
}
.about-page__text .intro {
  font-size: 1.3rem;
  font-family: "Barlow", sans-serif;
  color: #5e4528;
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-align: center;
}
.about-page__text p {
  margin-bottom: 2rem;
}
.about-page__actions {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .about-page__actions {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}
.about-page__actions .btn {
  min-width: 240px;
}

.contact-page .page-header {
  text-align: center;
}
.contact-page .page-header .upper-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #7a5933;
  font-weight: 700;
  display: block;
}
.contact-page .page-header .section-subtitle {
  max-width: 600px;
  margin: 1.5rem auto 0;
  color: #555;
  line-height: 1.6;
}
.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-info__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-info__block h2 {
  font-family: "Times New Roman", serif;
  color: #7a5933;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-style: italic;
}
.contact-info__block p {
  line-height: 1.6;
  color: #2c2c2c;
}
.contact-info__socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.contact-info__socials .social-link {
  color: #7a5933;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border-bottom: 1px solid transparent;
}
.contact-info__socials .social-link:hover {
  color: #5e4528;
  border-bottom-color: #7a5933;
  transform: translateY(-2px);
}
.contact-info__socials .social-divider {
  color: #f4f4f4;
}

.contact-form-container {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(201, 176, 149, 0.1);
  animation: fadein 0.8s all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.contact-form-container .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 600px) {
  .contact-form-container .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form-container .form-group {
  margin-bottom: 1.5rem;
}
.contact-form-container .form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: #5e4528;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.contact-form-container .form-group input,
.contact-form-container .form-group textarea,
.contact-form-container .form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.contact-form-container .form-group input:focus,
.contact-form-container .form-group textarea:focus,
.contact-form-container .form-group select:focus {
  outline: none;
  background: white;
  border-color: #7a5933;
  box-shadow: 0 0 0 4px rgba(122, 89, 51, 0.05);
}
.contact-form-container .form-group textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form-container .form-submit {
  width: 100%;
  padding: 1.2rem;
}
@media (min-width: 600px) {
  .contact-form-container .form-submit {
    width: auto;
    min-width: 250px;
  }
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  color: #2c2c2c;
}
.legal-page h1 {
  margin-bottom: 3rem;
  text-align: center;
}
.legal-page section {
  margin-bottom: 3rem;
  animation: fadein 0.6s all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.legal-page section h2 {
  font-family: "Times New Roman", serif;
  font-size: 1.5rem;
  color: #5e4528;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(122, 89, 51, 0.1);
  font-style: italic;
}
.legal-page section p,
.legal-page section li {
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}
.legal-page section ul {
  list-style: none;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}
.legal-page section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}
.legal-page section ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #7a5933;
  font-weight: bold;
}
.legal-page section strong {
  color: #5e4528;
  font-weight: 700;
}
.legal-page section a {
  color: #7a5933;
  text-decoration: underline;
}
.legal-page section a:hover {
  color: #5e4528;
}

.cart-page {
  /* --- L'article dans le panier --- */
  /* --- Résumé de commande --- */
  /* --- Panier vide --- */
}
.cart-page .page-header {
  margin-bottom: 4rem;
}
.cart-page .cart-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 992px) {
  .cart-page .cart-grid {
    grid-template-columns: 1.6fr 1.2fr;
    align-items: flex-start;
  }
}
.cart-page .cart-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.2rem;
  border: 1px solid rgba(122, 89, 51, 0.05);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart-page .cart-item:hover {
  transform: translateX(5px);
  border-color: rgba(122, 89, 51, 0.2);
}
.cart-page .cart-item--sold-out {
  border-color: #d32f2f;
  background: #fafafa;
  filter: grayscale(0.8);
}
.cart-page .cart-item--sold-out .cart-item-info h3,
.cart-page .cart-item--sold-out .cart-item-price {
  color: #999;
}
.cart-page .cart-item .cart-item-img-container {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f4f4;
}
.cart-page .cart-item .cart-item-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-page .cart-item .cart-item-info {
  flex-grow: 1;
}
.cart-page .cart-item .cart-item-info h3 {
  font-family: "Times New Roman", serif;
  font-size: 1.2rem;
  color: #2c2c2c;
  margin-bottom: 0.3rem;
}
.cart-page .cart-item .cart-item-info .cart-item-price {
  color: #7a5933;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}
.cart-page .cart-item .cart-item-info .error-msg {
  display: block;
  color: #d32f2f;
  font-size: 0.8rem;
  margin-top: 5px;
  font-weight: 600;
}
.cart-page .cart-item .cart-item-remove {
  color: #999;
  padding: 10px;
  font-size: 1.1rem;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart-page .cart-item .cart-item-remove:hover {
  color: #d32f2f;
  transform: scale(1.1);
}
.cart-page .cart-summary .summary-box {
  background: #fafafa;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(122, 89, 51, 0.1);
  position: sticky;
  top: 120px;
}
.cart-page .cart-summary .summary-box h2 {
  font-family: "Times New Roman", serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #5e4528;
  font-style: italic;
}
.cart-page .cart-summary .summary-box .summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(153, 153, 153, 0.1);
}
.cart-page .cart-summary .summary-box .summary-line strong {
  color: #7a5933;
  font-size: 1.3rem;
}
.cart-page .cart-summary .summary-box .shipping-notice {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.cart-page .cart-summary .summary-box .btn--full {
  width: 100%;
  margin-bottom: 1.2rem;
}
.cart-page .cart-summary .summary-box .btn--full:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(1);
}
.cart-page .cart-summary .summary-box .link-back {
  display: block;
  text-align: center;
  color: #999;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  margin-top: 1rem;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.cart-page .cart-summary .summary-box .link-back i {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 0.8rem;
  margin-right: 8px;
}
.cart-page .cart-summary .summary-box .link-back::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #c9b095;
  transition: width 0.4s ease;
}
.cart-page .cart-summary .summary-box .link-back:hover {
  color: #7a5933;
}
.cart-page .cart-summary .summary-box .link-back:hover i {
  transform: translateX(-5px);
}
.cart-page .cart-summary .summary-box .link-back:hover::after {
  width: 100%;
}
.cart-page .cart-empty {
  text-align: center;
  padding: 5rem 0;
}
.cart-page .cart-empty i {
  font-size: 4rem;
  color: rgba(122, 89, 51, 0.2);
  margin-bottom: 1.5rem;
  display: block;
}
.cart-page .cart-empty p {
  margin-bottom: 2.5rem;
  color: #555;
  font-size: 1.2rem;
  font-family: "Times New Roman", serif;
  font-style: italic;
}

.checkout-page {
  padding: 104px 1rem 25px;
  background-color: #fafafa;
  min-height: 100vh;
}
.checkout-page h1 {
  margin-bottom: 3rem;
}
.checkout-page .checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .checkout-page .checkout-layout {
    grid-template-columns: 1.2fr 300px;
    gap: 2.5rem;
    padding: 50px 1.5rem 60px;
  }
}
.checkout-page .checkout-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  background: #fff;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
.checkout-page .checkout-card h3 {
  font-family: "Times New Roman", serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}
.checkout-page .checkout-card h3::before {
  content: "";
  width: 4px;
  height: 25px;
  background: #7a5933;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .checkout-page .checkout-card {
    padding: 1.6rem;
  }
}
.checkout-page .form-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.checkout-page .form-grid > div {
  grid-column: span 12;
  margin-bottom: 0.5rem;
}
.checkout-page .form-grid .col-3 {
  grid-column: span 3;
}
.checkout-page .form-grid .col-9 {
  grid-column: span 9;
}
.checkout-page .form-grid .col-5 {
  grid-column: span 5;
}
.checkout-page .form-grid .col-7 {
  grid-column: span 7;
}
@media (max-width: 600px) {
  .checkout-page .form-grid > div {
    grid-column: span 12 !important;
  }
}
.checkout-page .form-grid label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 5px;
}
.checkout-page .form-grid input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}
.checkout-page .form-grid input:focus {
  outline: none;
  border-color: #7a5933;
  box-shadow: 0 0 0 3px rgba(122, 89, 51, 0.1);
}

.edit-action {
  margin-top: 0.5rem;
}

.link-styled {
  display: inline-block;
  font-family: "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
  color: #7a5933;
  text-decoration: none;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
.link-styled::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background-color: #c9b095;
  transition: width 0.3s ease;
}
.link-styled:hover {
  color: #5e4528;
}
.link-styled:hover::after {
  width: 100%;
  background-color: #7a5933;
}

.shipping-method {
  padding: 1rem 0;
}
.shipping-method .shipping-logo {
  max-width: 140px;
  margin-bottom: 1rem;
}
.shipping-method p.text-soft {
  max-width: 500px;
  margin: 0 auto 2rem;
  color: #555;
  line-height: 1.6;
}
.shipping-method .shipping-price-badge {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  background: #fdfaf8;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #c9b095;
  margin: 1.5rem auto;
}
.shipping-method .shipping-price-badge .label {
  font-size: 0.8rem;
  color: #555;
  text-transform: uppercase;
}
.shipping-method .shipping-price-badge .amount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #7a5933;
}
@media (min-width: 768px) {
  .shipping-method .shipping-price-badge {
    width: auto;
    padding: 1.5rem 3rem;
  }
  .shipping-method .shipping-price-badge .amount {
    font-size: 2.2rem;
  }
}

.summary-title {
  text-align: center;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}
.summary-item img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
  border-radius: 8px;
}
.summary-item .item-info {
  flex: 1;
}
.summary-item .item-info p {
  margin: 0;
}
.summary-item .item-info .name {
  font-weight: 600;
}
.summary-item .item-info .price {
  color: #7a5933;
  font-weight: 700;
}

.summary-details {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1rem;
  gap: 0.5rem;
}
.summary-details .summary-row,
.summary-details .summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.95rem;
  color: #555;
}
.summary-details .summary-row span:last-child,
.summary-details .summary-total span:last-child {
  font-weight: 700;
  color: #5e4528;
}
.summary-details .summary-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.summary-details .summary-note i {
  color: #7a5933;
  margin-top: 3px;
}

.summary-footer {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

aside.order-summary {
  order: 2;
}
@media (min-width: 1024px) {
  aside.order-summary {
    order: unset;
    position: sticky;
    top: 120px;
    height: fit-content;
  }
}

.different-billing-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background: #fdfaf8;
  border: 1px dashed #c9b095;
  cursor: pointer;
}
.different-billing-wrapper input {
  width: 20px;
  height: 20px;
  accent-color: #7a5933;
}
.different-billing-wrapper span {
  font-size: 1rem;
  font-weight: 600;
  color: #5e4528;
}

.payment-selection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .payment-selection {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.payment-selection .payment-item {
  flex: 1;
  min-width: 140px;
}
.payment-selection .payment-item input[type=radio] {
  display: none;
}
.payment-selection .payment-item input[type=radio]:checked + .payment-card {
  border-color: #7a5933;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(122, 89, 51, 0.12);
  transform: translateY(-7px);
}
.payment-selection .payment-item input[type=radio]:checked + .payment-card .card-icon {
  color: #7a5933;
}
.payment-selection .payment-item input[type=radio]:checked + .payment-card::after {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 12px;
  right: 12px;
  color: #7a5933;
  font-size: 1.4rem;
}
.payment-selection .payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #fdfaf8;
  border: 2px solid #c9b095;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
.payment-selection .payment-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
  opacity: 0.7;
}
.payment-selection .payment-card .card-title-text {
  font-weight: 700;
  color: #5e4528;
}
.payment-selection .payment-card .card-subtitle {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 1rem;
}
.payment-selection .payment-card .card-logos {
  margin-top: auto;
  display: flex;
  gap: 0.6rem;
  font-size: 1.3rem;
  opacity: 0.6;
}

.btn--full {
  width: 90%;
  max-width: 450px;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn--full:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(122, 89, 51, 0.2);
}

.flex-actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.flex-actions .info-local {
  color: #555;
  font-style: italic;
}

.payment-final-action {
  margin-top: 2rem;
  min-height: 100px;
}
.payment-final-action #checkout-button.d-none {
  display: none !important;
}
.payment-final-action .security-note {
  text-align: center;
  font-size: 0.85rem;
  margin-top: 1.2rem;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.d-none {
  display: none !important;
}

.address-review {
  padding-top: 25px;
  width: 100%;
  text-align: left;
}
.address-review .user-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #5e4528;
  margin-bottom: 0.5rem;
}
.address-review .address-actions {
  margin: 1.2rem;
  padding-top: 1rem;
  border-top: 1px dashed #f4f4f4;
}
.address-review .address-actions .text-link {
  display: block;
  color: #999;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  margin-top: 1rem;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.address-review .address-actions .text-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #c9b095;
  transition: width 0.4s ease;
}
.address-review .address-actions .text-link:hover {
  color: #7a5933;
}
.address-review .address-actions .text-link:hover i {
  transform: translateX(-5px);
}
.address-review .address-actions .text-link:hover::after {
  width: 100%;
}

.profile-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1.5rem 60px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .profile-grid {
    flex-direction: row;
    align-items: start;
    gap: 3rem;
  }
}

.profile-main {
  flex: 1.6;
}

.profile-sidebar {
  flex: 1;
}
.profile-sidebar h3 {
  color: #555;
  letter-spacing: 0.05em;
}

.custom-auth-form {
  background: #fff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .custom-auth-form {
    padding: 2.5rem;
  }
}
.custom-auth-form .form-section-header {
  font-family: "Times New Roman", serif;
  font-size: 1.3rem;
  color: #5e4528;
  margin: 2rem 0 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #fafafa;
  display: block;
  width: 100%;
}
.custom-auth-form .form-section-header:first-of-type {
  margin-top: 0;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.2rem;
  width: 100%;
}
@media (min-width: 576px) {
  .form-row {
    flex-direction: row;
    align-items: flex-end;
    gap: 1.5rem;
  }
}
.form-row .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.form-row .form-group label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .form-row .form-group label {
    min-height: 32px;
    display: flex;
    align-items: flex-end;
  }
}
.form-row .form-group input {
  height: 50px;
  padding: 0 15px;
  border: 1px solid #dcd3c8;
  border-radius: 10px;
  background-color: #f4f4f4;
  font-size: 1rem;
  color: #5e4528;
  transition: all 0.2s ease;
}
.form-row .form-group input:focus {
  outline: none;
  background-color: #fff;
  border-color: #7a5933;
}
.form-row .form-group.flex-1 {
  flex: 1;
}
@media (min-width: 576px) {
  .form-row .form-group.flex-numero {
    flex: 0 0 110px;
  }
  .form-row .form-group.flex-numero input {
    text-align: center;
  }
}
@media (min-width: 576px) {
  .form-row .form-group.flex-rue {
    flex: 0 1 450px;
    min-width: 200px;
  }
}

.order-item {
  background: #fff;
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 176, 149, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .order-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
}
.order-item .order-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.order-item .order-ref {
  font-weight: 800;
  font-family: "Times New Roman", serif;
  color: #5e4528;
  font-size: 1.1rem;
}
.order-item .order-date {
  font-size: 0.85rem;
  color: #555;
}
.order-item .order-price {
  font-weight: 700;
  color: #7a5933;
  font-size: 1.2rem;
}

.order-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.order-badges .badge-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.order-badges .badge-label {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: #7a5933;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #563f24;
  transform: translateY(-2px);
}

.btn-facture {
  text-decoration: none;
  font-size: 0.8rem;
  color: #555;
  border: 1px solid #5e4528;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-facture:hover {
  background: #5e4528;
  color: #fff;
}

.address-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #fdfaf8;
  border: 1px dashed #c9b095;
  border-radius: 10px;
  cursor: pointer;
}
.address-switch input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #7a5933;
}
.address-switch label {
  font-weight: 600;
  color: #5e4528;
  cursor: pointer;
}

.auth-success-alert {
  background-color: #e6f4ea;
  color: #1e7e34;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #c3e6cb;
}

.billing-section.is-hidden {
  display: none;
}

.profile-empty {
  color: #555;
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

.profile-danger-zone {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}

.danger-header {
  color: #dc3545 !important;
}

.profile-help-text {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.btn-delete-account {
  width: 100%;
  padding: 0.8rem;
  background-color: transparent;
  color: #dc3545;
  border: 1px solid #dc3545;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}

.btn-delete-account:hover {
  background-color: #dc3545;
  color: white;
}

.creation-show-page .creation-gallery {
  height: 400px;
  border-radius: 24px;
  background: #fafafa;
  margin-bottom: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
@media (min-width: 768px) {
  .creation-show-page .creation-gallery {
    height: 600px;
  }
}
.creation-show-page .creation-gallery .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.creation-show-page .creation-gallery .swiper-slide img,
.creation-show-page .creation-gallery .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.creation-show-page .creation-gallery .swiper-pagination-bullet-active {
  background: #7a5933 !important;
}
.creation-show-page .creation-gallery .swiper-button-prev,
.creation-show-page .creation-gallery .swiper-button-next {
  color: #7a5933 !important;
}
.creation-show-page .creation-main-infos {
  text-align: center;
  margin: 2rem;
}
.creation-show-page .creation-main-infos .category-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #7a5933;
  font-weight: 700;
}
.creation-show-page .creation-main-infos h2 {
  font-family: "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0 1rem;
  color: #5e4528;
  font-style: italic;
}
.creation-show-page .creation-main-infos .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #7a5933;
  margin-bottom: 1.5rem;
  font-family: "Times New Roman", serif;
}
.creation-show-page .creation-main-infos .availability-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  margin-bottom: 2rem;
}
.creation-show-page .creation-main-infos .availability-tag.is-available {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.creation-show-page .creation-main-infos .availability-tag.is-unavailable {
  background: rgba(153, 153, 153, 0.1);
  color: #999;
}
.creation-show-page .creation-main-infos .description {
  line-height: 1.8;
  color: #2c2c2c;
  max-width: 700px;
  margin: 2rem auto 3rem;
  font-size: 1.1rem;
}
.creation-show-page .creation-technical {
  margin: 2rem 0;
}
.creation-show-page .creation-technical h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: "Times New Roman", serif;
  font-style: italic;
}
.creation-show-page .creation-technical .tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .creation-show-page .creation-technical .tech-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.creation-show-page .creation-technical .tech-grid .tech-item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #fafafa;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.creation-show-page .creation-technical .tech-grid .tech-item:hover {
  border-color: #c9b095;
  transform: translateY(-3px);
}
.creation-show-page .creation-technical .tech-grid .tech-item strong {
  display: block;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.creation-show-page .creation-technical .tech-grid .tech-item span {
  font-weight: 700;
  color: #5e4528;
}
.creation-show-page .useful-infos {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .creation-show-page .useful-infos {
    grid-template-columns: repeat(3, 1fr);
  }
}
.creation-show-page .useful-infos .info-card {
  background: #fafafa;
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.creation-show-page .useful-infos .info-card i {
  font-size: 2rem;
  color: #7a5933;
}
.creation-show-page .useful-infos .info-card strong {
  font-family: "Times New Roman", serif;
  font-size: 1.1rem;
  color: #5e4528;
}
.creation-show-page .useful-infos .info-card p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

.btn--tertiary {
  background: transparent;
  border: none;
  color: #999;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  position: relative;
}
.btn--tertiary i {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 0.8rem;
}
.btn--tertiary::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #c9b095;
  transition: width 0.4s ease;
}
.btn--tertiary:hover {
  color: #7a5933;
}
.btn--tertiary:hover i {
  transform: translateX(-5px);
}
.btn--tertiary:hover::after {
  width: 100%;
}

.status-page {
  padding: 110px 1.5rem 80px;
  background-color: #fafafa;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.status-page .status-container {
  max-width: 600px;
  width: 100%;
  animation: fadeIn 0.6s ease-out;
}
.status-page .status-card {
  background: #fff;
  padding: 3rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 1px solid rgba(201, 176, 149, 0.2);
}
@media (min-width: 768px) {
  .status-page .status-card {
    padding: 4rem 3rem;
  }
}
.status-page .status-card__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #7a5933;
  display: inline-block;
}
.status-page .status-card__title {
  font-family: "Times New Roman", serif;
  font-size: 2.2rem;
  color: #5e4528;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.status-page .status-card__subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.status-page .status-card__subtitle .text-primary {
  color: #7a5933;
  font-weight: 800;
}
.status-page .info-box {
  background: #fdfaf8;
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(122, 89, 51, 0.15);
  margin-bottom: 1.5rem;
}
.status-page .bank-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.status-page .bank-grid .bank-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(201, 176, 149, 0.3);
  text-align: left;
}
@media (min-width: 480px) {
  .status-page .bank-grid .bank-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.status-page .bank-grid .bank-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.status-page .bank-grid .bank-row .label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 0.05em;
}
.status-page .bank-grid .bank-row .value-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-page .bank-grid .bank-row .value {
  font-weight: 700;
  color: #5e4528;
}
.status-page .bank-grid .bank-row .value.monospace {
  font-family: "Courier New", Courier, monospace;
  background: rgba(201, 176, 149, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.95rem;
}
.status-page .bank-grid .bank-row .value.text-highlight {
  font-size: 1.3rem;
  color: #7a5933;
}
.status-page .custom-alert-warning {
  background-color: #fff9e6;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.status-page .custom-alert-warning i {
  font-size: 1.1rem;
}
.status-page .custom-alert-warning strong {
  text-decoration: underline;
}
.status-page .status-expiry {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 2rem;
  font-style: italic;
}
.status-page .status-expiry i {
  margin-right: 5px;
}
.status-page .btn-copy {
  background: transparent;
  border: 1px solid #c9b095;
  color: #7a5933;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.status-page .btn-copy:hover {
  background: #7a5933;
  color: #fff;
}
.status-page .btn-copy:active {
  transform: scale(0.9);
}
.status-page .status-actions {
  margin-top: 1rem;
}
.status-page .status-actions .btn-primary {
  display: inline-block;
  min-width: 220px;
  text-decoration: none;
}

.error-page-wrapper {
  min-height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafafa;
  text-align: center;
  padding: 2rem;
}
.error-page-wrapper .error-container {
  max-width: 600px;
  width: 100%;
}

.potter-wheel-container {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
}
.potter-wheel-container .spinning-clay {
  width: 350px;
  height: 350px;
  padding: 2rem;
  background: white;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: potterWheel 10s linear infinite;
}
.potter-wheel-container .spinning-clay img {
  width: 100%;
  height: auto;
}

.error-title {
  font-family: "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 4rem);
  color: #7a5933;
  margin-bottom: 1.5rem;
  animation: slideUp 0.6s ease-out forwards;
}

.error-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: slideUp 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #7a5933;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  animation: slideUp 0.6s ease-out 0.4s forwards;
  opacity: 0;
}
.btn-back-home i {
  transition: transform 0.4s ease;
}
.btn-back-home:hover {
  background-color: #5e4528;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.btn-back-home:hover i {
  transform: rotate(-180deg);
}

@keyframes potterWheel {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.container_partners {
  padding-bottom: 5rem;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Barlow", sans-serif;
  color: #2c2c2c;
}

.title_main {
  font-family: "Times New Roman", serif;
  text-align: center;
  color: #7a5933;
  font-weight: normal;
  font-style: italic;
  margin-bottom: 3rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.title_main::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #7a5933;
  margin: 1.5rem auto 0;
}

.section-subtitle {
  max-width: 600px;
  padding-bottom: 50px;
  margin: 1.5rem auto 0;
  text-align: center;
  color: #555;
  line-height: 1.6;
}

.partners_grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.partner_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 1.2s cubic-bezier(0.5, 1, 0.9, 1) forwards;
}
.partner_card:nth-child(1) {
  animation-delay: 0.1s;
}
.partner_card:nth-child(2) {
  animation-delay: 0.4s;
}

/* --- LOGOS --- */
.partner_img {
  width: 200px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.partner_img img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- CONTENU TEXTE --- */
.partner_info {
  max-width: 450px;
}
.partner_info h2 {
  font-family: "Times New Roman", serif;
  font-size: 2.2rem;
  color: #7a5933;
  margin-bottom: 1rem;
}
.partner_info p {
  font-family: "Barlow", sans-serif;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.partner_card:hover .partner_img {
  transform: scale(1.05) translateY(-5px);
}
.partner_card:hover h2 {
  color: #5e4528;
  transition: color 0.3s ease;
}

@media (min-width: 992px) {
  .partner_card {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    gap: 10%;
  }
  .partner_card:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
  }
  .partner_card:nth-child(even) .partner_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .partner_card:nth-child(odd) .partner_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
  /* ================= BACKGROUND ================= */
  /* ================= OVERLAY ================= */
  /* ================= CONTENT ================= */
  /* ================= ACTIONS ================= */
}
.hero.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.35);
  z-index: 2;
}
.hero__container {
  position: relative;
  z-index: 3;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
}
.hero__title {
  font-family: "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}
.hero__subtitle {
  font-family: "Barlow", sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.9;
  max-width: 600px;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.hero__actions .btn {
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero__actions .btn-primary {
  background: #7a5933;
  color: #ffffff;
}
.hero__actions .btn-primary:hover {
  background: #5e4528;
  transform: translateY(-2px);
}
.hero__actions .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero__actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
}

html {
  scroll-behavior: smooth;
}

.about {
  padding: 4rem 1.5rem;
  background: #fafafa;
  color: #2c2c2c;
  /* DESKTOP TABLETTE ≥ 768px    */
  /* DESKTOP LARGE ≥ 1024px      */
}
.about__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.about__image img {
  width: 100%;
  max-width: 350px;
  border-radius: 16px;
  object-fit: cover;
}
.about__content {
  text-align: center;
  max-width: 500px;
}
.about__title {
  margin-bottom: 1rem;
  font-family: "Times New Roman", serif;
  font-size: 2.2rem;
  color: #7a5933;
}
.about__text {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #555;
}
.about__text--desktop {
  display: none;
}
.about__btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background: #7a5933;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.about__btn:hover {
  background: #5e4528;
}
.about__actions {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .about__container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
  .about__content {
    text-align: left;
  }
  .about__image img {
    min-width: 350px;
    max-width: 450px;
  }
}
@media (min-width: 1024px) {
  .about {
    padding: 6rem 2rem;
  }
  .about__container {
    gap: 6rem;
  }
  .about__text--mobile {
    display: none;
  }
  .about__text--desktop {
    display: block;
  }
  .about__actions {
    display: none;
  }
  .about__image img {
    max-width: 600px;
  }
}

.collections {
  padding: 4rem 1rem;
  background-color: #ffffff;
  scroll-margin-top: 350px;
  /* --- Les Onglets de Navigation --- */
  /* --- La Barre de Filtres --- */
}
.collections__container {
  max-width: 1300px;
  margin: 0 auto;
}
.collections__title {
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Times New Roman", serif;
  font-size: 2.2rem;
  color: #7a5933;
}
.collections__nav-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(122, 89, 51, 0.1);
  padding-bottom: 0.5rem;
}
.collections__nav-tabs .tab-link {
  text-decoration: none;
  font-family: "Barlow", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #2c2c2c;
  padding: 0.5rem 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}
.collections__nav-tabs .tab-link:hover {
  color: #7a5933;
}
.collections__nav-tabs .tab-link.active {
  color: #7a5933;
  font-weight: 600;
}
.collections__nav-tabs .tab-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #7a5933;
  border-radius: 3px;
}
.collections__filters {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.collections__filters .filter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  .collections__filters .filter-form {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }
}
.collections__filters .control-group {
  position: relative;
  flex: 1;
  max-width: 300px;
}
.collections__filters .control-group::after {
  content: "▼";
  font-size: 0.7rem;
  color: #7a5933;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.collections__filters .filter-select {
  appearance: none;
  width: 100%;
  padding: 0.8rem 2.5rem 0.8rem 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(122, 89, 51, 0.2);
  background: white;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease;
}
.collections__filters .filter-select:focus {
  outline: none;
  border-color: #7a5933;
}
.collections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.collections__grid .is-sold {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.collections__grid .is-sold:hover {
  opacity: 1;
}
@media (min-width: 600px) {
  .collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .collections__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.collections .no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  color: #555;
  font-style: italic;
  font-family: "Barlow", sans-serif;
}

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