/* ==========================================================================
   CoolAirNest — "Nest & peach" (palette taken from the olive-brown / peach logo)
   Loaded after every inline style block so it wins the cascade.
   Everything is scoped under #smb-page (id specificity beats the legacy
   GrapesJS id rules without needing !important for most properties).
   ========================================================================== */

:root {
    --cream: #FBF5EC;
    --blush: #FBD9D7;
    --olive: #4A3E22;
    --olive-2: #5C4D2B;
    --khaki: #8B764A;
    --peach: #F9B393;
    --peach-deep: #B5542F;
    --peach-soft: #FEEADF;
    --ink: #2B2418;
    --ink-soft: #5E5443;
    --hair: #EBDFCB;
    --white: #FFFFFF;
    --khaki-deep: #7A6740;
    --cta: #B5542F;
    --cta-2: #963F20;

    --r-sm: 14px;
    --r-md: 20px;
    --r-lg: 24px;
    --r-xl: 32px;

    --shadow-sm: 0 1px 2px rgba(74, 62, 34, .06), 0 2px 8px rgba(74, 62, 34, .05);
    --shadow-md: 0 2px 4px rgba(74, 62, 34, .05), 0 12px 28px -8px rgba(74, 62, 34, .16);
    --shadow-lg: 0 4px 10px rgba(74, 62, 34, .06), 0 28px 60px -18px rgba(74, 62, 34, .28);

    --f-display: "Lora", Georgia, "Times New Roman", serif;
    --f-text: "Nunito Sans", "Segoe UI", Helvetica, Arial, sans-serif;

    --wrap: 1180px;
    --gutter: 24px;

    /* legacy tokens re-pointed at the new palette */
    --brand-dark: #4A3E22;
    --brand-mid: #695A35;
    --sage: #8B764A;
    --sage-light: #FBD9D7;
    --paper: #FBF5EC;
    --tint: #FBD9D7;
    --line: #EBDFCB;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* clip does not create a scroll container, so position:sticky keeps working */
@supports (overflow-x: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

body {
    background: var(--cream);
    color: var(--ink);
}

#smb-page,
#smb-page :where(*) {
    font-family: var(--f-text);
}

#smb-page {
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

#smb-page h1,
#smb-page h2,
#smb-page h3 {
    font-family: var(--f-display);
    letter-spacing: -.01em;
}

#smb-page h2::after {
    display: none;
}

#smb-page a:focus-visible,
#smb-page summary:focus-visible,
#smb-page [tabindex]:focus-visible {
    outline: 3px solid var(--peach);
    outline-offset: 3px;
    border-radius: 8px;
}

/* ---------- advertorial flag + header (non-sticky) ---------- */
#smb-page .advertisement {
    background: var(--blush);
    color: var(--olive);
    font-family: var(--f-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .28em;
    padding: 7px 10px;
}

#smb-page .logo-bar {
    background: var(--cream);
    border-bottom: 0;
    padding: 26px 0 4px;
}

#smb-page .logo-bar-heart {
    max-width: var(--wrap);
    padding: 0 var(--gutter);
}

#smb-page .logo-bar .col-lg {
    flex-basis: 100%;
    max-width: 100%;
}

#smb-page #im6k {
    width: 176px;
    height: auto;
    display: block;
    background: none;
}

/* ---------- sticky top bar (shown by sticky-top.js; display left to JS) ---------- */
#smb-page .logo-bar-fixed {
    background: rgba(255, 255, 255, .88);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid var(--hair);
    box-shadow: 0 10px 30px -18px rgba(74, 62, 34, .35);
}

#smb-page .logo-bar-fixed-heart {
    max-width: var(--wrap);
    padding: 10px var(--gutter);
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 16px;
}

#smb-page .fixed-img-module,
#smb-page .fixed-btn-module {
    float: none;
    width: auto;
    max-width: none;
    padding: 0;
}

#smb-page .fixed-logo {
    padding: 0;
}

#smb-page #ir667 {
    width: 150px;
    height: auto;
    display: block;
}

#smb-page .fixed-btn {
    float: none;
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cta), var(--cta-2));
    font-family: var(--f-text);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
    box-shadow: 0 8px 18px -8px rgba(150, 63, 32, .6);
}

#smb-page .fixed-btn-module a:hover {
    text-decoration: none;
}

/* ==========================================================================
   HERO — stacked collage
   ========================================================================== */
#smb-page .cn-hero {
    position: relative;
    background: var(--cream);
    padding: 40px var(--gutter) 88px;
    overflow: hidden;
    overflow-x: clip;
    overflow-y: visible;
}

#smb-page .cn-blob path {
    fill: currentColor;
}

#smb-page .cn-blob--mint {
    position: absolute;
    width: 620px;
    height: 620px;
    right: -180px;
    top: -150px;
    color: var(--blush);
    pointer-events: none;
}

#smb-page .cn-hero-inner {
    position: relative;
    max-width: var(--wrap);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 64px;
    align-items: center;
}

#smb-page .cn-hero h1 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(34px, 4.7vw, 60px);
    line-height: 1.06;
    letter-spacing: -.02em;
    color: var(--olive);
    margin: 0 0 22px;
    text-wrap: balance;
}

#smb-page #i21qvr {
    font-family: var(--f-text);
    font-size: clamp(18px, 1.9vw, 21px);
    line-height: 1.55;
    font-weight: 600;
    color: var(--ink-soft);
    border-left: 0;
    padding-left: 0;
    margin: 0 0 30px;
    max-width: 34em;
}

/* byline pill */
#smb-page .smb-autor {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--hair);
    border-radius: 999px;
    padding: 7px 20px 7px 7px;
    margin: 0;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
}

#smb-page .smb-autor-img {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 0;
    box-shadow: 0 0 0 2px var(--peach-soft);
    margin: 0;
    flex: 0 0 auto;
}

#smb-page .smb-autor-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2px 10px;
    border: 0;
    padding: 0;
}

#smb-page .smb-autor-name {
    display: inline;
    font-size: 15px;
    font-weight: 800;
    color: var(--olive);
}

#smb-page .smb-autor-name br {
    display: none;
}

#smb-page .smb-autor-date {
    font-size: 14px;
    color: var(--ink-soft);
}

#smb-page .byline-tag {
    background: var(--peach-soft);
    color: #7E3A1F;
    font-family: var(--f-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0;
    padding: 3px 10px;
    vertical-align: middle;
}

/* collage */
#smb-page .cn-hero-collage {
    position: relative;
    min-height: 460px;
    padding: 10px 40px 70px 0;
}

#smb-page .cn-blob--peach {
    position: absolute;
    width: 78%;
    left: -12%;
    top: -12%;
    color: var(--peach);
    opacity: .55;
    pointer-events: none;
}

#smb-page .cn-card {
    margin: 0;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

#smb-page .cn-card a {
    display: block;
    padding: 0;
    min-height: 0;
    min-width: 0;
}

#smb-page .cn-card img {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 16px;
    margin: 0;
    box-shadow: none;
}

#smb-page .cn-card--main {
    position: relative;
    z-index: 1;
    transform: rotate(-2deg);
}

#smb-page .cn-card--main img {
    aspect-ratio: 5 / 4;
}

#smb-page .cn-card--sub {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    width: 48%;
    padding: 8px;
    transform: rotate(3deg);
}

#smb-page .cn-card--sub img {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
}

#smb-page .cn-hero-collage:hover .cn-card--main {
    transform: rotate(-1deg) translateY(-4px);
}

#smb-page .cn-hero-collage:hover .cn-card--sub {
    transform: rotate(4deg) translateY(-6px);
}

/* ==========================================================================
   STORY — white reader panel over a cream band
   ========================================================================== */
#smb-page .cn-band {
    background: var(--cream);
    padding: 0 var(--gutter) 96px;
}

#smb-page .smb-page-main {
    max-width: var(--wrap);
    gap: 32px;
    align-items: stretch;
}

#smb-page .smb-page-left {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 812px;
    margin: 0;
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 64px 64px 56px;
    box-shadow: var(--shadow-md);
}

#smb-page .smb-page-right {
    flex: 0 0 300px;
    max-width: 300px;
    padding: 0;
    margin: 0;
}

#smb-page .smb-left-main > section + section {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

#smb-page .quote-rem,
#smb-page .quote-px {
    display: none;
}

#smb-page .smb-left-main p {
    font-size: 18.5px;
    line-height: 1.8;
    color: var(--ink);
    margin: 0 0 24px;
}

#smb-page .smb-left-main p.lead {
    font-size: clamp(20px, 2.1vw, 23px);
    line-height: 1.65;
    color: var(--ink);
}

#smb-page .smb-left-main p.lead b:first-child {
    font-family: var(--f-display);
    font-style: italic;
    color: var(--peach-deep);
    letter-spacing: 0;
}

#smb-page .smb-left-main a:not(.legal-link) {
    color: var(--olive);
    text-decoration: underline;
    text-decoration-color: var(--peach);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

#smb-page .smb-left-main a:not(.legal-link):hover {
    color: var(--khaki);
}

#smb-page .smb-left-main h2 {
    font-weight: 600;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.18;
    color: var(--olive);
    margin: 56px 0 18px;
    text-wrap: balance;
}

#smb-page .smb-left-main h2 br {
    display: none;
}

/* story images */
#smb-page .smb-left-main section > a {
    display: block;
    padding: 0;
    min-height: 0;
    margin: 28px 0 34px;
}

#smb-page .smb-left-main section > a > img {
    display: block;
    width: 100%;
    margin: 0;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
}

#smb-page .smb-left-main section > a:empty {
    display: inline;
    margin: 0;
}

/* pull-quotes: peach call-out cards breaking out of the column */
#smb-page .smb-left-main h2.pull-quote {
    position: relative;
    overflow: hidden;
    margin: 52px -88px 34px;
    padding: 40px 56px 40px 112px;
    background: var(--peach-soft);
    border: 0;
    border-radius: var(--r-lg);
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.35;
    color: #4E2A17;
    box-shadow: 0 18px 40px -22px rgba(181, 84, 47, .55);
    transform: rotate(-.6deg);
}

#smb-page .smb-left-main h2.pull-quote::before {
    content: "\201C";
    position: absolute;
    left: 30px;
    top: 14px;
    font-family: var(--f-display);
    font-style: normal;
    font-size: 120px;
    line-height: 1;
    color: var(--peach);
}

#smb-page .smb-left-main h2.pull-quote::after {
    content: "";
    display: block;
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 220px;
    height: 200px;
    margin: 0;
    background: var(--peach);
    opacity: .28;
    border-radius: 58% 42% 55% 45% / 48% 60% 40% 52%;
    pointer-events: none;
}

/* 2-column text band */
#smb-page .cn-cols-2 {
    column-count: 2;
    column-gap: 48px;
    column-rule: 1px solid var(--hair);
    background: var(--cream);
    border-radius: var(--r-lg);
    margin: 48px -24px;
    padding: 36px 40px 16px;
}

#smb-page .cn-cols-2 h2 {
    column-span: all;
    -webkit-column-span: all;
    margin: 8px 0 20px;
}

#smb-page .cn-cols-2 h2 + p + h2,
#smb-page .cn-cols-2 p + h2 {
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--hair);
}

#smb-page .cn-cols-2 p {
    font-size: 17px;
    line-height: 1.75;
}

/* list-like sections: 3-col and 2-col grids */
#smb-page .smb-left-main p.cn-grid-3,
#smb-page .smb-left-main p.cn-grid-2 {
    column-count: auto;
    column-rule: none;
    display: grid;
    gap: 16px;
    background: transparent;
    padding: 0;
    margin: 8px -24px 40px;
    font-size: 16.5px;
    line-height: 1.6;
}

#smb-page p.cn-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

#smb-page p.cn-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--cream) !important;
    border-radius: var(--r-lg);
    padding: 28px !important;
}

#smb-page p.cn-grid-3 br,
#smb-page p.cn-grid-2 br {
    display: none;
}

#smb-page p.cn-grid-3 .cn-item {
    display: block;
    background: var(--cream);
    border: 1px solid var(--hair);
    border-radius: var(--r-md);
    padding: 22px 22px 20px;
    color: var(--ink-soft);
}

#smb-page p.cn-grid-3 .cn-item:last-of-type {
    grid-column: span 2;
}

#smb-page p.cn-grid-3 .cn-item:nth-child(3n+2) {
    background: var(--peach-soft);
    border-color: #F6CDB6;
}

#smb-page p.cn-grid-3 .cn-item b {
    display: block;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    color: var(--olive);
    margin-bottom: 8px;
}

#smb-page p.cn-grid-2 .cn-intro {
    grid-column: 1 / -1;
    font-family: var(--f-display);
    font-size: 21px;
    font-weight: 600;
    color: var(--olive);
    margin-bottom: 4px;
}

#smb-page p.cn-grid-2 .cn-item {
    display: block;
    background: var(--white);
    border-radius: var(--r-sm);
    padding: 16px 18px;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

#smb-page p.cn-grid-2 .cn-item b {
    color: var(--olive);
}

/* sidebar product card */
#smb-page .smb-right-main {
    top: 96px;
    background: var(--white);
    border: 1px solid var(--hair);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

#smb-page .smb-right-main.smb-fixed {
    top: 96px;
    max-width: 300px;
}

#smb-page .smb-right-product-text {
    background: var(--olive);
    border-radius: 0;
    padding: 16px 20px;
}

#smb-page .smb-right-product-text a {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 600;
    color: #fff !important;
}

#smb-page #ivspnt {
    display: block;
    width: 100%;
}

#smb-page .smb-content-text {
    padding: 4px 20px 22px;
}

#smb-page .smb-right-slogan-text {
    margin: 14px 0 6px;
}

#smb-page .smb-right-slogan-text a {
    font-family: var(--f-display);
    font-size: 18px;
    line-height: 1.35;
    color: var(--olive);
}

/* ---------- shared pill CTA ---------- */
#smb-page .smb-click-button,
#smb-page .smb-right-button {
    display: block;
    width: 100%;
    padding: 0 !important;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cta) 0%, var(--cta-2) 100%) !important;
    box-shadow: 0 14px 28px -12px rgba(150, 63, 32, .6), 0 0 0 5px rgba(249, 179, 147, .35) !important;
    transition: transform .25s ease, box-shadow .25s ease;
    text-align: center;
}

#smb-page .smb-click-button:hover,
#smb-page .smb-right-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px -12px rgba(150, 63, 32, .7), 0 0 0 7px rgba(249, 179, 147, .5) !important;
}

#smb-page .smb-click-button a,
#smb-page .smb-right-button a {
    display: block;
    padding: 18px 26px;
    font-family: var(--f-text);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1.3;
    text-decoration: none;
}

#smb-page #il00g6,
#smb-page #idtv9x,
#smb-page #is3gra {
    padding: 0;
}

#smb-page .banner-button-text span {
    font-family: var(--f-text);
}

#smb-page .smb-right-button {
    margin: 16px 0 0;
}

#smb-page .smb-right-button a {
    font-size: 15px;
    padding: 14px 18px;
}

/* ==========================================================================
   MODULE BANDS
   ========================================================================== */
#smb-page .cn-modules > .mod-section,
#smb-page .cn-reviews,
#smb-page .cn-offer-band,
#smb-page .cn-comments-band {
    margin: 0;
    padding: 104px max(var(--gutter), calc((100% - 1120px) / 2));
}

#smb-page #mod-features,
#smb-page .cn-reviews,
#smb-page .cn-offer-band {
    background: var(--white);
}

#smb-page #mod-how,
#smb-page #mod-faq,
#smb-page .cn-comments-band {
    background: var(--cream);
}

#smb-page .mod-head,
#smb-page #ibcl2,
#smb-page .comment-new__title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(30px, 3.7vw, 46px);
    line-height: 1.1;
    letter-spacing: -.02em;
    color: var(--olive);
    margin: 0 0 14px;
    text-wrap: balance;
}

#smb-page .mod-sub {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 56ch;
    margin: 0 0 44px;
}

/* ---------- layered icons ---------- */
#smb-page .ico-layer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#smb-page .ico-bg {
    position: absolute;
    z-index: -1;
    width: 190px;
    height: 190px;
    right: -34px;
    top: -34px;
    color: var(--olive);
    opacity: .07;
    pointer-events: none;
}

#smb-page .ico-chip {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--hair);
    box-shadow: var(--shadow-sm);
    margin-bottom: 22px;
}

#smb-page .ico-fg {
    width: 28px;
    height: 28px;
    color: var(--olive);
}

/* ---------- features bento ---------- */
#smb-page .bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
}

#smb-page .bento-card {
    grid-column: span 4;
    background: var(--cream);
    border: 1px solid var(--hair);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: none;
}

#smb-page .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

#smb-page .bento-card:nth-child(1) {
    grid-column: 1 / span 5;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
    padding: 40px;
    background: radial-gradient(120% 80% at 100% 0%, var(--khaki-deep) 0%, rgba(139, 118, 74, 0) 55%), linear-gradient(160deg, var(--olive-2), var(--olive));
    border-color: transparent;
    color: #fff;
}

#smb-page .bento-card:nth-child(1) .ico-bg {
    width: 320px;
    height: 320px;
    right: -70px;
    top: -60px;
    color: #fff;
    opacity: .12;
}

#smb-page .bento-card:nth-child(1) .ico-chip {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .28);
    box-shadow: none;
    margin-bottom: auto;
}

#smb-page .bento-card:nth-child(1) .ico-fg {
    color: var(--peach);
}

#smb-page .bento-card:nth-child(1) .bento-title {
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.15;
    color: #fff;
    margin-top: 40px;
}

#smb-page .bento-card:nth-child(1) .bento-text {
    color: rgba(251, 245, 236, .86);
    font-size: 17px;
}

#smb-page .bento-card:nth-child(2) {
    grid-column: span 7;
    background: var(--peach-soft);
    border-color: #F6CDB6;
}

#smb-page .bento-card:nth-child(2) .ico-bg {
    color: var(--peach-deep);
    opacity: .16;
}

#smb-page .bento-card:nth-child(2) .ico-fg {
    color: var(--peach-deep);
}

#smb-page .bento-card:nth-child(3) {
    grid-column: span 7;
}

#smb-page .bento-card:nth-child(5) {
    background: var(--white);
}

#smb-page .bento-title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 10px;
}

#smb-page .bento-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0;
}

/* ---------- how it works: bento step tiles ---------- */
#smb-page .steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    padding: 0;
}

#smb-page .steps::before {
    display: none;
}

#smb-page .step {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    padding: 32px;
    min-height: 260px;
    background: var(--white);
    border: 1px solid var(--hair);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

#smb-page .step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

#smb-page .step:nth-child(1),
#smb-page .step:nth-child(4) {
    grid-column: span 4;
}

#smb-page .step:nth-child(2) {
    background: var(--peach-soft);
    border-color: #F6CDB6;
}

#smb-page .step:nth-child(4) {
    background: linear-gradient(140deg, var(--white) 0%, var(--blush) 100%);
}

#smb-page .step .ico-bg {
    top: auto;
    bottom: -40px;
    right: -30px;
    width: 210px;
    height: 210px;
    opacity: .07;
}

#smb-page .step:nth-child(2) .ico-bg {
    color: var(--peach-deep);
    opacity: .16;
}

#smb-page .step-node {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--cream);
    border: 1px solid var(--hair);
    box-shadow: none;
}

#smb-page .step:nth-child(2) .step-node {
    background: var(--white);
    border-color: #F6CDB6;
}

#smb-page .step-node svg {
    width: 26px;
    height: 26px;
    color: var(--olive);
}

#smb-page .step:nth-child(2) .step-node svg {
    color: var(--peach-deep);
}

#smb-page .step-body {
    padding: 0;
    margin-top: auto;
}

#smb-page .step-idx {
    position: absolute;
    top: 45px;
    right: 32px;
    margin: 0;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--hair);
    font-family: var(--f-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    color: var(--olive);
}

#smb-page .step-title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 23px;
    line-height: 1.22;
    color: var(--ink);
    margin: 0 0 10px;
}

#smb-page .step:nth-child(1) .step-title,
#smb-page .step:nth-child(4) .step-title {
    font-size: clamp(24px, 2.4vw, 30px);
}

#smb-page .step-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0;
    max-width: 52ch;
}

/* ---------- reviews: scroll-snap strip ---------- */
#smb-page #idabg {
    margin: 0 0 36px;
}

#smb-page .presell-comment-px {
    display: flex;
    gap: 20px;
    margin: 0 -8px;
    padding: 8px 8px 28px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--peach) var(--cream);
}

#smb-page .presell-comment-px::-webkit-scrollbar {
    height: 8px;
}

#smb-page .presell-comment-px::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 99px;
}

#smb-page .presell-comment-px::-webkit-scrollbar-thumb {
    background: var(--peach);
    border-radius: 99px;
}

#smb-page .presell-comment-px .comment-module {
    flex: 0 0 min(420px, 86%);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    margin: 0;
    padding: 12px 12px 26px;
    background: var(--cream) !important;
    border: 1px solid var(--hair);
    border-radius: var(--r-lg);
    overflow: hidden;
}

#smb-page .presell-comment-px .comment-module:nth-child(2) {
    background: var(--peach-soft) !important;
    border-color: #F6CDB6;
}

#smb-page .presell-comment-px .comment-module-img {
    flex: 0 0 auto;
    padding: 0;
    margin: 0 0 20px;
}

#smb-page .presell-comment-px .comment-product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
}

#smb-page .presell-comment-px .comment-module-content {
    margin: 0;
    padding: 0 14px;
    display: flex;
    flex-direction: column;
}

#smb-page .presell-comment-px .approve-module {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    border-bottom: 0;
    padding: 0;
    margin: 0 0 12px;
}

#smb-page .presell-comment-px .approve-module::before {
    content: none;
    display: none;
    order: -1;
    flex: 0 0 100%;
    font-size: 19px;
    letter-spacing: 3px;
    line-height: 1;
    color: var(--peach-deep);
    margin-bottom: 8px;
}

#smb-page .presell-comment-px .approve-module-img {
    width: 18px;
    max-width: 18px;
    height: auto;
    margin: 0;
}

#smb-page .presell-comment-px .approve-module-star-img {
    display: none;
}

#smb-page .presell-comment-px .approve-user-name {
    font-family: var(--f-text);
    font-size: 16px;
    font-weight: 800;
    color: var(--olive);
}

#smb-page .presell-comment-px .user-comment-content {
    display: block;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
}

#smb-page .presell-comment-px .user-comment-content::before {
    display: none;
}

#smb-page .presell-comment-px .user-comment-content span {
    font-family: var(--f-display);
}

/* ---------- FAQ: pinned heading panel + accordion ---------- */
#smb-page #mod-faq {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 56px;
    align-items: start;
}

#smb-page .cn-faq-head {
    position: sticky;
    top: 100px;
    overflow: hidden;
    background: var(--olive);
    border-radius: var(--r-xl);
    padding: 44px 40px 150px;
    color: #fff;
}

#smb-page .cn-faq-head::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 230px;
    height: 200px;
    background: var(--peach);
    opacity: .9;
    border-radius: 60% 40% 52% 48% / 45% 58% 42% 55%;
}

#smb-page .cn-faq-head::before {
    content: "?";
    position: absolute;
    right: 44px;
    bottom: 22px;
    z-index: 1;
    font-family: var(--f-display);
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
    color: var(--olive);
}

#smb-page .cn-faq-head .mod-head {
    color: #fff;
}

#smb-page .cn-faq-head .mod-sub {
    color: rgba(251, 245, 236, .82);
    margin: 0;
}

#smb-page .faq {
    border-top: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#smb-page .faq details {
    background: var(--white);
    border: 1px solid var(--hair);
    border-radius: var(--r-md);
    transition: box-shadow .25s ease;
}

#smb-page .faq details[open] {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

#smb-page .faq summary {
    padding: 22px 24px;
    font-family: var(--f-text);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    border-radius: var(--r-md);
}

#smb-page .faq details[open] summary {
    color: var(--olive);
}

#smb-page .faq summary .q-ico {
    width: 24px;
    height: 24px;
    color: var(--khaki);
}

#smb-page .faq summary .chev {
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--olive);
}

#smb-page .faq details[open] summary .chev {
    background: var(--peach-soft);
}

#smb-page .faq .faq-a {
    padding: 0 28px 24px 62px;
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0;
}

#smb-page .faq .faq-a .legal-link {
    color: var(--olive);
    text-decoration: underline;
}

/* ---------- offer: deep olive gradient card ---------- */
#smb-page #ix1tvi {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 48px;
    align-items: center;
    padding: 64px;
    border-radius: 36px;
    background: linear-gradient(135deg, var(--olive) 0%, var(--olive-2) 45%, var(--khaki-deep) 100%);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

#smb-page #ix1tvi::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -120px;
    bottom: -160px;
    width: 420px;
    height: 380px;
    background: var(--peach);
    opacity: .18;
    border-radius: 58% 42% 55% 45% / 48% 60% 40% 52%;
}

#smb-page #ix1tvi::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -80px;
    top: -120px;
    width: 340px;
    height: 320px;
    background: #fff;
    opacity: .06;
    border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
}

#smb-page .cn-offer-copy h2 {
    font-family: var(--f-display);
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.12;
}

#smb-page .cn-offer-copy #iaw6y7 {
    font-size: clamp(21px, 2.2vw, 26px);
    color: var(--peach-soft);
    margin-top: 32px;
}

#smb-page .cn-offer-copy p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin: 0 0 16px;
}

#smb-page .cn-offer-copy a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--peach);
    text-underline-offset: 3px;
}

#smb-page .cn-offer-copy b {
    color: #fff;
}

#smb-page #ibnh77,
#smb-page #i9lga3 {
    color: var(--peach);
}

#smb-page .cn-offer-card {
    background: var(--white);
    color: var(--ink);
    border-radius: var(--r-lg);
    padding: 16px 16px 26px;
    box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .45);
    transform: rotate(.8deg);
}

#smb-page .cn-offer-media a {
    display: block;
    padding: 0;
    min-height: 0;
}

#smb-page .cn-offer-media img {
    display: block;
    width: 100%;
    border-radius: 16px;
    background: var(--cream);
}

#smb-page .cn-offer-card .smb-click-button {
    margin: 22px 10px 20px;
    width: auto;
}

#smb-page #ifwu9i {
    border: 0;
    background: var(--cream);
    border-radius: 16px;
    padding: 18px 20px;
    margin: 0 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
}

#smb-page #ifwu9i b b {
    color: var(--olive);
}

#smb-page #ihawlm {
    max-width: 560px;
    margin: 48px auto 0;
}

/* ---------- comments: chat bubbles on cream ---------- */
#smb-page .comment-new {
    max-width: 820px;
    margin: 0 auto;
}

#smb-page .comment-new__title {
    margin-bottom: 36px;
}

#smb-page #i0b4it {
    column-count: 1;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

#smb-page .comment-new__item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    width: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0 0 22px;
}

#smb-page .comment-new__item:nth-child(3n) {
    background: transparent;
}

#smb-page .comment-new__author {
    display: contents;
}

#smb-page .comment-new__author .picture {
    grid-column: 1;
    grid-row: 1 / span 3;
    display: block;
    width: 56px;
    height: 56px;
}

#smb-page .comment-new__avatar {
    width: 56px;
    height: 56px;
    max-width: 56px;
    margin: 0;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

#smb-page .comment-new__author-name {
    grid-column: 2;
    grid-row: 1;
    background: var(--white);
    border-radius: 6px 22px 0 0;
    padding: 14px 22px 2px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--olive);
}

#smb-page .comment-new__text {
    grid-column: 2;
    grid-row: 2;
    background: var(--white);
    border-radius: 0 0 22px 22px;
    padding: 4px 22px 16px;
    margin: 0;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ink);
    box-shadow: 0 10px 18px -14px rgba(74, 62, 34, .35);
}

#smb-page .comment-new__item:nth-child(4n+2) .comment-new__author-name,
#smb-page .comment-new__item:nth-child(4n+2) .comment-new__text {
    background: var(--peach-soft);
}

#smb-page .comment-new__verified {
    grid-column: 2;
    grid-row: 3;
    padding: 8px 22px 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--ink-soft);
}

/* ---------- mobile bottom bar (toggled by smb-scroll.js) ---------- */
#smb-page #ipdfs5 {
    background: rgba(255, 255, 255, .92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--hair);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 50;
}

#smb-page #inicgd {
    margin: 0;
    padding: 0 !important;
}

#smb-page #ic87q6 {
    font-family: var(--f-text);
    font-size: 16px;
    padding: 14px 18px;
}

/* ---------- footer ---------- */
#smb-page .smb-page-footer {
    background: var(--olive);
    margin: 0;
    padding: 72px var(--gutter) 48px;
    border-radius: 36px 36px 0 0;
}

#smb-page .smb-footer-main {
    max-width: 960px;
}

#smb-page .smb-footer-main p {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(251, 245, 236, .72);
    margin: 0 0 12px;
}

#smb-page .smb-footer-company {
    border: 0;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--r-lg);
    margin: 0 auto 28px;
    padding: 24px;
}

#smb-page .smb-footer-company p {
    font-size: 14.5px;
    color: var(--cream);
    margin: 2px 0;
}

#smb-page .smb-footer-company strong {
    font-family: var(--f-display);
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}

#smb-page .smb-footer-main a {
    color: #fff;
    font-size: inherit;
}

#smb-page #ie8r7e {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

#smb-page .smb-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 32px 0 0;
}

#smb-page .smb-footer-nav a {
    margin: 0;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--cream);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

#smb-page .smb-footer-nav a:hover {
    background: var(--peach);
    border-color: var(--peach);
    color: var(--ink);
    text-decoration: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
    #smb-page .smb-left-main h2.pull-quote {
        margin-left: -40px;
        margin-right: -40px;
    }
}

@media (max-width: 1024px) {
    #smb-page .smb-page-left {
        padding: 48px 44px;
    }

    #smb-page .smb-left-main h2.pull-quote {
        margin-left: -24px;
        margin-right: -24px;
        padding: 36px 36px 36px 92px;
    }

    #smb-page .smb-left-main p.cn-grid-3,
    #smb-page .smb-left-main p.cn-grid-2,
    #smb-page .cn-cols-2 {
        margin-left: -12px;
        margin-right: -12px;
    }

    #smb-page p.cn-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    #smb-page .cn-hero {
        padding: 24px 20px 64px;
    }

    #smb-page .cn-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }

    #smb-page .cn-hero-collage {
        min-height: 0;
        padding: 0 16px 56px 8px;
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
    }

    #smb-page .cn-card--sub {
        right: 0;
        width: 46%;
    }

    #smb-page .bento-card,
    #smb-page .bento-card:nth-child(n) {
        grid-column: span 6;
        grid-row: auto;
        min-height: 0;
    }

    #smb-page .bento-card:nth-child(1),
    #smb-page .bento-card:nth-child(6) {
        grid-column: span 12;
    }

    #smb-page .bento-card:nth-child(1) {
        min-height: 340px;
    }

    #smb-page .step,
    #smb-page .step:nth-child(n) {
        grid-column: span 3;
    }

    #smb-page #mod-faq {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    #smb-page .cn-faq-head {
        position: relative;
        top: auto;
        padding: 36px 32px 96px;
    }

    #smb-page #ix1tvi {
        grid-template-columns: minmax(0, 1fr);
        padding: 44px 28px 36px;
        gap: 32px;
    }

    #smb-page .cn-offer-card {
        transform: none;
    }
}

@media (max-width: 768px) {
    #smb-page .logo-bar {
        padding: 18px 0 0;
    }

    #smb-page .logo-bar .col-lg {
        text-align: left;
    }

    #smb-page .cn-band {
        padding: 0 12px 64px;
    }

    #smb-page .smb-page-main {
        gap: 24px;
    }

    #smb-page .smb-page-left {
        max-width: 100%;
        border-radius: var(--r-lg);
        padding: 36px 22px 28px;
    }

    #smb-page .smb-page-right {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    #smb-page .smb-right-main {
        max-width: 420px;
        margin: 0 auto;
    }

    #smb-page .smb-left-main p {
        font-size: 17.5px;
        line-height: 1.75;
    }

    #smb-page .smb-left-main h2 {
        margin: 44px 0 16px;
    }

    #smb-page .smb-left-main h2.pull-quote {
        margin: 40px -10px 28px;
        padding: 64px 24px 28px;
        transform: none;
    }

    #smb-page .smb-left-main h2.pull-quote::before {
        left: 20px;
        top: 4px;
        font-size: 96px;
    }

    #smb-page .cn-cols-2 {
        column-count: 1;
        margin: 36px -10px;
        padding: 28px 22px 8px;
    }

    #smb-page .smb-left-main p.cn-grid-3,
    #smb-page .smb-left-main p.cn-grid-2 {
        grid-template-columns: minmax(0, 1fr);
        margin-left: -10px;
        margin-right: -10px;
    }

    #smb-page p.cn-grid-2 {
        padding: 22px 16px !important;
    }

    #smb-page .cn-modules > .mod-section,
    #smb-page .cn-reviews,
    #smb-page .cn-offer-band,
    #smb-page .cn-comments-band {
        padding: 72px 16px;
    }

    #smb-page .mod-sub {
        margin-bottom: 32px;
    }

    #smb-page .presell-comment-px .comment-module {
        flex-basis: 86%;
    }

    #smb-page .presell-comment-px .comment-product-img {
        height: 190px;
    }

    #smb-page .comment-new__item {
        grid-template-columns: 44px minmax(0, 1fr);
        column-gap: 10px;
    }

    #smb-page .comment-new__author .picture,
    #smb-page .comment-new__avatar {
        width: 44px;
        height: 44px;
        max-width: 44px;
    }

    #smb-page .comment-new__author-name {
        padding: 12px 16px 2px;
    }

    #smb-page .comment-new__text {
        padding: 4px 16px 14px;
        font-size: 16px;
    }

    #smb-page .comment-new__verified {
        padding-left: 16px;
    }

    #smb-page .smb-page-footer {
        padding: 56px 16px 96px;
        border-radius: 28px 28px 0 0;
    }
}

@media (max-width: 560px) {
    #smb-page .bento-card,
    #smb-page .bento-card:nth-child(n) {
        grid-column: span 12;
        padding: 26px;
    }

    #smb-page .bento-card:nth-child(1) {
        padding: 30px 26px;
        min-height: 300px;
    }

    #smb-page .step,
    #smb-page .step:nth-child(n) {
        grid-column: span 6;
        min-height: 0;
        padding: 26px;
    }

    #smb-page .step-idx {
        top: 39px;
        right: 26px;
    }

    #smb-page .smb-autor {
        border-radius: 22px;
        padding-right: 14px;
    }

    #smb-page .cn-card--main {
        transform: rotate(-1.5deg);
    }

    #smb-page .cn-card--sub {
        transform: rotate(2.5deg);
        padding: 6px;
    }

    #smb-page .cn-faq-head {
        padding: 30px 24px 90px;
    }

    #smb-page .faq summary {
        padding: 18px 16px;
        font-size: 16px;
        gap: 10px;
    }

    #smb-page .faq .faq-a {
        padding: 0 18px 20px 18px;
    }

    #smb-page #ix1tvi {
        padding: 36px 18px 22px;
        border-radius: 28px;
    }

    #smb-page .cn-offer-card {
        padding: 10px 10px 20px;
    }

    #smb-page .cn-offer-card .smb-click-button {
        margin: 18px 4px;
    }

    #smb-page .smb-click-button a {
        font-size: 16px;
        padding: 16px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #smb-page *,
    #smb-page *::before,
    #smb-page *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    #smb-page .bento-card:hover,
    #smb-page .step:hover,
    #smb-page .smb-click-button:hover,
    #smb-page .smb-right-button:hover,
    #smb-page .cn-hero-collage:hover .cn-card--main,
    #smb-page .cn-hero-collage:hover .cn-card--sub {
        transform: none;
    }

    #smb-page .cn-hero-collage:hover .cn-card--main {
        transform: rotate(-2deg);
    }

    #smb-page .cn-hero-collage:hover .cn-card--sub {
        transform: rotate(3deg);
    }
}

/* ---------- CoolAirNest additions ---------- */
#smb-page .advertisement {
    text-transform: uppercase;
}

#smb-page .smb-autor-name {
    color: var(--olive);
}

#smb-page .cn-hero h1 {
    color: var(--olive);
}

#smb-page .smb-page-footer a.legal-link:hover {
    color: var(--peach);
}

/* keep the hero blob out of the logo bar so the peach "nest" wordmark stays readable */
#smb-page .cn-hero {
    overflow: hidden;
    overflow: clip;
}

#smb-page .cn-blob--mint {
    color: #F6E4DA;
}

/* compliance: remote offer image carries a baked-in "50% OFF" badge — hide it */
#smb-page #ipokaj { display: none !important; }
