/**
 * Atelier — T12 Product Long-Form (storytelling PDP variant).
 * Source: design/store-theme/01-atelier-fashion/pages/T12 Product Long-Form.dc.html
 */
.atl-lf-stickybar { position: sticky; top: 0; z-index: 5; background: var(--atl-surface); border-bottom: 1px solid var(--atl-border); display: flex; align-items: center; gap: 18px; padding: 12px 40px; }
.atl-lf-stickybar-name { font-weight: 600; font-size: 14.5px; }
.atl-lf-stickybar-stars { color: var(--atl-accent); font-size: 13px; letter-spacing: 2px; }
.atl-lf-stickybar-price { margin-left: auto; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; }
.atl-lf-stickybar .atl-btn { padding: 10px 22px; font-size: 13px; }

.atl-lf-hero { aspect-ratio: 21/9; }

.atl-lf-story { max-width: 760px; margin: 56px auto 0; padding: 0 24px; text-align: center; display: flex; flex-direction: column; gap: 16px; }
.atl-lf-eyebrow { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--atl-accent-2); }
.atl-lf-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.12; margin: 0; font-size: 40px; text-wrap: balance; }
.atl-lf-body { font-size: 15px; line-height: 1.8; color: var(--atl-text-muted); margin: 0; }

.atl-lf-details { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 48px; }
.atl-lf-detail-img { aspect-ratio: 1/1; overflow: hidden; }
/* Constrain the detail image to its grid cell — without this the raw <img>
   renders at its natural pixel width (~485px) and pushes past a 390px mobile
   viewport, causing horizontal page scroll on the long-form PDP. */
.atl-lf-detail-img img { display: block; width: 100%; height: 100%; object-fit: cover; }

.atl-lf-specs { max-width: 720px; margin: 48px auto 0; padding: 0 24px; }
.atl-lf-specs-table { background: var(--atl-surface); border: 1px solid var(--atl-border); }
.atl-lf-specs-row { display: flex; padding: 12px 20px; font-size: 14px; }
.atl-lf-specs-row:nth-child(odd) { background: color-mix(in oklab, var(--atl-text) 4%, var(--atl-surface)); }
.atl-lf-specs-label { width: 140px; color: var(--atl-text-subtle); font-family: 'Jost', sans-serif; flex-shrink: 0; }

.atl-lf-cta { text-align: center; padding: 56px 0 0; }
.atl-lf-cta .atl-btn { padding: 16px 48px; }

@media (max-width: 767px) {
  .atl-lf-stickybar { padding: 10px 20px; gap: 10px; }
  .atl-lf-title { font-size: 28px; }
  .atl-lf-story { padding: 0 20px; }
  .atl-lf-details { grid-template-columns: 1fr; }
  .atl-lf-specs { padding: 0 20px; }
  .atl-lf-specs-label { width: 100px; }
}
