:root {
    --page-ink: var(--brand-ink);
    --page-accent: var(--brand-accent);
    --page-soft: var(--brand-mist);
    --page-bg: var(--brand-bg);
}

.about-page { overflow: hidden; background: var(--page-bg); color: var(--page-ink); }
.about-page__hero { display: grid; min-height: 580px; place-items: center; background: var(--brand-navy); color: var(--shop-block-light-text); text-align: center; }
.about-page__hero-inner { width: min(850px, 90%); padding: 90px 0; }
.about-page__eyebrow { margin: 0 0 18px; color: var(--page-accent); font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.about-page__hero .about-page__eyebrow, .about-page__reviews .about-page__eyebrow { color: var(--brand-lavender); }
.about-page h1 { margin: 0; font-size: clamp(48px, 7vw, 92px); letter-spacing: -.045em; line-height: .98; }
.about-page__hero-inner > p:last-child { max-width: 650px; margin: 30px auto 0; font-size: clamp(18px, 2vw, 24px); }
.about-page__section { display: grid; width: min(1200px, 90%); margin: 0 auto; padding: 130px 0; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: clamp(55px, 8vw, 120px); }
.about-page__section--reverse .about-page__copy { order: 2; }
.about-page__copy h2, .about-page__statement h2, .about-page__belief h2, .about-page__reviews h2, .about-page__faq h2 { margin: 0 0 28px; font-size: clamp(42px, 5.5vw, 72px); letter-spacing: -.04em; line-height: 1; }
.about-page__copy h2 span { color: var(--page-accent); }
.about-page__copy p, .about-page__belief p { margin: 0 0 22px; font-size: 18px; line-height: 1.75; }
.about-page__copy blockquote { margin: 34px 0 0; padding: 24px 28px; border-left: 4px solid var(--page-accent); background: var(--page-soft); font-size: 16px; line-height: 1.7; }
.about-page__media { overflow: hidden; aspect-ratio: 4 / 5; background: var(--page-soft); }
.about-page__media--rounded { border-radius: 36px; }
.about-page__media video { width: 100%; height: 100%; object-fit: cover; }
.about-page__button { display: inline-flex; margin-top: 12px; padding: 15px 28px; border: 2px solid var(--brand-navy); border-radius: 999px; background: var(--brand-navy); color: var(--shop-block-light-text); font-weight: 700; transition: transform .2s ease, background .2s ease; }
.about-page__button:hover { transform: translateY(-2px); background: var(--page-accent); border-color: var(--page-accent); }
.about-page__statement { padding: 140px max(5%, calc((100% - 1000px) / 2)); background: var(--page-soft); text-align: center; }
.about-page__statement > p:last-child { max-width: 800px; margin: 0 auto; font-size: 20px; line-height: 1.75; }
.about-page__belief { display: grid; width: min(1100px, 90%); margin: 0 auto; padding: 140px 0; grid-template-columns: 1fr 1fr; gap: 100px; }
.about-page__reviews { padding: 140px 5%; background: var(--brand-navy); color: var(--shop-block-light-text); text-align: center; }
.about-page__reviews p { margin: 0 0 10px; font-size: 20px; }
.about-page__button--light { border-color: var(--shop-block-light-text); background: var(--shop-block-light-text); color: var(--brand-navy); }

html body .page-light-button.shop-button {
    border: 2px solid var(--shop-block-light-text) !important;
    background: var(--shop-block-light-text) !important;
    color: var(--brand-navy) !important;
    text-decoration: none !important;
}

html body .page-light-button.shop-button:hover,
html body .page-light-button.shop-button:focus-visible {
    background: var(--brand-mist) !important;
    color: var(--brand-accent) !important;
}

html body .page-light-button.shop-button:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--brand-lavender) 55%, transparent) !important;
    outline-offset: 3px !important;
}
.about-page__faq { width: min(1000px, 90%); margin: 0 auto; padding: 140px 0; }
.about-page__accordion { margin-top: 55px; border-top: 1px solid color-mix(in srgb, var(--brand-ink) 20%, transparent); }
.about-page__faq-item { border-bottom: 1px solid color-mix(in srgb, var(--brand-ink) 20%, transparent); }
.about-page__faq-item h3 { margin: 0; }
.about-page__faq-item button { display: flex; width: 100%; padding: 28px 0; align-items: center; justify-content: space-between; gap: 30px; background: transparent; color: var(--page-ink); text-align: left; font-size: 20px; }
.about-page__faq-icon { position: relative; width: 22px; height: 22px; flex: 0 0 22px; }
.about-page__faq-icon::before, .about-page__faq-icon::after { position: absolute; top: 10px; left: 2px; width: 18px; height: 2px; background: var(--page-accent); content: ''; transition: transform .2s ease; }
.about-page__faq-icon::after { transform: rotate(90deg); }
.about-page__faq-item button[aria-expanded="true"] .about-page__faq-icon::after { transform: rotate(0); }
.about-page__faq-answer { overflow: hidden; }
.about-page__faq-answer-inner { padding: 0 55px 28px 0; font-size: 17px; line-height: 1.75; }
.about-page__faq-answer[hidden] { display: none !important; }
.about-page__faq-answer p { margin: 0 0 15px; }
.about-page__faq-answer a { color: var(--page-accent); font-weight: 700; }

@media (max-width: 1024px) {
    .about-page__hero, .about-page__section, .about-page__belief, .about-page__faq { width: 90%; margin-right: auto; margin-left: auto; }
    .about-page__hero { min-height: 500px; }
    .about-page__section { padding: 95px 0; gap: 50px; }
    .about-page__belief { gap: 55px; }
}

@media (max-width: 640px) {
    .about-page__hero, .about-page__section, .about-page__belief, .about-page__faq { width: 95%; margin-right: auto; margin-left: auto; }
    .about-page__hero { min-height: 450px; }
    .about-page__hero-inner { width: 95%; padding: 70px 0; }
    .about-page__section, .about-page__belief { grid-template-columns: 1fr; padding: 70px 0; gap: 40px; }
    .about-page__section--reverse .about-page__copy { order: initial; }
    .about-page__media { aspect-ratio: 4 / 4.5; }
    .about-page__media--rounded { border-radius: 24px; }
    .about-page__statement, .about-page__reviews { padding: 80px 5%; }
    .about-page__faq { padding: 80px 0; }
    .about-page__faq-item button { padding: 22px 0; font-size: 17px; }
}

/* Customer reviews page. */
.reviews-page { overflow: hidden; background: var(--page-bg); color: var(--page-ink); }
.reviews-page__hero { display: grid; min-height: 580px; place-items: center; background: var(--brand-navy); color: var(--shop-block-light-text); text-align: center; }
.reviews-page__hero-inner { width: min(900px, 90%); padding: 90px 0; }
.reviews-page__eyebrow { margin: 0 0 18px; color: var(--page-accent); font-size: 14px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.reviews-page__hero .reviews-page__eyebrow { color: var(--brand-lavender); }
.reviews-page h1 { margin: 0; font-size: clamp(48px, 7vw, 92px); letter-spacing: -.045em; line-height: .98; }
.reviews-page__hero-inner > p:last-child { max-width: 650px; margin: 30px auto 0; font-size: clamp(18px, 2vw, 24px); }
.reviews-page__intro { display: grid; width: min(1100px, 90%); margin: 0 auto; padding: 140px 0; grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(55px, 8vw, 110px); }
.reviews-page__intro h2, .reviews-page__feed h2, .reviews-page__promise h2, .reviews-page__thanks h2 { margin: 0; font-size: clamp(42px, 5.5vw, 72px); letter-spacing: -.04em; line-height: 1; }
.reviews-page__intro h2 span { color: var(--page-accent); }
.reviews-page__intro-copy p { margin: 0 0 28px; font-size: 18px; line-height: 1.75; }
.reviews-page__intro-copy .reviews-page__verified { padding: 24px 28px; border-left: 4px solid var(--page-accent); background: var(--page-soft); font-size: 16px; line-height: 1.7; }
.reviews-page__feed { padding: 130px max(5%, calc((100% - 1200px) / 2)); background: var(--page-soft); }
.reviews-page__feed-header { margin-bottom: 55px; text-align: center; }
.reviews-page__widgets { display: grid; gap: clamp(34px, 5vw, 64px); }
.reviews-page__widget { width: 100%; min-height: 280px; }
.reviews-page__promise { padding: 140px max(5%, calc((100% - 900px) / 2)); background: var(--brand-navy); color: var(--shop-block-light-text); text-align: center; }
.reviews-page__promise .reviews-page__eyebrow { color: var(--brand-lavender); }
.reviews-page__promise > p:not(.reviews-page__eyebrow) { max-width: 720px; margin: 30px auto 0; font-size: 20px; line-height: 1.7; }
.reviews-page__button { margin-top: 36px; }
.reviews-page__thanks { padding: 140px 5%; text-align: center; }
.reviews-page__thanks p { margin: 0 0 18px; color: var(--page-accent); font-size: clamp(18px, 2vw, 24px); font-weight: 700; }

@media (max-width: 1024px) {
    .reviews-page__hero, .reviews-page__intro, .reviews-page__feed, .reviews-page__promise, .reviews-page__thanks { width: 90%; margin-right: auto; margin-left: auto; }
    .reviews-page__hero { min-height: 500px; }
}

@media (max-width: 640px) {
    .reviews-page__hero, .reviews-page__intro, .reviews-page__feed, .reviews-page__promise, .reviews-page__thanks { width: 95%; margin-right: auto; margin-left: auto; }
    .reviews-page__hero { min-height: 450px; }
    .reviews-page__hero-inner { width: 95%; padding: 70px 0; }
    .reviews-page__intro { padding: 80px 0; grid-template-columns: 1fr; gap: 40px; }
    .reviews-page__feed, .reviews-page__promise, .reviews-page__thanks { padding: 80px 5%; }
    .reviews-page__feed-header { margin-bottom: 40px; }
    .reviews-page__widget { min-height: 220px; }
}

/* Terms and conditions page. */
.legal-page { overflow: hidden; background: var(--page-bg); color: var(--page-ink); }
.legal-page__hero { background: var(--brand-navy); color: var(--shop-block-light-text); }
.legal-page__hero-inner { width: min(980px, 90%); margin: 0 auto; padding: clamp(76px, 10vw, 128px) 0; }
.legal-page__eyebrow { margin: 0 0 16px; color: var(--brand-accent); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.legal-page__hero .legal-page__eyebrow { color: var(--brand-lavender); }
.legal-page h1 { max-width: 780px; margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: 1; }
.legal-page__hero-inner > p:last-child { max-width: 680px; margin: 26px 0 0; font-size: clamp(17px, 2vw, 22px); line-height: 1.55; }
.legal-page__operator, .legal-page__terms { width: min(1060px, 90%); margin: 0 auto; }
.legal-page__operator { display: grid; padding: clamp(70px, 9vw, 112px) 0; grid-template-columns: minmax(0, .85fr) minmax(360px, 1fr); align-items: start; gap: clamp(40px, 7vw, 90px); }
.legal-page h2 { margin: 0; font-size: clamp(28px, 3.8vw, 46px); line-height: 1.08; }
.legal-page__operator-card { padding: clamp(26px, 4vw, 42px); border-radius: 8px; background: var(--brand-mist); }
.legal-page__company { margin: 0 0 26px; color: var(--brand-navy); font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; line-height: 1.15; }
.legal-page__operator-card dl { display: grid; margin: 0; gap: 16px; }
.legal-page__operator-card div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; }
.legal-page__operator-card dt { color: var(--brand-accent); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-page__operator-card dd { margin: 0; color: var(--brand-ink); font-size: 16px; line-height: 1.55; }
.legal-page__operator-card a, .legal-page__terms a { color: var(--brand-accent); font-weight: 800; text-decoration: none; }
.legal-page__operator-card a:hover, .legal-page__terms a:hover { text-decoration: underline; }
.legal-page__notice { padding: clamp(62px, 8vw, 92px) max(5%, calc((100% - 980px) / 2)); background: var(--page-soft); }
.legal-page__notice h2 { max-width: 900px; }
.legal-page__notice > p:last-child { max-width: 760px; margin: 22px 0 0; font-size: 18px; line-height: 1.7; }
.legal-page__terms { padding: clamp(70px, 9vw, 112px) 0; }
.legal-page__sections { display: grid; margin-top: 42px; gap: 34px; }
.legal-page__section { padding-top: 34px; border-top: 1px solid color-mix(in srgb, var(--brand-ink) 16%, transparent); }
.legal-page__section h3 { margin: 0 0 16px; color: var(--brand-navy); font-size: clamp(21px, 2.2vw, 28px); line-height: 1.25; }
.legal-page__section-body { max-width: 820px; font-size: 17px; line-height: 1.75; }
.legal-page__section-body p { margin: 0 0 16px; }
.legal-page__section-body p:last-child { margin-bottom: 0; }
.legal-page__section-body h4 { margin: 24px 0 10px; color: var(--brand-navy); font-size: 18px; line-height: 1.3; }
.legal-page__section-body h4:first-child { margin-top: 0; }
.legal-page__section-body ul { margin: 0 0 18px; padding-left: 24px; }
.legal-page__section-body li { margin: 0 0 10px; }
.legal-page__table-wrap { overflow-x: auto; margin: 0 0 22px; }
.legal-page__section-body table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--brand-bg); }
.legal-page__section-body th, .legal-page__section-body td { padding: 16px 18px; border: 1px solid color-mix(in srgb, var(--brand-ink) 14%, transparent); text-align: left; vertical-align: top; }
.legal-page__section-body th { background: var(--brand-mist); color: var(--brand-navy); font-weight: 800; }

@media (max-width: 1024px) {
    .legal-page__hero-inner, .legal-page__operator, .legal-page__terms { width: 90%; margin-right: auto; margin-left: auto; }
    .legal-page__operator { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .legal-page__hero-inner, .legal-page__operator, .legal-page__terms { width: 95%; margin-right: auto; margin-left: auto; }
    .legal-page__operator-card div { grid-template-columns: 1fr; gap: 4px; }
    .legal-page__sections { gap: 28px; }
    .legal-page__section { padding-top: 28px; }
}

/* Bed catalog page. */
.bed-catalog-page { --bed-catalog-navy: var(--brand-navy); --bed-catalog-ink: var(--brand-ink); --bed-catalog-warm: var(--brand-bg); --bed-catalog-white: var(--shop-block-light-text); --bed-catalog-accent: var(--brand-success); --bed-catalog-muted: color-mix(in srgb, var(--brand-ink) 64%, transparent); --bed-catalog-line: color-mix(in srgb, var(--brand-ink) 12%, transparent); --bed-catalog-radius: 20px; position: relative; overflow: hidden; background: var(--bed-catalog-warm); color: var(--bed-catalog-ink); line-height: 1.5; }
.bed-catalog-page__hero { position: relative; overflow: hidden; padding: clamp(28px, 5vw, 72px) max(20px, calc((100% - 1180px) / 2)); background: var(--bed-catalog-navy); color: var(--bed-catalog-white); }
.bed-catalog-page__hero-inner { display: grid; max-width: 1180px; margin: auto; grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr); align-items: center; gap: clamp(28px, 5vw, 72px); }
.bed-catalog-page__hero-content { position: relative; z-index: 1; }
.bed-catalog-page__hero-slider-panel { display: grid; min-width: 0; gap: 14px; }
.bed-catalog-page__hero-slider-heading { max-width: none; margin: 0; color: var(--bed-catalog-white); font-size: clamp(28px, 3.1vw, 42px); font-weight: 700; line-height: 1.06; letter-spacing: 0; }
.bed-catalog-page__hero-media { position: relative; overflow: hidden; min-height: 0; aspect-ratio: 4 / 3; border-radius: 2px; box-shadow: 20px 22px 0 color-mix(in srgb, var(--bed-catalog-accent) 90%, transparent); }
.bed-catalog-page__hero-slider-track { display: flex; width: 100%; height: 100%; transition: transform .35s ease; }
.bed-catalog-page__hero-slider-slide { min-width: 100%; margin: 0; }
.bed-catalog-page__hero-slider-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }
.bed-catalog-page__hero-slider-arrow { position: absolute; z-index: 2; top: 50%; display: grid; width: 42px; height: 42px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: color-mix(in srgb, var(--shop-block-light-text) 92%, transparent); color: var(--bed-catalog-navy); font-size: 29px; line-height: 1; cursor: pointer; transform: translateY(-50%); }
.bed-catalog-page__hero-slider-arrow.prev { left: 14px; }
.bed-catalog-page__hero-slider-arrow.next { right: 14px; }
.bed-catalog-page__hero-slider-dots { position: absolute; z-index: 2; right: 0; bottom: 16px; left: 0; display: flex; justify-content: center; gap: 8px; }
.bed-catalog-page__hero-slider-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: color-mix(in srgb, var(--shop-block-light-text) 76%, transparent); cursor: pointer; }
.bed-catalog-page__hero-slider-dot.active { background: var(--bed-catalog-navy); transform: scale(1.15); }
.bed-catalog-page__hero-benefits { display: grid; max-width: 550px; margin: 22px 0 0; padding: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; list-style: none; }
.bed-catalog-page__hero-benefits li { display: flex; align-items: flex-start; gap: 8px; padding: 11px 10px; border: 1px solid color-mix(in srgb, var(--shop-block-light-text) 17%, transparent); border-radius: 10px; background: color-mix(in srgb, var(--shop-block-light-text) 6%, transparent); }
.bed-catalog-page__hero-benefit-icon { display: grid; width: 18px; height: 18px; flex: 0 0 18px; place-items: center; border-radius: 50%; background: var(--bed-catalog-accent); color: var(--bed-catalog-white); font-size: 11px; font-weight: 900; line-height: 1; }
.bed-catalog-page__hero-benefits strong, .bed-catalog-page__hero-benefits span:not(.bed-catalog-page__hero-benefit-icon) { display: block; }
.bed-catalog-page__hero-benefits strong { color: var(--bed-catalog-white); font-size: 11px; line-height: 1.25; }
.bed-catalog-page__hero-benefits li div > span { margin-top: 2px; color: color-mix(in srgb, var(--shop-block-light-text) 82%, transparent); font-size: 10px; line-height: 1.35; }
.bed-catalog-page__catalog-section { max-width: 1320px; margin: 0 auto; padding: 64px 24px 100px; }
.bed-catalog-page__section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 30px; }
.bed-catalog-page__eyebrow { margin: 0 0 12px; color: var(--bed-catalog-accent); font-size: 12px; font-weight: 750; line-height: 1.2; letter-spacing: .13em; }
.bed-catalog-page__beds-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.bed-catalog-page__bed-card { display: flex; overflow: hidden; flex-direction: column; border-radius: var(--bed-catalog-radius); background: var(--bed-catalog-white); box-shadow: 0 8px 32px color-mix(in srgb, var(--brand-ink) 6%, transparent); }
.bed-catalog-page__bed-intro { padding: 22px 20px 16px; }
.bed-catalog-page__bed-title-line { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.bed-catalog-page__bed-title { margin: 0; color: var(--bed-catalog-ink); font-size: 25px; font-weight: 600; line-height: 1.2; letter-spacing: 0; }
.bed-catalog-page__bed-features { display: grid; margin: 0; padding: 14px 0 0; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; list-style: none; }
.bed-catalog-page__bed-features li { position: relative; padding-left: 12px; color: var(--bed-catalog-muted); font-size: 10px; line-height: 1.3; }
.bed-catalog-page__bed-features li::before { position: absolute; left: 0; color: var(--bed-catalog-accent); font-weight: 900; content: "✓"; }
.bed-catalog-page__gallery { position: relative; overflow: hidden; aspect-ratio: 1.1; background: var(--brand-mist); }
.bed-catalog-page__gallery-track { display: flex; height: 100%; transition: transform .3s ease; }
.bed-catalog-page__gallery-slide { min-width: 100%; height: 100%; margin: 0; }
.bed-catalog-page__gallery img { display: block; width: 100%; height: 100%; object-fit: cover; }
.bed-catalog-page__gallery-arrow { position: absolute; top: 50%; width: 36px; height: 36px; border: 0; border-radius: 100%; background: color-mix(in srgb, var(--shop-block-light-text) 86%, transparent); color: var(--bed-catalog-navy); font-size: 21px; cursor: pointer; transform: translateY(-50%); }
.bed-catalog-page__gallery-arrow.prev { left: 12px; }
.bed-catalog-page__gallery-arrow.next { right: 12px; }
.bed-catalog-page__gallery-dots { position: absolute; right: 0; bottom: 12px; left: 0; display: flex; justify-content: center; gap: 5px; }
.bed-catalog-page__gallery-dot { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; background: color-mix(in srgb, var(--shop-block-light-text) 65%, transparent); }
.bed-catalog-page__gallery-dot.active { background: var(--bed-catalog-navy); transform: scale(1.2); }
.bed-catalog-page__bed-content { display: flex; flex: 1; flex-direction: column; padding: 22px 20px 20px; }
.bed-catalog-page__bed-dimensions { margin-top: 14px; padding: 10px 12px; border-radius: 8px; background: var(--bed-catalog-warm); }
.bed-catalog-page__bed-dimensions small { display: block; color: var(--bed-catalog-muted); font-size: 10px; line-height: 1.3; }
.bed-catalog-page__bed-dimensions > strong { display: block; margin-top: 3px; color: var(--bed-catalog-ink); font-size: 17px; letter-spacing: 0; }
.bed-catalog-page__bed-height { margin: 7px 0 0; padding-top: 7px; border-top: 1px solid color-mix(in srgb, var(--brand-ink) 10%, transparent); color: var(--bed-catalog-muted); font-size: 11px; line-height: 1.35; }
.bed-catalog-page__bed-height strong { color: var(--bed-catalog-ink); font-size: 11px; }
.bed-catalog-page__size-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-top: 18px; margin-bottom: 9px; }
.bed-catalog-page__size-label { margin: 0; font-size: 13px; font-weight: 800; }
.bed-catalog-page__sizes { display: grid; margin-bottom: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.bed-catalog-page__size-button { display: flex; min-height: 58px; flex-direction: column; justify-content: center; gap: 2px; padding: 7px 6px; border: 1px solid color-mix(in srgb, var(--brand-ink) 13%, transparent); border-radius: 10px; background: var(--bed-catalog-warm); color: var(--bed-catalog-ink); font: inherit; text-align: left; cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease; }
.bed-catalog-page__size-button:hover { border-color: color-mix(in srgb, var(--brand-navy) 35%, transparent); transform: translateY(-1px); }
.bed-catalog-page__size-button span { font-size: 13px; font-weight: 800; letter-spacing: 0; }
.bed-catalog-page__size-button small { color: var(--bed-catalog-muted); font-size: 10px; white-space: nowrap; }
.bed-catalog-page__size-button.active { border-color: var(--bed-catalog-navy); background: var(--bed-catalog-navy); color: var(--bed-catalog-white); box-shadow: 0 4px 12px color-mix(in srgb, var(--brand-navy) 22%, transparent); }
.bed-catalog-page__size-button.active small { color: var(--brand-mist); }
.bed-catalog-page__selected-price { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--bed-catalog-line); }
.bed-catalog-page__selected-price small { display: block; color: var(--bed-catalog-muted); font-size: 11px; }
.bed-catalog-page__selected-price strong { color: var(--bed-catalog-ink); font-size: 22px; letter-spacing: 0; }
.bed-catalog-page__button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 20px; border: 0; border-radius: 8px; color: inherit; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-decoration: none; cursor: pointer; transition: transform .18s ease, background .18s ease; }
.bed-catalog-page__button:hover { transform: translateY(-2px); }
.bed-catalog-page__button--primary { background: var(--bed-catalog-accent); color: var(--bed-catalog-white); }
.bed-catalog-page__button--light { background: var(--bed-catalog-white); color: var(--bed-catalog-navy); }
.bed-catalog-page__button--outline { border: 1px solid color-mix(in srgb, var(--shop-block-light-text) 70%, transparent); background: transparent; color: var(--bed-catalog-white); }
.bed-catalog-page__button--call { gap: 5px; background: var(--bed-catalog-navy); color: var(--bed-catalog-white); }
.bed-catalog-page__card-cta { width: 100%; margin-top: 16px; }
.bed-catalog-page__kids-section-title { grid-column: 1 / -1; margin: 18px 0 0; color: var(--bed-catalog-ink); font-size: clamp(28px, 3vw, 38px); line-height: 1.1; letter-spacing: 0; }
.bed-catalog-page__empty { grid-column: 1 / -1; margin: 0; color: var(--bed-catalog-muted); }
.bed-catalog-page__showroom { padding: 62px max(20px, calc((100% - 1180px) / 2)); background: var(--brand-navy); color: var(--bed-catalog-white); }
.bed-catalog-page__showroom h2 { margin: 0 0 16px; color: var(--bed-catalog-white); font-size: clamp(30px, 3.5vw, 45px); line-height: 1.1; letter-spacing: 0; }
.bed-catalog-page__showroom > p { color: color-mix(in srgb, var(--shop-block-light-text) 88%, transparent); }
.bed-catalog-page__showroom-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.bed-catalog-page__mobile-selection { position: fixed; z-index: 30; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 14px; border-top: 1px solid var(--bed-catalog-line); background: var(--bed-catalog-white); box-shadow: 0 -8px 25px color-mix(in srgb, var(--brand-ink) 12%, transparent); }
.bed-catalog-page__mobile-selection > div:first-child { min-width: 0; }
.bed-catalog-page__mobile-selection span { display: block; overflow: hidden; max-width: 160px; color: var(--bed-catalog-muted); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.bed-catalog-page__mobile-selection strong { color: var(--bed-catalog-ink); font-size: 16px; }
.bed-catalog-page__mobile-selection .bed-catalog-page__button { min-height: 42px; padding: 0 13px; font-size: 10px; }
.bed-catalog-page__mobile-selection .bed-catalog-page__button--call,
.bed-catalog-page__mobile-selection .bed-catalog-page__button--call span { color: var(--shop-block-light-text); }
.bed-catalog-page__mobile-selection-actions { display: flex; flex-shrink: 0; align-items: center; gap: 6px; }
.bed-catalog-page__call-icon { width: 13px; height: 13px; flex: none; }
.bed-catalog-page__mobile-selection[hidden] { display: none !important; }

.bed-catalog-page .form-no-popup { grid-column: 1 / -1; width: 100%; max-width: none; margin-top: 0; }

@media (max-width: 1024px) {
    .bed-catalog-page__catalog-section, .bed-catalog-page__showroom { width: 90%; margin-right: auto; margin-left: auto; }
}

@media (max-width: 900px) {
    .bed-catalog-page__beds-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
    .bed-catalog-page__hero { padding: 0; background: var(--bed-catalog-navy); }
    .bed-catalog-page__hero-inner { display: flex; flex-direction: column-reverse; gap: 0; }
    .bed-catalog-page__hero-content { width: 100%; padding: 34px 20px 46px; }
    .bed-catalog-page__hero-slider-panel { width: 100%; gap: 12px; padding: 28px 0 0; }
    .bed-catalog-page__hero-slider-heading { padding: 0 20px; font-size: 34px; }
    .bed-catalog-page__hero-media { width: 100%; aspect-ratio: 4 / 3; border-radius: 0; box-shadow: none; }
    .bed-catalog-page__hero-slider-arrow { width: 38px; height: 38px; font-size: 27px; }
    .bed-catalog-page__hero-slider-arrow.prev { left: 12px; }
    .bed-catalog-page__hero-slider-arrow.next { right: 12px; }
    .bed-catalog-page__hero-slider-dots { bottom: 12px; }
    .bed-catalog-page__hero-benefits { grid-template-columns: 1fr; gap: 8px; margin-top: 20px; }
    .bed-catalog-page__hero-benefits li { padding: 10px; }
}

@media (max-width: 640px) {
    .bed-catalog-page__catalog-section, .bed-catalog-page__showroom { width: 95%; margin-right: auto; margin-left: auto; }
}

@media (max-width: 600px) {
    .bed-catalog-page__catalog-section { padding: 46px 16px 92px; }
    .bed-catalog-page__section-heading { display: block; }
    .bed-catalog-page__beds-grid { grid-template-columns: 1fr; gap: 17px; }
    .bed-catalog-page__gallery { aspect-ratio: 1.06; }
    .bed-catalog-page__bed-intro { padding: 19px 16px 14px; }
    .bed-catalog-page__bed-content { padding: 19px 16px 16px; }
    .bed-catalog-page__bed-title { font-size: 24px; }
    .bed-catalog-page__sizes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
    .bed-catalog-page__size-button { min-height: 60px; padding: 8px; }
    .bed-catalog-page__showroom { padding: 48px 20px 78px; }
    .bed-catalog-page .form-no-popup { width: 100%; margin-top: 0; }
}

@media (max-width: 420px) {
    .bed-catalog-page__mobile-selection { gap: 8px; }
    .bed-catalog-page__mobile-selection-actions .bed-catalog-page__button { padding-inline: 8px; font-size: 9px; }
}

@media (min-width: 601px) {
    .bed-catalog-page__mobile-selection { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    .bed-catalog-page__gallery-track, .bed-catalog-page__hero-slider-track, .bed-catalog-page__button, .bed-catalog-page__size-button { transition: none; }
}
