/* =====================================================
   NOS-TISSUS.CSS — Page-specific styles for Nos Tissus
   Loaded by: nos-tissus.html
   Relies on: global.css, components.css (pg-banner-lum, lum-*, btn-glow, glass)
   ===================================================== */

/* ========== FEATURE: Fabric Cards Grid ========== */
/* Two side-by-side fabric showcase cards (Velours + Nid d'Abeille) */
.fab-lum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 52px;
}
.fab-lum-card { padding: 0; overflow: hidden; }

/* Photo placeholder with gradient + bottom fade overlay */
.fab-lum-photo {
  min-height: 260px;
  background: linear-gradient(135deg, #EDE3DA, #E0D3C6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(17,17,17,.25);
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
}
/* Bottom gradient fade into the card body */
.fab-lum-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(237,227,218,.8));
}
.fab-lum-body { padding: 28px 28px 32px; }

/* Small pill badge (e.g. "Chaud & Moelleux") */
.fab-lum-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(217,199,184,.25);
  border: 1px solid rgba(217,199,184,.6);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 14px;
}
.fab-lum-card h3 { font-family: var(--heading); font-size: 30px; margin-bottom: 10px; }
.fab-lum-card p { font-size: 14px; color: rgba(17,17,17,.8); line-height: 1.8; margin-bottom: 20px; }

/* 2×2 specs grid inside each fabric card */
.fab-lum-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(0,0,0,.05);
  border-radius: 8px;
  overflow: hidden;
}
.fab-lum-spec { background: rgba(255,255,255,.7); padding: 10px 14px; }
.fab-lum-spec-k {
  font-size: 9px;
  color: rgba(17,17,17,.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}
.fab-lum-spec-v { font-size: 14px; color: #111111; font-weight: 500; margin-top: 3px; }

/* ========== FEATURE: Quality Reasons Grid ========== */
/* Three "Why quality matters" cards with glow icon circles */
.why-lum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.why-lum-card { padding: 32px 28px; text-align: center; }
.why-lum-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: #EDE3DA;
  border: 1px solid #D9C7B8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.why-lum-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.5; }
.why-lum-card h4 { font-family: var(--heading); font-size: 20px; margin-bottom: 8px; }
.why-lum-card p { font-size: 13px; color: rgba(17,17,17,.75); line-height: 1.75; }

/* ========== FEATURE: Comparison Table ========== */
/* Horizontal scroll wrapper for the fabric comparison table */
.cmp-lum-wrap { overflow-x: auto; margin-bottom: 52px; }
.cmp-lum-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 2px;
}
.cmp-lum-table thead th {
  padding: 12px 20px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(17,17,17,.4);
  background: transparent;
}
.cmp-lum-table thead th:first-child { width: 36%; }
.cmp-lum-table tbody tr td {
  padding: 14px 20px;
  background: rgba(0,0,0,.02);
  font-size: 14px;
  color: rgba(17,17,17,.7);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
/* Row header cells */
.cmp-lum-table tbody tr td:first-child {
  color: #0e0d0d;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(217,199,184,.15);
}
.cmp-lum-table tbody tr:hover td { background: rgba(217,199,184,.2); }
/* Accent winner cell */
.cmp-accent { color: #111111 !important; font-weight: 600; }

/* Pill badge inside table cells */
.glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(217,199,184,.25);
  border: 1px solid rgba(217,199,184,.6);
  border-radius: 100px;
  font-size: 11px;
  color: #111111;
  font-weight: 600;
}

/* ========== FEATURE: Final CTA Block ========== */
/* Glass-dark block with radial glow background */
.cta-lum {
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-lum::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(217,199,184,.3), transparent 70%);
}
.cta-lum-inner { position: relative; z-index: 1; }
.cta-lum h2 { font-family: var(--heading); font-size: 42px; margin-bottom: 14px; }
.cta-lum h2 em { font-style: italic; color: #111111; }
.cta-lum p { font-size: 15px; color: rgba(17,17,17,.75); margin-bottom: 28px; }

/* ========== RESPONSIVE ========== */
@media(max-width: 1024px) {
  .fab-lum-grid { grid-template-columns: 1fr; }
  .why-lum-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
  .why-lum-grid { grid-template-columns: 1fr; }
  .cta-lum { padding: 40px 20px; }
}
