/*
 * Reusable product-detail components
 * Use these classes on every product page. Page-specific classes should
 * control only unique section layout, not shared typography or controls.
 */

.wgm-product-section {
  --wgm-product-navy: #0f3d66;
  --wgm-product-gold: #c8a24d;
  --wgm-product-gray: #666a73;
  --wgm-product-white: #ffffff;
}

.wgm-product-section[id] {
  scroll-margin-top: 88px;
}

.wgm-product-copy {
  max-width: 680px;
}

.wgm-product-detail-page .wgm-product-copy .wgm-product-copy__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  margin: 0 0 17px;
  padding: 0 14px 0 11px;
  color: var(--wgm-product-white);
  background: var(--wgm-product-gold);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  box-shadow: 0 9px 22px rgba(15, 61, 102, 0.16);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wgm-product-detail-page .wgm-product-copy .wgm-product-copy__kicker::before {
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-right: 9px;
  content: "";
  background: var(--wgm-product-white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.wgm-product-detail-page .wgm-product-copy .wgm-product-copy__kicker::after {
  display: none;
  content: none;
}

.wgm-product-detail-page .wgm-product-copy .wgm-product-copy__title {
  margin: 0;
  color: var(--wgm-product-navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(34px, 3.3vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.wgm-product-detail-page .wgm-product-copy .wgm-product-copy__subtitle {
  margin: 17px 0 0;
  color: var(--wgm-product-navy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.wgm-product-detail-page .wgm-product-copy .wgm-product-copy__description {
  margin: 19px 0 0;
  color: var(--wgm-product-gray);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
}

.wgm-product-detail-page .wgm-product-copy.wgm-product-copy--inverse .wgm-product-copy__title,
.wgm-product-detail-page .wgm-product-copy.wgm-product-copy--inverse .wgm-product-copy__subtitle {
  color: var(--wgm-product-white);
}

.wgm-product-detail-page .wgm-product-copy.wgm-product-copy--inverse .wgm-product-copy__description {
  color: #c9d4dc;
}

.wgm-product-detail-page .wgm-product-copy .wgm-product-copy__actions {
  display: flex;
  margin-top: 27px;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.wgm-product-detail-page .wgm-product-copy__actions .wgm-product-action {
  font-family: "Manrope", Arial, sans-serif;
  text-decoration: none;
}

.wgm-product-detail-page .wgm-product-copy__actions .wgm-product-action--primary {
  display: inline-flex;
  min-height: 54px;
  padding: 0 10px 0 23px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--wgm-product-gold);
  color: var(--wgm-product-white);
  border: 1px solid var(--wgm-product-gold);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.wgm-product-detail-page .wgm-product-copy__actions .wgm-product-action__arrow {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--wgm-product-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}

.wgm-product-detail-page .wgm-product-copy__actions .wgm-product-action--primary:hover,
.wgm-product-detail-page .wgm-product-copy__actions .wgm-product-action--primary:focus-visible {
  background: var(--wgm-product-navy);
  color: var(--wgm-product-white);
  border-color: var(--wgm-product-navy);
}

.wgm-product-detail-page .wgm-product-copy__actions .wgm-product-action--secondary {
  display: inline-flex;
  min-height: 30px;
  padding: 0;
  align-items: center;
  color: var(--wgm-product-navy);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: var(--wgm-product-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.wgm-product-detail-page .wgm-product-copy__actions .wgm-product-action--secondary:hover,
.wgm-product-detail-page .wgm-product-copy__actions .wgm-product-action--secondary:focus-visible {
  color: var(--wgm-product-gold);
}

.wgm-product-detail-page .wgm-product-copy__actions .wgm-product-action--secondary-inverse {
  color: var(--wgm-product-white);
}

.wgm-product-media {
  position: relative;
}

.wgm-product-media img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}

/* Reusable major section heading */
.wgm-section-heading {
  --wgm-section-heading-color: #0f3d66;
  --wgm-section-heading-copy: #666a73;
  --wgm-section-heading-accent: #c8a24d;
}

.wgm-product-detail-page .wgm-section-heading .wgm-section-heading__eyebrow {
  display: block;
  margin: 0 0 13px;
  color: var(--wgm-section-heading-accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wgm-product-detail-page .wgm-section-heading .wgm-section-heading__eyebrow::before,
.wgm-product-detail-page .wgm-section-heading .wgm-section-heading__eyebrow::after {
  display: none;
  content: none;
}

.wgm-product-detail-page .wgm-section-heading .wgm-section-heading__title {
  max-width: 820px;
  margin: 0;
  color: var(--wgm-section-heading-color);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(34px, 3.3vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.wgm-product-detail-page .wgm-section-heading .wgm-section-heading__description {
  margin: 0;
  color: var(--wgm-section-heading-copy);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.wgm-product-detail-page .wgm-section-heading.wgm-section-heading--inverse {
  --wgm-section-heading-color: #ffffff;
  --wgm-section-heading-copy: #c9d4dc;
}

.wgm-product-detail-page .wgm-product-media .wgm-product-media__index {
  display: inline-flex;
  width: 52px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: var(--wgm-product-gold);
  color: var(--wgm-product-white);
  border-radius: 4px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

@media (max-width: 575.98px) {
  .wgm-product-detail-page .wgm-product-copy .wgm-product-copy__title {
    font-size: 30px;
  }

  .wgm-product-detail-page .wgm-product-copy .wgm-product-copy__subtitle {
    margin-top: 14px;
    font-size: 16px;
  }

  .wgm-product-detail-page .wgm-product-copy .wgm-product-copy__description {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.7;
  }

  .wgm-product-detail-page .wgm-product-copy .wgm-product-copy__actions {
    margin-top: 23px;
    align-items: flex-start;
    flex-direction: column;
  }

  .wgm-product-detail-page .wgm-section-heading .wgm-section-heading__title {
    font-size: 30px;
  }

  .wgm-product-detail-page .wgm-section-heading .wgm-section-heading__description {
    font-size: 14px;
    line-height: 1.7;
  }
}
