/* ==========================================================================
   IKON PARTITIONS — LUMI PRODUCT DETAIL PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   PRODUCT HERO
   ========================================================================== */

.pdp-hero {
  display: flex;
  align-items: flex-start;
}

.pdp-gallery {
  position: sticky;
  top: 96px;
  width: 50%;
  height: calc(100vh - 96px);
  background: #090909;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pdp-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 9, 0) 0%, rgba(9, 9, 9, 0) 55%, rgba(9, 9, 9, 0.5) 100%);
}

.pdp-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 40px 8vw 0;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.pdp-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pdp-breadcrumb a:hover {
  color: var(--primary);
}

.pdp-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 11px;

}

.pdp-breadcrumb-active {
  color: rgba(255, 255, 255, 0.9);
}

.pdp-thumbs {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 8px;
}

.pdp-thumbs img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.pdp-thumbs img:hover,
.pdp-thumbs img.is-active {
  opacity: 1;
}

/* ==========================================================================
   PRODUCT INFO
   ========================================================================== */

.pdp-info {
  width: 50%;
  background: #fff;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 120px 112px 56px;
}

.pdp-tag-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-title {
  font-family: 'Arial', sans-serif;
  font-size: 38.4px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}

.pdp-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 15.2px;
  font-weight: 300;
  line-height: 1.85;
  color: #5A5550;
}

.pdp-divider {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pdp-divider .pdp-divider-line {
  flex: 1;
  height: 1px;
  background: #D4B483;
}

.pdp-divider .pdp-divider-mark {
  width: 1px;
  height: 28px;
  background: var(--primary);
  transform: rotate(15deg);
  flex-shrink: 0;
}

/* ==========================================================================
   SPECS GRID
   ========================================================================== */

.pdp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--bg-cream);
}

.pdp-spec-cell {
  background: var(--bg-light);
  padding: 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: center;
}

.pdp-spec-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10.4px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 160%;
  text-transform: uppercase;
  color: #9A9490;
}

.pdp-spec-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
}

.pdp-spec-value .pdp-spec-mark {
  width: 1px;
  height: 16px;
  background: var(--primary);
  transform: rotate(15deg);
}

.pdp-spec-value .pdp-spec-unit {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--primary);
}

/* ==========================================================================
   ABOUT + FEATURES
   ========================================================================== */

.pdp-about-title {
  font-family: 'Arial', sans-serif;
  font-size: 25.6px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.pdp-about-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14.7px;
  font-weight: 300;
  line-height: 1.9;
  color: #5A5550;
}

.pdp-about-text p+p {
  margin-top: 22px;
}

.pdp-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pdp-feature-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pdp-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 10.9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.pdp-feature-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13.3px;
  font-weight: 300;
  line-height: 1.6;
  color: #5A5550;
}

/* ==========================================================================
   PRODUCT CTA
   ========================================================================== */

.pdp-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pdp-cta .btn {
  width: 100%;
}

.pdp-cta-note {
  font-family: 'Outfit', sans-serif;
  font-size: 11.5px;
  font-weight: 300;
  text-align: center;
  color: #5A5550;
}

/* ==========================================================================
   DOOR CARDS
   ========================================================================== */

.pdp-doors {
  background: var(--bg-light);
  padding: 112px var(--padding-x);
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.pdp-doors-header {
  max-width: 620px;
}

.pdp-doors-title {
  font-family: 'Arial', sans-serif;
  font-size: 38.4px;
  font-weight: 400;
  line-height: 1.15;
  margin: 16px 0;
  color: var(--text-dark);
}

.pdp-doors-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15.2px;
  font-weight: 300;
  line-height: 1.85;
  color: #5A5550;
}

.pdp-doors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--bg-cream);
}

.pdp-door-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: var(--text-dark);
}

.pdp-door-img {
  position: relative;
  height: 254px;
  overflow: hidden;
}

.pdp-door-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pdp-door-card:hover .pdp-door-img img {
  transform: scale(1.04);
}

.pdp-door-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(26, 26, 26, 0.9);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 9.3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
}

.pdp-door-body {
  display: flex;
  flex-direction: column;
  padding: 32px;
  flex: 1;
}

.pdp-door-name {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.pdp-door-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13.4px;
  font-weight: 300;
  color: #5A5550;
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pdp-door-specs {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.pdp-door-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pdp-door-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.pdp-door-actions .btn {
  width: 100%;
}

.pdp-door-view-link {
  font-family: 'Outfit', sans-serif;
  font-size: 9.9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: letter-spacing 0.3s ease;
}

.pdp-door-card:hover .pdp-door-view-link {
  letter-spacing: 1.6px;
}

/* ==========================================================================
   SPECIFY CTA
   ========================================================================== */

.pdp-specify {
  background: #fff;
  color: var(--text-dark);
  padding: 112px var(--padding-x);
}

.pdp-specify-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}

.pdp-specify-text {
  max-width: 640px;
}

.pdp-specify-title {
  font-family: 'Arial', sans-serif;
  font-size: 38.4px;
  font-weight: 400;
  line-height: 1.15;
  margin: 16px 0;
  color: var(--text-dark);
}

.pdp-specify-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15.2px;
  font-weight: 300;
  line-height: 1.85;
  color: #5A5550;
}

.pdp-specify-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex-shrink: 0;
}

.pdp-specify-back {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
  text-align: center;
  width: 100%;
}

.pdp-specify-back:hover {
  gap: 14px;
}

/* ==========================================================================
   RESPONSIVE — LUMI PAGE
   ========================================================================== */

@media (max-width: 992px) {
  .pdp-hero {
    flex-direction: column;
  }

  .pdp-gallery {
    position: relative;
    width: 100%;
    height: 450px;
    min-height: 450px;
    top: 0;
  }

  /* Breadcrumb — match category page style (small top gap, left-aligned) */
  .pdp-breadcrumb {
    padding: 20px 24px 0;
    margin-top: 10px;
    justify-content: flex-start;
    text-align: left;
  }

  .pdp-breadcrumb-active {
    color: #fff;
  }

  .pdp-thumbs {
    background: #000;
    padding-bottom: 0;
  }

  .pdp-info {
    width: 100%;
    padding: 64px 24px;
  }

  .pdp-features-grid {
    grid-template-columns: 1fr;
  }

  .pdp-doors {
    padding: 64px 24px;
  }

  .pdp-doors-grid {
    grid-template-columns: 1fr;
  }

  .pdp-specify {
    padding: 64px 24px;
  }

  .pdp-specify-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .pdp-specify-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pdp-specify-title {
    margin: 0;
  }

  .pdp-specify-desc {
    padding-top: 15px;
  }

  .pdp-specify-actions {
    width: 100%;
  }

  .pdp-specify-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .pdp-specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pdp-spec-cell {
    padding: 24px 16px 24px 16px;
  }

  .pdp-breadcrumb {
    padding: 20px 24px 0;
  }

  .pdp-thumbs {
    padding: 8px 16px 0;
  }

  .pdp-thumbs img {
    flex: 1;
    width: auto;
  }
}