/* Luminaires & Coffrets — collection showcase page */

.lc-page {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  background: #fff;
  margin: 0;
}

.lc-page .site-header--dark .navbar {
  background: #000;
}

/* Hero — full-width image */
.lc-hero {
  position: relative;
  min-height: clamp(220px, 32vw, 340px);
  background: var(--lc-hero-bg, #333) center/cover no-repeat;
}

.lc-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6));
  color: #fff;
}

.lc-hero-overlay[hidden] {
  display: none !important;
}

.lc-hero-top {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  font-size: 11px;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.85);
}

.lc-hero-top a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
}

.lc-hero-overlay h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 400;
  margin: 0 0 16px;
}

.lc-hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 20px);
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* Tabs */
.lc-tabs-wrap {
  background: #fff;
  padding: 0 40px 12px;
}

.lc-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 8vw, 72px);
  max-width: 900px;
  margin: 0 auto;
}

.lc-catalog-links {
  text-align: center;
  padding: 4px 0 8px;
}

.lc-catalog-links .g-catalog-link {
  color: #111;
  margin-top: 0;
}

.lc-tab {
  background: none;
  border: none;
  padding: 22px 4px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 30px);
  color: #888;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.lc-tab:hover {
  color: #333;
}

.lc-tab.is-active {
  color: #111;
}

.lc-tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #c41e3a;
}

/* Panels */
.lc-panel {
  display: none;
  padding-bottom: 64px;
}

.lc-panel.is-active {
  display: block;
}

/* Luminaires intro / outro — centered paragraphs */
#lc-panel-luminaires .lc-intro-text,
.lc-outro-text {
  text-align: center;
  font-size: 13px;
  line-height: 1.85;
  color: #444;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 28px;
}

.lc-outro-text {
  padding: 32px 24px 56px;
}

/* Coffrets intro (unchanged pattern) */
.lc-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  text-align: center;
}

.lc-intro-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  margin-bottom: 8px;
}

.lc-intro-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 12px;
  color: #111;
}

.lc-intro-text--left {
  text-align: left;
  padding: 0;
  max-width: 560px;
}

.lc-see-all {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
  padding-top: 8px;
}

.lc-see-all:hover {
  text-decoration: underline;
}

/* Spots section — economy row + cross grid */
.lc-spots-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 40px;
}

.lc-economy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 4px;
}

.lc-economy-thumb-wrap {
  overflow: hidden;
}

.lc-economy-thumb {
  display: block;
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.lc-economy-label {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #222;
  white-space: nowrap;
}

/* 2×2 quadrant grid with cross divider */
.lc-quadrant-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.lc-quadrant-grid::before,
.lc-quadrant-grid::after {
  content: '';
  position: absolute;
  background: #2a2a2a;
  z-index: 2;
  pointer-events: none;
}

.lc-quadrant-grid::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.lc-quadrant-grid::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}

.lc-quadrant {
  position: relative;
  z-index: 1;
  transition: opacity 0.28s ease;
}

.lc-quadrant-grid[data-kelvin-filter='4000K'] .lc-quadrant[data-kelvin='6000K'],
.lc-quadrant-grid[data-kelvin-filter='6000K'] .lc-quadrant[data-kelvin='4000K'] {
  opacity: 0.4;
}

.lc-quadrant-link {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  padding: 28px 20px 22px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.lc-quadrant-link:hover {
  background: rgba(0, 0, 0, 0.02);
}

.lc-quadrant-visual,
.lc-quadrant-cell {
  --lc-quadrant-radius: 24px;
  --lc-quadrant-bg: none;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(140px, 22vw, 200px);
  margin-bottom: 14px;
  border-radius: var(--lc-quadrant-radius);
  overflow: hidden;
  background-color: #f4f4f4;
  background-image: var(--lc-quadrant-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lc-quadrant-visual img {
  position: relative;
  z-index: 1;
  max-width: 58%;
  max-height: clamp(90px, 14vw, 130px);
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(255, 190, 90, 0.35));
}

.lc-quadrant-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 1.65;
  color: #888;
  text-align: center;
}

.lc-quadrant-meta li + li {
  margin-top: 1px;
}

/* Kelvin temperature image buttons */
.lc-kelvin-thumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.lc-kelvin-thumb {
  flex: 0 1 300px;
  max-width: min(300px, 42vw);
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px;
  transition: opacity 0.2s;
}

.lc-kelvin-thumb-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.lc-kelvin-thumb:not(.is-active) {
  opacity: 0.72;
}

.lc-kelvin-thumb.is-active {
  opacity: 1;
}

.lc-kelvin-thumb:focus {
  outline: none;
}

.lc-kelvin-thumb:focus-visible {
  outline: 2px solid #e8752a;
  outline-offset: 2px;
}

/* Reglettes — showcase layout (reference mock) */
.lc-reglettes {
  max-width: 940px;
  margin: 0 auto;
  padding: 44px 20px 0;
  text-align: center;
}

.lc-reglettes h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 52px;
  color: #111;
}

.lc-reglettes-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  column-gap: 8px;
  align-items: end;
  min-height: 300px;
  margin: 0 auto;
}

.lc-reglette-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  gap: 14px;
}

.lc-reglette-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  color: #222;
  white-space: nowrap;
}

.lc-reglette-media {
  min-width: 0;
  line-height: 0;
  background: transparent;
}

.lc-reglette-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}

/* Etanche 1.20 — bottom-left, label under image */
.lc-reglette-item--long {
  align-self: end;
  justify-self: start;
  align-items: flex-start;
  padding-bottom: 12px;
}

.lc-reglette-item--long .lc-reglette-media {
  width: 472px;
  max-width: 100%;
}

.lc-reglette-item--long img {
  max-height: 252px;
  object-position: left bottom;
}

/* Reglette 0.60 — upper-right, larger, label under image */
.lc-reglette-item--short {
  align-self: start;
  justify-self: end;
  align-items: flex-end;
  margin-top: 0;
  padding-top: 0;
  padding-right: 0;
}

.lc-reglette-item--short .lc-reglette-media {
  width: 390px;
  max-width: 100%;
}

.lc-reglette-item--short img {
  max-height: 126px;
  object-position: right center;
}

.lc-reglette-item--short h3 {
  align-self: flex-end;
  padding-right: 2px;
}

.lc-reglettes-outro {
  max-width: 700px;
  margin: 44px auto 0;
  padding: 0 12px 52px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.85;
  color: #333;
  text-align: center;
}

/* Coffrets sections */
.lc-coffret-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid #eee;
}

.lc-coffret-section:first-of-type {
  border-top: none;
}

.lc-coffret-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 32px);
  font-weight: 400;
  margin: 0 0 32px;
}

.lc-coffret-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

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

.lc-coffret-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.lc-coffret-item {
  text-decoration: none;
  color: inherit;
}

.lc-coffret-media {
  position: relative;
  margin-bottom: 16px;
}

.lc-coffret-item img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  margin-bottom: 0;
}

.lc-coffret-item h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 8px;
}

.lc-coffret-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.55;
  margin: 0;
  max-width: 280px;
  margin-inline: auto;
}

.lc-coffret-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(15px, 2vw, 18px);
  color: #444;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .lc-hero-top {
    padding: 0 16px;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .lc-tabs {
    gap: 24px;
  }

  .lc-intro-head {
    flex-direction: column;
  }

  .lc-economy-row {
    grid-template-columns: minmax(72px, 110px) 1fr;
    gap: 12px;
    padding: 0 16px;
  }

  .lc-economy-label {
    text-align: left;
    white-space: normal;
    font-size: 12px;
  }

  /* Keep laptop-style 2×2 spots grid on mobile */
  .lc-quadrant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    margin: 0 8px;
  }

  .lc-quadrant-grid::before,
  .lc-quadrant-grid::after {
    display: block;
  }

  .lc-quadrant + .lc-quadrant {
    border-top: none;
  }

  .lc-quadrant-link {
    padding: 14px 10px 12px;
  }

  .lc-quadrant-visual,
  .lc-quadrant-cell {
    --lc-quadrant-radius: 16px;
    min-height: 110px;
    margin-bottom: 10px;
  }

  .lc-quadrant-visual img {
    max-width: 62%;
    max-height: 72px;
  }

  .lc-quadrant-meta {
    font-size: 10px;
    line-height: 1.45;
  }

  .lc-kelvin-thumbs {
    gap: 10px;
    margin-top: 18px;
    padding: 0 12px;
  }

  .lc-kelvin-thumb {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 5px);
  }

  /* Keep reglettes side by side like desktop */
  .lc-reglettes {
    padding: 28px 12px 0;
  }

  .lc-reglettes h2 {
    margin-bottom: 28px;
  }

  .lc-reglettes-showcase {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: 10px;
    align-items: end;
    min-height: 0;
  }

  .lc-reglette-item--long,
  .lc-reglette-item--short {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .lc-reglette-item--long {
    justify-self: start;
    align-self: end;
    align-items: flex-start;
  }

  .lc-reglette-item--short {
    justify-self: end;
    align-self: start;
    align-items: flex-end;
  }

  .lc-reglette-item--long .lc-reglette-media,
  .lc-reglette-item--short .lc-reglette-media {
    width: 100%;
  }

  .lc-reglette-item--long img {
    max-height: 120px;
    object-position: left bottom;
  }

  .lc-reglette-item--short img {
    max-height: 72px;
    object-position: right center;
  }

  .lc-reglette-item h3 {
    font-size: 11px;
    white-space: normal;
  }

  .lc-reglette-item--short h3 {
    align-self: flex-end;
  }

  .lc-reglettes-outro {
    margin-top: 28px;
    padding: 0 8px 36px;
    font-size: 11px;
  }

  .lc-coffret-section {
    padding: 28px 12px;
  }

  .lc-coffret-section h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .lc-coffret-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
    margin-bottom: 20px;
  }

  .lc-coffret-grid--2,
  .lc-coffret-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 14px;
  }

  /* 3-item sections: keep 2-up, third card centered on next row */
  .lc-coffret-grid--3 .lc-coffret-item:nth-child(3):last-child {
    grid-column: 1 / -1;
    max-width: 48%;
    margin-inline: auto;
  }

  .lc-coffret-item {
    min-width: 0;
  }

  .lc-coffret-media {
    margin-bottom: 10px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lc-coffret-item img {
    max-height: 130px;
    width: auto;
    max-width: 100%;
  }

  .lc-coffret-item h3 {
    font-size: 12px;
    margin-bottom: 4px;
    line-height: 1.3;
  }

  .lc-coffret-item p {
    font-size: 10px;
    line-height: 1.45;
    max-width: none;
    padding: 0 2px;
  }

  .lc-coffret-quote {
    font-size: 14px;
    padding: 0 8px;
    margin-top: 4px;
  }
}

@media (max-width: 380px) {
  .lc-quadrant-link {
    padding: 12px 8px 10px;
  }

  .lc-quadrant-visual,
  .lc-quadrant-cell {
    min-height: 96px;
  }

  .lc-quadrant-meta {
    font-size: 9px;
  }

  .lc-reglette-item--long img {
    max-height: 96px;
  }

  .lc-reglette-item--short img {
    max-height: 58px;
  }

  .lc-coffret-grid,
  .lc-coffret-grid--2,
  .lc-coffret-grid--3 {
    gap: 16px 10px;
  }

  .lc-coffret-media {
    min-height: 96px;
  }

  .lc-coffret-item img {
    max-height: 110px;
  }

  .lc-coffret-item h3 {
    font-size: 11px;
  }

  .lc-coffret-item p {
    font-size: 9px;
  }
}
