/* ============================================================
   SESSE & CO — Ultra Premium Layer
   Overrides and elevates the visual language throughout
   ============================================================ */

/* ── Typography refinements ──────────────────────────────── */

h1, h2, h3, h4 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section-header h2,
.section-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
}

.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 5px;
  color: var(--gold);
}

/* ── Section alternating backgrounds ─────────────────────── */

.trust-bar {
  background: #fff;
  border-top: 1px solid rgba(184,147,74,0.15);
  border-bottom: 1px solid rgba(184,147,74,0.15);
}

.trust-icon {
  background: transparent;
  border: 1px solid rgba(184,147,74,0.3);
  border-radius: 0;
  width: 48px;
  height: 48px;
}

.trust-icon i { color: var(--gold); }

.trust-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

/* ── Categories — editorial 3-column ─────────────────────── */

.categories { background: #fff; padding: 80px 0; }

.categories-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3px;
}

.category-card { height: 480px; }

.category-card:first-child { height: 480px; }

.category-overlay {
  padding: 40px;
  background: linear-gradient(to top, rgba(20,12,8,0.82) 0%, rgba(20,12,8,0.08) 55%, transparent 100%);
}

.category-tag {
  font-size: 0.58rem;
  letter-spacing: 4px;
  color: var(--gold-light);
}

.category-overlay h3 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.category-link {
  font-size: 0.62rem;
  letter-spacing: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
}

/* ── Homepage featured product cards ─────────────────────── */

.products { background: var(--cream); }

.products-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
  border: none;
}

.product-card {
  background: #fff;
  border: none;
  border-bottom: 1px solid rgba(184,147,74,0.1);
  border-right: 1px solid rgba(184,147,74,0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.product-card:last-child { border-right: none; }

.product-card:hover {
  box-shadow: 0 16px 48px rgba(30,16,16,0.1);
  transform: translateY(-4px);
}

.product-image-wrap img {
  height: 300px;
  object-fit: cover;
}

.product-info {
  padding: 24px 20px 28px;
}

.product-category {
  font-size: 0.58rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  display: block;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.price-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
}

.price-old {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 6px;
}

.product-price { margin-bottom: 16px; }

/* ── Catalogue product cards — ultra-premium ─────────────── */

.product-card-cat {
  background: #fff;
  border: none;
  transition: box-shadow 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.product-card-cat:hover {
  box-shadow: 0 20px 60px rgba(30,16,16,0.12);
  transform: translateY(-6px);
  z-index: 2;
}

.product-card-cat .product-image-wrap img {
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}

.product-card-cat:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-card-cat .product-info {
  padding: 22px 22px 26px;
  border-top: 1px solid rgba(184,147,74,0.12);
}

.product-card-cat .product-category {
  font-size: 0.57rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  display: block;
  margin-bottom: 7px;
}

.product-card-cat .product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text);
}

/* Gold accent bar on hover */
.product-card-cat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}

.product-card-cat:hover::after { width: 100%; }

/* ── Products grid — seamless luxury grid ────────────────── */

.products-grid-catalogue {
  gap: 28px;
  background: transparent;
  border: none;
}

/* ── Product badges ───────────────────────────────────────── */

.product-badge {
  font-size: 0.58rem;
  letter-spacing: 2px;
  padding: 5px 12px;
  background: var(--gold);
  font-weight: 600;
}

.product-badge.preorder {
  background: #4A5F7A;
  letter-spacing: 1px;
}

.product-badge.promo  { background: var(--red); }
.product-badge.best   { background: var(--text); }

/* ── Cart button ─────────────────────────────────────────── */

.btn-cart-cat,
.btn-cart {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(30,16,16,0.18);
  font-size: 0.64rem;
  letter-spacing: 2px;
  padding: 11px 18px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-cart-cat:hover,
.btn-cart:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-cart-cat.preorder-btn {
  background: #4A5F7A;
  color: #fff;
  border-color: #4A5F7A;
}

.btn-cart-cat.preorder-btn:hover {
  background: #3a4f6a;
  border-color: #3a4f6a;
}

/* ── Section dividers — gold line ────────────────────────── */

.section-header::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 0;
}

.section-header.no-divider::after { display: none; }

/* ── Sidebar refinements ─────────────────────────────────── */

.sidebar-inner {
  border: none;
  border-left: 2px solid rgba(184,147,74,0.25);
  padding: 32px 28px;
  background: #fefcf8;
}

.sidebar-title {
  font-size: 0.58rem;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}

.filter-option {
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* ── Promo banner — richer dark ─────────────────────────── */

.promo-banner {
  background: linear-gradient(135deg, var(--text) 0%, #2c1a1a 100%);
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184,147,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── About section ──────────────────────────────────────── */

.about { background: #fff; }

.about-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.about-signature-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ── Testimonials ───────────────────────────────────────── */

.testimonials-section { background: var(--cream); }

.testimonial-card {
  background: #fff;
  border: none;
  border-top: 2px solid var(--gold);
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(30,16,16,0.05);
}

.testimonial-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; }

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
}

.testimonial-avatar {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  width: 44px;
  height: 44px;
  border-radius: 0;
}

/* ── Footer refinement ─────────────────────────────────── */

.footer-top { background: #140c0a; }

/* ── Lookbook section ───────────────────────────────────── */

.lookbook-section { background: #fff; }

.lookbook-item { border-radius: 0; }

.lookbook-overlay {
  background: linear-gradient(to top, rgba(14,8,6,0.85) 0%, rgba(14,8,6,0.1) 55%, transparent 100%);
}

.lookbook-overlay-title {
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.lookbook-overlay-link {
  font-size: 0.6rem;
  letter-spacing: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

/* ── Process section ─────────────────────────────────────── */

.process-section { background: #faf8f5; }

.process-step-icon {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 1px solid rgba(184,147,74,0.4);
  border-radius: 0;
  font-size: 1.2rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease, color 0.3s ease;
}

.process-step:hover .process-step-icon {
  background: var(--gold);
  color: #fff;
}

.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/* ── Announcement bar refinement ────────────────────────── */

.announcement-bar {
  background: #140c0a;
  border-bottom: 1px solid rgba(184,147,74,0.2);
}

/* ── Header refinement ──────────────────────────────────── */

.header { border-bottom: 1px solid rgba(184,147,74,0.12); }

/* ── Cart panel refinement ──────────────────────────────── */

.cart-panel-header {
  border-bottom: 1px solid rgba(184,147,74,0.15);
}

/* ── Breadcrumb bar ─────────────────────────────────────── */

.breadcrumb-bar {
  background: #fefcf8;
  border-bottom: 1px solid rgba(184,147,74,0.12);
}

/* ── Scroll reveal — visible immediately on load ─────────── */
/* (les sections ne doivent pas rester invisibles) */

.reveal, .reveal-left, .reveal-right, .reveal-up,
.stagger-item {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* ── Catalogue main background ──────────────────────────── */

.catalogue-main { background: #faf8f5; }

/* ── Product action buttons (heart, eye) ────────────────── */

.product-action-btn {
  border-radius: 0;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(184,147,74,0.2);
  color: var(--text);
  font-size: 0.78rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-action-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ── Countdown bar ──────────────────────────────────────── */

.countdown-bar {
  background: linear-gradient(135deg, #1a0d0d, #2c1a0e);
  border-top: 1px solid rgba(184,147,74,0.15);
  border-bottom: 1px solid rgba(184,147,74,0.15);
}

.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-light);
}

.countdown-headline strong { color: var(--gold-light); }

/* ── Filter active checkbox ─────────────────────────────── */

.filter-checkbox-ui {
  border-radius: 0;
  border-color: rgba(184,147,74,0.4);
}

input:checked + .filter-checkbox-ui {
  background: var(--gold);
  border-color: var(--gold);
}

.filter-radio-ui {
  border-radius: 0;
  border-color: rgba(184,147,74,0.4);
}

input:checked + .filter-radio-ui {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── Mobile responsive ──────────────────────────────────── */

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-card:first-child { grid-column: span 2; height: 340px; }
  .category-card { height: 280px; }

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

  .product-image-wrap img { height: 260px; }

  .product-card-cat .product-image-wrap img { height: 240px; }
}

@media (max-width: 768px) {
  /* Trust bar — disposition colonne (ultra override) */
  .trust-bar {
    flex-direction: column;
    padding: 24px 20px;
    align-items: stretch;
  }

  /* Categories — breakpoint intermédiaire ultra heights */
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-card:first-child { grid-column: span 2; height: 300px; }
  .category-card { height: 240px; }
  .category-overlay h3 { font-size: 1.8rem; }

  /* Products — 2 colonnes à 768px */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .product-image-wrap img { height: 220px; }
  .product-name { font-size: 1rem; }

  /* Catalogue grid — gap réduit sur mobile */
  .products-grid-catalogue {
    gap: 16px;
  }

  /* Section headers */
  .section-header h2,
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .section { padding: 60px 0; }

  /* Promo banner */
  .promo-banner h2 { font-size: 1.5rem; }
}

@media (max-width: 540px) {
  .categories-grid { grid-template-columns: 1fr; }
  .category-card:first-child { grid-column: span 1; height: 280px; }
  .category-card { height: 220px; }

  .products-grid { grid-template-columns: 1fr; }

  .product-card-cat .product-image-wrap img { height: 200px; }
}

@media (max-width: 480px) {
  /* Products — 1 colonne sur très petit écran */
  .products-grid {
    grid-template-columns: 1fr !important;
  }
  .product-image-wrap img { height: 280px; }

  /* Hero actions — empilement vertical */
  .hero-actions-cinema {
    flex-direction: column;
    align-items: flex-start;
  }
}
