.product-detail-layout {
  min-height: 100vh;
  color: #111827;
  background: #fff;
}

.pd-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, .72), rgba(2, 6, 23, 0));
}

.pd-logo {
  color: inherit;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .34em;
}

.pd-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-header-nav a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: color .22s ease, background .22s ease;
}

.pd-header-nav a:hover,
.pd-header-nav a.is-active {
  color: #111827;
  background: rgba(255, 255, 255, .94);
}

.pd-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #07101d;
}

.pd-hero-video,
.pd-hero-shade {
  position: absolute;
  inset: 0;
}

.pd-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.08) brightness(.78);
}

.pd-hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, .9), rgba(2, 6, 23, .44) 52%, rgba(2, 6, 23, .18)),
    linear-gradient(0deg, rgba(2, 6, 23, .9), rgba(2, 6, 23, .12) 62%, rgba(2, 6, 23, .48));
}

.pd-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 140px 0 clamp(72px, 9vw, 132px);
}

.pd-hero-inner p,
.pd-section-title span {
  margin: 0 0 16px;
  color: #6f8fb8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .28em;
}

.pd-hero-inner h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 8vw, 120px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
}

.pd-hero-inner strong {
  display: block;
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 500;
  line-height: 1.72;
}

.pd-hero-metrics {
  width: min(820px, 100%);
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .24);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.pd-hero-metrics span {
  min-height: 112px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, .68);
  border-right: 1px solid rgba(255, 255, 255, .18);
  font-size: 15px;
}

.pd-hero-metrics span:last-child {
  border-right: 0;
}

.pd-hero-metrics b {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.pd-overview,
.pd-products,
.pd-applications,
.pd-path {
  padding: clamp(76px, 8vw, 120px) clamp(20px, 5vw, 76px);
}

.pd-overview {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 132px);
  align-items: start;
}

.pd-section-title h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.pd-overview > p,
.pd-tech-copy > p {
  margin: 0;
  color: #1e293b;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.86;
}

.pd-products {
  background: #f5f8fb;
}

.pd-shop {
  padding: clamp(76px, 8vw, 120px) clamp(20px, 5vw, 76px);
  background: #f5f8fb;
}

.pd-shop-layout {
  width: min(1480px, 100%);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr) minmax(300px, 390px);
  gap: 18px;
  align-items: start;
}

.pd-category-panel,
.pd-product-browser,
.pd-selection-panel {
  border: 1px solid #d8e3ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .07);
}

.pd-category-panel,
.pd-selection-panel {
  position: sticky;
  top: 92px;
}

.pd-category-panel {
  padding: 10px;
}

.pd-category-button {
  width: 100%;
  min-height: 68px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  color: #334155;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.pd-category-button strong {
  color: inherit;
  font-size: 16px;
  line-height: 1.2;
}

.pd-category-button span {
  color: #64748b;
  font-size: 12px;
  line-height: 1.3;
}

.pd-category-button:hover,
.pd-category-button.is-active {
  color: #0f172a;
  border-color: #c7d7ea;
  background: #eef5ff;
}

.pd-product-browser {
  padding: 16px;
}

.pd-filter-bar {
  margin-bottom: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #d8e3ef;
  border-radius: 8px;
  background: #fbfdff;
}

.pd-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-filter-chip {
  min-height: 34px;
  padding: 7px 12px;
  color: #334155;
  border: 1px solid #d6e1ec;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.pd-filter-chip:hover,
.pd-filter-chip.is-active {
  color: #fff;
  border-color: #111827;
  background: #111827;
}

.pd-sort-line {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
}

.pd-sort-line span:first-child {
  color: #111827;
  font-size: 15px;
  font-weight: 900;
}

.pd-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pd-choice-card {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(120px, 38%) minmax(0, 1fr);
  gap: 0;
  text-align: left;
  color: #111827;
  border: 1px solid #d8e3ef;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.pd-choice-card:hover,
.pd-choice-card.is-active {
  border-color: #6f8fb8;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
  transform: translateY(-2px);
}

.pd-choice-card[hidden] {
  display: none;
}

.pd-choice-index {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  background: rgba(15, 23, 42, .84);
  font-size: 14px;
  font-weight: 900;
}

.pd-choice-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  background: #eaf1f8;
}

.pd-choice-copy {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pd-choice-copy small {
  color: #6f8fb8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pd-choice-copy h3 {
  margin: 10px 0 0;
  color: #111827;
  font-size: clamp(20px, 1.55vw, 27px);
  line-height: 1.18;
}

.pd-choice-copy p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.pd-choice-copy div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.pd-choice-copy em {
  padding: 5px 8px;
  color: #334155;
  border: 1px solid #d8e3ef;
  border-radius: 999px;
  background: #f8fbff;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.pd-selection-panel {
  overflow: hidden;
}

.pd-selected-media {
  background: #eaf1f8;
}

.pd-selected-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pd-selected-copy {
  padding: 26px;
}

.pd-selected-copy > span {
  color: #6f8fb8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.pd-selected-copy h3 {
  margin: 10px 0 0;
  color: #111827;
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1.15;
}

.pd-selected-copy > p {
  margin: 16px 0 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.78;
}

.pd-selected-specs {
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid #d8e3ef;
}

.pd-selected-specs div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid #d8e3ef;
}

.pd-selected-specs dt {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.pd-selected-specs dd {
  margin: 0;
  color: #111827;
  font-size: 14px;
  line-height: 1.55;
}

.pd-selected-material {
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  background: #f5f8fb;
}

.pd-selected-material strong {
  display: block;
  color: #111827;
  font-size: 13px;
  line-height: 1.4;
}

.pd-selected-material p {
  margin: 6px 0 14px;
  color: #475569;
  font-size: 14px;
  line-height: 1.58;
}

.pd-selected-material p:last-child {
  margin-bottom: 0;
}

.pd-selected-actions {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pd-selected-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  background: #111827;
  font-size: 14px;
  font-weight: 900;
}

.pd-selected-actions a:last-child {
  color: #111827;
  border: 1px solid #c9d7e8;
  background: #fff;
}

.pd-product-grid {
  width: min(1440px, 100%);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pd-product-card {
  position: relative;
  min-height: 540px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  background: #0f172a;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .13);
}

.pd-product-card img,
.pd-card-shade {
  position: absolute;
  inset: 0;
}

.pd-product-card img {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05) brightness(.88);
  transform: scale(1.02);
  transition: transform .55s ease, filter .55s ease;
}

.pd-card-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, .06), rgba(2, 6, 23, .9)),
    linear-gradient(90deg, rgba(2, 6, 23, .74), rgba(2, 6, 23, .12));
}

.pd-product-card:hover img,
.pd-product-card:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.04) contrast(1.08) brightness(.94);
}

.pd-product-card small {
  position: absolute;
  top: 28px;
  left: 30px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.pd-product-card h3 {
  max-width: 320px;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 850;
  line-height: 1.18;
}

.pd-product-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 15px;
  line-height: 1.72;
}

.pd-product-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pd-product-card li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 800;
}

.pd-benefits {
  padding: clamp(84px, 9vw, 136px) clamp(20px, 5vw, 76px);
  color: #fff;
  background: #070d19;
}

.pd-section-title-dark h2 {
  color: #fff;
}

.pd-benefit-grid {
  width: min(1360px, 100%);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(148, 163, 184, .28);
}

.pd-benefit-grid article {
  min-height: 330px;
  padding: clamp(28px, 3vw, 46px);
  border-right: 1px solid rgba(148, 163, 184, .24);
}

.pd-benefit-grid article:last-child {
  border-right: 0;
}

.pd-benefit-grid span {
  display: block;
  margin-bottom: clamp(60px, 7vw, 108px);
  color: #86b7ff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pd-benefit-grid h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: 1.15;
}

.pd-benefit-grid p {
  margin: 22px 0 0;
  color: rgba(226, 232, 240, .76);
  font-size: 16px;
  line-height: 1.8;
}

.pd-technology {
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  background: #f7fafc;
}

.pd-tech-media {
  min-height: 720px;
}

.pd-tech-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-tech-copy {
  padding: clamp(70px, 7vw, 118px) clamp(28px, 6vw, 104px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pd-tech-points {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pd-tech-points span {
  min-height: 96px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  color: #0f172a;
  border: 1px solid #d5e1ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.65;
}

.pd-application-grid {
  width: min(1360px, 100%);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pd-application-grid article {
  border: 1px solid #d8e3ef;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pd-application-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pd-application-grid div {
  padding: 30px;
}

.pd-application-grid h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.18;
}

.pd-application-grid p {
  margin: 18px 0 26px;
  color: #475569;
  font-size: 16px;
  line-height: 1.78;
}

.pd-application-grid strong {
  display: block;
  padding-top: 22px;
  color: #0f172a;
  border-top: 1px solid #dbe6f1;
  font-size: 16px;
  line-height: 1.6;
}

.pd-path {
  background: #f6f8fb;
}

.pd-path-grid {
  width: min(1180px, 100%);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #d6e1ec;
  border-bottom: 1px solid #d6e1ec;
}

.pd-path-grid article {
  min-height: 170px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid #d6e1ec;
}

.pd-path-grid article:last-child {
  border-right: 0;
}

.pd-path-grid span {
  color: #64748b;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pd-path-grid strong {
  color: #111827;
  font-size: clamp(20px, 1.7vw, 28px);
}

.pd-footer {
  padding: 52px clamp(20px, 5vw, 76px);
  color: rgba(255, 255, 255, .68);
  background: #070d19;
}

.pd-footer span {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
  letter-spacing: .34em;
}

.pd-footer p {
  margin: 0;
}

@media (max-width: 1180px) {
  .pd-shop-layout {
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  }

  .pd-selection-panel {
    position: static;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
  }

  .pd-selected-media img {
    height: 100%;
    min-height: 420px;
    aspect-ratio: auto;
  }

  .pd-product-grid,
  .pd-benefit-grid,
  .pd-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-benefit-grid article:nth-child(2) {
    border-right: 0;
  }

  .pd-benefit-grid article {
    border-bottom: 1px solid rgba(148, 163, 184, .24);
  }

  .pd-benefit-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .pd-path-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .pd-header {
    height: auto;
    min-height: 68px;
    gap: 16px;
    align-items: flex-start;
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .pd-logo {
    font-size: 18px;
  }

  .pd-header-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .pd-header-nav a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .pd-hero-inner {
    padding-top: 132px;
  }

  .pd-hero-metrics,
  .pd-overview,
  .pd-technology,
  .pd-shop-layout,
  .pd-selection-panel {
    grid-template-columns: 1fr;
  }

  .pd-category-panel,
  .pd-selection-panel {
    position: static;
  }

  .pd-filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .pd-sort-line {
    align-items: flex-start;
  }

  .pd-choice-grid {
    grid-template-columns: 1fr;
  }

  .pd-choice-card {
    grid-template-columns: 1fr;
  }

  .pd-choice-card img {
    height: 240px;
    min-height: 240px;
  }

  .pd-selected-media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .pd-hero-metrics span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .pd-hero-metrics span:last-child {
    border-bottom: 0;
  }

  .pd-tech-media {
    min-height: 420px;
  }

  .pd-tech-points,
  .pd-product-grid,
  .pd-benefit-grid,
  .pd-application-grid,
  .pd-path-grid {
    grid-template-columns: 1fr;
  }

  .pd-product-card {
    min-height: 430px;
  }

  .pd-benefit-grid article,
  .pd-benefit-grid article:nth-child(2),
  .pd-path-grid article {
    border-right: 0;
  }

  .pd-benefit-grid article,
  .pd-benefit-grid article:nth-last-child(-n + 2),
  .pd-path-grid article {
    border-bottom: 1px solid rgba(148, 163, 184, .24);
  }

  .pd-benefit-grid article:last-child,
  .pd-path-grid article:last-child {
    border-bottom: 0;
  }
}

/* LV-inspired product catalog */
.pd-catalog-hero {
  min-height: min(620px, 72svh);
  align-items: center;
}

.pd-catalog-hero .pd-hero-inner {
  padding: 150px 0 92px;
}

.pd-catalog-hero .pd-hero-inner h1 {
  font-size: clamp(58px, 8vw, 112px);
}

.pd-catalog-hero .pd-hero-inner strong {
  max-width: 840px;
}

.pd-catalog-shell {
  padding: clamp(58px, 7vw, 104px) clamp(20px, 4.6vw, 76px) clamp(82px, 8vw, 128px);
  background: #fff;
}

.pd-catalog-heading {
  width: min(1580px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(280px, 520px) minmax(0, 640px);
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
}

.pd-catalog-heading nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7a7a7a;
  font-size: 13px;
}

.pd-catalog-heading nav a,
.pd-catalog-heading nav strong {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.pd-catalog-heading p {
  margin: 0;
  color: #4b5563;
  font-size: clamp(16px, 1.24vw, 21px);
  line-height: 1.78;
}

.pd-catalog-heading div > p {
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
}

.pd-catalog-heading h2 {
  margin: 0;
  color: #111;
  font-size: clamp(42px, 5.5vw, 86px);
  font-weight: 500;
  line-height: 1.05;
}

.pd-catalog-tabs {
  width: min(1580px, 100%);
  margin: clamp(42px, 5vw, 76px) auto 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-top: 1px solid #e6e1dc;
  border-bottom: 1px solid #e6e1dc;
  scrollbar-width: thin;
}

.pd-catalog-tabs .pd-category-button {
  flex: 0 0 auto;
  width: auto;
  min-width: 172px;
  min-height: 82px;
  padding: 18px 26px;
  color: #3b3b3b;
  border: 0;
  border-right: 1px solid #e6e1dc;
  border-radius: 0;
  background: #fff;
}

.pd-catalog-tabs .pd-category-button strong {
  font-size: 16px;
  font-weight: 800;
}

.pd-catalog-tabs .pd-category-button span {
  color: #757575;
  font-size: 12px;
}

.pd-catalog-tabs .pd-category-button:hover,
.pd-catalog-tabs .pd-category-button.is-active {
  color: #111;
  border-color: #e6e1dc;
  background: #f7f5f2;
}

.pd-fiber-feature {
  width: min(1580px, 100%);
  min-height: clamp(460px, 48vw, 720px);
  margin: clamp(42px, 5vw, 76px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  border-top: 1px solid #e6e1dc;
  border-bottom: 1px solid #e6e1dc;
  background: #f7f5f2;
  overflow: hidden;
}

.pd-fiber-feature-media {
  min-height: inherit;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  background: #ede8e3;
}

.pd-fiber-feature-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.88) contrast(1.03);
}

.pd-fiber-feature-media img:nth-child(2n) {
  object-position: center top;
}

.pd-fiber-feature-copy {
  padding: clamp(36px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #e6e1dc;
  background: #fff;
}

.pd-fiber-feature-copy span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}

.pd-fiber-feature-copy h3 {
  margin: 22px 0 0;
  color: #111;
  font-size: clamp(46px, 6.2vw, 102px);
  font-weight: 430;
  line-height: .98;
}

.pd-fiber-feature-copy p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #3f4652;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.85;
}

.pd-catalog-toolbar {
  position: sticky;
  top: 76px;
  z-index: 30;
  width: min(1580px, 100%);
  min-height: 66px;
  margin: 0 auto;
  padding: 0 2px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: #333;
  border-bottom: 1px solid #e6e1dc;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.pd-filter-trigger {
  justify-self: start;
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.pd-filter-trigger span,
.pd-filter-trigger span::before,
.pd-filter-trigger span::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: #111;
  content: "";
}

.pd-filter-trigger span {
  position: relative;
}

.pd-filter-trigger span::before,
.pd-filter-trigger span::after {
  position: absolute;
  left: 0;
}

.pd-filter-trigger span::before {
  top: -6px;
}

.pd-filter-trigger span::after {
  top: 6px;
}

.pd-catalog-toolbar > span {
  color: #555;
  font-size: 14px;
  font-weight: 700;
}

.pd-catalog-toolbar > span:nth-child(2) {
  color: #111;
  text-align: center;
}

.pd-catalog-toolbar > span:last-child {
  justify-self: end;
}

.pd-lv-filter-bar {
  width: min(1580px, 100%);
  margin: 0 auto;
  padding: 26px 0;
  display: grid;
  grid-template-columns: minmax(320px, 1.5fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 36px;
  border: 0;
  border-bottom: 1px solid #e6e1dc;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.product-detail-layout:not(.is-filter-open) .pd-lv-filter-bar {
  display: none;
}

.pd-filter-block {
  display: grid;
  gap: 14px;
  align-content: start;
}

.pd-filter-block strong {
  color: #111;
  font-size: 14px;
}

.pd-filter-block > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.pd-filter-block span,
.pd-lv-filter-bar .pd-filter-chip {
  min-height: 34px;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  color: #353535;
  border: 1px solid #ded8d1;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.pd-lv-filter-bar .pd-filter-chip {
  cursor: pointer;
}

.pd-lv-filter-bar .pd-filter-chip:hover,
.pd-lv-filter-bar .pd-filter-chip.is-active {
  color: #fff;
  border-color: #111;
  background: #111;
}

.pd-catalog-grid {
  width: min(1580px, 100%);
  margin: clamp(28px, 4vw, 54px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border-top: 1px solid #e6e1dc;
  border-left: 1px solid #e6e1dc;
}

.pd-catalog-grid .pd-choice-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #111;
  border: 0;
  border-right: 1px solid #e6e1dc;
  border-bottom: 1px solid #e6e1dc;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  transform: none;
}

.pd-catalog-grid .pd-choice-card:hover,
.pd-catalog-grid .pd-choice-card.is-active {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.pd-catalog-grid .pd-choice-card.is-active {
  outline: 2px solid #111;
  outline-offset: -2px;
}

.pd-choice-label {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  color: #555;
  font-size: 12px;
  font-weight: 800;
}

.pd-choice-favorite {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 18px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  border: 1px solid rgba(17, 17, 17, .22);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.pd-choice-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f6f4f1;
}

.pd-choice-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  mix-blend-mode: normal;
  transform: scale(1);
  transition: transform .5s ease;
}

.pd-catalog-grid .pd-choice-card:hover .pd-choice-media img {
  transform: scale(1.045);
}

.pd-catalog-grid .pd-choice-copy {
  min-height: 196px;
  padding: 22px clamp(18px, 1.8vw, 30px) 30px;
  display: block;
}

.pd-catalog-grid .pd-choice-copy small {
  color: #696969;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.pd-catalog-grid .pd-choice-copy h3 {
  margin-top: 10px;
  color: #111;
  font-size: clamp(21px, 1.55vw, 29px);
  font-weight: 650;
  line-height: 1.25;
}

.pd-catalog-grid .pd-choice-copy p {
  margin-top: 12px;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}

.pd-catalog-grid .pd-choice-copy strong {
  display: block;
  margin-top: 18px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
}

.pd-catalog-detail {
  position: static;
  width: min(1580px, 100%);
  margin: clamp(42px, 5vw, 72px) auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 46%) minmax(0, 54%);
  border: 0;
  border-top: 1px solid #e6e1dc;
  border-bottom: 1px solid #e6e1dc;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.pd-catalog-detail .pd-selected-media {
  min-height: 620px;
  display: grid;
  place-items: center;
  background: #f6f4f1;
}

.pd-catalog-detail .pd-selected-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: normal;
}

.pd-catalog-detail .pd-selected-copy {
  padding: clamp(36px, 6vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pd-catalog-detail .pd-selected-copy > span {
  color: #6b7280;
  letter-spacing: .2em;
}

.pd-catalog-detail .pd-selected-copy h3 {
  max-width: 680px;
  font-size: clamp(36px, 4vw, 70px);
  font-weight: 520;
}

.pd-catalog-detail .pd-selected-copy > p {
  max-width: 760px;
  color: #1f2937;
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.8;
}

.pd-catalog-detail .pd-selected-specs {
  max-width: 760px;
  border-top-color: #e6e1dc;
}

.pd-catalog-detail .pd-selected-specs div {
  grid-template-columns: minmax(100px, 132px) minmax(0, 1fr);
  border-bottom-color: #e6e1dc;
}

.pd-catalog-detail .pd-selected-material {
  max-width: 760px;
  border: 1px solid #e6e1dc;
  border-radius: 0;
  background: #fff;
}

.pd-catalog-detail .pd-selected-actions {
  max-width: 420px;
}

.pd-catalog-detail .pd-selected-actions a {
  border-radius: 0;
  background: #111;
}

.pd-catalog-detail .pd-selected-actions a:last-child {
  border-color: #111;
}

@media (max-width: 1180px) {
  .pd-catalog-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pd-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pd-lv-filter-bar {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 860px) {
  .pd-catalog-hero {
    min-height: 520px;
  }

  .pd-catalog-hero .pd-hero-inner {
    padding-top: 132px;
    padding-bottom: 74px;
  }

  .pd-catalog-toolbar {
    top: 92px;
    min-height: auto;
    padding: 14px 0;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pd-catalog-toolbar > span,
  .pd-catalog-toolbar > span:last-child {
    justify-self: start;
  }

  .pd-catalog-tabs .pd-category-button {
    min-width: 154px;
    min-height: 72px;
    padding: 14px 18px;
  }

  .pd-fiber-feature,
  .pd-catalog-detail {
    grid-template-columns: 1fr;
  }

  .pd-fiber-feature-media {
    min-height: 360px;
    grid-template-columns: repeat(7, minmax(82px, 1fr));
    overflow-x: auto;
  }

  .pd-fiber-feature-copy {
    border-left: 0;
    border-top: 1px solid #e6e1dc;
  }

  .pd-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-catalog-grid .pd-choice-copy {
    min-height: 0;
  }

  .pd-catalog-detail .pd-selected-media {
    min-height: 360px;
  }
}

@media (max-width: 540px) {
  .pd-fiber-feature-media {
    min-height: 300px;
  }

  .pd-fiber-feature-copy {
    padding: 30px 22px;
  }

  .pd-catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* BIODEX product technology search page, adapted from a filtered technology-catalog pattern. */
.product-detail-layout.product-lycra-search {
  min-height: 100vh;
  color: #111827;
  background: #fff;
}

.product-lycra-search .pd-header {
  position: sticky;
  top: 0;
  height: 78px;
  color: #111827;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.product-lycra-search .pd-logo {
  color: #111827;
}

.product-lycra-search .pd-header-nav a {
  color: #4b5563;
  background: transparent;
}

.product-lycra-search .pd-header-nav a:hover,
.product-lycra-search .pd-header-nav a.is-active {
  color: #fff;
  background: #111827;
}

.pd-search-hero {
  padding: clamp(96px, 10vw, 150px) clamp(22px, 5vw, 76px) clamp(58px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(248, 250, 252, .98), rgba(248, 250, 252, .84)),
    url("images/products/fiber-spentex.jpg") center/cover;
  border-bottom: 1px solid #e5e7eb;
}

.pd-search-breadcrumb {
  width: min(1500px, 100%);
  margin: 0 auto clamp(54px, 6vw, 88px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 800;
}

.pd-search-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.pd-search-hero-grid {
  width: min(1500px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(420px, .75fr);
  gap: clamp(44px, 8vw, 140px);
  align-items: end;
}

.pd-search-hero-grid p:first-child {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .28em;
}

.pd-search-hero-grid h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(58px, 8vw, 132px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
}

.pd-search-hero-grid > p {
  margin: 0 0 10px;
  color: #334155;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.85;
}

.pd-search-shell {
  width: min(1500px, calc(100vw - 44px));
  margin: 0 auto;
  padding: clamp(44px, 5vw, 72px) 0 clamp(80px, 8vw, 122px);
  display: grid;
  grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.pd-search-sidebar {
  position: sticky;
  top: 104px;
  border: 1px solid #dbe3ed;
  background: #fff;
}

.pd-search-sidebar-head {
  min-height: 70px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #e5e7eb;
}

.pd-search-sidebar-head span,
.pd-search-sidebar-head span::before,
.pd-search-sidebar-head span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  content: "";
}

.pd-search-sidebar-head span {
  position: relative;
}

.pd-search-sidebar-head span::before {
  position: absolute;
  top: -8px;
}

.pd-search-sidebar-head span::after {
  position: absolute;
  top: 8px;
}

.pd-search-sidebar-head strong {
  font-size: 18px;
}

.pd-search-filter {
  padding: 22px;
  border-bottom: 1px solid #e5e7eb;
}

.pd-search-filter:last-child {
  border-bottom: 0;
}

.pd-search-filter h3 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pd-filter-option {
  width: 100%;
  min-height: 40px;
  margin: 0 0 8px;
  padding: 9px 11px;
  color: #475569;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.pd-filter-option:hover,
.pd-filter-option.is-active {
  color: #0f172a;
  border-color: #cbd5e1;
  background: #f8fafc;
}

.pd-search-results {
  min-width: 0;
}

.pd-search-toolbar {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(280px, 520px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dbe3ed;
}

.pd-search-toolbar label {
  display: grid;
  gap: 10px;
}

.pd-search-toolbar label span {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

.pd-search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: #111827;
  font-size: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 0;
  background: #fff;
  outline: none;
}

.pd-search-input:focus {
  border-color: #111827;
}

.pd-search-toolbar > div {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #111827;
  font-size: 18px;
}

.pd-clear-filters {
  color: #64748b;
  font-size: 14px;
  font-weight: 900;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pd-clear-filters:hover {
  color: #111827;
}

.pd-search-summary {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.pd-tech-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #dbe3ed;
  border-left: 1px solid #dbe3ed;
}

.pd-tech-card {
  min-width: 0;
  border-right: 1px solid #dbe3ed;
  border-bottom: 1px solid #dbe3ed;
  background: #fff;
}

.pd-tech-card[hidden] {
  display: none;
}

.pd-tech-card-button {
  width: 100%;
  min-height: 330px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(180px, 34%) minmax(0, 1fr);
  color: #111827;
  text-align: left;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.pd-tech-card-media {
  overflow: hidden;
  background: #e2e8f0;
}

.pd-tech-card-media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: saturate(.9);
  transform: scale(1.01);
  transition: transform .32s ease;
}

.pd-tech-card:hover .pd-tech-card-media img,
.pd-tech-card.is-active .pd-tech-card-media img {
  transform: scale(1.06);
}

.pd-tech-card-body {
  padding: clamp(22px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pd-tech-card-body small {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.pd-tech-card-body strong {
  margin-top: 28px;
  color: #0f172a;
  font-size: clamp(25px, 2.3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.pd-tech-card-body em {
  margin-top: 8px;
  color: #334155;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
}

.pd-tech-card-copy {
  margin-top: 22px;
  color: #475569;
  font-size: 16px;
  line-height: 1.75;
}

.pd-tech-card-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-tech-card-tags span,
.pd-detail-tags span {
  padding: 6px 10px;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
}

.pd-tech-card-link {
  margin-top: auto;
  padding-top: 28px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 7px;
}

.pd-tech-card.is-active {
  box-shadow: inset 0 0 0 2px #111827;
}

.pd-empty-state {
  padding: 80px 24px;
  text-align: center;
  border: 1px solid #dbe3ed;
  border-top: 0;
}

.pd-empty-state strong,
.pd-empty-state span {
  display: block;
}

.pd-empty-state strong {
  color: #111827;
  font-size: 28px;
}

.pd-empty-state span {
  margin-top: 12px;
  color: #64748b;
}

.pd-selected-product {
  width: min(1500px, calc(100vw - 44px));
  margin: 0 auto clamp(84px, 9vw, 132px);
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(480px, 1fr);
  border-top: 1px solid #dbe3ed;
  border-bottom: 1px solid #dbe3ed;
  background: #fff;
}

.pd-detail-media {
  min-height: 620px;
  overflow: hidden;
  background: #e2e8f0;
}

.pd-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-detail-copy {
  padding: clamp(42px, 5vw, 78px);
}

.pd-detail-eyebrow {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
}

.pd-detail-copy h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.pd-detail-copy h3 {
  margin: 18px 0 0;
  color: #334155;
  font-size: clamp(20px, 2vw, 30px);
}

.pd-detail-copy > p:not(.pd-detail-eyebrow) {
  margin: 28px 0 0;
  color: #334155;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.8;
}

.pd-detail-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-detail-specs {
  margin: 36px 0 0;
  border-top: 1px solid #dbe3ed;
}

.pd-detail-specs div {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(110px, 180px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #dbe3ed;
}

.pd-detail-specs dt {
  color: #64748b;
  font-weight: 900;
}

.pd-detail-specs dd {
  margin: 0;
  color: #111827;
  font-size: 17px;
  line-height: 1.65;
}

.pd-detail-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pd-detail-actions a {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  color: #111827;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid #111827;
}

.pd-detail-actions a:first-child {
  color: #fff;
  background: #111827;
}

.product-lycra-search .pd-footer {
  color: #64748b;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 1180px) {
  .pd-search-shell,
  .pd-selected-product {
    grid-template-columns: 1fr;
  }

  .pd-search-sidebar {
    position: static;
  }

  .pd-search-filter {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: start;
  }

  .pd-search-filter h3 {
    margin: 8px 0 0;
  }

  .pd-filter-option {
    width: auto;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .product-lycra-search .pd-header {
    height: auto;
    min-height: 72px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .product-lycra-search .pd-header-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .pd-search-hero-grid,
  .pd-search-toolbar,
  .pd-tech-results,
  .pd-tech-card-button {
    grid-template-columns: 1fr;
  }

  .pd-search-toolbar {
    align-items: start;
  }

  .pd-search-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .pd-tech-card-media img {
    height: 260px;
    min-height: 260px;
  }

  .pd-detail-media {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .pd-search-shell,
  .pd-selected-product {
    width: calc(100vw - 28px);
  }

  .pd-search-filter {
    grid-template-columns: 1fr;
  }

  .pd-detail-copy,
  .pd-tech-card-body {
    padding: 24px;
  }

  .pd-detail-specs div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
}

/* LYCRA-aligned search results layout */
.product-detail-layout.product-lycra-list {
  min-height: 100vh;
  color: #1f2937;
  background: #fff;
}

.product-lycra-list .pd-header {
  position: sticky;
  top: 0;
  height: 78px;
  color: #111827;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.product-lycra-list .pd-logo {
  color: #111827;
}

.product-lycra-list .pd-header-nav a {
  color: #4b5563;
  background: transparent;
}

.product-lycra-list .pd-header-nav a:hover,
.product-lycra-list .pd-header-nav a.is-active {
  color: #fff;
  background: #111827;
}

.ply-hero {
  padding: clamp(92px, 9vw, 140px) clamp(22px, 5vw, 76px) clamp(42px, 5vw, 72px);
  border-bottom: 1px solid #dfe5ec;
  background: #fff;
}

.ply-breadcrumb,
.ply-title-row,
.ply-tabs,
.ply-search-shell,
.ply-selected-product {
  width: min(1480px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.ply-breadcrumb {
  margin-bottom: clamp(42px, 5vw, 72px);
  display: flex;
  gap: 12px;
  align-items: center;
  color: #687282;
  font-size: 15px;
  font-weight: 800;
}

.ply-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.ply-title-row {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(380px, .72fr);
  gap: clamp(44px, 8vw, 132px);
  align-items: end;
}

.ply-title-row p:first-child {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
}

.ply-title-row h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.ply-title-row h1 sup {
  top: -.7em;
  font-size: .26em;
}

.ply-title-row > p {
  margin: 0;
  color: #4b5563;
  font-size: clamp(18px, 1.65vw, 27px);
  line-height: 1.85;
}

.ply-tabs {
  margin-top: clamp(44px, 5vw, 70px);
  display: flex;
  border-top: 1px solid #dfe5ec;
  border-bottom: 1px solid #dfe5ec;
}

.ply-tabs button {
  min-height: 72px;
  min-width: 230px;
  padding: 0 28px;
  color: #4b5563;
  text-align: left;
  font-size: 20px;
  font-weight: 900;
  border: 0;
  border-right: 1px solid #dfe5ec;
  background: #fff;
  cursor: pointer;
}

.ply-tabs button:hover,
.ply-tabs button.is-active {
  color: #111827;
  background: #f6f8fb;
}

.ply-search-shell {
  padding: clamp(34px, 4vw, 58px) 0 clamp(70px, 8vw, 116px);
  display: grid;
  grid-template-columns: minmax(230px, 290px) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.ply-filters {
  position: sticky;
  top: 102px;
  border: 1px solid #dfe5ec;
  background: #fff;
}

.ply-filter-title {
  min-height: 74px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #dfe5ec;
}

.ply-filter-title span,
.ply-filter-title span::before,
.ply-filter-title span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #111827;
  content: "";
}

.ply-filter-title span {
  position: relative;
}

.ply-filter-title span::before {
  position: absolute;
  top: -8px;
}

.ply-filter-title span::after {
  position: absolute;
  top: 8px;
}

.ply-filter-title strong {
  color: #111827;
  font-size: 18px;
}

.ply-filter-group {
  padding: 22px;
  border-bottom: 1px solid #dfe5ec;
}

.ply-filter-group:last-child {
  border-bottom: 0;
}

.ply-filter-group h2 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 17px;
  font-weight: 900;
}

.ply-filter-option {
  width: 100%;
  min-height: 40px;
  margin: 0 0 7px;
  padding: 9px 10px;
  color: #4b5563;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.ply-filter-option:hover,
.ply-filter-option.is-active {
  color: #111827;
  border-color: #cbd5e1;
  background: #f8fafc;
}

.ply-results {
  min-width: 0;
}

.ply-search-row {
  padding-bottom: 24px;
  border-bottom: 1px solid #dfe5ec;
}

.ply-search-row label {
  display: grid;
  gap: 12px;
}

.ply-search-row span {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.ply-search-input {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: #111827;
  font-size: 18px;
  border: 1px solid #cfd8e3;
  border-radius: 0;
  outline: none;
  background: #fff;
}

.ply-search-input:focus {
  border-color: #111827;
}

.ply-result-toolbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid #dfe5ec;
}

.ply-count {
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.ply-clear {
  color: #687282;
  font-size: 14px;
  font-weight: 900;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ply-clear:hover {
  color: #111827;
}

.ply-list {
  border-bottom: 1px solid #dfe5ec;
}

.ply-result {
  border-top: 1px solid #dfe5ec;
}

.ply-result[hidden] {
  display: none;
}

.ply-result-inner {
  position: relative;
  padding: clamp(30px, 4vw, 56px) clamp(8px, 2vw, 28px);
}

.ply-result.is-active .ply-result-inner {
  box-shadow: inset 4px 0 0 #111827;
  background: #fbfcfe;
}

.ply-result-badge {
  margin-bottom: 18px;
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ply-result h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.ply-result p {
  max-width: 880px;
  margin: 22px 0 0;
  color: #374151;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.75;
}

.ply-result-meta {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 15px;
}

.ply-result-meta strong {
  color: #111827;
  font-size: 16px;
}

.ply-result-meta span {
  padding: 6px 10px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-weight: 800;
}

.ply-divider {
  width: min(760px, 100%);
  height: 1px;
  margin-top: 28px;
  background: #dfe5ec;
}

.ply-view-product {
  margin-top: 30px;
  padding: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ply-empty {
  padding: 70px 24px;
  text-align: center;
  border-bottom: 1px solid #dfe5ec;
}

.ply-empty strong,
.ply-empty span {
  display: block;
}

.ply-empty strong {
  color: #111827;
  font-size: 28px;
}

.ply-empty span {
  margin-top: 12px;
  color: #64748b;
}

.ply-selected-product {
  margin-bottom: clamp(80px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(480px, 1fr);
  border-top: 1px solid #dfe5ec;
  border-bottom: 1px solid #dfe5ec;
}

.ply-detail-media {
  min-height: 560px;
  background: #edf2f7;
  overflow: hidden;
}

.ply-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ply-detail-copy {
  padding: clamp(42px, 5vw, 76px);
}

.ply-detail-copy > span {
  color: #64748b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
}

.ply-detail-copy h2 {
  margin: 20px 0 0;
  color: #111827;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.ply-detail-copy h3 {
  margin: 16px 0 0;
  color: #334155;
  font-size: clamp(20px, 2vw, 30px);
}

.ply-detail-copy p {
  margin: 28px 0 0;
  color: #374151;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.8;
}

.ply-detail-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ply-detail-tags span {
  padding: 7px 11px;
  color: #334155;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
}

.ply-detail-copy dl {
  margin: 36px 0 0;
  border-top: 1px solid #dfe5ec;
}

.ply-detail-copy dl div {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(110px, 170px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid #dfe5ec;
}

.ply-detail-copy dt {
  color: #64748b;
  font-weight: 900;
}

.ply-detail-copy dd {
  margin: 0;
  color: #111827;
  font-size: 17px;
  line-height: 1.65;
}

.product-lycra-list .pd-footer {
  color: #64748b;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 1100px) {
  .ply-title-row,
  .ply-search-shell,
  .ply-selected-product {
    grid-template-columns: 1fr;
  }

  .ply-filters {
    position: static;
  }

  .ply-filter-group {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: start;
  }

  .ply-filter-group h2 {
    margin-top: 9px;
  }

  .ply-filter-option {
    width: auto;
    margin: 0;
  }
}

@media (max-width: 760px) {
  .product-lycra-list .pd-header {
    height: auto;
    min-height: 72px;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .product-lycra-list .pd-header-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .ply-tabs {
    overflow-x: auto;
  }

  .ply-tabs button {
    min-width: 180px;
  }

  .ply-result-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .ply-detail-media {
    min-height: 340px;
  }

  .ply-detail-copy {
    padding: 28px 22px;
  }

  .ply-detail-copy dl div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
}

/* LYCRA screenshot-aligned card layout */
.product-detail-layout.product-lycra-card {
  min-height: 100vh;
  color: #050505;
  background: #f2f2f2;
}

.product-lycra-card .pd-footer {
  color: #6b7280;
  background: #f2f2f2;
  border-top: 1px solid #dedede;
}

.plc-topbar {
  min-height: 28px;
  padding: 0 clamp(22px, 4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: #fff;
  background: #000;
  font-size: 13px;
  font-weight: 800;
}

.plc-topbar > div {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.plc-header {
  position: sticky;
  top: 0;
  z-index: 70;
  min-height: 150px;
  padding: 0 clamp(28px, 4.8vw, 72px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 28px;
  background: #fff;
  border-bottom: 1px solid #e7e7e7;
}

.plc-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #111;
  text-decoration: none;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .28em;
}

.plc-brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.plc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.plc-nav a {
  min-width: 82px;
  min-height: 78px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  text-decoration: none;
  font-size: 22px;
  font-weight: 900;
  border-radius: 14px;
}

.plc-nav a:hover,
.plc-nav a.is-active {
  background: #f0f0f0;
}

.plc-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.plc-actions button {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.plc-actions svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.plc-actions a {
  min-height: 78px;
  padding: 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  border-radius: 12px;
  background: #000;
}

.plc-main {
  width: min(1430px, calc(100vw - 44px));
  margin: 0 auto;
  padding: clamp(48px, 5vw, 84px) 0 clamp(86px, 8vw, 130px);
}

.plc-hero {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(360px, .72fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}

.plc-hero > div > p {
  margin: 0 0 15px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
}

.plc-hero h1 {
  margin: 0;
  color: #000;
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.plc-hero h1 sup {
  top: -.72em;
  font-size: .24em;
}

.plc-hero > p {
  margin: 0;
  color: #454b55;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.75;
}

.plc-filter-panel {
  margin-bottom: 46px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 18px 28px;
  align-items: start;
  background: #fff;
  border-radius: 18px;
}

.plc-filter-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.plc-filter-icon,
.plc-filter-icon::before,
.plc-filter-icon::after {
  display: block;
  width: 24px;
  height: 3px;
  background: #000;
  content: "";
}

.plc-filter-icon {
  position: relative;
}

.plc-filter-icon::before {
  position: absolute;
  top: -8px;
}

.plc-filter-icon::after {
  position: absolute;
  top: 8px;
}

.plc-filter-head strong {
  font-size: 20px;
  font-weight: 900;
}

.plc-filter-head em {
  margin-left: auto;
  color: #555;
  font-style: normal;
  font-size: 16px;
  font-weight: 900;
}

.plc-clear {
  color: #555;
  font-size: 15px;
  font-weight: 900;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.plc-search {
  order: 3;
  display: grid;
  gap: 8px;
}

.plc-search span,
.plc-filter-group strong {
  color: #4b5563;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.plc-search input {
  min-height: 52px;
  padding: 0 16px;
  color: #111;
  font-size: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  outline: none;
}

.plc-search input:focus {
  border-color: #000;
}

.plc-filter-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.plc-filter-group strong {
  flex: 0 0 86px;
}

.plc-filter {
  min-height: 36px;
  padding: 0 14px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid #dfdfdf;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.plc-filter:hover,
.plc-filter.is-active {
  color: #fff;
  border-color: #000;
  background: #000;
}

.plc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.plc-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 330px minmax(360px, auto);
  background: #fff;
  border-radius: 8px;
}

.plc-card[hidden] {
  display: none;
}

.plc-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(420px, .95fr) minmax(420px, 1fr);
  grid-template-rows: minmax(480px, auto);
}

.plc-card-image {
  overflow: hidden;
  background: #e5e7eb;
}

.plc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .35s ease;
}

.plc-card:hover .plc-card-image img,
.plc-card.is-active .plc-card-image img {
  transform: scale(1.06);
}

.plc-card-content {
  padding: clamp(32px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plc-kicker {
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

.plc-card h2 {
  margin: 0;
  color: #000;
  font-size: clamp(26px, 2.8vw, 46px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.plc-card-content > p:not(.plc-kicker) {
  margin: 22px 0 0;
  color: #3f4650;
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1.65;
}

.plc-meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: #000;
  font-size: 17px;
  font-weight: 900;
}

.plc-meta strong {
  margin-right: 14px;
}

.plc-meta span {
  padding: 0 14px;
  line-height: 1.2;
  border-right: 1px solid #d0d0d0;
}

.plc-meta span:last-child {
  border-right: 0;
}

.plc-view {
  margin-top: auto;
  padding: 42px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000;
  font-size: 18px;
  font-weight: 900;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.plc-view span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  border-radius: 50%;
  background: #e4002b;
}

.plc-empty {
  margin-top: 36px;
  padding: 58px 24px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
}

.plc-empty strong,
.plc-empty span {
  display: block;
}

.plc-empty strong {
  color: #000;
  font-size: 28px;
}

.plc-empty span {
  margin-top: 12px;
  color: #4b5563;
}

.plc-detail {
  margin-top: 58px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(460px, 1fr);
  background: #fff;
  border-radius: 8px;
}

.plc-detail-image {
  min-height: 540px;
  overflow: hidden;
  background: #e5e7eb;
}

.plc-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plc-detail-copy {
  padding: clamp(38px, 5vw, 74px);
}

.plc-detail-copy > p:first-child {
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2em;
}

.plc-detail-copy h2 {
  margin: 0;
  color: #000;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.plc-detail-copy h3 {
  margin: 16px 0 0;
  color: #111;
  font-size: clamp(22px, 2vw, 32px);
}

.plc-detail-copy > p:not(:first-child) {
  margin: 28px 0 0;
  color: #3f4650;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.75;
}

.plc-detail-copy dl {
  margin: 36px 0 0;
  border-top: 1px solid #dedede;
}

.plc-detail-copy dl div {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(110px, 160px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #dedede;
}

.plc-detail-copy dt {
  color: #6b7280;
  font-weight: 900;
}

.plc-detail-copy dd {
  margin: 0;
  color: #111;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .plc-header {
    grid-template-columns: 1fr;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .plc-brand,
  .plc-actions {
    justify-self: center;
  }

  .plc-filter-panel,
  .plc-hero,
  .plc-card-featured,
  .plc-detail {
    grid-template-columns: 1fr;
  }

  .plc-search {
    order: initial;
  }
}

@media (max-width: 820px) {
  .plc-topbar {
    justify-content: center;
  }

  .plc-topbar span:nth-child(n + 2),
  .plc-actions a {
    display: none;
  }

  .plc-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .plc-main {
    width: calc(100vw - 28px);
  }

  .plc-hero h1 {
    font-size: clamp(44px, 16vw, 72px);
  }

  .plc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plc-card,
  .plc-card-featured {
    grid-template-rows: 280px auto;
  }

  .plc-card-content,
  .plc-detail-copy {
    padding: 28px 22px;
  }

  .plc-detail-image {
    min-height: 320px;
  }

  .plc-detail-copy dl div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
}

/* LYCRA-style seven-series product page */
.product-detail-layout.product-lycra-series {
  min-height: 100vh;
  color: #050505;
  background: #f2f2f2;
}

.product-lycra-series .plc-topbar {
  min-height: 28px;
  padding: 5px clamp(18px, 4vw, 70px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 4vw, 62px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  background: #000;
}

.product-lycra-series .plc-header {
  min-height: 150px;
  padding: 30px clamp(18px, 4vw, 70px);
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  background: #fff;
}

.product-lycra-series .plc-brand {
  justify-self: start;
  color: #050505;
  font-size: clamp(30px, 3.1vw, 58px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: .34em;
  text-decoration: none;
}

.product-lycra-series .plc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 4vw, 70px);
}

.product-lycra-series .plc-nav a {
  padding: 18px 20px;
  color: #050505;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 900;
  text-decoration: none;
  border-radius: 14px;
}

.product-lycra-series .plc-nav a.is-active {
  background: #f2f2f2;
}

.product-lycra-series .plc-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
}

.product-lycra-series .plc-actions a {
  color: #050505;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.product-lycra-series .plc-portal {
  padding: 20px 34px;
  color: #fff !important;
  border-radius: 14px;
  background: #000;
}

.product-lycra-series .plc-series-tabs {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 70px) 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 5vw, 92px);
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #ececec;
  scrollbar-color: #b8b8b8 transparent;
}

.product-lycra-series .plc-series-tab {
  position: relative;
  padding: 16px 4px 20px;
  color: #080808;
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-lycra-series .plc-series-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 4px;
  border-radius: 999px;
  background: #e4002b;
  opacity: 0;
  transform: scaleX(.35);
  transition: opacity .18s ease, transform .18s ease;
}

.product-lycra-series .plc-series-tab:hover::after,
.product-lycra-series .plc-series-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-lycra-series .plc-series-tab.is-active {
  color: #000;
}

.product-lycra-series .plc-series-main {
  padding: clamp(46px, 5vw, 78px) clamp(18px, 5vw, 88px) clamp(84px, 8vw, 132px);
  background: #f2f2f2;
}

.product-lycra-series .plc-series-toolbar {
  width: min(1430px, 100%);
  margin: 0 auto 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.product-lycra-series .plc-series-toolbar strong {
  display: none;
}

.product-lycra-series .plc-series-toolbar label {
  display: flex;
  align-items: center;
  gap: 0;
}

.product-lycra-series .plc-series-toolbar label > span {
  display: none;
}

.product-lycra-series .plc-series-toolbar select {
  min-width: 260px;
  height: 66px;
  padding: 0 52px 0 22px;
  color: #050505;
  font-size: clamp(20px, 1.6vw, 27px);
  font-weight: 900;
  border: 0;
  border-radius: 7px;
  background: #fff;
}

.product-lycra-series .plc-series-result {
  width: min(1430px, 100%);
  margin: 0 auto;
}

.product-lycra-series .plc-single-card {
  min-height: 520px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(460px, 1fr);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
}

.product-lycra-series .plc-single-image {
  min-height: 520px;
  overflow: hidden;
  background: #e5e7eb;
}

.product-lycra-series .plc-single-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-lycra-series .plc-single-copy {
  min-width: 0;
  padding: clamp(42px, 5vw, 74px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-lycra-series .plc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
  border-radius: 4px;
  background: #e4002b;
}

.product-lycra-series .plc-single-copy h2 {
  margin: 30px 0 0;
  color: #050505;
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.product-lycra-series .plc-single-copy > p {
  margin: 20px 0 0;
  color: #3f4650;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 600;
  line-height: 1.55;
}

.product-lycra-series .plc-single-meta {
  margin-top: 26px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  color: #050505;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.4;
}

.product-lycra-series .plc-single-meta strong {
  margin-right: 18px;
  font-weight: 900;
}

.product-lycra-series .plc-single-meta span {
  padding: 0 18px;
  font-weight: 900;
  border-left: 1px solid #d5d5d5;
}

.product-lycra-series .plc-single-meta span:first-of-type {
  border-left: 0;
  padding-left: 0;
}

.product-lycra-series .plc-single-meta em {
  width: 36px;
  height: 36px;
  margin-left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-style: normal;
  font-weight: 900;
  border-radius: 50%;
  background: #f0f0f0;
}

.product-lycra-series .plc-single-detail {
  max-width: 760px;
  margin-top: 30px;
  color: #47505f;
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.8;
}

.product-lycra-series .plc-single-specs {
  width: 100%;
  margin: 30px 0 0;
  border-top: 1px solid #e1e1e1;
}

.product-lycra-series .plc-single-specs div {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(96px, 150px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #e1e1e1;
}

.product-lycra-series .plc-single-specs dt {
  color: #6b7280;
  font-size: 15px;
  font-weight: 900;
}

.product-lycra-series .plc-single-specs dd {
  margin: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.55;
}

.product-lycra-series .plc-view {
  margin-top: 34px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #050505;
  font-size: 21px;
  font-weight: 900;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.product-lycra-series .plc-view span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  border-radius: 50%;
  background: #e4002b;
}

@media (max-width: 1120px) {
  .product-lycra-series .plc-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .product-lycra-series .plc-brand,
  .product-lycra-series .plc-actions {
    justify-self: center;
  }

  .product-lycra-series .plc-single-card {
    grid-template-columns: 1fr;
  }

  .product-lycra-series .plc-single-image {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .product-lycra-series .plc-topbar,
  .product-lycra-series .plc-actions {
    display: none;
  }

  .product-lycra-series .plc-header {
    min-height: 92px;
    padding: 22px 18px;
  }

  .product-lycra-series .plc-brand {
    font-size: 28px;
  }

  .product-lycra-series .plc-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
  }

  .product-lycra-series .plc-nav a {
    padding: 12px 14px;
    font-size: 17px;
  }

  .product-lycra-series .plc-series-tabs {
    justify-content: flex-start;
    min-height: 88px;
    gap: 26px;
    padding: 18px 18px 22px;
  }

  .product-lycra-series .plc-series-main {
    padding: 34px 14px 74px;
  }

  .product-lycra-series .plc-series-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-lycra-series .plc-series-toolbar label {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .product-lycra-series .plc-series-toolbar select {
    min-width: 150px;
    height: 54px;
  }

  .product-lycra-series .plc-single-image {
    min-height: 310px;
  }

  .product-lycra-series .plc-single-copy {
    padding: 30px 22px;
  }

  .product-lycra-series .plc-single-copy h2 {
    font-size: 34px;
  }

  .product-lycra-series .plc-single-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .product-lycra-series .plc-single-meta span {
    padding: 0;
    border-left: 0;
  }

  .product-lycra-series .plc-single-specs div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
}

/* Product page header: logo only, seven series below in order */
.product-lycra-series .plc-topbar,
.product-lycra-series .plc-nav,
.product-lycra-series .plc-actions {
  display: none !important;
}

.product-lycra-series .plc-header {
  position: relative;
  top: auto;
  min-height: 176px;
  padding: 34px clamp(34px, 5vw, 96px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #e7e7e7;
}

.product-lycra-series .plc-brand {
  justify-self: auto;
  gap: 26px;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: .34em;
}

.product-lycra-series .plc-brand img {
  width: clamp(82px, 7vw, 112px);
  height: clamp(82px, 7vw, 112px);
}

.product-lycra-series .plc-series-tabs {
  min-height: 164px;
  padding: 34px clamp(34px, 5vw, 96px) 42px;
  justify-content: space-between;
  gap: clamp(28px, 4.2vw, 82px);
  position: sticky;
  top: 0;
  z-index: 65;
}

.product-lycra-series .plc-series-tab {
  flex: 0 0 auto;
  font-size: clamp(21px, 1.8vw, 30px);
}

@media (max-width: 900px) {
  .product-lycra-series .plc-header {
    min-height: 116px;
    padding: 22px 20px;
  }

  .product-lycra-series .plc-brand {
    gap: 14px;
    font-size: 30px;
    letter-spacing: .28em;
  }

  .product-lycra-series .plc-brand img {
    width: 62px;
    height: 62px;
  }

  .product-lycra-series .plc-series-tabs {
    min-height: 104px;
    justify-content: flex-start;
    padding: 20px 20px 26px;
  }
}

/* Seven series cards displayed below the category row */
.product-lycra-series .plc-series-grid {
  width: min(1430px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 44px);
}

.product-lycra-series .plc-series-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 640px;
  scroll-margin-top: 190px;
  color: #050505;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .05);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, outline-color .18s ease;
  outline: 3px solid transparent;
}

.product-lycra-series .plc-series-card:hover,
.product-lycra-series .plc-series-card.is-active {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, .09);
  outline-color: rgba(228, 0, 43, .22);
}

.product-lycra-series .plc-series-card-media {
  height: clamp(300px, 27vw, 420px);
  overflow: hidden;
  background: #e6e8eb;
}

.product-lycra-series .plc-series-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .24s ease;
}

.product-lycra-series .plc-series-card:hover .plc-series-card-media img {
  transform: scale(1.025);
}

.product-lycra-series .plc-series-card-body {
  flex: 1;
  padding: clamp(30px, 4vw, 58px) clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.product-lycra-series .plc-series-card-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-lycra-series .plc-series-card-top > span:first-child {
  color: #6f7784;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
}

.product-lycra-series .plc-leaf-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #f3f4f4;
}

.product-lycra-series .plc-leaf-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: #00a856;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-lycra-series .plc-series-card h3 {
  margin: 26px 0 0;
  color: #050505;
  font-size: clamp(27px, 2.5vw, 42px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.product-lycra-series .plc-series-card-body > p {
  margin: 22px 0 0;
  color: #4b5563;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 600;
  line-height: 1.65;
}

.product-lycra-series .plc-series-card-meta {
  margin-top: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #050505;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.4;
}

.product-lycra-series .plc-series-card-meta strong {
  margin-right: 16px;
  color: #4b5563;
  font-weight: 900;
}

.product-lycra-series .plc-series-card-meta span {
  padding: 0 16px;
  font-weight: 900;
  border-left: 1px solid #d6d6d6;
}

.product-lycra-series .plc-series-card-meta span:first-of-type {
  padding-left: 0;
  border-left: 0;
}

.product-lycra-series .plc-series-card-meta em {
  width: 34px;
  height: 34px;
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-style: normal;
  font-weight: 900;
  border-radius: 50%;
  background: #f0f0f0;
}

.product-lycra-series .plc-series-card .plc-view {
  margin-top: auto;
  padding-top: 34px;
}

.product-lycra-series .plc-series-result {
  margin-top: clamp(54px, 6vw, 88px);
}

@media (max-width: 980px) {
  .product-lycra-series .plc-series-grid {
    grid-template-columns: 1fr;
  }

  .product-lycra-series .plc-series-card {
    min-height: 0;
    scroll-margin-top: 124px;
  }
}

@media (max-width: 620px) {
  .product-lycra-series .plc-series-card-media {
    height: 260px;
  }

  .product-lycra-series .plc-series-card-body {
    padding: 28px 22px;
  }

  .product-lycra-series .plc-series-card h3 {
    font-size: 28px;
  }

  .product-lycra-series .plc-series-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .product-lycra-series .plc-series-card-meta span {
    padding: 0;
    border-left: 0;
  }
}

/* Product series secondary detail pages */
.product-series-detail .plc-series-tabs {
  border-bottom-color: #e4e4e4;
}

.pld-main {
  padding: clamp(30px, 4vw, 62px) clamp(18px, 5vw, 82px) clamp(72px, 8vw, 128px);
  background: #f3f3f3;
}

.pld-breadcrumb {
  width: min(1430px, 100%);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6d7280;
  font-size: 16px;
  font-weight: 900;
}

.pld-breadcrumb a {
  color: #6d7280;
  text-decoration: none;
}

.pld-breadcrumb a:hover {
  color: #000;
}

.pld-hero {
  width: min(1430px, 100%);
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(500px, 1fr);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.pld-hero-media {
  min-height: 660px;
  overflow: hidden;
  background: #e5e7eb;
}

.pld-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pld-hero-copy {
  padding: clamp(42px, 5.4vw, 84px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pld-kicker,
.pld-overview > p,
.pld-spec-copy > p,
.pld-related > p {
  margin: 0 0 20px;
  color: #6d7a8d;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .22em;
}

.pld-hero-copy h1 {
  margin: 26px 0 0;
  color: #080d19;
  font-size: clamp(48px, 5.7vw, 86px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.pld-hero-copy h1 small {
  margin-top: 16px;
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.16;
}

.pld-lead {
  margin: 30px 0 0;
  color: #111827;
  font-size: clamp(23px, 2.1vw, 32px);
  font-weight: 900;
  line-height: 1.45;
}

.pld-hero-copy > p:not(.pld-kicker):not(.pld-lead) {
  margin: 24px 0 0;
  color: #4a5565;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.75;
}

.pld-meta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #050505;
  font-size: clamp(18px, 1.4vw, 22px);
}

.pld-meta strong {
  margin-right: 16px;
  color: #4b5563;
  font-weight: 900;
}

.pld-meta span {
  padding: 0 16px;
  font-weight: 900;
  border-left: 1px solid #d6d6d6;
}

.pld-meta span:first-of-type {
  padding-left: 0;
  border-left: 0;
}

.pld-meta em {
  width: 34px;
  height: 34px;
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-style: normal;
  font-weight: 900;
  border-radius: 50%;
  background: #f0f0f0;
}

.pld-back {
  margin-top: auto;
  padding-top: 38px;
  color: #050505;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}

.pld-back::after {
  content: "→";
  width: 44px;
  height: 44px;
  margin-left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  background: #e4002b;
}

.pld-overview {
  width: min(1430px, 100%);
  margin: clamp(54px, 6vw, 88px) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 38px);
  padding: clamp(48px, 6vw, 86px) 0;
  text-align: center;
  border-top: 1px solid #d8dde5;
  border-bottom: 1px solid #d8dde5;
}

.pld-overview h2,
.pld-spec-copy h2,
.pld-related h2 {
  margin: 0;
  color: #080d19;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.pld-overview div p {
  margin: 0;
  color: #243047;
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.75;
}

.pld-overview div {
  width: min(980px, 100%);
  margin: 0 auto;
}

.pld-overview div p + p {
  margin-top: 20px;
}

.pld-feature-grid {
  width: min(1430px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid #d8dde5;
  border-top: 1px solid #d8dde5;
}

.pld-feature-grid article {
  min-height: 310px;
  padding: clamp(28px, 3.5vw, 52px);
  background: #fff;
  border-right: 1px solid #d8dde5;
  border-bottom: 1px solid #d8dde5;
}

.pld-feature-grid span {
  color: #6aa8ff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .16em;
}

.pld-feature-grid h3 {
  margin: 58px 0 0;
  color: #080d19;
  font-size: clamp(26px, 2.2vw, 40px);
  font-weight: 900;
}

.pld-feature-grid p {
  margin: 22px 0 0;
  color: #40506a;
  font-size: 18px;
  line-height: 1.75;
}

.pld-spec-section {
  width: min(1430px, 100%);
  margin: clamp(58px, 7vw, 100px) auto 0;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(500px, 1fr);
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
}

.pld-spec-image {
  min-height: 560px;
  overflow: hidden;
}

.pld-spec-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pld-spec-copy {
  padding: clamp(42px, 5vw, 78px);
}

.pld-spec-copy dl {
  margin: 42px 0 0;
  border-top: 1px solid #d9dfe8;
}

.pld-spec-copy dl div {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(120px, 170px) minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid #d9dfe8;
}

.pld-spec-copy dt {
  color: #6d7a8d;
  font-weight: 900;
}

.pld-spec-copy dd {
  margin: 0;
  color: #111827;
  font-size: 18px;
  line-height: 1.7;
}

.pld-related {
  width: min(1430px, 100%);
  margin: clamp(58px, 7vw, 100px) auto 0;
}

.pld-related > div {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pld-related a {
  min-height: 154px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #0b1020;
  text-decoration: none;
  background: #fff;
  border: 1px solid #d8dde5;
  border-radius: 8px;
}

.pld-related a:hover {
  border-color: #e4002b;
}

.pld-related span {
  color: #6d7a8d;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
}

.pld-related strong {
  font-size: 22px;
  line-height: 1.35;
}

.product-series-detail .pld-feature-grid,
.product-series-detail .pld-spec-section,
.product-series-detail .pld-related {
  display: none !important;
}

.pld-emotion-grid {
  width: min(1430px, 100%);
  margin: clamp(48px, 6vw, 86px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #d8dde5;
  border: 1px solid #d8dde5;
}

.pld-emotion-grid article {
  min-height: 300px;
  padding: clamp(30px, 3.6vw, 56px);
  background: #fff;
}

.pld-emotion-grid span {
  color: #6aa8ff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .16em;
}

.pld-emotion-grid h3 {
  margin: clamp(44px, 4.5vw, 70px) 0 0;
  color: #080d19;
  font-size: clamp(28px, 2.4vw, 42px);
  font-weight: 900;
  line-height: 1.18;
}

.pld-emotion-grid p {
  margin: 22px 0 0;
  color: #40506a;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.8;
}

.pld-case-section {
  width: min(1430px, 100%);
  margin: clamp(58px, 7vw, 104px) auto 0;
}

.pld-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.pld-section-heading p {
  margin: 0;
  color: #6d7a8d;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .22em;
}

.pld-section-heading h2 {
  margin: 0;
  color: #080d19;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
}

.pld-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.pld-case-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8dde5;
  border-radius: 10px;
}

.pld-case-visual {
  position: relative;
  overflow: hidden;
}

.pld-case-visual img {
  width: 100%;
  height: clamp(240px, 20vw, 340px);
  display: block;
  object-fit: cover;
}

.pld-case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 25, .08), rgba(8, 13, 25, .52));
  pointer-events: none;
}

.pld-case-visual span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 9px 13px;
  color: #fff;
  background: rgba(8, 13, 25, .68);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}

.pld-case-grid article > div:not(.pld-case-visual) {
  padding: clamp(24px, 3vw, 38px);
}

.pld-case-grid article > div:not(.pld-case-visual) > span {
  color: #6d7a8d;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}

.pld-case-grid h3 {
  margin: 18px 0 0;
  color: #080d19;
  font-size: clamp(25px, 2.1vw, 36px);
  font-weight: 900;
  line-height: 1.18;
}

.pld-case-grid p {
  margin: 18px 0 0;
  color: #40506a;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.78;
}

.pld-case-grid .pld-case-chain {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 800;
  line-height: 1.3;
}

.pld-case-chain b {
  font: inherit;
}

.pld-case-chain i {
  width: 20px;
  height: 1px;
  display: inline-block;
  background: #cbd5e1;
}

@media (max-width: 1100px) {
  .pld-hero,
  .pld-overview,
  .pld-spec-section {
    grid-template-columns: 1fr;
  }

  .pld-hero-media,
  .pld-spec-image {
    min-height: 420px;
  }

  .pld-feature-grid,
  .pld-related > div,
  .pld-emotion-grid,
  .pld-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .pld-main {
    padding: 24px 14px 72px;
  }

  .pld-hero-media,
  .pld-spec-image {
    min-height: 300px;
  }

  .pld-hero-copy,
  .pld-spec-copy {
    padding: 30px 22px;
  }

  .pld-hero-copy h1,
  .pld-overview h2,
  .pld-spec-copy h2,
  .pld-related h2 {
    font-size: 38px;
  }

  .pld-feature-grid,
  .pld-related > div,
  .pld-emotion-grid,
  .pld-case-grid {
    grid-template-columns: 1fr;
  }

  .pld-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pld-spec-copy dl div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .pld-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .pld-meta span {
    padding: 0;
    border-left: 0;
  }
}

/* Keep product overview copy centered in the middle reading area */
.product-series-detail .pld-overview {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.product-series-detail .pld-overview > p,
.product-series-detail .pld-overview h2 {
  width: min(1120px, calc(100vw - 96px)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.product-series-detail .pld-overview div {
  width: min(1120px, calc(100vw - 96px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.product-series-detail .pld-overview div p {
  width: 100% !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

@media (max-width: 680px) {
  .product-series-detail .pld-overview > p,
  .product-series-detail .pld-overview h2,
  .product-series-detail .pld-overview div {
    width: calc(100vw - 36px) !important;
  }
}

/* Match product pages to the homepage-style navigation layout */
.product-lycra-series .plc-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 120 !important;
  height: 76px !important;
  min-height: 0 !important;
  padding: 0 clamp(20px, 4vw, 56px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  color: #fff !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0)) !important;
  border: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.product-lycra-series .plc-brand {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: .34em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.product-lycra-series .plc-brand img {
  display: none !important;
}

.product-lycra-series .plc-header-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}

.product-lycra-series .plc-header-nav::-webkit-scrollbar {
  display: none !important;
}

.product-lycra-series .plc-header-nav a {
  flex: 0 0 auto !important;
  padding: 8px 14px !important;
  color: rgba(255, 255, 255, .72) !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  transition: color .25s ease, background .25s ease !important;
}

.product-lycra-series .plc-header-nav a:hover,
.product-lycra-series .plc-header-nav a.is-active {
  color: #111827 !important;
  background: rgba(255, 255, 255, .94) !important;
}

.product-lycra-series .plc-series-tabs {
  margin-top: 76px !important;
  top: 76px !important;
}

@media (max-width: 900px) {
  .product-lycra-series .plc-header {
    height: 66px !important;
    padding: 0 18px !important;
  }

  .product-lycra-series .plc-brand {
    font-size: 18px !important;
    letter-spacing: .3em !important;
  }

  .product-lycra-series .plc-header-nav {
    max-width: calc(100vw - 150px) !important;
  }

  .product-lycra-series .plc-header-nav a {
    padding: 7px 10px !important;
    font-size: 12px !important;
  }

  .product-lycra-series .plc-series-tabs {
    margin-top: 66px !important;
    top: 66px !important;
  }
}

@media (max-width: 560px) {
  .product-lycra-series .plc-header {
    gap: 12px !important;
  }

  .product-lycra-series .plc-brand {
    font-size: 16px !important;
    letter-spacing: .24em !important;
  }

  .product-lycra-series .plc-header-nav {
    max-width: calc(100vw - 118px) !important;
  }
}

/* Final product header lock: keep product pages aligned with the secondary-page header */
body .product-detail-layout.product-lycra-series > .product-page-shared-header,
body .product-detail-layout.product-lycra-series > .plc-header.product-page-shared-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 120 !important;
  width: 100% !important;
  height: 76px !important;
  min-height: 0 !important;
  padding: 0 clamp(22px, 4vw, 56px) 0 clamp(84px, 7vw, 118px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  color: #fff !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, .74), rgba(0, 0, 0, 0)) !important;
  border: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-brand {
  margin-left: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  color: #fff !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: .34em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-brand img {
  display: none !important;
}

body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-header-nav {
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 8px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
}

body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-header-nav::-webkit-scrollbar {
  display: none !important;
}

body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-header-nav a {
  flex: 0 0 auto !important;
  padding: 8px 15px !important;
  color: rgba(255, 255, 255, .74) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-header-nav a:hover,
body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-header-nav a.is-active {
  color: #111827 !important;
  background: rgba(255, 255, 255, .95) !important;
}

body .product-detail-layout.product-lycra-series > .product-page-shared-header + .plc-series-tabs {
  margin-top: 76px !important;
  top: 76px !important;
}

@media (max-width: 900px) {
  body .product-detail-layout.product-lycra-series > .product-page-shared-header,
  body .product-detail-layout.product-lycra-series > .plc-header.product-page-shared-header {
    height: 66px !important;
    padding: 0 18px 0 76px !important;
    gap: 14px !important;
  }

  body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-brand {
    font-size: 18px !important;
    letter-spacing: .3em !important;
  }

  body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-header-nav {
    max-width: calc(100vw - 172px) !important;
  }

  body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-header-nav a {
    padding: 7px 10px !important;
    font-size: 12px !important;
  }

  body .product-detail-layout.product-lycra-series > .product-page-shared-header + .plc-series-tabs {
    margin-top: 66px !important;
    top: 66px !important;
  }
}

@media (max-width: 560px) {
  body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-brand {
    font-size: 16px !important;
    letter-spacing: .24em !important;
  }

  body .product-detail-layout.product-lycra-series > .product-page-shared-header .plc-header-nav {
    max-width: calc(100vw - 142px) !important;
  }
}

body .product-detail-layout.product-lycra-series > .plc-product-banner {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  height: clamp(220px, 33vw, 440px) !important;
  margin: 0 !important;
  overflow: hidden !important;
  background: #07111f !important;
}

body .product-detail-layout.product-lycra-series > .plc-product-banner img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}

body .product-detail-layout.product-lycra-series > .plc-product-banner + .plc-series-tabs {
  position: relative !important;
  top: auto !important;
  z-index: 2 !important;
  margin-top: 0 !important;
}

@media (max-width: 760px) {
  body .product-detail-layout.product-lycra-series > .plc-product-banner {
    height: 240px !important;
  }
}
