/* =========================================================================
   French Aura — Landing Page CSS
   Migré depuis le bloc <style> inline de front-page.php
   Chargé uniquement sur is_front_page()
   ========================================================================= */

/* ── Variables globales ──────────────────────────────────────────────── */
:root {
  --color-primary: #1a1a1a;
  --color-accent: #c9a96e;
  --color-accent-dark: #a8834a;
  --color-accent-light: #e8d5b0;
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-surface-alt: #f5f3ef;
  --color-border: #e8e4dc;
  --color-text: #2c2c2c;
  --color-text-light: #888888;
  --color-text-muted: #bbbbbb;
  --color-muted: #888888;
  --color-success: #4a7c59;
  --color-error: #c0392b;
  --color-warning: #e67e22;
  --color-ui-dark: #0a0a0a;
  --color-heading: #111827;
  --color-text-body: #4b5563;
  --color-text-secondary: #6b7280;
  --color-text-subtle: #9ca3af;
  --color-text-dark: #374151;
  --color-bg-subtle: #f9fafb;
  --color-border-light: #f3f4f6;
  --color-input-bg: #f4f4f4;
  --color-gold-active: #c5a028;
  --color-gold-hover: #9e801d;
  --color-gold-warm-1: #d97706;
  --color-gold-warm-2: #e9b108;
  --color-shimmer-start: #1e1e1e;
  --color-shimmer-mid: #2a2a2a;
  --color-red: #a63c30;
  --color-red-dark: #b91c1c;
  --color-red-bg: #fee2e2;
  --color-green: #16a34a;
}

/* ── Reset / Base ─────────────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  color: var(--color-text-body);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: var(--color-heading);
  font-weight: 500;
}
button {
  cursor: pointer;
}
/* header, nav, cart-sidebar, nav-backdrop → site-components.css */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 110px;
  padding: 20px 0;
}
section {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 50px 0;
}

/* ── Utilitaires ─────────────────────────────────────────────────────── */
.primary-btn {
  position: relative;
  width: 100%;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2%;
  padding: 16px 32px;
  background-color: var(--color-ui-dark);
  color: var(--color-surface);
  transition: background-color 0.3s ease;
  &:hover {
    background-color: var(--color-gold-hover);
  }
}
.fragrance-links {
  color: inherit;
  display: block;
}
.strikethrough {
  color: var(--color-text-subtle);
  text-decoration-line: line-through;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero-section {
  gap: 50px;
  padding: 0 30px;
  max-width: 1280px;
}
.hero-description {
  flex: 1;
  & > * {
    margin-bottom: 24px;
  }
}
.hero-description .hero-review {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  font-size: 12px;
  margin-bottom: 24px;
  & img {
    height: 12px;
  }
  & span {
    border-bottom: 1px solid var(--color-border);
  }
}
.hero-description .hero-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  padding: 4px;
  width: fit-content;
  background-color: var(--color-accent-mist);
  border-radius: 4px;
}
.hero-description .hero-title {
  margin-bottom: 24px;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  font-family: "Playfair Display", serif;
  & span {
    display: block;
    line-height: 1.2;
    font-style: italic;
    color: var(--color-gold-hover);
    background: linear-gradient(
      90deg,
      var(--color-gold-warm-1) 0%,
      var(--color-gold-warm-2) 30%
    );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.hero-description > p {
  line-height: 1.625;
  font-size: 18px;
}
.hero-description ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.hero-description ul li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  &::before {
    content: "";
    display: block;
    width: 18px;
    aspect-ratio: 1;
    flex-shrink: 0;
    background: url("../images/check-circle.svg") center / contain no-repeat;
  }
}
.hero-description .hero-prices {
  display: flex;
  flex-direction: column;
  & > span {
    font-size: 20px;
  }
}
.hero-description .hero-prices p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 600;
  & span {
    font-size: 12px;
    color: var(--color-red-dark);
    background-color: var(--color-red-bg);
    text-transform: uppercase;
    border-radius: 4px;
    padding: 4px 8px;
  }
}

/* Wave CTA animation */
.hero-description .wave-effect-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-gold-warm-2);
  border: 1px solid #f4d882;
  border-radius: inherit;
  z-index: -1;
  transform-origin: center;
  animation: ripple 1.8s ease-out infinite;
}
@keyframes ripple {
  0% {
    opacity: 0.6;
    transform: scale(1, 1);
    filter: blur(0px);
  }
  70% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: scale(1.05, 1.6);
  }
}

.hero-description .hero-payment {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  & > svg {
    width: 20px;
  }
}
.hero-description .hero-payment-details p {
  margin-bottom: 5px;
  font-weight: 600;
}
.hero-payment-options {
  display: flex;
}
.hero-description .hero-payment-details .hero-payment-options img {
  margin-right: 10px;
  height: 15px;
  object-fit: contain;
}

/* Hero illustration */
.hero-illustration {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  border-radius: 10px;
  overflow: hidden;
}
.hero-illustration > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0, 0, 0.2, 1);
}
.hero-illustration > img.is-active {
  opacity: 1;
}

/* Hero word animations */
@keyframes wordSlideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(14px);
    opacity: 0;
  }
}
@keyframes wordSlideIn {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#hero-word.is-exiting {
  animation: wordSlideOut 0.7s cubic-bezier(0.4, 0, 1, 1) forwards;
}
#hero-word.is-entering {
  animation: wordSlideIn 0.7s cubic-bezier(0, 0, 0.2, 1) forwards;
}
.hero-fade {
  transition: opacity 0.7s cubic-bezier(0, 0, 0.2, 1);
}
.hero-fade.is-exiting {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  opacity: 0;
}

/* Hero product details overlay */
.hero-illustration .hero-product-details {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 10px;
  padding: 10px 16px;
  width: 230px;
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-gold-active);
  border-radius: 3px;
  & h3 {
    font-size: 18px;
    font-weight: 600;
  }
  & p:first-of-type {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    & span:last-child {
      font-size: 14px;
      color: var(--color-red);
    }
  }
  & p:last-of-type {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.hero-illustration .hero-product-details button {
  padding: 8px;
  font-size: 12px;
  border-radius: 2px;
}

/* =========================================================================
   SHIPPING BANNER
   ========================================================================= */
.shipping-banner {
  display: flex;
  width: 100vw;
  margin: 15px calc(50% - 50vw);
  padding: 20px 0;
  border: 1px solid var(--color-border-light);
}
.shipping-banner .shipping-infos {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 8px 24px;
  border-right: 1px solid var(--color-border-light);
  &:last-child {
    border-right: none;
  }
  & > svg,
  & > img {
    width: 35px;
    flex-shrink: 0;
    object-fit: contain;
  }
}
.shipping-banner .shipping-infos .shipping-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  & p:first-child {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-ui-dark);
  }
  & p:last-child {
    font-size: 11px;
    font-weight: 500;
  }
}

/* promotion-banner, promo-scroll, promotion-modal → site-components.css */

/* =========================================================================
   BEST-SELLERS SECTION
   ========================================================================= */
.bestseller-section {
  flex-direction: column;
  align-items: center;
  & h2 {
    font-size: 36px;
    margin-bottom: 12px;
  }
  & > p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.bestseller-section .cards-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 25px;
  padding: 5px;
}
.bestseller-section .cards-container .product-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 260px;
  max-width: 280px;
  text-decoration: none;
  color: inherit;
}
.cards-container .product-card .product-display {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  & > a {
    display: block;
    width: 100%;
    height: 100%;
  }
  & img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1;
    transition: scale 0.5s ease;
  }
}
.cards-container .product-card:hover .product-display img {
  scale: 1.1;
}
.product-card .product-display .badges {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 10px;
  color: var(--color-surface);
  text-transform: uppercase;
  z-index: 1;
  & > span {
    width: fit-content;
    text-align: center;
    border-radius: 3px;
    padding: 3px 6px;
  }
  & .bestseller-badge {
    background-color: var(--color-ui-dark);
  }
  & .lowstock-badge {
    background-color: var(--color-red);
    animation: badgePulse 2s ease-in-out infinite;
  }
  & .new-badge {
    background-color: var(--color-green);
  }
  & .rare-badge {
    background-color: var(--color-neutral-badge);
  }
}
@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}
.product-card .product-display .card-btn {
  position: absolute;
  top: 100%;
  width: 100%;
  border: none;
  text-align: center;
  font-size: 12px;
  padding: 14px 0;
  background-color: var(--color-ui-dark);
  color: var(--color-surface);
  transform: translateY(0%);
  transition: all 0.3s ease;
  &:hover {
    background-color: var(--color-gold-hover);
  }
}
.cards-container .product-card:hover .card-btn {
  transform: translateY(-100%);
}
.product-card .product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  padding: 10px 3px;
  & p,
  span {
    font-size: 12px;
  }
}
.product-info .product-details .product-review {
  color: var(--color-gold-active);
  & img {
    height: 12px;
  }
}
.product-info .product-price {
  display: flex;
  flex-direction: column;
  & > span {
    display: flex;
    gap: 3px;
  }
}

/* =========================================================================
   SIGNATURE SECTION — Phase 3 (bundle builder)
   ========================================================================= */
.signature-section {
  background: var(--color-ui-dark);
  color: var(--color-text-muted);
  padding: 55px;
  display: flex;
  gap: 2rem;
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: var(--color-ui-dark);
  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(45% 0, 100% 0%, 100% 100%, 60% 100%);
    background-color: var(--color-primary);
  }
}
.signature-section > * {
  flex: 0 1 500px;
}
.signature-visual {
  position: relative;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.badge-save {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--color-red);
  color: var(--color-surface);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 1;
  transform: rotate(12deg);
  animation: pulseSlow 2.5s ease-in-out infinite;
}
.badge-save span:first-child {
  font-size: 9px;
  text-transform: uppercase;
}
.badge-save span:last-child {
  font-size: 18px;
}
@keyframes pulseSlow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
}
.signature-bundle {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  overflow-x: hidden;
}
.bundle-tag {
  color: var(--color-gold-active);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  display: block;
  margin-bottom: 0.5rem;
}
.signature-bundle h2 {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-surface);
  margin-bottom: 0.5rem;
}
.signature-bundle p {
  color: var(--color-text-subtle);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.bundle-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bundle-price-old {
  color: var(--color-text-secondary);
  font-size: 14px;
  text-decoration: line-through;
  display: block;
}
.bundle-price-new {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-surface);
}
.bundle-price-badge {
  background: rgba(20, 80, 20, 0.4);
  color: var(--color-green);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-end;
  margin-bottom: 4px;
}
.bundle-picker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.bundle-picker-header span:first-child {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.bundle-counter {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold-active);
}
.bundle-carousel {
  position: relative;
}
.bundle-carousel-cards {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  padding-inline: 2px;
  scrollbar-width: none;
}
.bundle-carousel-cards::-webkit-scrollbar {
  display: none;
}
.bundle-card {
  min-width: 100px;
  width: 100px;
  scroll-snap-align: start;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.bundle-card-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.bundle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.2s;
  display: block;
}
.bundle-card:hover .bundle-card-img {
  border-color: var(--color-text-secondary);
}
.bundle-card:hover .bundle-card-img img {
  opacity: 1;
}
.bundle-card.selected .bundle-card-img {
  border-color: var(--color-gold-active);
  box-shadow: 0 0 0 2px rgba(197, 160, 40, 0.4);
}
.bundle-card-check {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(197, 160, 40, 0.4);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(1px);
  font-size: 22px;
  color: var(--color-surface);
  font-weight: 700;
}
.bundle-card.selected .bundle-card-check {
  display: flex;
}
.bundle-card-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-surface);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bundle-card-sub {
  font-size: 9px;
  color: rgba(197, 160, 40, 0.8);
  text-align: center;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bundle-carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-surface);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 5;
  transition: background 0.2s;
  &:first-of-type {
    left: -14px;
  }
  &:last-of-type {
    right: -14px;
  }
}
@media (min-width: 768px) {
  .bundle-carousel-btn {
    display: flex;
  }
}
.bundle-carousel-btn:hover {
  background: var(--color-gold-active);
}
.signature-bundle-cta {
  width: 100%;
  padding: 1rem;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.25rem;
  transition:
    background 0.2s,
    transform 0.1s;
  background: var(--color-gold-active);
  color: var(--color-ui-dark);
}
.signature-bundle-cta:hover {
  background: var(--color-surface);
}
.signature-bundle-cta:active {
  transform: scale(0.97);
}
.signature-bundle-cta:disabled {
  background: var(--color-text-dark);
  color: var(--color-text-secondary);
  cursor: not-allowed;
}
.bundle-footer-note {
  font-size: 10px;
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 10px;
}
.bundle-prdt-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(
    90deg,
    var(--color-shimmer-start) 0%,
    var(--color-shimmer-mid) 50%,
    var(--color-shimmer-start) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* =========================================================================
   COMPARISON SECTION
   ========================================================================= */
.fa-choice-section {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  background-color: var(--color-bg-subtle);
}
.compare {
  width: 100%;
  max-width: 650px;
  background: var(--color-surface);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}
.compare-head {
  display: flex;
  background: var(--color-bg-subtle);
  border-bottom: 1px solid var(--color-border-light);
  padding: 12px 0;
}
.compare-head .cell {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.compare-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--color-bg-subtle);
}
.compare-row:last-child {
  border-bottom: none;
}
.cell {
  flex: 1;
  padding: 14px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.cell-label {
  flex: 1.2;
  justify-content: flex-start;
  padding-left: 16px;
  font-weight: 500;
  color: var(--color-heading);
  font-size: 12px;
}
.cell-brand {
  color: var(--color-gold-hover);
  font-weight: 700;
}
.cell-other {
  color: var(--color-text-subtle);
  text-align: end;
}
.cell-green {
  color: var(--color-green);
  font-weight: 700;
  gap: 5px;
}
@media (min-width: 600px) {
  .cell {
    font-size: 13px;
  }
  .cell-label {
    padding-left: 24px;
    font-size: 14px;
  }
  .compare-head .cell {
    font-size: 11px;
  }
}
.fa-choice-section > a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 12px;
  color: var(--color-ui-dark);
  border-bottom: 2px solid var(--color-ui-dark);
  padding: 4px;
  transition: all 0.3s ease;
  &:hover {
    color: var(--color-accent-dark);
    border-bottom-color: var(--color-accent-dark);
  }
}

/* =========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */
.testimonials-section {
  flex-direction: column;
  align-items: center;
  gap: 40px;
  & > h2 {
    text-align: center;
  }
}
.testimonials-section .testimonials-carousel {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.testimonials-section .testimonial-card {
  width: 400px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--color-border-light);
  border-radius: 5px;
  box-shadow: 0px 0px 1px 0px rgba(207, 207, 207, 0.75);
  -webkit-box-shadow: 0px 0px 1px 0px rgba(207, 207, 207, 0.75);
  -moz-box-shadow: 0px 0px 1px 0px rgba(207, 207, 207, 0.75);
  & > span {
    color: var(--color-gold-active);
  }
  & > p {
    font-size: 14px;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  & .read-more {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: var(--color-gold-active);
    cursor: pointer;
    text-decoration: underline;
    margin-top: -8px;
  }
}
.testimonial-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
}
.testimonial-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.testimonial-modal {
  background: var(--color-surface);
  border-radius: 10px;
  padding: 32px;
  max-width: 480px;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(16px);
  transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1);
  position: relative;
}
.testimonial-modal-overlay.is-open .testimonial-modal {
  transform: translateY(0);
}
.testimonial-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1;
}
.testimonial-modal .modal-stars {
  color: var(--color-gold-active);
  font-size: 18px;
}
.testimonial-modal .modal-text {
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-dark);
}
.testimonial-modal .modal-reviewer p {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-heading);
}
.reviewer-bloc {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.testimonial-card .reviewer-bloc p {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  color: var(--color-heading);
  margin-bottom: 5px;
}
.testimonial-avatar {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}
.reviewer-bloc .reviewer-info {
  width: 100%;
}
.modal-images {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.modal-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}
.testimonial-card .reviewer-bloc span,
.modal-reviewer .modal-badge {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  color: var(--color-green);
  &::before {
    content: "";
    display: inline-block;
    height: 13px;
    aspect-ratio: 1 / 1;
    background: url("../images/verified-check.svg") center / contain no-repeat;
  }
}

/* =========================================================================
   FAQ SECTION
   ========================================================================= */
.faq-section {
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 10px;
  background-color: var(--color-bg-subtle);
}
.faq-item {
  width: 100%;
  max-width: 640px;
  background-color: var(--color-surface);
  border-radius: 10px;
  padding: 0 16px;
  font-family: "Montserrat", sans-serif;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--color-heading);
}
.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-body);
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.35s cubic-bezier(0, 0, 0.2, 1),
    padding 0.35s cubic-bezier(0, 0, 0.2, 1);
}
.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

/* .footer, .footer-top, .footer-middle, .footer-links, .footer-bottom → site-components.css */

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (min-height: 639px) and (max-height: 700px) {
  main {
    margin-top: 95px;
  }
  .hero-description > * {
    margin-bottom: 15px;
  }
  .hero-description .hero-title,
  .hero-description .hero-review {
    margin-bottom: 10px;
  }
}

@media (max-width: 1024px) {
  .hero-description {
    padding: 0px 32px;
  }
  .hero-description .hero-title {
    font-size: 44px;
  }
  .hero-description > p {
    font-size: 16px;
  }
  .hero-description .hero-prices p {
    font-size: 24px;
  }
  .product-card .product-display .card-btn {
    top: unset;
    bottom: 0;
  }
  .cards-container .product-card:hover .card-btn {
    transform: unset;
  }
  /* footer responsive → site-components.css */
}

@media (max-width: 768px) {
  section {
    flex-direction: column;
    align-items: center;
  }
  .hero-section {
    gap: 25px;
    width: 90%;
  }
  .hero-illustration {
    width: 100%;
    height: 360px;
    flex: none;
    order: -1;
  }
  .hero-description {
    padding: 10px 16px;
  }
  .hero-description .hero-title {
    font-size: 36px;
  }
  .hero-description > p {
    font-size: 14px;
  }
  .hero-description ul {
    font-size: 13px;
  }
  .hero-description .hero-prices p {
    font-size: 22px;
  }
  .primary-btn {
    font-size: 15px;
    padding: 14px 24px;
  }
  .hero-description .hero-payment-details .hero-payment-options img {
    height: 12px;
  }
  .shipping-banner {
    padding: 20px 10px;
  }
  .shipping-banner .shipping-infos {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    & > svg {
      width: 30px;
    }
  }
  .shipping-banner .shipping-infos .shipping-description {
    & p:first-child {
      font-size: 12px;
    }
    & p:last-child {
      font-size: 10px;
    }
  }
  .signature-section {
    flex-direction: column;
    align-items: center;
    padding: 32px 20px;
    &::before {
      clip-path: polygon(0 60%, 100% 45%, 100% 100%, 0 100%);
    }
  }
  .signature-section > * {
    flex: 0 1 auto;
    width: 100%;
    max-width: 480px;
  }
  .signature-visual {
    aspect-ratio: 4 / 3;
  }
  /* footer responsive → site-components.css */
}

@media (max-width: 480px) {
  main {
    margin-top: 115px;
    padding-top: 0;
  }
  .hero-section {
    width: 95%;
    padding: 0;
    gap: 10px;
  }
  .hero-description > * {
    margin-bottom: 10px;
  }
  .fa-choice-section {
    padding: 50px 10px;
  }
  .compare {
    border-radius: 8px;
  }
  .fa-choice-section .cell {
    font-size: 11px;
  }
  .compare-head .cell {
    letter-spacing: 0.5px;
    text-align: center;
    padding: 5px;
  }
  /* footer responsive → site-components.css */
}
