/* Butterlane lander — clean rebuild of the parent theme look. */

:root {
  --font-body: Poppins, sans-serif;
  --font-heading: Poppins, sans-serif;
  --c-text: 18, 18, 18;
  --c-bg1: 255, 255, 255;
  --c-bg2: 243, 243, 243;
  --c-accent: 230, 11, 11;      /* buttons, price, sale badge */
  --c-accent-alt: 221, 29, 29;  /* dividers, section buttons */
  --c-dark: 46, 42, 57;         /* image-with-text bg, comparison highlighted cells, ticker fg */
  --c-footer: 18, 18, 18;
  --c-trust: 0, 182, 122;       /* trustpilot green */
  --media-radius: 12px;
  --card-radius: 1.2rem;
  --btn-radius: 6px;
  --text-box-radius: 24px;
  --page-width: 140rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { font-size: 62.5%; height: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgb(var(--c-text));
  background: rgb(var(--c-bg1));
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; letter-spacing: 0.06rem; margin: 0 0 1.2rem; }
h1, .h1 { font-size: 2.8rem; }
h2, .h2 { font-size: 2.4rem; }
h3, .h3 { font-size: 1.8rem; }
h4, .h4 { font-size: 1.6rem; }
.h0 { font-size: 3.4rem; }
p { margin: 0 0 1.2rem; }
strong { font-weight: 700; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.visually-hidden { position: absolute !important; overflow: hidden; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip: rect(0 0 0 0); word-wrap: normal !important; }

.page-width { max-width: var(--page-width); margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }

.title-with-highlight strong { color: rgb(var(--c-accent-alt)); }

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
  min-height: 4.6rem; padding: 0 3rem;
  font-size: 1.5rem; font-weight: 700; letter-spacing: 0.06rem; text-decoration: none;
  color: #fff; background: rgb(var(--c-accent)); border: 2px solid rgb(var(--c-accent)); border-radius: var(--btn-radius);
  transition: opacity .15s ease, transform .15s ease;
}
.button:hover { opacity: .92; }
.button--full-width { width: 100%; }
.button--secondary { background: transparent; color: rgb(var(--c-accent)); }
.button--white { background: #fff; color: rgb(var(--c-footer)); border-color: #fff; }
.button .icon { width: 1.6rem; height: 1.6rem; }

/* ---------- Ticker ---------- */
.horizontal-ticker { overflow: hidden; background: #fff; color: rgb(var(--c-dark)); padding: 12px 0; font-size: 1.3rem; font-weight: 700; letter-spacing: .04rem; text-transform: uppercase; white-space: nowrap; }
.horizontal-ticker__container { display: flex; column-gap: 60px; width: max-content; animation: ticker 50s linear infinite; }
.horizontal-ticker__container p { margin: 0; }
.horizontal-ticker--welcome .horizontal-ticker__container { animation-duration: 100s; }
@keyframes ticker { to { transform: translateX(calc(-50% - 30px)); } }
@media (min-width: 750px) {
  .horizontal-ticker { padding: 16px 0; font-size: 1.4rem; }
  .horizontal-ticker__container { column-gap: 100px; }
  @keyframes ticker { to { transform: translateX(calc(-50% - 50px)); } }
}

/* ---------- Header ---------- */
.header-wrapper { background: rgb(var(--c-bg2)); border-bottom: 1px solid rgba(var(--c-text), .08); position: sticky; top: 0; z-index: 50; }
.header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 6.4rem; padding: 0.8rem 1.5rem; }
.header__icon { display: inline-flex; align-items: center; justify-content: center; width: 4.4rem; height: 4.4rem; background: none; border: 0; color: rgb(var(--c-text)); }
.header__icon svg { width: 2.2rem; height: 2.2rem; }
.header__heading-link { display: block; justify-self: center; text-decoration: none; font-weight: 700; font-size: 2.4rem; letter-spacing: .1rem; text-transform: uppercase; color: rgb(var(--c-text)); }
.header__heading-link .logo-mark { color: rgb(var(--c-accent)); }
.header__inline-menu { display: none; }
.header__inline-menu ul { display: inline-flex; flex-wrap: wrap; gap: 0 1.2rem; }
.header__menu-item { font-size: 1.4rem; text-decoration: none; padding: .8rem .4rem; color: rgba(var(--c-text), .75); }
.header__menu-item:hover { color: rgb(var(--c-text)); text-decoration: underline; text-underline-offset: .3rem; }
.header__right { justify-self: end; }
@media (min-width: 990px) {
  .header { grid-template-columns: 1fr auto 1fr; }
  .header__inline-menu { display: block; }
  .header__menu-toggle { display: none; }
  .header__heading-link { font-size: 2.8rem; }
}

/* Menu drawer (mobile) */
.menu-drawer { position: fixed; inset: 0; z-index: 60; display: none; }
.menu-drawer.is-open { display: block; }
.menu-drawer__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.menu-drawer__inner-container { position: absolute; top: 0; left: 0; bottom: 0; width: min(85vw, 36rem); background: #fff; padding: 2rem; overflow-y: auto; }
.menu-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.menu-drawer__head h3 { margin: 0; }
.menu-drawer__close { background: none; border: 0; width: 4rem; height: 4rem; }
.menu-drawer__menu-item { display: block; padding: 1.1rem 0; font-size: 1.6rem; text-decoration: none; border-bottom: 1px solid rgba(var(--c-text), .08); }

/* ---------- Product (main) ---------- */
.product { display: grid; gap: 2.4rem; padding: 2.4rem 0 3.6rem; }
.product__media { position: relative; }
.product__media-item { border-radius: var(--media-radius); overflow: hidden; background: rgb(var(--c-bg2)); }
.product__media-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.product__title h1 { font-size: 2.6rem; margin-bottom: .8rem; }
.product__subtitle { font-size: 1.5rem; margin: 0 0 1.2rem; }
.rating { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem; }
.rating__label { font-size: 1.4rem; }
.trust-stars { display: inline-block; width: 11rem; height: auto; }
.trust-stars--sm { width: 9rem; }

.price { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: .6rem; }
.price__container { display: flex; align-items: baseline; gap: 1rem; }
.price-item--sale { font-size: 2.4rem; font-weight: 700; color: rgb(var(--c-text)); }
.price-item--regular { font-size: 1.8rem; color: rgb(var(--c-accent)); }
.badge { display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .9rem; border-radius: .6rem; font-size: 1.2rem; font-weight: 700; letter-spacing: .06rem; text-transform: uppercase; }
.badge--sale { background: rgb(var(--c-accent)); color: #fff; }
.badge .icon { width: 1.1rem; height: 1.1rem; }
.installment { font-size: 1.3rem; color: rgba(var(--c-text), .7); margin-bottom: 1rem; }

.product__text-container { display: flex; align-items: center; gap: 1rem; background: #f3f3f3; border-radius: .4em; padding: .6em .9em; margin: 0 0 .8rem; font-size: 1.4rem; }
.product__text-container--first { margin-top: 1.6rem; }
.product__text-container--center { justify-content: center; text-align: center; }
.product__text-container p { margin: 0; }
.product__text-container .icon-check { flex: 0 0 auto; width: 2rem; height: 2rem; color: rgb(var(--c-accent)); }
.product__text-container--plain { background: transparent; padding: .2em 0; }

.product-form { margin: 1.6rem 0 1.2rem; }
.product-form .button { min-height: 5.2rem; font-size: 1.6rem; }
.trust-line { text-align: center; font-size: 1.3rem; margin-bottom: 1rem; }
.payment-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
.payment-badges li { font-size: 1rem; font-weight: 700; letter-spacing: .05rem; text-transform: uppercase; padding: .3rem .7rem; border: 1px solid rgba(var(--c-text), .2); border-radius: .4rem; color: rgba(var(--c-text), .8); background: #fff; }

.product__description { margin-top: 2.4rem; font-size: 1.5rem; }
.product__description p { margin-bottom: 1.4rem; }

.accordion { border-top: 1px solid rgba(var(--c-text), .1); }
.accordion__details { border-bottom: 1px solid rgba(var(--c-text), .1); }
.accordion__summary { display: flex; align-items: center; gap: 1rem; padding: 1.4rem 0; cursor: pointer; list-style: none; }
.accordion__summary::-webkit-details-marker { display: none; }
.accordion__summary .icon-caret { margin-left: auto; width: 1.4rem; height: 1.4rem; transition: transform .2s; }
.accordion__details[open] .icon-caret { transform: rotate(180deg); }
.accordion__title { margin: 0; font-size: 1.5rem; }
.accordion__icon { width: 2.2rem; height: 2.2rem; color: rgb(var(--c-accent)); }
.accordion__content { padding: 0 0 1.6rem 3.2rem; font-size: 1.4rem; }
.accordion__content p { margin: 0; }
.product__view-details { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1.6rem; font-size: 1.4rem; }

@media (min-width: 990px) {
  .product { grid-template-columns: 1.1fr 1fr; gap: 4rem; padding: 3.6rem 0 4.8rem; align-items: start; }
  .product__media { position: sticky; top: 8rem; }
  .product__title h1 { font-size: 3.2rem; }
}

/* ---------- Sticky ATC (shown only after scroll) ---------- */
.sticky-atc { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; background: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,.1); padding: 1rem 1.5rem; transform: translateY(110%); transition: transform .25s ease; }
.sticky-atc.is-visible { transform: translateY(0); }
.sticky-atc__inner { max-width: var(--page-width); margin: 0 auto; display: flex; align-items: center; gap: 1.2rem; }
.sticky-atc__img { width: 5.2rem; height: 5.2rem; border-radius: .8rem; object-fit: cover; flex: 0 0 auto; }
.sticky-atc__info { flex: 1 1 auto; min-width: 0; }
.sticky-atc__info h4 { margin: 0; font-size: 1.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc__info .price__container { gap: .6rem; }
.sticky-atc__info .price-item--sale { font-size: 1.6rem; }
.sticky-atc__info .price-item--regular { font-size: 1.3rem; }
.sticky-atc .button { min-height: 4.4rem; padding: 0 2rem; font-size: 1.4rem; }
body.has-sticky { padding-bottom: 7.4rem; }

/* ---------- Section divider (wave) ---------- */
.section-divider { line-height: 0; background: #fff; }
.section-divider svg { display: block; width: 100%; height: 40px; color: rgb(var(--c-accent-alt)); }
.section-divider--flip svg { transform: scaleY(-1); }
@media (min-width: 750px) { .section-divider svg { height: 60px; } }

/* ---------- Generic section ---------- */
.section { padding: 27px 0; }
.section__heading { text-align: center; margin-bottom: 2rem; }
@media (min-width: 750px) { .section { padding: 36px 0; } .section__heading { margin-bottom: 2.8rem; } }

/* ---------- Slider (splide-like) ---------- */
.splide { position: relative; }
.splide__track { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.splide__track::-webkit-scrollbar { display: none; }
.splide__list { display: flex; gap: 1.6rem; }
.splide__slide { flex: 0 0 85%; scroll-snap-align: center; }
.splide__slide__container { border-radius: var(--media-radius); overflow: hidden; background: rgb(var(--c-bg2)); }
.splide__slide__container img, .splide__slide__container video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.splide__arrows { display: flex; justify-content: center; gap: 1.2rem; margin-top: 1.4rem; }
.splide__arrow { width: 3.6rem; height: 3.6rem; border-radius: 50%; border: 0; background: rgb(var(--c-dark)); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.splide__arrow svg { width: 1.2rem; height: 1.2rem; }
.splide__pagination { display: flex; justify-content: center; gap: 12px; margin-top: 1rem; }
.splide__pagination button { width: 6px; height: 6px; border-radius: 5px; border: 0; padding: 0; background: rgba(var(--c-dark), .35); }
.splide__pagination button.is-active { background: rgb(var(--c-dark)); transform: scale(1.5); }
@media (min-width: 750px) { .splide__slide { flex-basis: calc((100% - 3.2rem) / 3); } }
@media (min-width: 990px) { .splide--ugc .splide__slide { flex-basis: calc((100% - 6.4rem) / 5); } }

.video-container { position: relative; }
.internal-video__play { position: absolute; inset: 0; margin: auto; width: 6rem; height: 6rem; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: rgb(var(--c-accent)); display: inline-flex; align-items: center; justify-content: center; }
.internal-video__play svg { width: 2.4rem; height: 2.4rem; }
.internal-video--playing .internal-video__play { display: none; }

/* ---------- Image with text ---------- */
.image-with-text { background: rgb(var(--c-dark)); color: #fff; border-radius: var(--text-box-radius); overflow: hidden; display: grid; }
.image-with-text__media img { width: 100%; height: 100%; object-fit: cover; }
.image-with-text__content { padding: 3rem 2.4rem; text-align: center; }
.image-with-text__heading { font-size: 2.4rem; }
.image-with-text .title-with-highlight strong { color: #fff; }
@media (min-width: 750px) {
  .image-with-text { grid-template-columns: 1fr 1fr; align-items: center; }
  .image-with-text__content { padding: 4.8rem 4rem; text-align: left; }
  .image-with-text__heading { font-size: 3.2rem; }
}

/* ---------- Comparison table ---------- */
.comparison-table-container { display: flex; justify-content: center; }
.comparison-table { width: 100%; max-width: 72rem; border-collapse: separate; border-spacing: 0; border-radius: 2rem; overflow: hidden; box-shadow: 0 .6rem 1.5rem rgba(0,0,0,.08); }
.comparison-table th { padding: 1.4rem 1rem; font-size: 1.8rem; font-weight: 700; }
.comparison-table__logo { color: rgb(var(--c-accent)); text-transform: uppercase; letter-spacing: .08rem; }
.comparison-table__others { color: rgba(var(--c-dark), .7); }
.comparison-table td { padding: 1.4rem 1rem; text-align: center; font-size: 1.4rem; }
.comparison-table td.highlighted-cell { background: rgb(var(--c-dark)); color: #fff; font-weight: 700; text-align: left; padding-left: 2rem; }
.comparison-table td.regular-cell { background: #fff; border-bottom: 1px solid rgba(var(--c-dark), .1); }
.comparison-table tr:last-child td.regular-cell { border-bottom: 0; }
.comparison-table .icon { width: 2.2rem; height: 2.2rem; }
.comparison-table .icon-yes { color: rgb(var(--c-trust)); }
.comparison-table .icon-no { color: rgb(var(--c-accent)); }

/* ---------- Content tabs (FAQ) ---------- */
.content-tabs { max-width: 100rem; margin: 0 auto; }
.content-tabs__buttons { display: flex; gap: .6rem; padding: .6rem; background: #000; color: #fff; border-radius: 0.6em; margin-bottom: 2.4rem; }
.content-tab-button { flex: 1 1 0; background: transparent; color: #fff; border: 0; border-radius: 0.6em; padding: 1.1rem .8rem; font-size: 1.3rem; font-weight: 700; line-height: 1.25; }
.content-tab-button.is-active { background: rgb(var(--c-accent-alt)); }
.content-tab { display: none; text-align: center; padding: 0 1rem; }
.content-tab.is-active { display: block; }
.content-tab h2 { font-size: 2.2rem; }
@media (min-width: 750px) { .content-tab-button { font-size: 1.5rem; } .content-tab h2 { font-size: 2.8rem; } }

/* ---------- Product cards (featured collection) ---------- */
.card { display: block; position: relative; text-decoration: none; text-align: center; border-radius: var(--card-radius); overflow: hidden; background: #fff; box-shadow: .2rem .6rem 1.5rem rgba(0,0,0,.1); }
.card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.card__badge { position: absolute; top: 1rem; left: 1rem; }
.card__content { padding: 1.4rem 1.2rem 1.8rem; }
.card__heading { font-size: 1.5rem; margin-bottom: .6rem; }
.card .price { justify-content: center; margin: 0; }
.card .price-item--sale { font-size: 1.8rem; }
.card .price-item--regular { font-size: 1.4rem; }
.section__cta { text-align: center; margin-top: 2.4rem; }

/* ---------- Trustpilot reviews ---------- */
.trustpilot-reviews__subheading { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .8rem; font-size: 1.8rem; margin-bottom: 2.4rem; }
.testimonial-card { background: rgb(var(--c-bg2)); border-radius: 16px; padding: 2rem; height: 100%; display: flex; flex-direction: column; gap: 1.2rem; color: rgb(var(--c-dark)); }
.testimonial-card__text { font-size: 1.4rem; flex: 1 1 auto; }
.testimonial-card__author-container { display: flex; align-items: center; gap: 1rem; font-size: 1.3rem; font-weight: 700; }
.avatar { flex: 0 0 auto; width: 3.6rem; height: 3.6rem; border-radius: 50%; background: rgb(var(--c-dark)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 700; }
.splide--reviews .splide__slide__container { background: transparent; border-radius: 0; overflow: visible; height: 100%; }
.splide--reviews .splide__slide { flex-basis: 85%; }
@media (min-width: 750px) { .splide--reviews .splide__slide { flex-basis: calc((100% - 3.2rem) / 3); } }

/* ---------- Newsletter (collection page) ---------- */
.newsletter { text-align: center; max-width: 56rem; margin: 0 auto; }
.newsletter-form { display: flex; gap: .8rem; margin-top: 1.6rem; }
.field__input { flex: 1 1 auto; min-height: 4.6rem; padding: 0 1.4rem; font: inherit; border: 1px solid rgba(var(--c-text), .3); border-radius: var(--btn-radius); }

/* ---------- Footer ---------- */
.footer { background: rgb(var(--c-footer)); color: #fff; padding: 12px 0 16px; }
.footer-block__heading { font-size: 1.8rem; }
.footer .field__input { background: #fff; color: rgb(var(--c-text)); border-color: transparent; }
.footer__newsletter { display: flex; flex-direction: column; gap: .8rem; max-width: 40rem; margin: 1rem 0 2rem; }
.footer__payment { margin: 2rem 0; }
.footer__payment-label { display: block; font-size: 1.2rem; margin-bottom: .8rem; opacity: .8; }
.footer .payment-badges { justify-content: flex-start; }
.footer .payment-badges li { background: #fff; color: rgb(var(--c-text)); border-color: transparent; }
.footer__copyright { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; font-size: 1.2rem; opacity: .85; }
.footer__copyright a { color: #fff; }
.policies { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; }

/* ---------- Floating scroll-to-top ---------- */
.scroll-to-top-btn { position: fixed; right: 1.6rem; bottom: 8.6rem; z-index: 39; width: 4.4rem; height: 4.4rem; border-radius: 50%; border: 0; background: rgb(var(--c-dark)); color: #fff; display: none; align-items: center; justify-content: center; box-shadow: 0 .4rem 1.2rem rgba(0,0,0,.2); }
.scroll-to-top-btn.is-visible { display: inline-flex; }
.scroll-to-top-btn svg { width: 1.6rem; height: 1.6rem; }

/* ---------- Page title (collection layout) ---------- */
.main-page-title { text-align: center; padding: 2.4rem 0 .8rem; }

/* ---------- Back / rescue page ---------- */
.rescue { max-width: 64rem; margin: 0 auto; padding: 3.6rem 0 4.8rem; text-align: center; }
.rescue .product__media-item { max-width: 36rem; margin: 0 auto 2rem; }
.rescue .price { justify-content: center; }
.rescue .product-form { max-width: 42rem; margin-left: auto; margin-right: auto; }

/* ---------- Bundle builder (collection-bundle.html) ---------- */
.page-width--narrow { max-width: 100rem; }
.bundle-builder__intro { text-align: center; max-width: 64rem; margin: 0 auto 2rem; font-size: 1.4rem; color: rgba(var(--c-text), .8); }
.bundle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.bundle-card { display: flex; flex-direction: column; text-align: center; background: #fff; border-radius: var(--card-radius); overflow: hidden; box-shadow: .2rem .6rem 1.5rem rgba(0,0,0,.1); border: 2px solid transparent; position: relative; transition: border-color .15s; }
.bundle-card.is-selected { border-color: rgb(var(--c-accent)); }
.bundle-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.bundle-card__content { padding: 1.2rem 1rem 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1 1 auto; }
.bundle-card__heading { font-size: 1.4rem; margin: 0; flex: 1 1 auto; }
.bundle-card .price { justify-content: center; margin: 0; }
.bundle-card .price-item--sale { font-size: 1.7rem; }
.bundle-card .price-item--regular { font-size: 1.3rem; }
.qty { display: inline-flex; align-items: center; justify-content: center; margin: .4rem auto 0; border: 1px solid rgba(var(--c-text), .25); border-radius: var(--btn-radius); overflow: hidden; }
.qty__btn { width: 3.8rem; height: 3.8rem; border: 0; background: #fff; font-size: 2rem; line-height: 1; color: rgb(var(--c-text)); }
.qty__btn:hover { background: rgb(var(--c-bg2)); }
.qty__value { min-width: 3.4rem; text-align: center; font-weight: 700; font-size: 1.5rem; }
.bundle-card__badge { position: absolute; top: 1rem; left: 1rem; }
.bundle-summary { position: sticky; bottom: 0; z-index: 40; background: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,.1); padding: 1.2rem 1.5rem; margin: 2.4rem -1.5rem 0; }
.bundle-summary__inner { max-width: 100rem; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; }
.bundle-summary__info { font-size: 1.4rem; }
.bundle-summary__info strong { font-size: 1.8rem; }
.bundle-summary__saving { color: rgb(var(--c-accent)); font-weight: 700; }
.bundle-summary .button { flex: 1 1 22rem; min-height: 5.2rem; font-size: 1.6rem; }
@media (min-width: 750px) { .bundle-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; } .bundle-card__heading { font-size: 1.5rem; } }
@media (min-width: 990px) { .bundle-summary .button { flex: 0 1 30rem; } }

/* ---------- Order bump / checkout demo (bump.html) ---------- */
.checkout { max-width: 64rem; margin: 0 auto; padding: 2.4rem 0 4.8rem; }
.checkout__step { font-size: 1.2rem; font-weight: 700; letter-spacing: .08rem; text-transform: uppercase; color: rgba(var(--c-text), .6); margin-bottom: .6rem; }
.checkout h1 { font-size: 2.2rem; margin-bottom: 1.6rem; }
.order-summary { background: rgb(var(--c-bg2)); border-radius: var(--card-radius); padding: 1.6rem; margin-bottom: 2.4rem; }
.order-line { display: flex; align-items: center; gap: 1.2rem; }
.order-line__img { width: 6.4rem; height: 6.4rem; border-radius: .8rem; object-fit: cover; flex: 0 0 auto; background: #fff; }
.order-line__info { flex: 1 1 auto; min-width: 0; }
.order-line__info h3 { font-size: 1.4rem; margin: 0 0 .2rem; }
.order-line__meta { font-size: 1.2rem; color: rgba(var(--c-text), .65); }
.order-line__price { text-align: right; white-space: nowrap; }
.order-line__price .price-item--sale { font-size: 1.6rem; display: block; }
.order-line__price .price-item--regular { font-size: 1.2rem; }
.bump-heading { font-size: 1.8rem; margin: 0 0 .4rem; }
.bump-sub { font-size: 1.3rem; color: rgba(var(--c-text), .7); margin-bottom: 1.4rem; }
.bump { display: block; border: 2px dashed rgb(var(--c-accent)); border-radius: var(--card-radius); background: #fff8f8; margin-bottom: 1.4rem; overflow: hidden; cursor: pointer; transition: box-shadow .15s, border-style .15s; }
.bump:has(input:checked) { border-style: solid; box-shadow: 0 .6rem 1.5rem rgba(230,11,11,.15); }
.bump__head { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; background: rgb(var(--c-accent)); color: #fff; font-weight: 700; font-size: 1.4rem; }
.bump__head input { width: 2rem; height: 2rem; margin: 0; accent-color: #fff; flex: 0 0 auto; cursor: pointer; }
.bump__body { display: flex; gap: 1.2rem; padding: 1.4rem; align-items: center; }
.bump__img { width: 8rem; height: 8rem; border-radius: .8rem; object-fit: cover; flex: 0 0 auto; background: #fff; }
.bump__title { font-size: 1.5rem; margin: 0 0 .4rem; }
.bump__desc { font-size: 1.3rem; margin: 0 0 .6rem; color: rgba(var(--c-text), .8); }
.bump__price { font-size: 1.5rem; font-weight: 700; color: rgb(var(--c-accent)); }
.bump__price s { color: rgba(var(--c-text), .55); font-weight: 400; font-size: 1.3rem; margin-left: .4rem; }
.post-purchase { border-top: 1px solid rgba(var(--c-text), .1); border-bottom: 1px solid rgba(var(--c-text), .1); padding: 1.6rem 0; margin: 2.4rem 0; }
.post-purchase h3 { font-size: 1.3rem; letter-spacing: .08rem; text-transform: uppercase; color: rgba(var(--c-text), .6); margin-bottom: 1rem; }
.post-purchase li { display: flex; gap: 1rem; align-items: flex-start; font-size: 1.3rem; padding: .6rem 0; }
.post-purchase li img { width: 4.4rem; height: 4.4rem; border-radius: .6rem; object-fit: cover; flex: 0 0 auto; }
.totals { font-size: 1.4rem; margin-bottom: 1.6rem; }
.totals__row { display: flex; justify-content: space-between; padding: .5rem 0; }
.totals__row--total { border-top: 1px solid rgba(var(--c-text), .15); margin-top: .6rem; padding-top: 1rem; font-size: 1.8rem; font-weight: 700; }
.totals__row--saving { color: rgb(var(--c-trust)); font-weight: 700; }
.checkout .button { min-height: 5.6rem; font-size: 1.7rem; }
.checkout__secure { text-align: center; font-size: 1.2rem; color: rgba(var(--c-text), .65); margin-top: 1rem; }
.header--checkout { grid-template-columns: 1fr; justify-items: center; }

/* ---------- High-ticket PDP (bakery-blueprint.html) ---------- */
.product__text-container .text-sub { display: block; font-size: 1.25rem; color: rgba(var(--c-text), .7); font-weight: 400; }
.thumbnail-list { display: flex; gap: .8rem; margin-top: 1rem; overflow-x: auto; scrollbar-width: none; }
.thumbnail-list::-webkit-scrollbar { display: none; }
.thumbnail { flex: 0 0 auto; width: 6.4rem; height: 6.4rem; padding: 0; border: 2px solid transparent; border-radius: .8rem; overflow: hidden; background: rgb(var(--c-bg2)); }
.thumbnail.is-active { border-color: rgb(var(--c-accent)); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.value-stack { max-width: 60rem; margin: 0 auto; background: #fff; border-radius: 12px; padding: 2.8rem; box-shadow: 0 10px 40px rgba(0,0,0,.3); }
.value-stack__header { text-align: center; margin-bottom: 2.4rem; }
.value-stack__title { font-size: 2.56rem; color: #e60b0e; margin: 0 0 1rem; letter-spacing: .1rem; }
.value-stack__subtitle { font-size: 1.6rem; margin: 0; opacity: .9; }
.value-stack__item { display: flex; justify-content: space-between; align-items: flex-start; padding: 1.4rem 0; border-bottom: 1px dashed #c8a96e; }
.value-stack__item:last-child { border-bottom: 0; }
.value-stack__name { flex: 1; font-size: 1.35rem; line-height: 1.4; padding-right: 1.5rem; }
.value-stack__price { font-size: 1.44rem; color: #c8a96e; font-weight: 600; white-space: nowrap; }
.value-stack__divider { height: 2px; background: #c8a96e; margin: 2.5rem 0; opacity: .8; }
.value-stack__total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.value-stack__total-label { font-size: 1.8rem; font-weight: 700; letter-spacing: .1rem; }
.value-stack__total-value { font-size: 2.2rem; font-weight: 700; text-decoration: line-through; opacity: .7; }
.value-stack__today { text-align: center; }
.value-stack__today-label { font-size: 1.8rem; font-weight: 600; margin-bottom: .5rem; }
.value-stack__today-amount { font-size: 3.84rem; color: #e60b0b; font-weight: 700; margin-bottom: .8rem; line-height: 1.1; }
.value-stack__plan { font-size: 1.4rem; opacity: .8; }
@media (min-width: 750px) { .value-stack { padding: 4rem; } .value-stack__title { font-size: 3.2rem; } .value-stack__name { font-size: 1.5rem; } .value-stack__price { font-size: 1.6rem; } .value-stack__today-amount { font-size: 4.8rem; } }
.module-card { background: rgb(var(--c-bg2)); border-radius: 16px; padding: 2rem; height: 100%; }
.module-card h3 { font-size: 1.5rem; color: rgb(var(--c-accent-alt)); }
.module-card p { margin: 0; font-size: 1.4rem; }
.splide--modules .splide__slide__container { background: transparent; border-radius: 0; overflow: visible; height: 100%; }
.splide--ugc-tall .splide__slide__container img { aspect-ratio: 9 / 16; }
