:root {
    --bg: #ffffff;
    --bg-soft: #f5f4ef;
    --bg-strong: #0b0b0b;
  
    --text: #111111;
    --text-muted: rgba(17, 17, 17, 0.64);
    --text-soft: rgba(17, 17, 17, 0.46);
    --text-light: rgba(255, 255, 255, 0.84);
  
    --line: rgba(17, 17, 17, 0.08);
    --line-strong: rgba(17, 17, 17, 0.14);
  
    --container: 1080px;
  
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 14px;
  
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.14);
    --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.06);
  
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  
  img,
  video {
    display: block;
    max-width: 100%;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button {
    font: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
  }
  
  .page-wrap {
    min-height: 100vh;
  }
  
  .container {
    width: min(100% - 32px, 1280px);
    margin: 0 auto;
  }
  
  main {
    width: min(100%, var(--container));
    margin: 0 auto;
  }
  
  h1,
  h2,
  h3,
  p,
  ul {
    margin-top: 0;
  }
  
  h1,
  h2,
  h3 {
    letter-spacing: -0.04em;
  }
  
  /* =========================
     Promo Video
  ========================= */
  
  .promo-video {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000000;
    overflow: hidden;
  }
  
  .promo-video__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: #000000;
  }
  
  .promo-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.46) 50%,
      rgba(0, 0, 0, 0.72) 100%
    );
    z-index: 1;
  }
  
  .promo-video__content {
    position: absolute;
    left: 6%;
    bottom: 9%;
    z-index: 2;
    width: min(100% - 48px, 560px);
    color: #ffffff;
  }
  
  .promo-video__eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    opacity: 0.72;
  }
  
  .promo-video__title {
    margin: 0 0 16px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.05em;
  }
  
  .promo-video__lead {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.88;
  }
  
  .promo-video__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition:
      transform 0.25s ease,
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
  
  .btn--primary {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
  
  .btn--primary:hover {
    background: #f1f1f1;
  }
  
  .btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.44);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
  }
  
  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
  }
  
  /* =========================
     Video Modal
  ========================= */
  
  .video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
  }
  
  .video-modal.is-open {
    display: block;
  }
  
  .video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px);
  }
  
  .video-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(92vw, 1100px);
    transform: translate(-50%, -50%);
  }
  
  .video-modal video {
    width: 100%;
    max-height: 82vh;
    border-radius: 18px;
    background: #000000;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  }
  
  .video-modal__close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 22px;
    line-height: 1;
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.04);
}

/* =========================
   Therapists
========================= */

.series-ambassadors {
  position: relative;
  margin: 0 auto;
  padding: 72px 24px 44px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #090909 0%, #141414 100%);
}

.series-ambassadors__inner {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.series-ambassadors__heading {
  margin-bottom: 28px;
  color: #ffffff;
}

.series-ambassadors__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.66);
}

.series-ambassadors__heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

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

.ambassador-card {
  position: relative;
  display: block;
  min-height: 640px;
  overflow: hidden;
  border-radius: 30px;
  background: #1a1a1a;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.ambassador-card__media,
.ambassador-card__media img {
  width: 100%;
  height: 100%;
}

.ambassador-card__media img {
  object-fit: cover;
  transform: scale(1.01);
}

.ambassador-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
}

.ambassador-card__content {
  position: absolute;
  inset: auto 28px 30px;
  z-index: 2;
  color: #ffffff;
  text-align: center;
}

.ambassador-card__brand {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.88);
}

.ambassador-card__copy {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.ambassador-card__name {
  margin: 0 0 22px;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.ambassador-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 228px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ef1d3d;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(239, 29, 61, 0.28);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.ambassador-card:hover .ambassador-card__button {
  transform: translateY(-2px);
  background: #ff2a4d;
  box-shadow: 0 18px 34px rgba(239, 29, 61, 0.34);
}

/* =========================
   Product Hero
========================= */
  
  .product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    background: var(--bg);
    border: 1px solid var(--line);
    overflow: hidden;
  }
  
  .product-hero__media {
    background: #000000;
  }
  
  .product-hero__body {
    padding: 36px 32px 30px;
    background: var(--bg-soft);
  }
  
  /* =========================
     Product Gallery
  ========================= */
  
  .product-gallery {
    width: 100%;
    height: 100%;
    background: #000000;
  }
  
  .product-gallery__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000000;
  }
  
  .product-gallery__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  
  .product-gallery__track::-webkit-scrollbar {
    display: none;
  }
  
  .product-gallery__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-height: 680px;
    scroll-snap-align: start;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  .product-gallery__image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .product-gallery__image img,
  .product-gallery__image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .product-gallery__dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    z-index: 10;
  }
  
  .product-gallery__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.36);
    padding: 0;
    transition:
      transform 0.22s ease,
      background 0.22s ease,
      opacity 0.22s ease;
  }
  
  .product-gallery__dot.is-active {
    background: #ffffff;
    transform: scale(1.15);
  }
  
  /* =========================
     Gallery Arrows
  ========================= */
  
  .gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.44);
    color: #ffffff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition:
      transform 0.2s ease,
      background 0.2s ease,
      opacity 0.2s ease;
  }
  
  .gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.62);
  }
  
  .gallery-arrow:active {
    transform: translateY(-50%) scale(0.96);
  }
  
  .gallery-arrow--prev {
    left: 16px;
  }
  
  .gallery-arrow--next {
    right: 16px;
  }
  
  /* =========================
     Product Summary
  ========================= */
  
  .product-status {
    margin: 0 0 10px;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(17, 17, 17, 0.42);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .product-summary-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  
.product-summary-main {
  min-width: 0;
}

.product-title-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.product-summary-main h1,
.product-summary-main h2,
.product-title-tag {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.product-title-tag {
  white-space: nowrap;
}
  
  .product-hero__price {
    margin: 8px 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0;
    color: rgba(17, 17, 17, 0.58);
  }
  
.product-summary-lead {
  margin: 18px 0 0;
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(17, 17, 17, 0.74);
}

.product-summary-lead--list {
  padding-left: 1.1em;
}

.product-summary-lead--list li {
  margin: 0 0 6px;
}

.product-summary-lead--list li:last-child {
  margin-bottom: 0;
}
  
  .product-summary-meta {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
  }
  
  .product-summary-meta li {
    position: relative;
    padding-left: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 500;
    color: rgba(17, 17, 17, 0.62);
  }
  
  .product-summary-meta li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.24);
  }
  
  .product-models,
  .therapist-models {
    margin-top: 28px;
  }
  
  .product-models__label {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(17, 17, 17, 0.46);
    text-transform: uppercase;
  }
  
  .product-models__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }
  
  .product-models__list::-webkit-scrollbar {
    display: none;
  }
  
  .product-model-chip {
    flex: 0 0 auto;
    min-width: 120px;
    height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: #fbfbf8;
    color: rgba(17, 17, 17, 0.66);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition:
      transform 0.2s ease,
      border-color 0.25s ease,
      background 0.25s ease,
      color 0.25s ease,
      box-shadow 0.25s ease;
  }
  
  .product-model-chip:hover {
    transform: translateY(-1px);
    border-color: rgba(17, 17, 17, 0.22);
    background: #ffffff;
  }
  
  .product-model-chip.is-active,
  .model-button.is-active,
  .therapist-button.is-active {
    color: var(--text);
    border-color: rgba(17, 17, 17, 0.16);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  }
  
  .therapist-button {
    min-width: 148px;
  }
  
  .product-spec-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(17, 17, 17, 0.78);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  
  /* =========================
     Purchase Panel
  ========================= */
  
  .model-select {
    margin-top: 20px;
  }
  
  .purchase-panel {
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
  }
  
  .purchase-panel__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  
  .purchase-panel__meta {
    min-width: 0;
  }
  
  .purchase-panel__name {
    margin: 0;
    font-size: clamp(1.75rem, 2.5vw, 2.1rem);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
  }
  
  .purchase-panel__sub {
    margin: 6px 0 0;
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(17, 17, 17, 0.52);
  }
  
  .purchase-panel__price-wrap {
    text-align: left;
    flex-shrink: 0;
  }
  
  .purchase-panel__price-label {
    margin: 0 0 4px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(17, 17, 17, 0.42);
  }
  
  .purchase-panel__price {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0;
    color: rgba(17, 17, 17, 0.66);
    font-variant-numeric: tabular-nums;
  }
  
  .purchase-panel__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .purchase-panel__note {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
  }
  
  .cart-button,
  .line-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    text-align: center;
    letter-spacing: 0.01em;
    transition:
      transform 0.2s ease,
      background 0.25s ease,
      border-color 0.25s ease,
      color 0.25s ease,
      box-shadow 0.25s ease;
  }
  
  .cart-button {
    background: #0b0b0b;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  }
  
  .cart-button:hover {
    transform: translateY(-1px);
    background: #1a1a1a;
  }

  .cart-button--line-check {
    background: #06c755;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(6, 199, 85, 0.22);
  }

  .cart-button--line-check:hover {
    background: #05b84e;
  }
  
  .line-button {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
  }
  
  .line-button:hover {
    transform: translateY(-1px);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  }
  
  /* =========================
     Features
  ========================= */
  
  .product-features {
    margin-top: 20px;
  }
  
  .section-head--left {
    display: block;
  }
  
  .section-head__eyebrow {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.45);
  }
  
  .section-head h2,
  .section-head h3 {
    margin: 10px 0 0;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text);
  }
  
  .features-grid {
    display: grid;
    gap: 20px;
  }
  
  .feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
  }
  
  .feature-block__media {
    position: relative;
    min-height: 300px;
    background: var(--bg-soft);
    overflow: hidden;
  }
  
  .feature-block__media img,
  .feature-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .feature-block__body {
    padding: 30px;
    background: #fbfbf8;
  }
  
  .feature-block__label {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(17, 17, 17, 0.46);
    text-transform: uppercase;
  }
  
  .feature-block__body h3,
  .feature-block__body h4 {
    margin: 0 0 10px;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
  }
  
  .feature-block__lead {
    margin: 0 0 12px;
    color: rgba(17, 17, 17, 0.72);
    line-height: 1.8;
    font-size: 15px;
    font-weight: 500;
  }
  
  .feature-block__body p {
    margin: 0;
    color: rgba(17, 17, 17, 0.66);
    line-height: 1.85;
    font-size: 15px;
    font-weight: 400;
  }

  /* =========================
     Looks At
  ========================= */

  .looks-at {
    margin-top: 20px;
    padding: 88px 24px 92px;
    background:
      radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
      linear-gradient(180deg, #080808 0%, #131313 100%);
    color: #ffffff;
  }

  .looks-at__inner {
    width: min(100%, 1080px);
    margin: 0 auto;
  }

  .looks-at__intro {
    max-width: 760px;
    margin-bottom: 42px;
  }

  .looks-at__eyebrow {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
  }

  .looks-at__intro h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #ffffff;
  }

  .looks-at__lead {
    margin: 18px 0 0;
    max-width: 680px;
    font-size: 15px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.76);
  }

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

  .looks-at__card {
    min-height: 188px;
    padding: 26px 26px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  }

  .looks-at__index {
    margin: 0 0 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.42);
  }

  .looks-at__card h3 {
    margin: 0;
    max-width: 16ch;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #ffffff;
  }

  .looks-at__card p:last-child {
    margin: 14px 0 0;
    max-width: 30ch;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.68);
  }
  
  /* =========================
     Responsive
  ========================= */
  
  @media (max-width: 768px) {
    .container {
      width: min(100% - 32px, var(--container));
    }
  
    .promo-video {
      height: 86svh;
      min-height: 560px;
    }
  
    .promo-video__content {
      left: 20px;
      right: 20px;
      bottom: 28px;
      width: auto;
    }
  
    .promo-video__title {
      font-size: clamp(30px, 8vw, 40px);
      line-height: 1.16;
    }
  
    .promo-video__lead {
      font-size: 13px;
      margin-bottom: 20px;
    }
  
    .btn {
      min-height: 46px;
      padding: 0 18px;
      font-size: 12px;
    }
  
    .video-modal__content {
      width: min(94vw, 94vw);
    }
  
    .video-modal__close {
      top: -40px;
      right: 4px;
    }

    .series-ambassadors {
      padding: 52px 16px 24px;
    }

    .series-ambassadors__heading {
      margin-bottom: 20px;
    }

    .series-ambassadors__grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .ambassador-card {
      min-height: 560px;
      border-radius: 24px;
    }

    .ambassador-card__content {
      inset: auto 20px 22px;
    }

    .ambassador-card__copy {
      font-size: 13px;
    }

    .ambassador-card__name {
      margin-bottom: 18px;
      font-size: clamp(32px, 10vw, 46px);
    }

    .ambassador-card__button {
      width: 100%;
      min-width: 0;
      min-height: 50px;
      font-size: 14px;
    }

    .product-hero {
      display: block;
      margin-top: 40px;
    }
  
    .product-hero__media,
    .product-hero__body {
      width: 100%;
      padding-top: 0;
    }
  
    .product-hero__body {
      padding: 26px 20px 24px;
    }
  
    .product-summary-head {
      flex-direction: row;
      align-items: flex-start;
      gap: 14px;
    }
  
    .product-summary-main h1,
    .product-summary-main h2 {
      font-size: 1.85rem;
    }
  
    .product-hero__price {
      font-size: 0.86rem;
    }
  
    .product-summary-lead {
      font-size: 0.94rem;
      line-height: 1.75;
    }
  
    .product-summary-meta li {
      font-size: 0.88rem;
    }
  
    .product-model-chip {
      min-width: 112px;
      height: 48px;
      padding: 0 22px;
      font-size: 0.96rem;
    }
  
    .therapist-button {
      min-width: 132px;
    }
  
    .product-gallery__slide,
    .product-gallery__image {
        position: relative;
      min-height: 520px;
    }
  
    .product-gallery__dots {
      bottom: 14px;
      gap: 7px;
    }
  
    .product-gallery__dot {
      width: 7px;
      height: 7px;
    }
  
    .gallery-arrow {
      width: 40px;
      height: 40px;
      font-size: 22px;
    }
  
    .gallery-arrow--prev {
      left: 10px;
    }
  
    .gallery-arrow--next {
      right: 10px;
    }
  
    .purchase-panel {
      padding: 22px 18px;
      border-radius: 22px;
    }
  
    .purchase-panel__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      padding-bottom: 18px;
    }
  
    .purchase-panel__price-wrap {
      text-align: left;
    }
  
    .purchase-panel__actions {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  
    .cart-button,
    .line-button {
      width: 100%;
      min-height: 40px;
      font-size: 0.80rem;
    }
  
    .feature-block {
      grid-template-columns: 1fr;
    }
  
    .feature-block__body {
      padding: 24px 20px;
    }

    .looks-at {
      padding: 60px 16px 64px;
    }

    .looks-at__intro {
      margin-bottom: 28px;
    }

    .looks-at__grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .looks-at__card {
      min-height: 0;
      padding: 22px 0 20px;
    }

    .looks-at__card h3 {
      max-width: none;
      font-size: 22px;
    }

    .looks-at__card p:last-child {
      max-width: none;
      font-size: 13px;
    }
  }
  .promo-video__model-kicker {
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #ffffff;
  }
  
  .promo-video__model-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    flex: 0 0 auto;
  }
  .purchase-panel__sub + .purchase-panel__sub {
    margin-top: 4px;
  }
  
  #purchaseTherapist {
    opacity: 0.68;
    letter-spacing: 0.08em;
  }
  
  .product-model-chip {
    position: relative;
  }
  
  .product-model-chip.is-active {
    transform: translateY(-1px);
  }
  
  @media (max-width: 640px) {
    #purchaseTherapist {
      font-size: 12px;
    }
  }
