/* ---- Catalogue page ---- */

.catalogue-hero-section {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--paper);
}

/* Top content */
.catalogue-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px,11vw,130px) var(--pad) 0;
  position: relative;
  z-index: 2;
}
.catalogue-top .breadcrumb {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .94rem;
  color: var(--ink-soft);
  text-align: left;
  justify-content: flex-start;
}
.catalogue-top .breadcrumb a { color: var(--ink-soft); transition: color .2s; text-decoration: none; }
.catalogue-top .breadcrumb a:hover { color: var(--red); }
.catalogue-top .breadcrumb .sep { color: rgba(62,61,60,.3); }
.catalogue-top .breadcrumb .current { color: var(--red); font-weight: 600; }
.catalogue-top h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  white-space: nowrap;
  margin: 0;
}
.catalogue-top h1 em {
  font-style: normal;
  color: var(--red);
}
.catalogue-top__sub {
  max-width: 105ch;
  margin: clamp(18px, 2.5vw, 28px) auto 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.65;
  text-wrap: pretty;
}
.catalogue-top__cta {
  margin-top: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.catalogue-top__cta .btn {
  padding: 1em 2.4em;
  font-size: 1.1rem;
}
.catalogue__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--ink-soft);
  background: var(--rose);
  padding: 9px 18px;
  border-radius: 12px;
  line-height: 1.45;
}
.catalogue__note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--red);
  opacity: .7;
}


/* ============ FAN CAROUSEL ============ */
.fan {
  position: relative;
  width: 100%;
  margin-top: clamp(20px, 3vw, 40px);
  flex-shrink: 0;
  padding-bottom: clamp(14px, 2vw, 28px);
  display: flex;
  justify-content: flex-start;
  overflow-x: clip;
  overflow-y: visible;
  perspective: 1200px;
}
.fan__row {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 1.6vw, 24px);
  flex-shrink: 0;
  width: max-content;
  animation: fanScroll 50s linear infinite;
  transform-style: preserve-3d;
}
.fan:hover .fan__row {
  animation-play-state: paused;
}
@keyframes fanScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fcard {
  flex-shrink: 0;
  width: clamp(120px, 7vw + 50px, 180px);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(62,61,60,.06);
  box-shadow: 0 8px 30px rgba(62,61,60,.1);
  transform-origin: center center;
  transition: box-shadow .35s ease;
  cursor: default;
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.fcard:hover {
  box-shadow: 0 24px 56px rgba(62,61,60,.24), 0 0 0 2px rgba(155,27,31,.12) !important;
}
.fcard__img {
  aspect-ratio: 1 / 1;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.fcard__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.fcard:hover .fcard__img img {
  transform: scale(1.08);
}
.fcard[data-align="right"] .fcard__img {
  justify-content: flex-end;
  padding-right: 0;
}
.fcard__body {
  padding: 10px 12px 14px;
  text-align: center;
  background: #fff;
}
.fcard__body h3 {
  font-family: var(--font-display);
  font-size: clamp(.75rem, .85vw, .86rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
@media (max-width: 920px) {
  .fcard { width: clamp(120px, 16vw, 180px); border-radius: 12px; }
  .fcard__body { padding: 8px 10px 12px; }
  .fcard__body h3 { font-size: .75rem; }
  .fcard__img { padding: 10px; }
  .fan__row { gap: 8px; }
}
@media (max-width: 560px) {
  .fcard { width: 95px; border-radius: 12px; }
  .fcard__body h3 { font-size: .75rem; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .fcard__body { padding: 5px 6px 8px; min-height: 36px; display: flex; align-items: center; justify-content: center; }
  .fcard__img { padding: 6px; }
  .fan__row { gap: 5px; }
}


/* ---- Below-fold section ---- */
.catalogue-detail {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--font-display);
}
.catalogue-detail__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}
.catalogue-detail__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.catalogue-detail__inner h2 em {
  font-style: normal;
  color: var(--red);
}
.catalogue-detail__inner p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.72;
  margin-top: 18px;
  text-wrap: pretty;
}

/* ===== Lot 3e ===== */
.catalogue-top--content { padding-top: clamp(8px,1.5vw,20px); }
.catalogue-top__cta { margin-top: clamp(20px,2.5vw,32px); }
.catalogue__note { margin-top: 18px; margin-bottom: clamp(30px,4vw,50px); }
