/* ===== Base & reset ===== */
*, *::before, *::after {
  border-radius: 0 !important;
  box-sizing: border-box;
}

[x-cloak] { display: none !important; }

body {
  background-color: #FDF7F2;
  color: #2F1212;
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

input, select, textarea {
  font-family: inherit;
}

/* ===== Tailwind exceptions ===== */
#spinner .animate-spin {
  border-radius: 9999px !important;
}

.play-badge {
  border-radius: 9999px !important;
}

.btn, .btn-primary, .btn-light, .icon-tip, .shop-card-arrow,
.badge, .pill, .rounded-full {
  border-radius: 9999px !important;
}

/* ===== Typography ===== */
.heading {
  font-family: "Tenor Sans", Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.heading-2 {
  font-family: "Tenor Sans", Georgia, serif;
  font-weight: 400;
  line-height: 1.6 !important;
  letter-spacing: 0;
  text-transform: uppercase;
}

.heading-3 {
  font-family: "Tenor Sans", Georgia, serif;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #B6717D;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
}

p.leading-relaxed {
  font-size: 1rem;
}

/* ===== Buttons ===== */
.btn, .btn-primary, .btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  font-family: "Tenor Sans", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: #812538;
  color: #FDF7F2;
  border-color: #812538;
}

.btn-primary:hover {
  background-color: #6a1e2e;
  border-color: #6a1e2e;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: "Tenor Sans", Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: transparent;
  color: #2F1212;
  border-color: transparent;
  border-bottom: 1px solid #2F1212;
  border-radius: 0 !important;
  padding: 0.75rem 0;
  justify-content: center;
  width: fit-content;
}

.btn-secondary:hover {
  background-color: transparent;
  color: #812538;
  border-bottom-color: #812538;
}

.btn-light {
  background-color: #FDF7F2;
  color: #2F1212;
  border-color: #FDF7F2;
}

.btn-light:hover {
  background-color: #EEE3D6;
  border-color: #EEE3D6;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== Links ===== */
.link-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 0.15rem;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.25s ease;
}

.link-underline:hover::after {
  width: 100%;
}

/* ===== Header icons ===== */
.icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.icon-tip {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  background-color: #812538;
  color: #FDF7F2;
  font-size: 0.7rem;
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.icon-link:hover .icon-tip {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Shop mega menu ===== */
.shop-menu {
  position: relative;
}

.shop-menu-panel {
  display: none;
  pointer-events: none;
}

.shop-menu.open .shop-menu-panel {
  display: block;
  pointer-events: auto;
}

/* ===== Shop cards ===== */
.shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: #EEE3D6;
}

.shop-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-card:hover img {
  transform: scale(1.05);
}

.shop-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47, 18, 18, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.shop-card.has-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(47, 18, 18, 0.3);
  pointer-events: none;
}

.shop-card-label {
  position: relative;
  z-index: 2;
  color: #FDF7F2;
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 0.85rem;
  padding: 1rem;
}

.shop-card-arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FDF7F2;
  color: #2F1212;
  transform: translate(0.25rem, -0.25rem);
  opacity: 0;
  transition: all 0.25s ease;
}

.shop-card:hover .shop-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== Mobile menu ===== */
#mobileMenu {
  display: none;
}

#mobileMenu.open {
  display: flex;
  flex-direction: column;
}

.shop-mini {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.shop-mini-thumb {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #EEE3D6;
}

.shop-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-mini-thumb.has-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(47, 18, 18, 0.3);
  pointer-events: none;
}

.shop-mini-label {
  font-size: 0.95rem;
  color: #2F1212;
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.stagger-1 { transition-delay: 0.1s; }
.reveal.stagger-2 { transition-delay: 0.2s; }
.reveal.stagger-3 { transition-delay: 0.3s; }

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid rgba(47, 18, 18, 0.12);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: #2F1212;
}

.faq-q:hover {
  color: #812538;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 20rem;
  padding-bottom: 1.25rem;
}

.faq-chev {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chev {
  transform: rotate(180deg);
}

/* ===== Tabs ===== */
[data-tabs] {
  overflow-x: clip;
}

.tab-swipe {
  animation: tabSwipeLeft 0.6s ease forwards;
}

@keyframes tabSwipeLeft {
  from {
    opacity: 0;
    transform: translateX(100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== 404 horse animation ===== */
.horse-wrap {
  position: relative;
  display: inline-block;
  margin: 2rem auto;
}

.horse-body {
  animation: horse-bob 0.52s ease-in-out infinite;
}

.leg {
  transform-origin: top center;
  transform-box: fill-box;
  animation: gallop-step 0.52s ease-in-out infinite;
}

.leg.a { animation-delay: 0s; }
.leg.b { animation-delay: -0.13s; }
.leg.c { animation-delay: -0.26s; }
.leg.d { animation-delay: -0.39s; }

@keyframes gallop-step {
  0%, 100% { transform: rotate(-22deg); }
  50% { transform: rotate(22deg); }
}

@keyframes horse-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.horse-dust {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.dust {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 8px;
  height: 8px;
  background: rgba(94, 58, 47, 0.32);
  border-radius: 50% !important;
  animation: dust-puff 1.6s linear infinite;
}

.dust:nth-child(1) { left: 15%; animation-delay: 0s; }
.dust:nth-child(2) { left: 25%; animation-delay: -0.3s; width: 5px; height: 5px; }
.dust:nth-child(3) { left: 35%; animation-delay: -0.6s; }
.dust:nth-child(4) { left: 50%; animation-delay: -0.9s; width: 6px; height: 6px; }
.dust:nth-child(5) { left: 65%; animation-delay: -1.2s; width: 4px; height: 4px; }

@keyframes dust-puff {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-40px, -35px) scale(1.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .horse-body, .leg, .dust {
    animation: none;
  }
}

/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  overflow: hidden;
  background-color: #2F1212;
  color: #FDF7F2;
}

/* ===== Footer ===== */
footer a {
  transition: color 0.2s ease;
}

/* ===== Forms ===== */
.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #2F1212;
}

.input, .select, .textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: #FDF7F2;
  border: 1.5px solid rgba(47, 18, 18, 0.15);
  color: #2F1212;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: #812538;
}

.input::placeholder {
  color: rgba(47, 18, 18, 0.4);
}

.error {
  color: #812538;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.radio, .checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* ===== Cart ===== */
.cart-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(47, 18, 18, 0.1);
}

.cart-thumb {
  width: 5rem;
  height: 5rem;
  background-color: #EEE3D6;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Spinner ===== */
#spinner {
  transition: opacity 0.2s ease;
}

#spinner.opacity-0 {
  opacity: 0;
}

/* ===== Toasts ===== */
.toast {
  transition: opacity 0.3s ease;
}

/* ===== Utilities ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wordmark {
  font-family: "Tenor Sans", Georgia, serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

footer .wordmark {
  color: #FDF7F2;
}

footer img.footer-logo {
  filter: brightness(0) invert(1) sepia(0.18) saturate(0.7) hue-rotate(300deg) brightness(1.02);
}

/* ===== Testimonials carousel ===== */
[data-carousel-track] {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

[data-carousel-track] > * {
  scroll-snap-align: start;
}

/* ===== Admin sidebar ===== */
.admin-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: #2F1212;
  transition: background-color 0.2s ease;
}

.admin-menu a:hover,
.admin-menu a.active {
  background-color: #FDF7F2;
  color: #812538;
}

/* ===== Configurator ===== */
.configurator-option {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.configurator-option:hover {
  border-color: #812538;
}

.configurator-option.selected {
  border-color: #812538;
  box-shadow: 0 0 0 1px #812538;
}

/* ===== Timeline ===== */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.4rem;
  bottom: 0;
  width: 1px;
  background-color: rgba(47, 18, 18, 0.15);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #812538;
}

.timeline-item:last-child::before {
  display: none;
}

/* ===== Discipline cards hover effect ===== */
.group\/discipline:hover .group\/discipline,
.group\/disc:hover .group\/disc {
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

/* ===== Scroll snap tabs ===== */
.scroll-snap {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-snap > * {
  scroll-snap-align: start;
}

/* ===== Legal / rule ===== */
.rule {
  border-top: 1px solid rgba(47, 18, 18, 0.1);
}

.rule-light {
  border-top: 1px solid rgba(47, 18, 18, 0.06);
}

/* ===== Placeholder images ===== */
.placeholder-img {
  background-color: #EEE3D6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B6717D;
  font-size: 0.75rem;
  text-align: center;
}

/* ===== Media zones (placeholders élégants pour futures photos/vidéos) ===== */
.media-zone {
  position: relative;
  overflow: hidden;
  background-color: #EEE3D6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-zone.media-zone-dark {
  background-color: #2F1212;
}

.media-zone.media-zone-light {
  background-color: #FDF7F2;
}

.media-zone img,
.media-zone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-zone-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(47, 18, 18, 0.45);
  pointer-events: none;
}

.media-zone-dark .media-zone-label {
  color: rgba(253, 247, 242, 0.45);
}

/* ===== Configurator premium ===== */
.configurator-preview {
  background-color: #FDF7F2;
  border: 1px solid rgba(47, 18, 18, 0.06);
}

.configurator-stage {
  aspect-ratio: 4 / 3;
  background-color: #FFFFFF;
  box-shadow: 0 20px 60px rgba(47, 18, 18, 0.08);
}

.configurator-stage img {
  object-fit: contain;
  padding: 1.5rem;
}

.configurator-option {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.configurator-option:hover {
  border-color: #812538;
  transform: translateY(-1px);
}

.configurator-option:has(:checked) {
  border-color: #812538;
  box-shadow: 0 0 0 1px #812538;
  background-color: #FDF7F2;
}

.configurator-info,
.configurator-swarovski {
  border-radius: 9999px !important;
}

.configurator-info {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #EEE3D6;
  color: #812538;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.configurator-info:hover {
  background-color: #812538;
  color: #FDF7F2;
}

.configurator-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  width: 16rem;
  padding: 0.75rem 1rem;
  background-color: #2F1212;
  color: #FDF7F2;
  font-size: 0.8rem;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 50;
  font-weight: 400;
  font-family: "DM Sans", system-ui, sans-serif;
}

.configurator-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #2F1212;
}

.configurator-tooltip.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.configurator-swarovski {
  position: relative;
  overflow: hidden;
}

.configurator-swarovski::after {
  content: "✦";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #FDF7F2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

[data-config-carousel] img {
  transition: opacity 0.7s ease-in-out;
}

[data-config-dots] .rounded-full {
  border-radius: 9999px !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-config-carousel] img {
    transition: none;
  }
}

/* ─── CONFIGURATEUR FULL-SCREEN LAYOUT ─── */

.configurator-fullscreen {
  width: 100%;
  background: #fff;
}

.configurator-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: start;
  min-height: calc(100vh - 72px);
}

.configurator-left {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow: hidden;
}

.configurator-nature-bg {
  width: 100%;
  height: 100%;
  background-image: var(--cfg-bg-image, url('/assets/img/home-hero.jpg'));
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.configurator-nature-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,10,5,0.18) 0%, rgba(20,10,5,0.10) 60%, rgba(20,10,5,0.30) 100%);
  pointer-events: none;
}

.configurator-frame-wrapper {
  position: relative;
  z-index: 1;
  width: 88%;
  max-width: 460px;
  padding: 0.4rem;
  background: #fff;
  box-shadow: 0 12px 60px rgba(47,18,18,0.28), 0 2px 14px rgba(47,18,18,0.12);
}

.configurator-white-frame {
  width: 100%;
}

.configurator-stage {
  aspect-ratio: 2 / 3;
  width: 100%;
}

[data-config-dot] {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  transition: background-color 0.3s, width 0.3s;
  background: rgba(47,18,18,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
}

[data-config-dot].dot-active {
  background: #9B3A50;
  width: 1.25rem;
}

.configurator-price-overlay {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  text-align: center;
}

.configurator-price-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,247,242,0.75);
}

.configurator-price-value {
  font-family: 'Tenor Sans', serif;
  font-size: 2rem;
  color: #FDF7F2;
  line-height: 1.1;
  margin-top: 0.1rem;
}

.configurator-price-note {
  font-size: 0.58rem;
  color: rgba(253,247,242,0.50);
  margin-top: 0.3rem;
  letter-spacing: 0.03em;
}

/* ─── COLONNE DROITE ─── */

.configurator-right {
  background: #fff;
}

.configurator-right-inner {
  padding: 2.25rem 2.5rem 3rem;
}

.configurator-right-header {
  padding-bottom: 1.25rem;
  border-bottom: none;
  margin-bottom: 2rem;
}

.configurator-main-title {
  font-family: 'Tenor Sans', serif;
  font-size: 1.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2F1212;
}

.configurator-main-subtitle {
  font-size: 0.78rem;
  color: #909090;
  margin-top: 0.4rem;
}

/* ─── GROUPES ─── */

.configurator-groups {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.configurator-group {
  border: none;
  padding: 1.35rem 0;
  margin: 0;
}

.configurator-group-divider {
  border: none;
  border-top: 1px solid rgba(47,18,18,0.09);
  margin: 1.35rem 0 2rem;
}

.configurator-group-legend {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 1.34rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #2F1212;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

/* ─── OPTIONS ─── */

.cfg-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.cfg-options-grid[data-cols="2"] {
  grid-template-columns: repeat(2, 1fr);
  max-width: 75%;
}

.cfg-options-grid[data-cols="3"] {
  grid-template-columns: repeat(3, 1fr);
  max-width: 90%;
}

.cfg-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 0.6rem;
  border: 1px solid rgba(47,18,18,0.12);
  border-radius: 4px !important;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  min-height: 3rem;
}

.cfg-option:hover {
  border-color: #E7B19D;
}

.cfg-option--checked {
  border-color: #E7B19D;
  background: #FDF4F0;
}

.cfg-option--checked:hover {
  background: #FDF4F0;
}

.cfg-option-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 0;
}

.cfg-option-label {
  font-size: 1.06rem;
  color: #2F1212;
  font-weight: 500;
  white-space: nowrap;
}

.cfg-option-price {
  font-size: 0.7rem;
  color: #b8b0ac;
  white-space: nowrap;
  flex-shrink: 0;
}

.cfg-option--checked .cfg-option-price {
  color: #B6717D;
}

/* ─── BLOC INFO ─── */

.cfg-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(47,18,18,0.12);
  border-radius: 4px !important;
  padding: 0.7rem 1rem;
}

.cfg-info-row.cfg-option--checked {
  border-color: #E7B19D;
  background: #FDF4F0;
}

.cfg-info-label {
  font-size: 1.06rem;
  color: #2F1212;
  font-weight: 500;
}

.cfg-info-note {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #812538;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.35em;
}

.cfg-info-struck {
  color: #909090;
  font-weight: 400;
  text-decoration: line-through;
}

.cfg-info-footnote {
  font-size: 0.75rem;
  color: #909090;
  line-height: 1.55;
  margin-top: 0.6rem;
}

.cfg-info-row--check {
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}

.cfg-info-row--check:hover {
  border-color: #E7B19D;
}

.cfg-info-row--check.cfg-option--checked {
  border-color: #E7B19D;
  background: #FDF4F0;
}

.cfg-info-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  border: 1.5px solid rgba(47,18,18,0.25);
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}

.cfg-info-checkbox:checked {
  background: #812538;
  border-color: #812538;
}

.cfg-info-checkbox:checked::after {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.cfg-info-row--check .cfg-info-label {
  flex: 1;
  padding: 0 0.5rem;
}

.cfg-info-row--check .cfg-info-note {
  color: #b8b0ac;
}

.cfg-info-row--check.cfg-option--checked .cfg-info-note {
  color: #B6717D;
}

/* ─── ACTIONS ─── */

.configurator-actions {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(47,18,18,0.08);
}

.cfg-actions-note {
  font-size: 0.75rem;
  color: #909090;
  margin-bottom: 1rem;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .configurator-layout {
    grid-template-columns: 1fr;
  }

  .configurator-left {
    position: relative;
    top: auto;
    height: 60vw;
    min-height: 320px;
    max-height: 480px;
  }

  .configurator-frame-wrapper {
    width: 56%;
    padding: 0.35rem;
  }

  .cfg-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .configurator-right-inner {
    padding: 1.5rem 1.25rem 2rem;
  }
}

/* ---- Parcours client : fil d'étapes ---- */
.journey-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  counter-reset: none;
}
.journey-step {
  position: relative;
  flex: 1 1 0;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0 0.25rem;
}
.journey-step::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: rgba(47, 18, 18, 0.15);
  z-index: 0;
}
.journey-step:first-child::before { display: none; }
.journey-step--done::before,
.journey-step--current::before { background: #812538; }
.journey-step__dot {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border: 2px solid rgba(47, 18, 18, 0.2);
  background: #FDF7F2;
  color: #909090;
  flex-shrink: 0;
}
.journey-step--done .journey-step__dot {
  background: #812538;
  border-color: #812538;
  color: #FDF7F2;
}
.journey-step--current .journey-step__dot {
  background: #FDF7F2;
  border-color: #812538;
  color: #812538;
  box-shadow: 0 0 0 4px rgba(129, 37, 56, 0.12);
}
.journey-step__label {
  font-size: 0.72rem;
  line-height: 1.3;
  color: #909090;
  max-width: 120px;
}
.journey-step--done .journey-step__label,
.journey-step--current .journey-step__label { color: #2F1212; }
.journey-step--current .journey-step__label { font-weight: 500; }
.journey-step__soon {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #B6717D;
  margin-top: 0.15rem;
}
@media (max-width: 640px) {
  .journey-step__label { font-size: 0.65rem; }
  .journey-step { min-width: 70px; }
}

/* ---- Pastille de statut ---- */
.journey-badge {
  display: inline-block;
  font-size: 0.72rem;
  line-height: 1;
  padding: 0.38rem 0.7rem;
  border-radius: 9999px;
  background: rgba(47, 18, 18, 0.08);
  color: #2F1212;
  white-space: nowrap;
}
.journey-badge--saved,
.journey-badge--appointment_pending {
  background: rgba(233, 200, 107, 0.25);
  color: #9F822E;
}
.journey-badge--appointment_requested {
  background: rgba(230, 177, 157, 0.35);
  color: #812538;
}
.journey-badge--appointment_confirmed,
.journey-badge--in_production {
  background: rgba(129, 37, 56, 0.12);
  color: #812538;
}
.journey-badge--completed {
  background: rgba(74, 93, 59, 0.15);
  color: #3f5232;
}
.journey-badge--cancelled {
  background: rgba(144, 144, 144, 0.18);
  color: #6b6b6b;
}

/* ---- Coche de confirmation ---- */
.journey-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: #812538;
  color: #FDF7F2;
}
.journey-check--light {
  width: 52px;
  height: 52px;
  background: #FDF7F2;
  color: #812538;
}

/* ---- Récapitulatif de configuration ---- */
.config-summary__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(47, 18, 18, 0.1);
}
.config-summary__list {
  margin-top: 0.5rem;
}
.config-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(47, 18, 18, 0.06);
  font-size: 0.9rem;
}
.config-summary__row:last-child { border-bottom: none; }
.config-summary__row dt { color: #909090; }
.config-summary__row dd { color: #2F1212; text-align: right; }

/* ===== Espace client ===== */
.account-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (min-width: 1024px) {
  .account-shell {
    gap: 2rem;
    padding: 2.75rem 1.5rem 5rem;
  }
}

.account-nav {
  position: relative;
}
.account-nav-head {
  display: none;
}
.account-nav-name {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 1.15rem;
  color: #2F1212;
  line-height: 1.2;
}
.account-nav-list {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.account-nav-list::-webkit-scrollbar { display: none; }
.account-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  color: #2F1212;
  white-space: nowrap;
  border: 1px solid rgba(47, 18, 18, 0.1);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.account-nav-link svg { flex-shrink: 0; opacity: 0.65; }
.account-nav-link:hover {
  background: rgba(129, 37, 56, 0.06);
  color: #812538;
}
.account-nav-link:hover svg { opacity: 1; }
.account-nav-link.is-active {
  background: #812538;
  color: #FDF7F2;
  border-color: #812538;
}
.account-nav-link.is-active svg { opacity: 1; }
.account-nav-logout {
  margin-top: 0.35rem;
  color: #909090;
}

.account-main {
  flex: 1;
  min-width: 0;
}

.revenue-list {
  display: flex;
  flex-direction: column;
}
.revenue-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(47, 18, 18, 0.08);
}
.revenue-row:first-child { border-top: none; }
.revenue-row__label {
  font-size: 0.98rem;
  color: #2F1212;
}
.revenue-row__sub {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: #909090;
}
.revenue-row__detail {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #6a6a6a;
  background: rgba(129, 37, 56, 0.05);
  border-left: 2px solid rgba(129, 37, 56, 0.35);
  padding: 0.5rem 0.75rem;
}
.revenue-row__amount {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 1.15rem;
  color: #812538;
  white-space: nowrap;
}

.account-page-head {
  margin-bottom: 2rem;
}
.account-page-head .eyebrow { margin-bottom: 0.4rem; }
.account-page-title {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: #2F1212;
  line-height: 1.1;
}
.account-page-lead {
  margin-top: 0.75rem;
  color: #6a6a6a;
  max-width: 42rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

.account-card {
  background: #fff;
  border: 1px solid rgba(47, 18, 18, 0.08);
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .account-card { padding: 1.75rem; }
}
.account-card__title {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 1.15rem;
  color: #2F1212;
  margin-bottom: 0.35rem;
}
.account-card__hint {
  font-size: 0.85rem;
  color: #909090;
  line-height: 1.5;
}

.account-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  margin-top: 0.35rem;
}
@media (min-width: 640px) { .account-checks { grid-template-columns: 1fr 1fr; } }
.account-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #2F1212;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.account-check input {
  width: auto;
  margin: 0;
  accent-color: #812538;
}
.account-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.4rem;
}
.account-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(47, 18, 18, 0.2);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  color: #2F1212;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.account-chip input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.account-chip::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(129, 37, 56, 0.45);
  flex-shrink: 0;
}
.account-chip:hover { border-color: #812538; }
.account-chip:has(input:checked) {
  background: #812538;
  border-color: #812538;
  color: #FDF7F2;
}
.account-chip:has(input:checked)::before {
  background: #FDF7F2;
  border-color: #FDF7F2;
  box-shadow: inset 0 0 0 3px #812538;
}
.account-chip:focus-within {
  outline: 2px solid rgba(129, 37, 56, 0.35);
  outline-offset: 2px;
}
.account-note {
  border: 1px solid rgba(129, 37, 56, 0.25);
  border-left: 3px solid #812538;
  border-radius: 10px;
  background: #FDF7F2;
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  color: #6b5a52;
  line-height: 1.55;
}
.account-note__title {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 1rem;
  color: #812538;
  margin-bottom: 0.35rem;
}

.account-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.35rem;
}
.account-choice__opt {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(47, 18, 18, 0.2);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  color: #2F1212;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.account-choice__opt input { width: auto; margin: 0; accent-color: #812538; }
.account-choice__opt:hover { border-color: #812538; }
.account-choice__opt:has(input:checked) { border-color: #812538; background: rgba(129, 37, 56, 0.06); }
.account-choice__opt:has(input:disabled) { opacity: 0.5; cursor: not-allowed; }

.account-recap {
  border: 1px solid rgba(129, 37, 56, 0.18);
  border-radius: 12px;
  background: #FDF7F2;
  padding: 1.15rem 1.25rem;
  margin-top: 1rem;
}
.account-recap .account-dl__row { padding: 0.4rem 0; }

.contact-block {
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(47, 18, 18, 0.1);
  border-radius: 12px;
  background: #FDF7F2;
}
.contact-block__name {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 1.05rem;
  color: #812538;
  margin-bottom: 0.35rem;
}
.contact-block__scope {
  font-size: 0.85rem;
  color: #6b5a52;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}
.contact-block__label {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2F1212;
  margin: 1rem 0 0.25rem;
}
.contact-block__label--urgent { color: #812538; }
.contact-block__hours {
  font-size: 0.85rem;
  color: #6b5a52;
  line-height: 1.5;
}
.contact-block__phone {
  font-size: 0.95rem;
  color: #2F1212;
  margin-top: 0.15rem;
}
.contact-block__phone a {
  font-weight: 600;
  color: #812538;
  text-decoration: none;
}
.contact-block__phone a:hover { text-decoration: underline; }
.contact-note {
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(47, 18, 18, 0.08);
  font-size: 0.82rem;
  color: #909090;
  line-height: 1.55;
}

.account-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .account-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .account-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.account-tile {
  display: block;
  background: #fff;
  border: 1px solid rgba(47, 18, 18, 0.08);
  padding: 1.4rem;
  transition: border-color 0.2s, transform 0.2s;
}
.account-tile:hover {
  border-color: #812538;
  transform: translateY(-2px);
}
.account-tile__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #909090;
  margin-bottom: 0.5rem;
}
.account-tile__value {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 1.75rem;
  color: #2F1212;
  line-height: 1;
}
.account-tile__meta { margin-top: 0.6rem; font-size: 0.85rem; color: #6a6a6a; }

.account-field { margin-bottom: 1.1rem; }
.account-field label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6a6a6a;
  margin-bottom: 0.4rem;
}
.account-field input,
.account-field select,
.account-field textarea {
  width: 100%;
  background: #FDF7F2;
  border: 1px solid rgba(47, 18, 18, 0.15);
  padding: 0.65rem 0.8rem;
  font-size: 0.95rem;
  color: #2F1212;
}
.account-field input:focus,
.account-field select:focus,
.account-field textarea:focus {
  outline: none;
  border-color: #812538;
  background: #fff;
}
.account-field textarea { resize: vertical; min-height: 5rem; }
.account-field__hint { margin-top: 0.35rem; font-size: 0.78rem; color: #909090; }

.account-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed rgba(47, 18, 18, 0.2);
  color: #6a6a6a;
}
.account-empty svg { margin: 0 auto 1rem; opacity: 0.4; }
.account-empty__title {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 1.2rem;
  color: #2F1212;
  margin-bottom: 0.5rem;
}

.account-dl { display: grid; gap: 0; }
.account-dl__row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(47, 18, 18, 0.07);
  font-size: 0.92rem;
}
.account-dl__row:last-child { border-bottom: none; }
.account-dl__row dt { color: #909090; }
.account-dl__row dd { color: #2F1212; text-align: right; }

.account-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(129, 37, 56, 0.08);
  color: #812538;
}
.account-section { margin-bottom: 2.5rem; }
.account-section__title {
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 1.35rem;
  color: #2F1212;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(47, 18, 18, 0.1);
}

.account-soon {
  font-size: 0.8rem;
  color: #909090;
  font-style: italic;
}

.account-ro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 2rem;
  margin: 0;
}
@media (min-width: 640px) {
  .account-ro.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .account-ro__full { grid-column: 1 / -1; }
}
.account-ro dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #909090;
  margin-bottom: 0.3rem;
}
.account-ro dd {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #2F1212;
}
.account-ro__empty { color: #b7b0aa; font-style: italic; }

.account-horse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.account-horse-photo {
  width: 168px;
  height: 168px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid rgba(47, 18, 18, 0.1);
}
.account-horse-age {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #812538;
}

.cropper { margin-top: 0.9rem; }
.cropper__stage {
  position: relative;
  width: 320px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #EEE3D6;
  overflow: hidden;
  touch-action: none;
}
.cropper__canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}
.cropper__canvas:active { cursor: grabbing; }
.cropper__frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(47, 18, 18, 0.25) inset;
}
.cropper__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 320px;
  max-width: 100%;
  margin: 0.85rem auto 0;
}
.cropper__slider { flex: 1; accent-color: #812538; }
.cropper__zoom {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: #2F1212;
  border: 1px solid rgba(47, 18, 18, 0.2);
  background: #fff;
}
.cropper__zoom:hover { background: #812538; color: #FDF7F2; border-color: #812538; }
.account-horse-photo--empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(129, 37, 56, 0.06);
  color: #812538;
}

.horse-photo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) { .horse-photo-grid { grid-template-columns: repeat(3, 1fr); } }
.horse-photo-slot {
  border: 1px solid rgba(47, 18, 18, 0.1);
  background: #FDF7F2;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.horse-photo-slot__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6a6a6a;
  margin: 0;
  text-align: center;
}
.horse-photo-slot__preview {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #EEE3D6;
  overflow: hidden;
}
.horse-photo-slot__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.horse-photo-slot__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(47, 18, 18, 0.25);
}
.horse-photo-slot__placeholder .ti {
  font-size: 3rem;
}
.horse-photo-slot__badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  background: rgba(129, 37, 56, 0.85);
  color: #FDF7F2;
  font-size: 0.65rem;
  padding: 0.15rem 0.4rem;
  letter-spacing: 0.04em;
}
.horse-photo-slot__actions {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.horse-photo-slot__actions .btn-secondary {
  font-size: 0.78rem;
  padding: 0.35rem 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.account-flash {
  margin-bottom: 1.5rem;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  border-left: 3px solid #812538;
  background: rgba(129, 37, 56, 0.06);
  color: #812538;
}
.account-flash--err {
  border-left-color: #812538;
  background: rgba(129, 37, 56, 0.07);
  color: #812538;
}

.account-search {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.account-search input[type="search"] {
  flex: 1;
  min-width: 14rem;
  padding: 0.85rem 1rem;
  font-size: 0.98rem;
  color: #2F1212;
  background: #fff;
  border: 1px solid rgba(47, 18, 18, 0.15);
}
.account-search input[type="search"]:focus {
  outline: none;
  border-color: #812538;
}

.session-form .form-category {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2F1212;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
}
.session-form .form-category:first-of-type {
  margin-top: 0;
}
.session-form .form-category svg {
  flex-shrink: 0;
  color: #812538;
  opacity: 0.85;
}
.session-form .form-category + p {
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.session-form .form-subcategory {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #909090;
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
}
.session-form .account-field label {
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #2F1212;
}
.session-form .account-field__hint {
  font-size: 0.8rem;
  color: #909090;
  line-height: 1.5;
}
.session-form .account-field textarea {
  min-height: 5.5rem;
  resize: vertical;
}
.session-form .form-collapsible {
  margin-top: 2.25rem;
}
.session-form .form-collapsible__toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Tenor Sans", Georgia, serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2F1212;
  text-align: left;
}
.session-form .form-collapsible__toggle svg {
  flex-shrink: 0;
  color: #812538;
  opacity: 0.85;
}
.session-form .form-collapsible__arrow {
  flex-shrink: 0;
  margin-left: auto;
  color: #909090;
  transition: transform 0.2s ease;
  font-size: 0.75rem;
}
.session-form .form-collapsible__arrow--open {
  transform: rotate(90deg);
}
.session-form .form-collapsible__optional {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #909090;
  margin-left: 0.4rem;
}

.dash-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 3;
  min-height: 225px;
  margin-bottom: 2rem;
  overflow: hidden;
  background: #EEE3D6;
  border: 1px solid rgba(47, 18, 18, 0.1);
}
.dash-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dash-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 18, 18, 0) 45%, rgba(47, 18, 18, 0.35) 100%);
  pointer-events: none;
}
.dash-banner__edit {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0;
  font-size: 0.85rem;
  color: #FDF7F2;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.45;
  text-shadow: 0 1px 4px rgba(47, 18, 18, 0.5);
  transition: opacity 0.25s;
}
.dash-banner__edit span {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.dash-banner:hover .dash-banner__edit { opacity: 0.85; }
.dash-banner__edit:hover { opacity: 1; }
@media (max-width: 640px) {
  .dash-banner { aspect-ratio: 2 / 1; }
}

.cropper__stage--banner {
  width: 100%;
  aspect-ratio: 10 / 3;
}
.cropper__controls--banner { width: 100%; }

.config-price {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: rgba(129, 37, 56, 0.05);
  border: 1px solid rgba(129, 37, 56, 0.15);
}
.config-price__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #909090;
  margin-bottom: 0.4rem;
}
.config-price__values {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  font-family: 'Tenor Sans', Georgia, serif;
}
.config-price__old {
  font-size: 1.3rem;
  color: #1a1a1a;
  text-decoration: line-through;
}
.config-price__arrow { color: #1a1a1a; font-size: 1.3rem; }
.config-price__new {
  font-size: 1.7rem;
  color: #812538;
  font-weight: 600;
}
.config-price__diff {
  font-size: 1.1rem;
  color: #812538;
  font-weight: 600;
}

/* ---- Fitter photo (rdv cards + profil) ---- */
.rdv-fitter-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(47, 18, 18, 0.08);
}
.rdv-fitter-photo--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEE3D6;
  color: #812538;
  font-family: 'Tenor Sans', Georgia, serif;
  font-size: 2rem;
}
.fitter-photo-block {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.fitter-photo-block__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(47, 18, 18, 0.08);
}
.fitter-photo-block__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEE3D6;
  color: #812538;
  font-family: 'Tenor Sans', Georgia, serif;
  font-size: 2.5rem;
}
.fitter-photo-block__text {
  flex: 1;
  min-width: 200px;
}
.fitter-photo-block__text p {
  color: #2F1212;
  line-height: 1.6;
  font-size: 0.9rem;
}
.fitter-photo-edit {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.fitter-photo-edit__current {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(47, 18, 18, 0.08);
}
.fitter-photo-edit__current--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEE3D6;
  color: #909090;
  font-size: 0.8rem;
  text-align: center;
}
.fitter-photo-edit__form {
  flex: 1;
  min-width: 240px;
}

@media print {
  .no-print,
  .account-nav,
  .account-nav-fitter,
  .site-header,
  .site-footer,
  dialog {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .account-shell {
    display: block !important;
  }

  .account-main {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .account-page-head {
    margin-bottom: 1rem !important;
  }

  .account-page-head a {
    display: none !important;
  }

  .session-print-header {
    display: block !important;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #812538;
  }

  .session-print-header__brand {
    font-family: 'Tenor Sans', Georgia, serif;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #812538;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .session-print-header__tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: #909090;
    margin-top: 0.25rem;
  }

  .account-card {
    box-shadow: none !important;
    border: 1px solid #e0d6c8 !important;
    page-break-inside: avoid;
    margin-bottom: 0.75rem !important;
    background: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .account-section__title {
    color: #812538 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .account-dl__row {
    page-break-inside: avoid;
  }

  .horse-photo-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .horse-photo-slot {
    page-break-inside: avoid;
  }

  .horse-photo-slot__preview {
    border: 1px solid #e0d6c8 !important;
  }

  .horse-photo-slot__preview img {
    max-height: 120px !important;
    object-fit: cover !important;
  }

  body {
    background: #fff !important;
    color: #2F1212 !important;
    font-size: 11px !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .account-soon {
    color: #909090 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  @page {
    margin: 1.5cm;
  }
}
