    .bb-story {
      --bb-ink: #181413;
      --bb-muted: rgba(24, 20, 19, 0.64);
      --bb-soft: #f7f0e8;
      --bb-cream: #fffaf3;
      --bb-panel: #fffdf8;
      --bb-line: rgba(24, 20, 19, 0.14);
      --bb-wine: #a13762;
      --bb-gold: #b99a5c;
      --bb-blue: #8abdc5;
      --bb-green: #8aa06d;
      --bb-max: 1240px;
      --bb-radius: 8px;
    }

    .bb-story * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    .bb-story {
      margin: 0;
      background: var(--bb-soft);
      color: var(--bb-ink);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      letter-spacing: 0;
    }

    .bb-story img {
      display: block;
      max-width: 100%;
    }

    .bb-story a {
      color: inherit;
      text-decoration: none;
    }

    .bb-story button,
    .bb-story input {
      font: inherit;
    }

    .bb-story {
      min-height: 100vh;
      overflow: hidden;
      background:
        radial-gradient(circle at 78% 12%, rgba(243, 139, 165, 0.12), transparent 28%),
        linear-gradient(180deg, var(--bb-cream), var(--bb-soft) 52%, #f3eadf);
    }

    .bb-topline {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 18px;
      align-items: center;
      min-height: 38px;
      padding: 0 28px;
      border-bottom: 1px solid rgba(24, 20, 19, 0.12);
      color: rgba(24, 20, 19, 0.66);
      font-size: 11px;
      text-transform: uppercase;
      background: rgba(255, 250, 243, 0.48);
      backdrop-filter: blur(18px);
    }

    .bb-topline span:nth-child(2) {
      color: var(--bb-ink);
    }

    .bb-topline span:last-child {
      text-align: right;
    }

    .bb-nav {
      position: sticky;
      top: 0;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(var(--bb-max), calc(100% - 48px));
      margin: 0 auto;
      padding: 22px 0;
      background: rgba(247, 240, 232, 0.78);
      backdrop-filter: blur(18px);
    }

    .bb-logo {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      font-weight: 700;
    }

    .bb-nav-links {
      display: flex;
      gap: 28px;
      align-items: center;
      color: var(--bb-muted);
      font-size: 13px;
    }

    .bb-nav-pill {
      border: 1px solid var(--bb-line);
      border-radius: 999px;
      padding: 10px 16px;
      color: var(--bb-ink);
      background: rgba(255, 253, 248, 0.66);
    }

    .bb-product-hero {
      position: relative;
      width: min(var(--bb-max), calc(100% - 48px));
      margin: 0 auto;
      padding: 54px 0 86px;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
      gap: clamp(34px, 5vw, 76px);
      align-items: start;
    }

    .bb-product-hero::before {
      content: "DOLL";
      position: absolute;
      left: -18px;
      top: 24px;
      z-index: 0;
      color: rgba(24, 20, 19, 0.035);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(96px, 17vw, 246px);
      font-weight: 700;
      line-height: 0.75;
      pointer-events: none;
    }

    .bb-gallery {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 88px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }

    .bb-thumbs {
      display: grid;
      gap: 12px;
      position: sticky;
      top: 100px;
    }

    .bb-thumb {
      width: 88px;
      aspect-ratio: 1 / 1;
      padding: 0;
      border: 1px solid var(--bb-line);
      border-radius: var(--bb-radius);
      overflow: hidden;
      background: var(--bb-panel);
      cursor: pointer;
      transition: border-color 0.2s ease, transform 0.2s ease;
    }

    .bb-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bb-thumb.is-active {
      border-color: var(--bb-ink);
      transform: translateX(4px);
    }

    .bb-main-media {
      position: relative;
      min-height: 650px;
      border: 1px solid var(--bb-line);
      border-radius: var(--bb-radius);
      overflow: hidden;
      background:
        radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.86), transparent 30%),
        var(--bb-cream);
      box-shadow: 0 30px 80px rgba(24, 20, 19, 0.11);
    }

    .bb-main-media img {
      width: 100%;
      height: 100%;
      min-height: 650px;
      object-fit: cover;
    }

    .bb-float-note {
      position: absolute;
      left: 18px;
      bottom: 18px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255, 255, 255, 0.68);
      border-radius: 999px;
      background: rgba(255, 253, 248, 0.78);
      backdrop-filter: blur(16px);
      padding: 10px 14px;
      color: rgba(24, 20, 19, 0.68);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .bb-float-note::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--bb-wine);
    }

    .bb-product-copy {
      position: sticky;
      top: 100px;
      z-index: 2;
      border-top: 1px solid var(--bb-line);
      padding-top: 28px;
    }

    .bb-kicker {
      margin: 0 0 16px;
      color: var(--bb-wine);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .bb-product-copy h1 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(54px, 6vw, 88px);
      line-height: 0.9;
      letter-spacing: 0;
    }

    .bb-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-top: 26px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--bb-line);
    }

    .bb-price {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 34px;
      line-height: 1;
    }

    .bb-rating {
      color: rgba(24, 20, 19, 0.62);
      font-size: 12px;
      text-transform: uppercase;
    }

    .bb-description {
      margin: 22px 0 0;
      color: var(--bb-muted);
      font-size: 15px;
      line-height: 1.8;
    }

    .bb-option {
      margin-top: 28px;
    }

    .bb-option-head {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 12px;
      color: rgba(24, 20, 19, 0.68);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .bb-swatches {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .bb-swatch {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(24, 20, 19, 0.16);
      border-radius: 999px;
      padding: 3px;
      background: var(--bb-panel);
      cursor: pointer;
    }

    .bb-swatch span {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: inherit;
    }

    .bb-swatch.is-active {
      border-color: var(--bb-ink);
    }

    .bb-qty {
      display: grid;
      grid-template-columns: 46px 1fr 46px;
      width: 152px;
      height: 46px;
      border: 1px solid var(--bb-line);
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255, 253, 248, 0.72);
    }

    .bb-qty button {
      border: 0;
      background: transparent;
      color: var(--bb-ink);
      cursor: pointer;
      font-size: 20px;
    }

    .bb-qty input {
      width: 100%;
      border: 0;
      background: transparent;
      text-align: center;
      color: var(--bb-ink);
      outline: 0;
    }

    .bb-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 28px;
    }

    .bb-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      border-radius: 999px;
      padding: 0 22px;
      border: 1px solid var(--bb-ink);
      background: var(--bb-ink);
      color: var(--bb-panel);
      cursor: pointer;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .bb-button.secondary {
      background: transparent;
      color: var(--bb-ink);
      border-color: var(--bb-line);
    }

    .bb-care-list {
      display: grid;
      gap: 12px;
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid var(--bb-line);
    }

    .bb-care-list div {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: var(--bb-muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .bb-care-list strong {
      color: var(--bb-ink);
      font-size: 12px;
      text-transform: uppercase;
    }

    .bb-marquee {
      border-block: 1px solid var(--bb-line);
      background: rgba(255, 253, 248, 0.66);
      color: var(--bb-muted);
      overflow: hidden;
      white-space: nowrap;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 34px;
      line-height: 1;
      padding: 24px 0;
    }

    .bb-marquee span {
      display: inline-block;
      padding-left: 28px;
    }

    .bb-section {
      width: min(var(--bb-max), calc(100% - 48px));
      margin: 0 auto;
      padding: 92px 0;
    }

    .bb-section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 28px;
      margin-bottom: 26px;
    }

    .bb-section-head h2 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(42px, 5vw, 66px);
      line-height: 0.95;
      letter-spacing: 0;
    }

    .bb-section-head p {
      max-width: 430px;
      margin: 0;
      color: var(--bb-muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .bb-detail-index {
      display: grid;
      grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(34px, 5vw, 72px);
      align-items: start;
      border-top: 1px solid var(--bb-line);
    }

    .bb-detail-aside {
      position: sticky;
      top: 100px;
      padding-top: 30px;
    }

    .bb-detail-aside h2,
    .bb-wear-copy h2,
    .bb-info-head h2,
    .bb-gift-copy h2 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(42px, 5vw, 68px);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .bb-detail-aside p,
    .bb-wear-copy p,
    .bb-info-head p,
    .bb-gift-copy p {
      margin: 18px 0 0;
      color: var(--bb-muted);
      font-size: 15px;
      line-height: 1.8;
    }

    .bb-detail-list {
      display: grid;
      margin-top: 34px;
      border-top: 1px solid var(--bb-line);
    }

    .bb-detail-list div {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      border-bottom: 1px solid var(--bb-line);
      padding: 18px 0;
      color: var(--bb-muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .bb-detail-list strong {
      color: var(--bb-ink);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 22px;
      line-height: 1;
    }

    .bb-detail-stack {
      display: grid;
      gap: 18px;
      padding-top: 30px;
    }

    .bb-luxury-photo {
      margin: 0;
      overflow: hidden;
      border: 1px solid var(--bb-line);
      border-radius: var(--bb-radius);
      background: var(--bb-cream);
    }

    .bb-luxury-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bb-luxury-photo.is-wide {
      aspect-ratio: 16 / 10;
    }

    .bb-luxury-photo.is-square {
      aspect-ratio: 1 / 1;
    }

    .bb-mini-proof {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      border: 1px solid var(--bb-line);
      border-radius: var(--bb-radius);
      overflow: hidden;
      background: var(--bb-line);
    }

    .bb-mini-proof div {
      min-height: 132px;
      padding: 20px;
      background: rgba(255, 253, 248, 0.72);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .bb-mini-proof strong {
      font-family: Georgia, "Times New Roman", serif;
      font-size: 28px;
      line-height: 1;
    }

    .bb-mini-proof span {
      color: var(--bb-muted);
      font-size: 12px;
      line-height: 1.55;
      text-transform: uppercase;
    }

    .bb-wear-section {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
      gap: 18px;
      align-items: stretch;
      border-block: 1px solid var(--bb-line);
      padding-block: 18px;
    }

    .bb-wear-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 34px;
      background: var(--bb-ink);
      color: var(--bb-panel);
      border-radius: var(--bb-radius);
    }

    .bb-wear-copy p {
      color: rgba(255, 253, 248, 0.72);
    }

    .bb-wear-copy .bb-kicker {
      color: #e7bfcd;
    }

    .bb-material-table {
      display: grid;
      margin-top: 32px;
      border-top: 1px solid rgba(255, 253, 248, 0.2);
    }

    .bb-material-table div {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      border-bottom: 1px solid rgba(255, 253, 248, 0.18);
      padding: 16px 0;
      color: rgba(255, 253, 248, 0.74);
      font-size: 13px;
    }

    .bb-material-table strong {
      color: var(--bb-panel);
      font-size: 12px;
      text-transform: uppercase;
    }

    .bb-info {
      border-top: 1px solid var(--bb-line);
    }

    .bb-info-grid {
      display: grid;
      grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(34px, 5vw, 72px);
      align-items: start;
    }

    .bb-accordions {
      border-top: 1px solid var(--bb-line);
    }

    .bb-accordions details {
      border-bottom: 1px solid var(--bb-line);
      padding: 22px 0;
    }

    .bb-accordions summary {
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      color: var(--bb-ink);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .bb-accordions summary::-webkit-details-marker {
      display: none;
    }

    .bb-accordions summary::after {
      content: "+";
      font-size: 18px;
      line-height: 1;
    }

    .bb-accordions details[open] summary::after {
      content: "-";
    }

    .bb-accordions p {
      max-width: 720px;
      margin: 16px 0 0;
      color: var(--bb-muted);
      font-size: 14px;
      line-height: 1.8;
    }

    .bb-gift-section {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
      gap: 18px;
      align-items: stretch;
      border-top: 1px solid var(--bb-line);
    }

    .bb-gift-copy {
      padding-top: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .bb-gift-note {
      margin-top: 34px;
      border-top: 1px solid var(--bb-line);
      display: grid;
      gap: 14px;
      padding-top: 18px;
    }

    .bb-gift-note div {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: var(--bb-muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .bb-gift-note strong {
      color: var(--bb-ink);
      font-size: 12px;
      text-transform: uppercase;
    }

    .bb-sticky-cta {
      position: sticky;
      bottom: 18px;
      z-index: 25;
      width: min(var(--bb-max), calc(100% - 48px));
      margin: 0 auto 24px;
      border: 1px solid rgba(24, 20, 19, 0.18);
      border-radius: 999px;
      background: rgba(255, 253, 248, 0.88);
      backdrop-filter: blur(18px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 10px 12px 10px 20px;
      box-shadow: 0 18px 52px rgba(24, 20, 19, 0.12);
    }

    .bb-sticky-cta span {
      color: var(--bb-muted);
      font-size: 12px;
      text-transform: uppercase;
    }

    .bb-quiet-detail {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
      gap: clamp(34px, 5vw, 72px);
      align-items: start;
      border-top: 1px solid var(--bb-line);
      padding-top: 72px;
    }

    .bb-quiet-image {
      margin: 0;
      border: 1px solid var(--bb-line);
      border-radius: var(--bb-radius);
      overflow: hidden;
      background: var(--bb-cream);
      aspect-ratio: 1 / 1;
    }

    .bb-quiet-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bb-quiet-copy {
      position: sticky;
      top: 100px;
      border-top: 1px solid var(--bb-line);
      padding-top: 30px;
    }

    .bb-quiet-copy h2 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(42px, 5vw, 64px);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .bb-quiet-copy > p {
      margin: 18px 0 0;
      color: var(--bb-muted);
      font-size: 15px;
      line-height: 1.8;
    }

    .bb-compact-specs {
      display: grid;
      margin-top: 34px;
      border-top: 1px solid var(--bb-line);
    }

    .bb-compact-specs div {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      border-bottom: 1px solid var(--bb-line);
      padding: 16px 0;
      color: var(--bb-muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .bb-compact-specs strong {
      color: var(--bb-ink);
      font-size: 12px;
      text-transform: uppercase;
    }

    .bb-quiet-detail .bb-accordions {
      margin-top: 28px;
    }

    .bb-service-strip {
      width: min(var(--bb-max), calc(100% - 48px));
      margin: 0 auto;
      border-block: 1px solid var(--bb-line);
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: var(--bb-line);
    }

    .bb-service-strip div {
      min-height: 118px;
      background: rgba(255, 253, 248, 0.74);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 8px;
      padding: 20px;
      text-align: center;
    }

    .bb-service-strip strong {
      color: var(--bb-ink);
      font-size: 12px;
      text-transform: uppercase;
    }

    .bb-service-strip span {
      color: var(--bb-muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .bb-pdp-tabs {
      position: sticky;
      top: 75px;
      z-index: 18;
      width: min(var(--bb-max), calc(100% - 48px));
      margin: 0 auto;
      border-bottom: 1px solid var(--bb-line);
      background: rgba(247, 240, 232, 0.86);
      backdrop-filter: blur(18px);
      display: flex;
      justify-content: center;
      gap: clamp(22px, 5vw, 72px);
      padding: 18px 0;
    }

    .bb-pdp-tabs a {
      color: var(--bb-muted);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .bb-pdp-tabs a:hover {
      color: var(--bb-ink);
    }

    .bb-feature-row {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
      gap: clamp(24px, 4vw, 56px);
      align-items: center;
      padding: 26px 0;
      border-top: 1px solid var(--bb-line);
    }

    .bb-feature-row.is-reverse {
      grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    }

    .bb-feature-copy {
      padding: 24px 0;
    }

    .bb-feature-copy h3 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(38px, 4vw, 58px);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .bb-feature-copy p {
      max-width: 460px;
      margin: 18px 0 0;
      color: var(--bb-muted);
      font-size: 15px;
      line-height: 1.8;
    }

    .bb-detail-layout,
    .bb-faq-layout {
      display: grid;
      grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(34px, 5vw, 72px);
      align-items: start;
      border-top: 1px solid var(--bb-line);
      padding-top: 36px;
    }

    .bb-detail-copy h2,
    .bb-faq-copy h2 {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(42px, 5vw, 64px);
      line-height: 0.98;
      letter-spacing: 0;
    }

    .bb-detail-copy p,
    .bb-faq-copy p {
      margin: 18px 0 0;
      color: var(--bb-muted);
      font-size: 15px;
      line-height: 1.8;
    }

    .bb-footer {
      width: min(var(--bb-max), calc(100% - 48px));
      margin: 0 auto;
      padding: 24px 0 38px;
      border-top: 1px solid var(--bb-line);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: var(--bb-muted);
      font-size: 12px;
    }

    @media (max-width: 980px) {
      .bb-product-hero,
      .bb-detail-index,
      .bb-wear-section,
      .bb-info-grid,
      .bb-gift-section,
      .bb-quiet-detail,
      .bb-feature-row,
      .bb-feature-row.is-reverse,
      .bb-detail-layout,
      .bb-faq-layout {
        grid-template-columns: 1fr;
      }

      .bb-product-copy,
      .bb-thumbs,
      .bb-detail-aside,
      .bb-quiet-copy {
        position: static;
      }

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

      .bb-thumbs {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        order: 2;
      }

      .bb-thumb {
        width: 100%;
      }

      .bb-main-media,
      .bb-main-media img {
        min-height: 520px;
      }

      .bb-section-head {
        display: grid;
      }

      .bb-mini-proof {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 640px) {
      .bb-topline {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 18px;
      }

      .bb-topline span:last-child {
        text-align: left;
      }

      .bb-nav,
      .bb-product-hero,
      .bb-section,
      .bb-footer {
        width: min(100% - 32px, var(--bb-max));
      }

      .bb-nav-links a:not(.bb-nav-pill) {
        display: none;
      }

      .bb-product-hero {
        padding: 32px 0 58px;
      }

      .bb-product-copy h1 {
        font-size: 46px;
      }

      .bb-main-media,
      .bb-main-media img {
        min-height: 360px;
      }

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

      .bb-price-row,
      .bb-care-list div,
      .bb-material-table div,
      .bb-gift-note div,
      .bb-compact-specs div,
      .bb-footer {
        display: grid;
      }

      .bb-section {
        padding: 60px 0;
      }

      .bb-wear-copy {
        padding: 26px;
      }

      .bb-sticky-cta {
        width: min(100% - 24px, var(--bb-max));
        border-radius: var(--bb-radius);
        display: grid;
      }

      .bb-service-strip {
        width: min(100% - 32px, var(--bb-max));
        grid-template-columns: 1fr;
      }

      .bb-pdp-tabs {
        width: min(100% - 32px, var(--bb-max));
        justify-content: space-between;
        gap: 12px;
        top: 68px;
      }
    }

/* Native SHOPLINE product area, visually aligned with the uploaded PDP. */
body[data-page-type="product"] .product-detail-wrapper {
  background: radial-gradient(circle at 78% 12%, rgba(243,139,165,.12), transparent 28%), linear-gradient(180deg,#fffaf3,#f7f0e8 72%,#f3eadf);
  color: #181413;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body[data-page-type="product"] .product-detail-wrapper .page-width { max-width: 1240px; }
body[data-page-type="product"] .product-detail { padding-block: 54px 86px !important; column-gap: clamp(34px,5vw,76px) !important; }
body[data-page-type="product"] .product-detail__media-gallery { border-radius: 8px; }
body[data-page-type="product"] .product-detail__media-gallery .media-gallery__media { border: 1px solid rgba(24,20,19,.14); border-radius: 8px; overflow: hidden; background: #fffaf3; }
body[data-page-type="product"] .product-detail__media-gallery .media-gallery__thumbnail { border-radius: 8px; overflow: hidden; }
body[data-page-type="product"] .product-detail__media-gallery .media-gallery__thumbnail.is-select { border-color: #181413; }
body[data-page-type="product"] .product-detail__price { color: #a13762; }
body[data-page-type="product"] .product-detail__variant-picker .variant-picker__button { border-radius: 999px; }
body[data-page-type="product"] .product-detail .button { min-height: 50px; border-radius: 999px !important; font-weight: 700; }
body[data-page-type="product"] .product-detail .button--primary { background: #181413 !important; color: #fffdf8 !important; }
@media (max-width: 959px) { body[data-page-type="product"] .product-detail { padding-block: 24px 44px !important; } }
