/* Babuches storefront */
:root {
    --lp-bg: #FFF8F2;
    --lp-ink: #4A302C;
    --lp-muted: #7A5E59;
    --lp-line: #EEDDE0;
    --lp-card: #FFFFFF;
    --lp-soft: #F3DDE1;
    --lp-accent: #F54C6A;
    --lp-accent-dark: #E03A58;
    --lp-brown: #4A302C;
    --lp-trust: #78947A;
    --lp-rose: #F54C6A;
    --lp-rose-dark: #E03A58;
    --primary: #F54C6A;
    --primary-light: #F87A92;
    --primary-dark: #E03A58;
    --primary-hover: #E03A58;
    --accent: #F54C6A;
    --text: #4A302C;
    --text-muted: #7A5E59;
    --header-height: 108px;
}

body {
    font-family: Inter, system-ui, -apple-system, sans-serif;
    background: var(--lp-bg);
    color: var(--lp-ink);
}

.store-main { background: var(--lp-bg); }

.lp-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 248, 242, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--lp-line);
}

.lp-ticker {
    background: var(--lp-brown);
    color: var(--lp-bg);
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 8px 12px;
}

.lp-header-bar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.lp-logo {
    display: inline-flex;
    align-items: center;
    font-family: Inter, system-ui, sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--lp-ink);
    text-decoration: none;
    line-height: 1;
}

.lp-logo__img {
    display: block;
    height: 52px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.lp-nav {
    display: flex;
    gap: 22px;
    font-size: 14px;
    font-weight: 500;
}

.lp-nav a { color: var(--lp-ink); }
.lp-nav a:hover { opacity: 0.65; }

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 600;
}

.lp-icon-link { color: var(--lp-ink); }

.lp-cart-btn {
    border: 0;
    background: var(--lp-accent);
    color: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lp-cart-btn:hover { background: var(--lp-accent-dark); }

.lp-cart-btn .cart-badge {
    position: static;
    background: #fff;
    color: var(--lp-accent);
}

.lp-hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 16px 36px;
    display: grid;
    grid-template-columns: 1.05fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.lp-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-accent);
    margin: 0 0 10px;
}

h1, h2, .lp-model-card h3 {
    font-family: Inter, system-ui, sans-serif;
    letter-spacing: -0.035em;
    font-weight: 800;
}

.lp-hero h1 {
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.05;
    margin: 0 0 16px;
    max-width: none;
}

.lp-lead {
    font-size: 17px;
    line-height: 1.5;
    color: var(--lp-muted);
    margin: 0 0 22px;
}

.lp-lead-center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }

.lp-hero-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.lp-hero-prices span {
    background: var(--lp-card);
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
}

.lp-hero-prices strong { color: var(--lp-ink); }

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    padding: 15px 24px;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.lp-btn-primary {
    background: var(--lp-accent);
    color: #fff;
}

.lp-btn-primary:hover { background: var(--lp-accent-dark); color: #fff; }

.lp-btn-block { width: 100%; }

.lp-micro {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--lp-muted);
}

.lp-stories {
    display: flex;
    justify-content: center;
}

.lp-stories-frame {
    position: relative;
    width: min(320px, 100%);
    aspect-ratio: 9 / 16;
    border-radius: 22px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.lp-stories-frame video,
.lp-stories-frame img,
.lp-stories-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.lp-stories-frame video,
.lp-stories-frame img.is-on,
.lp-stories-embed iframe {
    opacity: 1;
    pointer-events: auto;
}

.lp-stories-bars {
    position: absolute;
    z-index: 3;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
}

.lp-stories-bars i {
    flex: 1;
    height: 3px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.lp-stories-bars span {
    display: block;
    height: 100%;
    width: 0;
    background: #fff;
}

.lp-stories-bars i.is-done span { width: 100%; }
.lp-stories-bars i.is-active span { animation: lp-story-fill 3.4s linear forwards; }

@keyframes lp-story-fill {
    from { width: 0; }
    to { width: 100%; }
}

.lp-stories-brand {
    position: absolute;
    z-index: 3;
    top: 22px;
    left: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.lp-stories-brand__img,
.lp-stories-frame .lp-stories-brand__img {
    position: static;
    inset: auto;
    display: block;
    height: 28px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 1;
    pointer-events: none;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.45));
}

.lp-stories-brand strong { font-weight: 800; }
.lp-stories-brand span {
    opacity: 0.8;
    font-size: 12px;
}

.lp-stories-sound {
    position: absolute;
    z-index: 6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    background: var(--lp-accent);
    color: #fff;
    border-radius: 999px;
    padding: 18px 28px;
    min-width: 210px;
    font: inherit;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.lp-stories-sound svg { flex-shrink: 0; pointer-events: none; }

.lp-stories-frame:not(.is-loud) { cursor: pointer; }

.lp-stories-frame.is-loud .lp-stories-sound { display: none; }

.lp-stories-frame:has([data-story-video]):not(.is-loud) .lp-stories-shop {
    display: none;
}

.lp-stories-shop {
    position: absolute;
    z-index: 7;
    left: 10px;
    right: 10px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--lp-accent);
    color: #fff;
    -webkit-text-fill-color: #fff;
    border-radius: 12px;
    padding: 13px 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.lp-stories-bag-icon,
.lp-stories-shop-arrow {
    flex-shrink: 0;
}

.lp-stories-shop span { flex: 1; text-align: center; }

.lp-stories-shop[hidden] {
    display: none !important;
}

.lp-stories-hit {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 46%;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.lp-stories-hit-prev { left: 0; }
.lp-stories-hit-next { right: 0; }

.lp-model-card > img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    background: #F3EEE8;
}

.lp-builder-preview img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.lp-trust {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    max-width: 1180px;
    margin: 0 auto 20px;
    padding: 0 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.lp-trust div,
.lp-trust a {
    background: var(--lp-soft);
    border: 1px solid var(--lp-line);
    border-radius: 10px;
    padding: 14px 8px;
    color: inherit;
    text-decoration: none;
}

.lp-models,
.lp-offer,
.lp-benefits,
.lp-sizes,
.lp-proof,
.lp-guarantee,
.lp-faq {
    max-width: 1180px;
    margin: 0 auto 64px;
    padding: 0 16px;
}

.lp-faq {
    margin-bottom: 16px;
}

.lp-models h2,
.lp-offer h2,
.lp-benefits h2,
.lp-sizes h2,
.lp-proof h2,
.lp-guarantee h2,
.lp-faq h2 {
    font-size: clamp(26px, 3.4vw, 40px);
    margin: 0 0 16px;
    line-height: 1.1;
}

.lp-model-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.lp-model-card,
.lp-benefit-grid article,
.lp-review,
.lp-builder,
.lp-guarantee,
.lp-faq details {
    background: var(--lp-card);
    border: 1px solid var(--lp-line);
    border-radius: 14px;
    padding: 16px;
}

.lp-model-card h3 { font-size: 22px; margin: 14px 0 8px; }
.lp-model-card p { color: var(--lp-muted); margin: 0; }

.lp-accessories { margin: 24px 0 0; }
.lp-accessories img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    background: #f4f1ec;
    display: block;
    margin: 0 auto;
}
.lp-accessories figcaption {
    margin-top: 10px;
    color: var(--lp-muted);
    text-align: center;
}

.lp-sizes .lp-lead {
    max-width: 520px;
    color: var(--lp-muted);
    margin: 0 0 22px;
}

.lp-sizes {
    scroll-margin-top: 88px;
}

.lp-size-chart {
    margin: 0;
    background: var(--lp-card);
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    padding: 10px;
    max-width: 640px;
}

.lp-size-chart img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    pointer-events: none;
}

.lp-field-label .lp-size-guide {
    float: right;
    font-weight: 600;
    font-size: 13px;
    color: var(--lp-accent-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lp-kit-tab {
    background: var(--lp-card);
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    padding: 10px 10px 14px;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: var(--lp-ink);
    -webkit-text-fill-color: var(--lp-ink);
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.lp-kit-tab img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #fff;
    display: block;
}

.lp-kit-tab.is-active {
    border-color: var(--lp-accent);
    box-shadow: 0 0 0 1px var(--lp-accent);
    background: #FDF6F7;
}

.lp-kit-name {
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 2px 0 4px;
    color: var(--lp-ink);
    -webkit-text-fill-color: var(--lp-ink);
}

.lp-kit-tab small {
    display: block;
    color: var(--lp-muted);
    -webkit-text-fill-color: var(--lp-muted);
    font-size: 13px;
}
.lp-kit-tab strong {
    display: block;
    font-size: 24px;
    margin: 10px 0 2px;
    color: var(--lp-ink);
    -webkit-text-fill-color: var(--lp-ink);
}
.lp-kit-tab s {
    color: #8A847E;
    -webkit-text-fill-color: #8A847E;
    font-size: 13px;
}

.lp-kit-choose {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    background: var(--lp-accent);
    color: #fff;
    -webkit-text-fill-color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
}

.lp-kit-tab.is-active .lp-kit-choose {
    background: var(--lp-accent-dark);
}

.lp-hot {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--lp-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    padding: 4px 8px;
}

.lp-hot-dark { background: var(--lp-trust); }

.lp-builder {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    padding: 20px;
}

.lp-builder-preview img { aspect-ratio: 1; }
.lp-builder-preview p { text-align: center; font-weight: 600; margin: 10px 0 0; }

.lp-pair {
    border-bottom: 1px solid var(--lp-line);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.lp-pair h4 { margin: 0 0 10px; font-size: 15px; }

.lp-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }

.lp-chip, .lp-swatch, .lp-size {
    border: 1px solid var(--lp-line);
    background: var(--lp-card);
    border-radius: 8px;
    padding: 8px 12px;
    font: inherit;
    cursor: pointer;
}

.lp-chip.is-on, .lp-size.is-on {
    border-color: var(--lp-accent);
    background: var(--lp-accent);
    color: #fff;
}

.lp-swatch {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center 60%;
}

.lp-swatch.is-on { outline: 2px solid var(--lp-accent); outline-offset: 2px; }

.lp-color-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.lp-color-strip figure { margin: 0; }
.lp-color-strip img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 8px;
    background: #F3EEE8;
}
.lp-color-strip figcaption {
    margin-top: 6px;
    font-size: 11px;
    text-align: center;
    color: var(--lp-muted);
}

.lp-builder-total {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.lp-checkout-deal span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--lp-ink);
}

.lp-builder-total strong,
.lp-checkout-deal strong {
    display: block;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--lp-accent);
    margin: 2px 0 0;
}

.lp-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.lp-benefit-grid h3 { margin: 0 0 8px; font-size: 16px; }
.lp-benefit-grid p { margin: 0; color: var(--lp-muted); }

.lp-reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.lp-review {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.lp-review-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--lp-line);
}

.lp-review-photos img,
.lp-review-photos video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: #111;
}

.lp-review-photos video {
    grid-column: 1 / -1;
}

.lp-review-body {
    padding: 14px 16px 16px;
}

.lp-review-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
}

.lp-stars { color: var(--lp-trust); letter-spacing: 2px; margin-bottom: 8px; }
.lp-reviews footer { margin-top: 12px; font-size: 13px; color: var(--lp-muted); display: flex; flex-direction: column; gap: 2px; }
.lp-reviews footer strong { color: var(--lp-ink); }

.lp-guarantee { padding: 32px; text-align: center; }
.lp-guarantee p { max-width: 640px; margin: 0 auto; color: var(--lp-muted); font-size: 16px; }

.lp-faq details { margin-bottom: 10px; }
.lp-faq summary { font-weight: 700; cursor: pointer; }
.lp-faq p { color: var(--lp-muted); }

.lp-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(var(--mobile-nav-height) + 8px);
    z-index: 30;
    margin: 0;
    background: var(--lp-accent);
    color: #fff;
    border-radius: 12px;
    padding: 10px 10px 10px 14px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 10px 28px rgba(74, 48, 44, 0.22);
}

.lp-sticky span {
    font-size: 13px;
    line-height: 1.25;
    min-width: 0;
}

.lp-offer { padding-bottom: 0; margin-bottom: 16px; }

.lp-wizard {
    background: var(--lp-card);
    border: 1px solid var(--lp-line);
    border-radius: 16px;
    padding: 22px;
}

html.lp-kit-flow,
body.lp-kit-flow {
    overflow: hidden;
    overscroll-behavior: none;
}

body.lp-kit-flow .lp-sticky,
body.lp-kit-flow .float-buttons,
body.lp-kit-flow .mobile-nav {
    visibility: hidden;
    pointer-events: none;
}

.lp-flow-screen[hidden] {
    display: none !important;
}

.lp-flow-screen.is-on {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 850;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    background: var(--lp-card);
    padding: 0;
    overflow: hidden;
}

.lp-flow-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    flex: 1;
    min-height: 0;
    background: var(--lp-card);
    padding: 14px 16px 12px;
}

.lp-flow-head {
    flex-shrink: 0;
}

.lp-flow-head .lp-back { margin-bottom: 8px; }
.lp-flow-head .lp-step-num { margin-bottom: 4px; }
.lp-flow-head h2 {
    margin: 0 0 4px;
    font-size: 22px;
}

.lp-pair-n {
    color: var(--lp-accent);
    font-style: normal;
    font-weight: 800;
    font-size: 1.28em;
    letter-spacing: 0.02em;
}
.lp-flow-head .lp-lead {
    margin: 0;
    font-size: 13px;
}

.lp-flow-body {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lp-flow-foot {
    flex-shrink: 0;
    padding-top: 10px;
}

.lp-flow-foot .lp-builder-total {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 10px;
}

.lp-size-sheet[hidden] { display: none !important; }
.lp-size-sheet {
    position: fixed;
    inset: 0;
    z-index: 860;
    background: rgba(74, 48, 44, 0.45);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
}
.lp-size-sheet-panel {
    background: var(--lp-card);
    border-radius: 16px;
    padding: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 88vh;
    overflow: auto;
}
.lp-size-sheet-panel h2 {
    margin: 0 0 12px;
    font-size: 22px;
}
.lp-size-sheet-panel img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.lp-step-num {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lp-accent);
}

.lp-back {
    border: 0;
    background: none;
    padding: 0;
    margin: 0 0 14px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--lp-muted);
    cursor: pointer;
}

.lp-kit-switch {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0 0;
}

.lp-model-picks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
    flex: 1;
    min-height: 0;
    align-content: start;
}

.lp-model-pick {
    border: 1px solid var(--lp-line);
    background: var(--lp-card);
    border-radius: 14px;
    padding: 8px 8px 10px;
    text-align: left;
    color: var(--lp-ink);
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: auto;
}

.lp-model-pick-photo {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 10px;
    background: #F3EEE8;
}

.lp-model-pick img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 0;
    background: #F3EEE8;
    display: block;
}

.lp-model-pick-badge {
    position: absolute;
    left: 8px;
    bottom: 8px;
    background: var(--lp-accent);
    color: #fff;
    -webkit-text-fill-color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}

.lp-model-pick strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 1px;
    padding: 0 4px;
    color: var(--lp-accent);
}
.lp-model-pick > span:last-of-type {
    display: block;
    color: var(--lp-muted);
    font-size: 13px;
    padding: 0 4px;
}
.lp-model-pick.is-on { border-color: var(--lp-accent); box-shadow: 0 0 0 1px var(--lp-accent); }

.lp-model-choose {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    border: 0;
    background: var(--lp-accent);
    color: #fff;
    -webkit-text-fill-color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.lp-model-choose:hover { background: var(--lp-accent-dark); }

.lp-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
    min-height: 0;
}

.lp-flow-screen .lp-builder-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--lp-bg);
    border: 1px solid var(--lp-line);
    border-radius: 12px;
    padding: 8px;
}

.lp-flow-screen .lp-builder-preview img {
    width: 84px;
    height: 84px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.lp-flow-screen .lp-builder-preview p {
    margin: 0;
    text-align: left;
    font-size: 14px;
}

.lp-flow-screen .lp-color-picks {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.lp-flow-screen .lp-color-pick {
    padding: 4px;
}

.lp-flow-screen .lp-color-pick img {
    aspect-ratio: 1;
    margin-bottom: 4px;
}

.lp-flow-screen .lp-color-pick span { font-size: 11px; }

.lp-flow-screen .lp-details .lp-field-label:not(:first-child) { margin-top: 12px; }

.lp-flow-screen .lp-options {
    gap: 6px;
    margin-bottom: 0;
}

.lp-flow-screen .lp-size {
    padding: 7px 10px;
    font-size: 13px;
}

.lp-flow-screen .lp-summary { margin: 8px 0 0; }

.lp-field-label {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
}

.lp-details .lp-field-label:not(:first-child) { margin-top: 18px; }

.lp-color-picks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.lp-color-pick {
    border: 1px solid var(--lp-line);
    background: var(--lp-card);
    border-radius: 10px;
    padding: 6px;
    cursor: pointer;
    font: inherit;
    text-align: center;
}

.lp-color-pick img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin-bottom: 6px;
    background: var(--lp-soft);
}

.lp-color-pick span { font-size: 12px; font-weight: 600; }
.lp-color-pick.is-on { border-color: var(--lp-accent); box-shadow: 0 0 0 1px var(--lp-accent); }

.lp-details .lp-btn { margin-top: 20px; }

.lp-summary {
    display: grid;
    gap: 12px;
    margin: 18px 0 20px;
}

.lp-summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--lp-bg);
    border-radius: 12px;
    padding: 10px;
}

.lp-summary-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
}

.lp-summary-item p {
    margin: 0;
    font-weight: 700;
    flex: 1;
    min-width: 0;
}
.lp-summary-item span { font-weight: 500; color: var(--lp-muted); }

.lp-swap {
    flex: 0 0 auto;
    margin: 0;
    padding: 8px 12px;
    border: 1px solid var(--lp-accent);
    border-radius: 999px;
    background: #fff;
    color: var(--lp-accent);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.lp-sticky .lp-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 11px 16px;
    background: #fff;
    color: var(--lp-ink);
    -webkit-text-fill-color: var(--lp-ink);
}

@media (max-width: 900px) {
    .lp-nav { display: none; }
    .lp-logo__img { height: 44px; max-width: 200px; }
    .lp-hero {
        grid-template-columns: 1fr;
        padding-top: 12px;
        gap: 24px;
    }
    .lp-hero-copy { order: 2; }
    .lp-stories { order: 1; }
    .lp-hero h1 { max-width: none; }
    .lp-builder, .lp-model-grid, .lp-kit-switch, .lp-benefit-grid, .lp-reviews, .lp-trust, .lp-details {
        grid-template-columns: 1fr;
    }
    .lp-size-chart { max-width: none; }
    .lp-trust {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 16px;
        gap: 6px;
    }
    .lp-trust > * {
        width: calc(50% - 3px);
        box-sizing: border-box;
        padding: 10px 8px;
    }
    .lp-trust > :last-child { width: 100%; }
    .lp-offer { margin-bottom: 12px; }
    .lp-models,
    .lp-benefits,
    .lp-sizes,
    .lp-proof,
    .lp-guarantee {
        margin-bottom: 36px;
    }
    .lp-faq {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }
    .store-main:has(.lp-sticky) {
        padding-bottom: 0;
    }
    .store-wrapper:has(.lp-sticky) .store-footer {
        padding-bottom: calc(var(--mobile-nav-height) + 12px);
    }
    .lp-sticky { display: none; }
    .lp-sticky.is-on { display: flex; }
    .lp-icon-link { display: none; }

    .lp-wizard { padding: 16px; }
    .lp-wizard h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }
    .lp-wizard .lp-lead {
        font-size: 14px;
        margin-bottom: 0;
    }
    .lp-kit-switch {
        gap: 10px;
        margin-top: 12px;
    }
    .lp-kit-tab {
        padding: 8px 8px 10px;
    }
    .lp-kit-tab img {
        aspect-ratio: 16 / 9;
        height: auto;
        margin-bottom: 6px;
    }
    .lp-kit-name { font-size: 18px; }
    .lp-kit-tab small { font-size: 12px; }
    .lp-kit-tab strong {
        font-size: 20px;
        margin: 6px 0 0;
    }
    .lp-kit-choose {
        margin-top: 8px;
        padding: 10px 12px;
        font-size: 13px;
    }
    .lp-flow-panel {
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    }
    .lp-flow-head h2 { font-size: 18px; }
    .lp-flow-head .lp-lead { font-size: 12px; }
    .lp-model-picks { gap: 8px; margin-top: 8px; }
    .lp-model-pick { padding: 6px 6px 8px; }
    .lp-model-pick-photo {
        aspect-ratio: 16 / 9;
        height: auto;
        margin-bottom: 6px;
    }
    .lp-model-pick-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
    .lp-model-pick strong { font-size: 22px; }
    .lp-model-choose {
        margin-top: 6px;
        padding: 9px 10px;
        font-size: 13px;
    }
}

@media (max-height: 700px) {
    .lp-flow-head h2 { font-size: 17px; }
    .lp-flow-head .lp-lead { font-size: 12px; }
    .lp-model-pick-photo {
        aspect-ratio: 16 / 9;
        height: auto;
    }
    .lp-model-pick > span:last-of-type { font-size: 12px; }
}

.lp-flow-screen[data-step="details"] .lp-flow-body,
.lp-flow-screen[data-step="checkout"] .lp-flow-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 901px) {
    .lp-flow-screen.is-on {
        background: rgba(74, 48, 44, 0.42);
        padding: 24px;
        align-items: center;
        justify-content: center;
    }
    .lp-flow-panel {
        max-width: 440px;
        height: min(760px, 90dvh);
        flex: 0 1 auto;
        border: 1px solid var(--lp-line);
        border-radius: 16px;
        padding: 18px 18px 16px;
    }
}

.cart-drawer-item-options,
.cart-product-options {
    display: block;
    font-size: 12px;
    color: var(--lp-muted, #5F5A55);
    margin-top: 4px;
    line-height: 1.35;
}
