.watch-page {
  --watch-ink: #0d201b;
  --watch-muted: #5f716c;
  --watch-line: #d4e3df;
  --watch-teal: #007f73;
  --watch-soft: #edf8f5;
}

.watch-page main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.watch-poster-hero {
  padding: 42px 0 64px;
}

.watch-poster-frame {
  display: block;
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  background: #090b0c;
  box-shadow: 0 24px 56px rgba(13, 32, 27, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.watch-poster-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 64px rgba(13, 32, 27, 0.22);
}

.watch-poster-frame:focus-visible {
  outline: 3px solid var(--watch-teal);
  outline-offset: 4px;
}

.watch-poster-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.watch-poster-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0 0;
}

.watch-poster-strip h1 {
  max-width: 720px;
  margin: 7px 0 0;
  color: var(--watch-ink);
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.watch-poster-strip .watch-actions {
  flex: 0 0 auto;
  margin-top: 0;
}

.watch-hero,
.watch-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 56px;
  align-items: center;
  min-height: 600px;
  padding: 72px 0 64px;
}

.watch-hero h1,
.watch-detail-hero h1 {
  max-width: 780px;
  margin: 12px 0 22px;
  color: var(--watch-ink);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.watch-hero-copy,
.watch-detail-copy {
  max-width: 660px;
  color: var(--watch-muted);
  font-size: 20px;
  line-height: 1.55;
}

.watch-hero-visual,
.watch-detail-visual {
  min-height: 510px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #f5faf8;
}

.watch-hero-visual {
  min-height: 0;
  aspect-ratio: 3 / 2;
  display: block;
  padding: 0;
}

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

.watch-detail-visual img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: contain;
}

.watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.watch-primary,
.watch-secondary {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--watch-teal);
  border-radius: 7px;
  font-weight: 750;
  text-decoration: none;
}

.watch-primary {
  color: #fff;
  background: var(--watch-teal);
}

.watch-secondary {
  color: var(--watch-ink);
  border-color: var(--watch-line);
  background: #fff;
}

.watch-section {
  padding: 70px 0;
  border-top: 1px solid var(--watch-line);
}

.watch-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.watch-section h2 {
  max-width: 780px;
  margin: 8px 0 0;
  color: var(--watch-ink);
  font-size: clamp(36px, 4.6vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.watch-section-heading > p:last-child {
  color: var(--watch-muted);
  font-size: 18px;
  line-height: 1.55;
}

/* Keep the specification introduction readable at every product-page width. */
.watch-spec-section .watch-section-heading {
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  max-width: 860px;
}

.watch-spec-section .watch-section-heading > * {
  min-width: 0;
}

.watch-spec-section .watch-section-heading h2 {
  max-width: 680px;
  font-size: clamp(34px, 3.4vw, 50px);
}

.watch-spec-section .watch-section-heading > p:last-child {
  max-width: 720px;
  margin: 0;
}

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

.watch-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.1fr);
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
}

.watch-card:first-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1.2fr);
}

.watch-card-media {
  min-height: 300px;
  background: #f2f7f5;
}

.watch-card-media-link {
  display: block;
  height: 100%;
  color: inherit;
}

.watch-card-media-link:focus-visible {
  outline: 3px solid #008f82;
  outline-offset: -3px;
}

.watch-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.watch-card:not(:first-child) {
  grid-template-columns: 1fr;
}

.watch-card:not(:first-child) .watch-card-media {
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: 14px;
}

.watch-card:not(:first-child) .watch-card-media img {
  border-radius: 5px;
}

.watch-card:not(:first-child) .watch-card-media.product-card-media {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background: #fff;
}

.watch-card:not(:first-child) .watch-card-media.product-card-media img {
  position: absolute;
  inset: 10px;
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: contain;
}

.watch-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.watch-card h3 {
  margin: 8px 0 12px;
  color: var(--watch-ink);
  font-size: 30px;
  line-height: 1.06;
}

.watch-card p {
  color: var(--watch-muted);
  line-height: 1.55;
}

.watch-tags,
.watch-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.watch-tags {
  margin: 18px 0 24px;
}

.watch-tag,
.watch-color,
.watch-status {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid var(--watch-line);
  border-radius: 999px;
  color: var(--watch-ink);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.watch-status {
  color: var(--watch-teal);
  background: var(--watch-soft);
}

.watch-status--sale {
  gap: 6px;
  flex-wrap: wrap;
}

.watch-status--sale > span {
  color: var(--watch-muted);
  font-size: 12px;
  font-weight: 700;
}

.watch-status--sale strong {
  color: var(--watch-teal);
  font-size: 14px;
  font-weight: 850;
}

.watch-status--sale em {
  color: var(--watch-teal);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.watch-dot {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1px solid rgba(13, 32, 27, 0.16);
  border-radius: 50%;
  background: var(--dot-color, #111);
}

.watch-card .watch-actions {
  margin-top: auto;
}

.watch-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.watch-feature {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--watch-line);
  border-radius: 7px;
  background: #fff;
}

.watch-feature strong {
  display: block;
  margin-bottom: 8px;
  color: var(--watch-ink);
  font-size: 22px;
  line-height: 1.12;
}

.watch-feature span {
  color: var(--watch-muted);
  line-height: 1.45;
}

.watch-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
}

.watch-specs > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  min-width: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--watch-line);
}

.watch-specs dt {
  color: var(--watch-muted);
}

.watch-specs dd {
  margin: 0;
  color: var(--watch-ink);
  font-weight: 720;
  overflow-wrap: anywhere;
}

.watch-comparison-wrap {
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 42, 38, 0.05);
}

.watch-comparison {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #fff;
}

.watch-compare-model-col {
  width: 18%;
}
.watch-compare-use-col {
  width: 24%;
}
.watch-compare-screen-col {
  width: 20%;
}
.watch-compare-capabilities-col {
  width: 25%;
}
.watch-compare-price-col {
  width: 13%;
}

.watch-comparison th,
.watch-comparison td {
  padding: 20px 18px;
  border-bottom: 1px solid var(--watch-line);
  text-align: left;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.watch-comparison thead th {
  color: var(--watch-ink);
  background: #f2f8f6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.watch-comparison tbody tr {
  transition: background-color 160ms ease;
}

.watch-comparison tbody tr:hover {
  background: #f8fcfb;
}

.watch-comparison tbody tr:last-child th,
.watch-comparison tbody tr:last-child td {
  border-bottom: 0;
}

.watch-compare-model {
  background: transparent;
}

.watch-compare-model a {
  display: block;
  color: var(--watch-ink);
  font-size: 1.05rem;
  font-weight: 820;
  line-height: 1.2;
  text-decoration: none;
}

.watch-compare-model a:hover {
  color: var(--watch-accent);
}

.watch-compare-model span,
.watch-comparison td > span {
  display: block;
  margin-top: 5px;
  color: var(--watch-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.watch-compare-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.watch-compare-tags span {
  padding: 5px 8px;
  border: 1px solid #d8e7e3;
  border-radius: 999px;
  color: #28544d;
  background: #f4faf8;
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1.2;
  white-space: nowrap;
}

.watch-compare-price strong {
  display: block;
  color: var(--watch-ink);
  font-size: 1.16rem;
  line-height: 1.15;
}

.watch-compare-price a {
  display: inline-flex;
  gap: 5px;
  margin-top: 8px;
  color: var(--watch-accent);
  font-size: 0.83rem;
  font-weight: 800;
  text-decoration: none;
}

.watch-compare-price a:hover {
  text-decoration: underline;
}

.watch-gallery {
  columns: 2;
  column-gap: 18px;
}

.watch-gallery figure {
  margin: 0 0 18px;
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 7px;
  background: #f4f7f6;
}

.watch-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.watch-faq {
  display: grid;
  gap: 10px;
}

.watch-faq details {
  padding: 20px 22px;
  border: 1px solid var(--watch-line);
  border-radius: 7px;
  background: #fff;
}

.watch-faq summary {
  color: var(--watch-ink);
  font-size: 18px;
  font-weight: 760;
  cursor: pointer;
}

.watch-faq p {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--watch-muted);
  line-height: 1.55;
}

.watch-app-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin: 20px 0 76px;
  padding: 36px;
  border-radius: 8px;
  color: #fff;
  background: #10201d;
}

.watch-app-band h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 34px;
}

.watch-app-band p {
  margin: 0;
  color: #c7d7d2;
}

.watch-official-guide {
  padding-top: 40px;
}

.watch-official-guide figure {
  width: fit-content;
  max-width: 720px;
  margin: 36px auto 0;
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 45, 38, 0.08);
}

.watch-official-guide img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .watch-poster-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .watch-hero,
  .watch-detail-hero,
  .watch-section-heading {
    grid-template-columns: 1fr;
  }

  .watch-hero,
  .watch-detail-hero {
    gap: 28px;
    min-height: auto;
    padding-top: 48px;
  }

  .watch-hero-visual,
  .watch-detail-visual {
    min-height: 420px;
  }

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

  .watch-card:first-child {
    grid-column: auto;
  }

  .watch-card,
  .watch-card:first-child {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .watch-page main {
    width: min(100% - 24px, 1180px);
  }

  .watch-poster-hero {
    padding: 24px 0 44px;
  }

  .watch-poster-frame {
    margin-inline: -12px;
    width: calc(100% + 24px);
    box-shadow: 0 16px 34px rgba(13, 32, 27, 0.14);
  }

  .watch-poster-strip {
    gap: 18px;
    padding-top: 20px;
  }

  .watch-poster-strip h1 {
    font-size: 32px;
  }

  .watch-poster-strip .watch-actions,
  .watch-poster-strip .watch-primary,
  .watch-poster-strip .watch-secondary {
    width: 100%;
  }

  .watch-hero,
  .watch-detail-hero {
    padding: 34px 0 44px;
  }

  .watch-hero h1,
  .watch-detail-hero h1 {
    font-size: 46px;
  }

  .watch-hero-copy,
  .watch-detail-copy {
    font-size: 17px;
  }

  .watch-hero-visual {
    min-height: 0;
  }

  .watch-detail-visual,
  .watch-detail-visual img {
    min-height: 330px;
  }

  .watch-section {
    padding: 48px 0;
  }

  .watch-section h2 {
    font-size: 38px;
  }

  .watch-grid,
  .watch-feature-grid,
  .watch-specs {
    grid-template-columns: 1fr;
  }

  .watch-gallery {
    columns: 1;
  }

  .watch-card-body {
    padding: 24px;
  }

  .watch-specs > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .watch-app-band {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
    padding: 28px 22px;
  }
}

/* Conversion-focused product detail template. */
.watch-product-page {
  padding-bottom: 0;
}

.watch-breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 28px 0 4px;
  color: var(--watch-muted);
  font-size: 14px;
}

.watch-breadcrumb a {
  color: var(--watch-teal);
  text-decoration: none;
}

.watch-commerce-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: 52px;
  align-items: start;
  padding: 34px 0 72px;
}

.watch-commerce-media {
  min-width: 0;
}

.watch-commerce-stage {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #f4f8f6;
}

.watch-commerce-stage img {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.watch-commerce-stage img.is-changing {
  opacity: 0.35;
}

.watch-commerce-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.watch-commerce-thumbnails button {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 5px;
  border: 1px solid var(--watch-line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.watch-commerce-thumbnails button.is-active {
  border-color: var(--watch-teal);
  box-shadow: 0 0 0 2px rgba(0, 127, 115, 0.12);
}

.watch-commerce-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.watch-commerce-purchase {
  position: sticky;
  top: 108px;
  padding-top: 12px;
}

.watch-commerce-purchase h1 {
  margin: 10px 0 16px;
  color: var(--watch-ink);
  font-size: clamp(54px, 5.6vw, 78px);
  line-height: 0.96;
}

.watch-commerce-summary {
  margin: 0;
  color: var(--watch-muted);
  font-size: 19px;
  line-height: 1.55;
}

.watch-commerce-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 4px;
}

.watch-commerce-rating span {
  padding: 7px 10px;
  border: 1px solid var(--watch-line);
  border-radius: 999px;
  color: var(--watch-ink);
  background: #fff;
  font-size: 13px;
  font-weight: 720;
}

.watch-commerce-price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 26px 0 20px;
  color: var(--watch-ink);
}

.watch-commerce-price strong {
  font-size: 52px;
  line-height: 1;
}

.watch-commerce-price span {
  color: var(--watch-muted);
  font-weight: 760;
}

.watch-commerce-price--sale {
  column-gap: 10px;
  row-gap: 8px;
  flex-wrap: wrap;
}

.watch-commerce-price .watch-guide-price {
  color: var(--watch-muted);
  font-size: 13px;
  font-weight: 760;
}

.watch-guide-price del,
.watch-compare-guide del,
.watch-mobile-guide-price del {
  text-decoration-thickness: 1.5px;
}

.watch-commerce-price .watch-price-saving {
  padding: 4px 8px;
  border: 1px solid #bae8dc;
  border-radius: 999px;
  background: #effaf6;
  color: var(--watch-teal);
  font-size: 12px;
  font-weight: 800;
}

.watch-compare-guide {
  display: block;
  color: var(--watch-muted);
  font-size: 12px;
  font-weight: 720;
}

.watch-compare-save {
  display: block;
  margin-top: 2px;
  color: var(--watch-teal);
  font-size: 12px;
  font-weight: 800;
}

.watch-color-picker {
  margin: 0;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--watch-line);
}

.watch-color-picker legend {
  margin-bottom: 11px;
  color: var(--watch-muted);
}

.watch-color-picker > div {
  display: flex;
  gap: 10px;
}

.watch-color-picker button {
  display: inline-flex;
  min-width: 108px;
  min-height: 46px;
  gap: 9px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--watch-line);
  border-radius: 6px;
  color: var(--watch-ink);
  background: #fff;
  font-weight: 760;
  cursor: pointer;
}

.watch-color-picker button.is-active {
  border-color: var(--watch-teal);
  box-shadow: 0 0 0 2px rgba(0, 127, 115, 0.12);
}

.watch-color-picker i {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(13, 32, 27, 0.18);
  border-radius: 50%;
  background: var(--swatch);
}

.watch-commerce-actions {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
  margin-top: 24px;
}

.watch-buy-button,
.watch-mobile-buybar button {
  min-height: 56px;
  border: 1px solid #006b61;
  border-radius: 7px;
  color: #fff;
  background: #006b61;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.watch-checkout-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: #7a5a14;
  font-size: 13px;
  line-height: 1.45;
}

.watch-purchase-assurances {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.watch-purchase-assurances li {
  padding-top: 12px;
  border-top: 1px solid var(--watch-line);
  color: var(--watch-muted);
  font-size: 12px;
  line-height: 1.35;
}

.watch-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--watch-line);
  border-bottom: 1px solid var(--watch-line);
}

.watch-proof-strip > div {
  min-height: 112px;
  padding: 26px;
  border-right: 1px solid var(--watch-line);
}

.watch-proof-strip > div:last-child {
  border-right: 0;
}

.watch-proof-strip strong,
.watch-proof-strip span {
  display: block;
}

.watch-proof-strip strong {
  color: var(--watch-ink);
  font-size: 23px;
}

.watch-proof-strip span {
  margin-top: 5px;
  color: var(--watch-muted);
}

.watch-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: center;
  padding: 86px 0;
}

.watch-story h2 {
  margin: 9px 0 18px;
  color: var(--watch-ink);
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.03;
}

.watch-story-copy > p:not(.eyebrow) {
  color: var(--watch-muted);
  font-size: 18px;
  line-height: 1.55;
}

.watch-story-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.watch-story-points div {
  padding-top: 17px;
  border-top: 1px solid var(--watch-line);
}

.watch-story-points strong,
.watch-story-points span {
  display: block;
}

.watch-story-points strong {
  color: var(--watch-ink);
  font-size: 18px;
}

.watch-story-points span {
  margin-top: 5px;
  color: var(--watch-muted);
  line-height: 1.48;
}

.watch-story-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4f2;
}

.watch-story-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch-story-visual-wide {
  aspect-ratio: 3 / 2;
}

.watch-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.watch-benefit-grid article {
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
}

.watch-benefit-grid article > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
}

.watch-benefit-grid article:nth-child(-n + 2) > img {
  background: #090a09;
}

.watch-benefit-grid article:nth-child(3) > img {
  background: #edf0dc;
}

.watch-benefit-grid article > div {
  padding: 26px;
}

.watch-benefit-grid article span {
  color: var(--watch-teal);
  font-size: 13px;
  font-weight: 800;
}

.watch-benefit-grid h3 {
  margin: 10px 0 10px;
  color: var(--watch-ink);
  font-size: 25px;
  line-height: 1.08;
}

.watch-benefit-grid p {
  margin: 0;
  color: var(--watch-muted);
  line-height: 1.52;
}

.watch-compare-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin: 18px 0 80px;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background: #10201d;
}

.watch-compare-band h2 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 40px;
}

.watch-compare-band p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #c7d7d2;
  line-height: 1.55;
}

.watch-mobile-buybar {
  display: none;
}

/* Keep every product detail page on the same P125M decision path. */
.watch-product-page.product-detail-page main[data-commerce-product] {
  display: flex;
  flex-direction: column;
}

.watch-product-page.product-detail-page .watch-product-nav {
  order: 1;
}
.watch-product-page.product-detail-page .watch-breadcrumb {
  order: 2;
}
.watch-product-page.product-detail-page .watch-commerce-hero {
  order: 3;
}
.watch-product-page.product-detail-page .watch-proof-strip {
  order: 4;
}
.watch-product-page.product-detail-page .watch-why-buy {
  order: 5;
}
.watch-product-page.product-detail-page .watch-spec-section {
  order: 6;
}
.watch-product-page.product-detail-page .c31-story-gallery,
.watch-product-page.product-detail-page .c31-official-guide,
.watch-product-page.product-detail-page .c31-package-section,
.watch-product-page.product-detail-page .watch-official-guide {
  order: 7;
}
.watch-product-page.product-detail-page [id$="-faq"] {
  order: 8;
}
.watch-product-page.product-detail-page .watch-app-band,
.watch-product-page.product-detail-page .watch-compare-band {
  order: 9;
}

.watch-product-page.product-detail-page .watch-commerce-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
}

.watch-product-page.product-detail-page .watch-commerce-purchase {
  order: 1;
}
.watch-product-page.product-detail-page .watch-commerce-media {
  order: 2;
}
.watch-product-page.product-detail-page .watch-commerce-stage img {
  opacity: 1;
}

.watch-product-page.product-detail-page .watch-why-buy {
  padding: 76px 0;
  border-top: 1px solid var(--watch-line);
}

.watch-why-buy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.watch-why-buy-grid article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
}

.watch-why-buy-grid strong {
  display: block;
  color: var(--watch-ink);
  font-size: 20px;
  line-height: 1.2;
}

.watch-why-buy-grid p {
  margin: 12px 0 0;
  color: var(--watch-muted);
  line-height: 1.55;
}

.watch-product-page.product-detail-page
  .product-cta-section
  .watch-commerce-actions {
  width: min(100%, 430px);
  margin: 0;
}

@media (max-width: 980px) {
  .watch-product-page.product-detail-page .watch-commerce-hero {
    grid-template-columns: 1fr;
  }
  .watch-product-page.product-detail-page .watch-commerce-purchase {
    order: 1;
  }
  .watch-product-page.product-detail-page .watch-commerce-media {
    order: 2;
  }
  .watch-why-buy-grid {
    grid-template-columns: 1fr;
  }
  .watch-why-buy-grid article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .watch-product-page.product-detail-page .watch-official-guide figure {
    width: 100%;
    max-width: 100%;
  }

  .watch-product-page.product-detail-page .watch-official-guide img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .watch-product-page.product-detail-page .watch-section-heading {
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .watch-commerce-hero,
  .watch-story {
    grid-template-columns: 1fr;
  }

  .watch-commerce-purchase {
    position: static;
  }

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

@media (max-width: 640px) {
  .watch-product-page {
    padding-bottom: 76px;
  }

  .watch-breadcrumb {
    padding-top: 18px;
  }

  .watch-commerce-hero {
    gap: 24px;
    padding: 20px 0 46px;
  }

  .watch-commerce-stage img {
    padding: 8px;
  }

  .watch-commerce-thumbnails {
    gap: 7px;
  }

  .watch-commerce-purchase {
    padding-top: 0;
  }

  .watch-commerce-purchase h1 {
    font-size: 52px;
  }

  .watch-commerce-summary {
    font-size: 17px;
  }

  .watch-commerce-price strong {
    font-size: 46px;
  }

  .watch-commerce-actions {
    grid-template-columns: 1fr;
  }

  .watch-purchase-assurances {
    grid-template-columns: 1fr;
  }

  .watch-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .watch-proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .watch-proof-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--watch-line);
  }

  .watch-proof-strip > div {
    min-height: 96px;
    padding: 20px 14px;
  }

  .watch-proof-strip strong {
    font-size: 19px;
  }

  .watch-proof-strip span {
    font-size: 13px;
  }

  .watch-story {
    gap: 30px;
    padding: 58px 0;
  }

  .watch-story h2 {
    font-size: 40px;
  }

  .watch-story-visual {
    grid-row: 1;
  }

  .watch-benefit-grid {
    grid-template-columns: 1fr;
  }

  .watch-benefit-grid article > img {
    aspect-ratio: 4 / 5;
  }

  .watch-compare-band {
    grid-template-columns: 1fr;
    margin-bottom: 44px;
    padding: 30px 22px;
  }

  .watch-compare-band h2 {
    font-size: 34px;
  }

  .watch-mobile-buybar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(76px, 0.8fr) minmax(94px, 0.8fr) minmax(
        110px,
        1fr
      );
    gap: 8px;
    align-items: center;
    min-height: 68px;
    padding: 8px 12px;
    border-top: 1px solid var(--watch-line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px rgba(13, 32, 27, 0.1);
    backdrop-filter: blur(12px);
  }

  .watch-mobile-buybar div strong,
  .watch-mobile-buybar div span {
    display: block;
  }

  .watch-mobile-buybar div strong {
    color: var(--watch-ink);
    font-size: 22px;
  }

  .watch-mobile-buybar div span {
    color: var(--watch-muted);
    font-size: 11px;
  }

  .watch-mobile-buybar div .watch-mobile-guide-price {
    color: var(--watch-muted);
    font-size: 10px;
    font-weight: 760;
    line-height: 1.2;
  }

  .watch-mobile-buybar select,
  .watch-mobile-buybar button {
    width: 100%;
    min-height: 46px;
  }

  .watch-mobile-buybar select {
    padding: 0 9px;
    border: 1px solid var(--watch-line);
    border-radius: 6px;
    color: var(--watch-ink);
    background: #fff;
    font: inherit;
    font-weight: 700;
  }
}

/* C31 conversion-first product detail. */
.watch-product-nav {
  position: sticky;
  z-index: 30;
  top: 72px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--watch-line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(13, 32, 27, 0.07);
  backdrop-filter: blur(14px);
}

.watch-product-nav a {
  padding: 9px 13px;
  color: var(--watch-muted);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.watch-product-nav a:hover,
.watch-product-nav a:focus-visible {
  color: var(--watch-ink);
  background: var(--watch-soft);
}

.c31-commerce-stage {
  background: #fff;
}

.c31-commerce-stage img {
  min-width: 0;
  min-height: 0;
  padding: 14px;
}

.c31-commerce-hero .watch-color-picker > div {
  flex-wrap: wrap;
}

.c31-commerce-hero .watch-color-picker button {
  min-width: 98px;
}

.c31-story-visual {
  aspect-ratio: 2 / 1;
  background: #fff;
}

.c31-story-visual img {
  object-fit: cover;
}

.c31-benefit-grid article > img {
  aspect-ratio: 1 / 1;
  padding: 0;
  background: #0b0d0d;
  object-fit: contain;
}

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

.c31-evidence-grid article > img {
  height: auto;
  background: #11181a;
}

.c31-story-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.c31-story-gallery-grid figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
}

.c31-story-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  background: #101617;
}

.c31-story-gallery-grid figure.is-landscape img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  background: #101617;
}

.c31-story-gallery-grid figure.is-landscape {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.65fr);
  background: #132525;
}

.c31-story-gallery-grid figure.is-landscape figcaption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 48px);
  background: #132525;
}

.c31-story-gallery-grid figure.is-landscape figcaption strong {
  color: #fff;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.12;
}

.c31-story-gallery-grid figure.is-landscape figcaption span {
  color: #c7ded8;
  font-size: 16px;
}

.c31-story-gallery-grid figcaption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 18px 20px 20px;
}

.c31-story-gallery-grid figcaption strong {
  display: block;
  width: 100%;
  color: var(--watch-ink);
  font-size: 18px;
}

.c31-story-gallery-grid figcaption span {
  display: block;
  width: 100%;
  color: var(--watch-muted);
  font-size: 14px;
  line-height: 1.5;
}

.c31-guide-groups {
  display: grid;
  gap: 56px;
}

.c31-guide-group {
  display: grid;
  gap: 20px;
}

.c31-guide-group > header {
  display: grid;
  gap: 8px;
  max-width: 760px;
}

.c31-guide-group > header h3 {
  margin: 0;
  color: var(--watch-ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
}

.c31-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.c31-guide-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
}

.c31-guide-grid figure.is-wide,
.c31-guide-grid figure.is-tall {
  grid-column: 1 / -1;
}

.c31-guide-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.c31-guide-grid figure.is-tall img {
  max-width: 720px;
  margin-inline: auto;
}

.c31-guide-copy {
  display: grid;
  min-height: 100%;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid #172c2b;
  border-radius: 8px;
  background: #132525;
  color: #d9ebe6;
}

.c31-guide-copy .eyebrow,
.c31-guide-copy small {
  color: #78d8ca;
}

.c31-guide-copy h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.c31-guide-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.c31-guide-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c31-guide-copy li {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
}

.c31-guide-copy li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #36d2be;
  content: "";
}

.c31-guide-copy small {
  font-size: 13px;
  line-height: 1.45;
}

.c31-guide-daily .c31-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.c31-design-gallery figure {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
}

.c31-design-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 20px;
  object-fit: contain;
}

.c31-design-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(212, 227, 223, 0.9);
  border-radius: 6px;
  color: var(--watch-ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 740;
  backdrop-filter: blur(8px);
}

.c31-package-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  height: 660px;
}

.c31-package-gallery figure {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
}

.c31-package-gallery-main {
  grid-row: 1 / span 2;
}

.c31-package-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1;
  object-fit: contain;
  background: #f7f9f8;
}

.c31-package-gallery figcaption {
  display: grid;
  gap: 4px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--watch-line);
  background: #fff;
}

.c31-package-gallery figcaption strong {
  color: var(--watch-ink);
  font-size: 14px;
}

.c31-package-gallery figcaption span {
  color: var(--watch-muted);
  font-size: 12px;
  line-height: 1.45;
}

.c31-box-contents {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--watch-line);
  border-radius: 8px;
  background: #fff;
  margin-top: 16px;
}

.c31-box-contents > div {
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--watch-line);
}

.c31-box-contents > div:last-child {
  border-right: 0;
}

.c31-box-contents strong,
.c31-box-contents span {
  display: block;
}

.c31-box-contents strong {
  color: var(--watch-ink);
  font-size: 17px;
}

.c31-box-contents span {
  margin-top: 8px;
  color: var(--watch-muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .watch-product-nav {
    top: 70px;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .c31-design-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .c31-package-gallery {
    grid-template-columns: 1.25fr 0.75fr;
    height: 600px;
  }

  .c31-box-contents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .c31-box-contents > div:nth-child(2) {
    border-right: 0;
  }

  .c31-box-contents > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--watch-line);
  }
}

@media (max-width: 640px) {
  .watch-compare-section .watch-section-heading {
    gap: 12px;
  }

  .watch-comparison-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .watch-comparison,
  .watch-comparison tbody,
  .watch-comparison tr,
  .watch-comparison th,
  .watch-comparison td {
    display: block;
    width: 100%;
  }

  .watch-comparison thead {
    display: none;
  }

  .watch-comparison tbody {
    display: grid;
    gap: 12px;
  }

  .watch-comparison tbody tr {
    overflow: hidden;
    border: 1px solid var(--watch-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(16, 42, 38, 0.04);
  }

  .watch-comparison tbody th,
  .watch-comparison tbody td {
    margin: 0;
    padding: 13px 15px;
    border-bottom: 1px solid var(--watch-line);
  }

  .watch-comparison tbody th {
    padding-top: 16px;
    background: #f2f8f6;
  }

  .watch-comparison tbody td {
    display: grid;
    grid-template-columns: minmax(102px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .watch-comparison tbody td::before {
    content: attr(data-label);
    color: var(--watch-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .watch-comparison tbody tr:last-child th,
  .watch-comparison tbody tr:last-child td {
    border-bottom: 1px solid var(--watch-line);
  }

  .watch-comparison tbody td:last-child {
    border-bottom: 0 !important;
  }

  .watch-comparison td > span {
    margin-top: 0;
  }

  .watch-compare-tags {
    gap: 5px;
  }

  .watch-compare-tags span {
    padding: 4px 7px;
    font-size: 0.72rem;
  }

  .watch-compare-price strong,
  .watch-compare-price a,
  .watch-compare-price .watch-compare-guide,
  .watch-compare-price .watch-compare-save {
    grid-column: 2;
  }

  .watch-compare-price strong {
    grid-row: 2;
  }

  .watch-compare-price .watch-compare-guide {
    grid-row: 1;
  }

  .watch-compare-price .watch-compare-save {
    grid-row: 3;
  }

  .watch-compare-price a {
    grid-row: 4;
    margin-top: 0;
  }

  .watch-product-nav {
    top: 68px;
    width: calc(100% + 24px);
    max-width: none;
    margin-inline: -12px;
    padding-inline: 12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .watch-product-nav a {
    padding-inline: 10px;
  }

  .c31-commerce-stage img {
    padding: 4px;
  }

  .c31-commerce-hero .watch-color-picker > div,
  .c31-commerce-hero .watch-color-picker button {
    width: 100%;
  }

  .c31-commerce-hero .watch-color-picker > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .c31-commerce-hero .watch-color-picker button {
    min-width: 0;
    padding-inline: 7px;
  }

  .c31-design-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .c31-evidence-grid {
    grid-template-columns: 1fr;
  }

  .c31-story-gallery-grid {
    grid-template-columns: 1fr;
  }

  .c31-story-gallery-grid figure.is-landscape {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .c31-story-gallery-grid figure.is-landscape img {
    height: auto;
    object-fit: contain;
  }

  .c31-guide-groups {
    gap: 40px;
  }

  .c31-guide-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .c31-guide-daily .c31-guide-grid {
    grid-template-columns: 1fr;
  }

  .c31-guide-grid figure.is-wide,
  .c31-guide-grid figure.is-tall {
    grid-column: auto;
  }

  .c31-guide-grid figure.is-tall img {
    max-width: 100%;
  }

  .c31-design-gallery img {
    padding: 10px;
  }

  .c31-package-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .c31-package-gallery-main {
    grid-row: auto;
    aspect-ratio: auto;
  }

  .c31-package-gallery img {
    height: auto;
    max-height: 520px;
    object-fit: contain;
  }

  .c31-box-contents {
    grid-template-columns: 1fr;
  }

  .c31-box-contents > div,
  .c31-box-contents > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--watch-line);
  }

  .c31-box-contents > div:last-child {
    border-bottom: 0;
  }
}

.watch-commerce-price .watch-free-shipping {
  align-self: center;
  padding: 4px 8px;
  border: 1px solid #bae8dc;
  border-radius: 999px;
  background: #effaf6;
  color: var(--watch-teal);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.watch-mobile-free-shipping {
  color: var(--watch-teal);
  font-weight: 800;
}