* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --red: #D43B29;
    --blue: #3F6FAD;
    --yellow: #F4C53E;
    --green: #46A354;
    --ink: #181816;
    --body: #2C2C2A;
    --mid: #3D3B38;
    --muted: #78756F;
    --base: #FAFAF7;
    --white: #FFFFFF;
    --sage: #EFF5F0;
    --border: #E3DFD7;
    --hf: 'Bricolage Grotesque', sans-serif;
    --bf: 'Plus Jakarta Sans', sans-serif;
    --cream: #F6F5F0;
    --cream-soft: #FBFAF6;
    --ink: #1A1A1A;
    --yellow: #F4C430;
    --red: #E8543E;
    --blue: #3b6fba;
    --green: #4E9F5B;
    --line: #E5E2D8;
    --radius-lg: 28px;
    --radius-md: 16px;
    --radius-sm: 999px;
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--bf);
    background: var(--base);
    color: var(--body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

/* ── DOTS ── */
.dots {
    display: flex;
    gap: 6px;
    align-items: center
}

.d {
    display: inline-block;
    border-radius: 50%
}

.dr {
    background: var(--red)
}

.db {
    background: var(--blue)
}

.dy {
    background: var(--yellow)
}

.dg {
    background: var(--green)
}

.dsm {
    width: 7px;
    height: 7px
}

.dmd {
    width: 10px;
    height: 10px
}

.dlg {
    width: 14px;
    height: 14px
}

/* ── LAYOUT ── */
.S {
    padding: 50px 60px
}

.W {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0px 15px;
}

.ey {
    font-family: var(--bf);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 14px
}

h2.H {
    font-family: var(--hf);
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 800;
    line-height: 1.07;
    color: var(--ink);
    letter-spacing: -2px
}

.lead {
    font-size: 16px;
    line-height: 1.85;
    color: var(--mid);
    margin-top: 14px
}

.lead strong {
    color: var(--ink);
    font-weight: 600
}

.bar {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    margin: 20px 0
}

.br {
    background: var(--red)
}

.bb {
    background: var(--blue)
}

.by {
    background: var(--yellow)
}

.bg {
    background: var(--green)
}

/* Stamp — used exactly 3× */
.stamp {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--hf);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    background: #fdeaea;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px
}

.sdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red)
}

/* ── BUTTONS ── */
.btn-p {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 17px 36px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .3px
}

.btn-p:hover {
    background: var(--red);
    transform: translateY(-2px)
}

.btn-s {
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--border);
    padding: 17px 36px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-s:hover {
    border-color: var(--ink);
    transform: translateY(-2px)
}

.btn-y {
    background: var(--yellow);
    color: var(--ink);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-y:hover {
    background: #fff;
    transform: translateY(-2px);
    color: #000;
}

.ct-btn.ct-wa:focus {
    color: #fff;
}

.btn-gw {
    background: transparent;
    color: rgba(255, 255, 255, .6);
    border: 2px solid rgba(255, 255, 255, .2);
    padding: 18px 40px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-gw:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    transform: translateY(-2px)
}

/* ══ NAV ══ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background: rgba(250, 250, 247, .97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border)
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-wrap: wrap;
}

.nav-name {
    font-family: var(--hf);
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.5px
}

nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
    margin-bottom: 0;

}

nav ul a {
    text-decoration: none;
    color: var(--mid);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s
}

nav ul a:hover {
    color: var(--ink)
}

.nav-r {
    display: flex;
    gap: 10px
}

.nav-ghost {
    background: none;
    border: 1.5px solid var(--border);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--bf);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--ink);
    transition: border-color .2s
}

.nav-ghost:hover {
    border-color: var(--ink);
    color: #000;
}

.nav-main {
    background: var(--ink);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s
}

.nav-main:hover {
    background: var(--red);
    color: #fff;
}

button#navBurger:hover,
button#navBurger:focus {
    background-color: initial;
    border-color: initial;
}

.hero-btns .btn-s:hover {
    color: initial;
}

.hero-btns .btn-p:hover {
    color: #fff;
}




.nav-burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s, opacity .25s
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-burger.open span:nth-child(2) {
    opacity: 0
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 299;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .06);
    max-height: 0;
    flex-direction: column;
    display: none;
    transition: max-height .3s ease;
    padding: 20px;
}


.nav-mobile.open {
    max-height: 80vh;
    overflow-y: auto;
    display: flex;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 8px 24px 20px
}

.nav-mobile ul li {
    border-bottom: 1px solid var(--border)
}

.nav-mobile ul a {
    display: block;
    padding: 16px 4px;
    text-decoration: none;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600
}

.nav-mobile .nm-cart {
    display: block;
    margin: 0px 0px 0;
    text-align: center;
    background: none;
    border: 1.5px solid var(--border);
    background-color: var(--yellow);
    padding: 12px;
    border-radius: 50px;
    font-family: var(--bf);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    width: calc(100% - 8px)
}

/* ══ S1 HERO — base ══ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: var(--base)
}

.hero-l {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 115px 52px 0px 60px;
    position: relative
}

.hero-l::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 65% 55% at 5% 75%, rgba(70, 163, 84, .07) 0%, transparent 60%), radial-gradient(ellipse 50% 45% at 85% 15%, rgba(63, 111, 173, .05) 0%, transparent 60%)
}

.hero-h1 {
    font-family: var(--hf);
    font-size: clamp(48px, 5.8vw, 78px);
    font-weight: 800;
    line-height: 1.0;
    color: var(--ink);
    letter-spacing: -3px;
    margin-bottom: 24px;
    position: relative
}

.hero-sub {
    font-size: 17px;
    line-height: 1.85;
    color: var(--mid);
    max-width: 460px;
    margin-bottom: 36px;
    position: relative
}

.hero-sub em {
    color: var(--ink);
    font-style: normal;
    font-weight: 600
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative
}

.hero-proof {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    position: relative
}

.hpi {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500
}

.hpd {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    font-weight: 700;
    flex-shrink: 0
}

.hero-r {
    position: relative;
    overflow: hidden
}

.hero-r img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center 22%;
    display: block
}

.hero-float {
    position: absolute;
    bottom: 48px;
    left: -20px;
    background: var(--white);
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    border: 3px solid var(--white)
}

.hfn {
    font-family: var(--hf);
    font-size: 38px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1
}

.hfl {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px
}

.hero-pill {
    position: absolute;
    top: 132px;
    right: 24px;
    background: var(--ink);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px
}

.hero-pill span {
    color: var(--yellow)
}

/* ══ TRUST BAR — marquee slider ══ */
.trust-bar {
    background: var(--ink);
    overflow: hidden !important;
    white-space: nowrap !important;
    width: 100% !important;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
}

.tb-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    animation: tbMarquee 35s linear infinite !important;
    align-items: center !important;
    will-change: transform;
}

.trust-bar:hover .tb-track {
    animation-play-state: paused !important;
}

.tb-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.tb-i {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px 35px !important;
    border-right: 1px solid rgba(255, 255, 255, .07) !important;
    transition: background .2s !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.tb-i:hover {
    background: rgba(255, 255, 255, .04) !important;
}

.tb-icon {
    font-size: 22px !important;
    flex-shrink: 0 !important;
}

.tb-text {
    font-family: var(--hf);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, .88);
    line-height: 1.3;
    letter-spacing: -.2px;
    white-space: nowrap !important;
}

@keyframes tbMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ══ S2 WHY PURPOSEFUL PLAY — white ══ */
.purposeful {
    background: var(--base)
}

.pur-h {
    font-family: var(--hf);
    font-size: clamp(28px, 3.3vw, 44px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px
}

.prm-hdr {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px
}

.prm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    margin-bottom: 52px
}

.prm-grid::before {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: var(--border);
    z-index: 0
}

.prm-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1
}

.prm-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2
}

.prm-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    margin-bottom: 18px
}

.prm-item h4 {
    font-family: var(--hf);
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.3;
    letter-spacing: -.3px
}

.prm-item p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.65
}

.pur-close {
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.55;
    padding: 20px 24px;
    background: var(--base);
    border-radius: 14px;
    border-left: 4px solid var(--red)
}

.pur-close em {
    color: var(--red);
    font-style: normal
}

.pur-img {
    position: relative
}

.pur-img img {
    width: 100%;
    border-radius: 24px;
    display: block
}

.pur-card {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--ink);
    border-radius: 16px;
    padding: 18px 22px
}

.pur-card-l {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 4px
}

.pur-card-v {
    font-family: var(--hf);
    font-size: 20px;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1.2;
    letter-spacing: -.5px
}

/* ══ S3 EVERY ACTIVITY HAS A PURPOSE — base ══ */
.purpose {
    background: var(--base)
}

.purpose-hdr {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px
}

.purpose-hdr .bar {
    margin: 20px auto
}

.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 20px;
    align-items: start
}

.act-col {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ac {
    background: var(--white);
    border-radius: 16px;
    padding: 20px 22px;
    border: 1.5px solid var(--border);
    transition: transform .2s, box-shadow .2s
}


.ac {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.ac:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .07)
}

.ac-name {
    font-family: var(--hf);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -.3px
}

.ac-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.55;
    margin-bottom: 10px
}

.ac-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700
}

.pr {
    background: #fdeaea;
    color: var(--red)
}

.pb {
    background: #e8eef8;
    color: var(--blue)
}

.pg {
    background: #e8f4e8;
    color: var(--green)
}

.py {
    background: #fdf5d8;
    color: #9a7200
}

.pp2 {
    background: #f0ecfb;
    color: #6a42b8
}

.pur-mid {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.board-wrap {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
    border: 1px solid var(--border)
}

.board-wrap img {
    width: 100%;
    display: block
}

.pur-stat {
    background: var(--ink);
    border-radius: 16px;
    padding: 22px;
    text-align: center
}

.pur-stat-n {
    font-family: var(--hf);
    font-size: 48px;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    letter-spacing: -2px
}

.pur-stat-l {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    margin-top: 4px
}

.pur-note {
    background: var(--white);
    border-radius: 12px;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    text-align: center
}

.pur-note p {
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 700;
    color: var(--mid);
    font-style: italic;
    line-height: 1.5
}

/* ══ S4 PRODUCTS — base ══ */
.shop {
    background: var(--base);
    border-top: 1px solid var(--border)
}

.shop-hdr {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px
}

.shop-hdr .bar {
    margin: 20px auto
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.pcard {
    background: var(--white);
    border-radius: 26px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
    position: relative
}

.pcard:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .1)
}

.pcard.feat {
    border-color: var(--ink);
    border-width: 2px
}

.pcard-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--yellow);
    padding: 5px 16px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2
}

.pcard-img {
    height: 230px;
    overflow: hidden
}

.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.pcard:hover .pcard-img img {
    transform: scale(1.05)
}

.pcard-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.pcard-name {
    font-family: var(--hf);
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    margin-bottom: 4px
}

.pcard-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px
}

.pcard-feats {
    list-style: none;
    flex: 1;
    margin-bottom: 16px;
    margin-left: 0;
}

.pcard-feats li {
    font-size: 13px;
    color: var(--mid);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4
}

.pcard-feats li:last-child {
    border: none
}

.pfd {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px
}

.pcard-price {
    font-family: var(--hf);
    font-size: 26px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 3px
}

.pcard-tax {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 14px
}

.pcard-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 13px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--ink);
    color: var(--ink);
    background: transparent;
    transition: all .2s
}

.pcard-btn:hover {
    background: var(--ink);
    color: #fff
}

.pcard.feat .pcard-btn {
    background: var(--ink);
    color: var(--yellow);
    border-color: var(--ink)
}

.pcard.feat .pcard-btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff
}

.gbar {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding: 14px;
    background: var(--white);
    border-radius: 12px;
    border: 1.5px solid var(--border)
}

.gbi {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px
}

.gbi strong {
    color: var(--ink)
}

/* ══ S5 EVERY ACTIVITY BUILDS — white ══
   KEY DESIGN: each row = one card
   LEFT: Activity name + context
   CENTRE: coloured border + → arrow (the visual link)
   RIGHT: Skills developed as pill tags
═══════════════════════════════════════ */
.builds {
    background: var(--white)
}

.builds-hdr {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px
}

.builds-hdr .bar {
    margin: 20px auto
}

.builds-rows {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.brow {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    align-items: stretch;
    background: var(--base);
    border-radius: 18px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.brow:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, .07);
    transform: translateY(-2px)
}

.brow-left {
    padding: 26px 28px
}

.brow-al {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px
}

.brow-act {
    font-family: var(--hf);
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.5px;
    margin-bottom: 8px;
    line-height: 1.2
}

.brow-why {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55
}

/* Arrow column — colour-coded per row, the visual connective tissue */
.brow-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-left: 3px solid;
    border-right: 3px solid;
    background: var(--white);
}

.brow-mid-arr {
    font-family: var(--hf);
    font-size: 20px;
    font-weight: 900
}

.brow-mid-lbl {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg)
}

.brow-right {
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: var(--white)
}

.brow-sl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted)
}

.brow-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.bsk {
    display: inline-flex;
    align-items: center;
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px
}

/* Row colours */
.br1 .brow-mid {
    border-color: var(--red);
    color: var(--red)
}

.br1 .brow-mid-arr {
    color: var(--red)
}

.br1 .brow-mid-lbl {
    color: var(--red)
}

.br1 .bsk {
    background: #fdeaea;
    color: var(--red)
}

.br2 .brow-mid {
    border-color: var(--blue);
    color: var(--blue)
}

.br2 .brow-mid-arr {
    color: var(--blue)
}

.br2 .brow-mid-lbl {
    color: var(--blue)
}

.br2 .bsk {
    background: #e8eef8;
    color: var(--blue)
}

.br3 .brow-mid {
    border-color: var(--green);
    color: var(--green)
}

.br3 .brow-mid-arr {
    color: var(--green)
}

.br3 .brow-mid-lbl {
    color: var(--green)
}

.br3 .bsk {
    background: #e8f4e8;
    color: var(--green)
}

.br4 .brow-mid {
    border-color: #8B5CF6;
    color: #8B5CF6
}

.br4 .brow-mid-arr {
    color: #8B5CF6
}

.br4 .brow-mid-lbl {
    color: #8B5CF6
}

.br4 .bsk {
    background: #f0ecfb;
    color: #8B5CF6
}

.br5 .brow-mid {
    border-color: var(--red);
    color: var(--red)
}

.br5 .brow-mid-arr {
    color: var(--red)
}

.br5 .brow-mid-lbl {
    color: var(--red)
}

.br5 .bsk {
    background: #fdeaea;
    color: var(--red)
}

.br6 .brow-mid {
    border-color: var(--blue);
    color: var(--blue)
}

.br6 .brow-mid-arr {
    color: var(--blue)
}

.br6 .brow-mid-lbl {
    color: var(--blue)
}

.br6 .bsk {
    background: #e8eef8;
    color: var(--blue)
}

.builds-close {
    margin-top: 24px;
    text-align: center;
    background: var(--ink);
    border-radius: 16px;
    padding: 26px
}

.builds-close p {
    font-family: var(--hf);
    font-size: clamp(17px, 2.2vw, 24px);
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    letter-spacing: -.5px
}

.builds-close em {
    color: var(--yellow);
    font-style: normal
}

/* ══ S6 WHY BUSY B EXISTS — sage (NOT dark) ══ */
.story {
    background: var(--sage)
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.story-img {
    border-radius: 22px;
    overflow: hidden
}

.story-img img {
    width: 100%;
    display: block
}

.s-ey {
    font-family: var(--bf);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 14px
}

.s-h {
    font-family: var(--hf);
    font-size: clamp(28px, 3.3vw, 44px);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 22px
}

.s-h em {
    color: var(--red);
    font-style: normal
}

.founder-note {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 22px
}

.founder-note em {
    color: var(--ink);
    font-style: normal;
    font-weight: 600
}

.founder-sig {
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: -.2px;
    margin-bottom: 22px
}

.story-belief {
    font-family: var(--hf);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.55;
    padding: 18px 22px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--red);
    letter-spacing: -.3px
}

/* ══ S7 TODAY → TOMORROW — THE one dark section ══
   KEY DESIGN: each pair = 2 cards side by side,
   clearly labelled TODAY and TOMORROW,
   linked by a bold coloured arrow between them.
   Parent sees ONE thing that becomes ANOTHER thing.
═══════════════════════════════════════════════════ */
.tomorrow {
    background: var(--ink);
    padding: 100px 60px
}

.tom-hdr {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px
}

.tom-hdr-ey {
    font-family: var(--bf);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    display: block;
    margin-bottom: 14px
}

.tom-hdr h2 {
    font-family: var(--hf);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.07;
    margin-bottom: 14px
}

.tom-hdr p {
    font-size: 16px;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
    margin-bottom: 0px;
}

.tom-pairs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 960px;
    margin: 0 auto
}

.tom-row {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    align-items: stretch;
    border-radius: 18px;
    overflow: hidden;
}

/* TODAY side */
.tom-today {
    padding: 24px 28px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px 0 0 18px;
}

.tom-today-l {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 8px
}

.tom-today-v {
    font-family: var(--hf);
    font-size: 19px;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    line-height: 1.3;
    letter-spacing: -.3px
}

/* Arrow column */
.tom-arr-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.tom-arr-icon {
    font-family: var(--hf);
    font-size: 24px;
    font-weight: 900
}

.tom-arr-word {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: rotate(180deg)
}

/* TOMORROW side */
.tom-tomorrow {
    padding: 24px 28px;
    border-radius: 0 18px 18px 0;
}

.tom-tom-l {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.tom-tom-v {
    font-family: var(--hf);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.3px
}

/* Colour per pair */
.tp1 .tom-arr-col {
    background: rgba(244, 112, 96, .08);
    border-color: rgba(244, 112, 96, .2)
}

.tp1 .tom-arr-icon,
.tp1 .tom-arr-word {
    color: #F47060
}

.tp1 .tom-tomorrow {
    background: rgba(244, 112, 96, .08);
    border: 1px solid rgba(244, 112, 96, .2)
}

.tp1 .tom-tom-l {
    color: #F47060
}

.tp1 .tom-tom-v {
    color: rgba(255, 255, 255, .85)
}

.tp2 .tom-arr-col {
    background: rgba(122, 172, 223, .08);
    border-color: rgba(122, 172, 223, .2)
}

.tp2 .tom-arr-icon,
.tp2 .tom-arr-word {
    color: #7AACDF
}

.tp2 .tom-tomorrow {
    background: rgba(122, 172, 223, .08);
    border: 1px solid rgba(122, 172, 223, .2)
}

.tp2 .tom-tom-l {
    color: #7AACDF
}

.tp2 .tom-tom-v {
    color: rgba(255, 255, 255, .85)
}

.tp3 .tom-arr-col {
    background: rgba(125, 214, 138, .08);
    border-color: rgba(125, 214, 138, .2)
}

.tp3 .tom-arr-icon,
.tp3 .tom-arr-word {
    color: #7DD68A
}

.tp3 .tom-tomorrow {
    background: rgba(125, 214, 138, .08);
    border: 1px solid rgba(125, 214, 138, .2)
}

.tp3 .tom-tom-l {
    color: #7DD68A
}

.tp3 .tom-tom-v {
    color: rgba(255, 255, 255, .85)
}

.tp4 .tom-arr-col {
    background: rgba(184, 154, 255, .08);
    border-color: rgba(184, 154, 255, .2)
}

.tp4 .tom-arr-icon,
.tp4 .tom-arr-word {
    color: #B89AFF
}

.tp4 .tom-tomorrow {
    background: rgba(184, 154, 255, .08);
    border: 1px solid rgba(184, 154, 255, .2)
}

.tp4 .tom-tom-l {
    color: #B89AFF
}

.tp4 .tom-tom-v {
    color: rgba(255, 255, 255, .85)
}

.tp5 .tom-arr-col {
    background: rgba(244, 197, 62, .1);
    border-color: rgba(244, 197, 62, .3)
}

.tp5 .tom-arr-icon,
.tp5 .tom-arr-word {
    color: var(--yellow)
}

.tp5 .tom-tomorrow {
    background: rgba(244, 197, 62, .1);
    border: 1px solid rgba(244, 197, 62, .3)
}

.tp5 .tom-tom-l {
    color: var(--yellow)
}

.tp5 .tom-tom-v {
    color: var(--yellow);
    font-style: italic;
    font-size: 22px
}

.tom-close-wrap {
    max-width: 960px;
    margin: 44px auto 0;
    text-align: center
}

.tom-close {
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    display: inline-block;
    border-left: 3px solid var(--yellow);
    padding-left: 20px;
    text-align: left
}

.tom-close em {
    color: #fff;
    font-style: normal
}

/* ══ S8 QUALITY + ISO — white ══ */
.quality {
    background: var(--white)
}

.qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.qual-img {
    border-radius: 22px;
    overflow: hidden;
    height: 460px
}

.qual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.iso-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--yellow);
    padding: 11px 20px;
    border-radius: 12px;
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.qual-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px
}

.qb {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: var(--base);
    border-radius: 14px;
    border: 1.5px solid var(--border)
}

.qb-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.qb h4 {
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
    letter-spacing: -.2px
}

.qb p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5
}

/* ══ S9 TESTIMONIALS — base & slider ══ */
.testi {
    background: var(--base)
}

.testi-hdr {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px
}

.testi-hdr .bar {
    margin: 20px auto
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.testi-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.testi-slider {
    width: 100%;
    overflow: hidden;
    padding: 12px 4px;
    margin: -12px -4px;
}

.testi-slider .testi-grid {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testi-slider .tcard {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
}

.ftop div img[alt="Busy B Toys"] {
    background-color: #fff;
    border-radius: 6px;
}

/* Optional: Different menu items */
.nav-mobile li:nth-child(1) .menu-link {
    color: #d43b29;
}

.nav-mobile li:nth-child(2) .menu-link {
    color: #3f6fad;
}

.nav-mobile li:nth-child(3) .menu-link {
    color: #f4c53e;
}

.nav-mobile li:nth-child(4) .menu-link {
    color: #46a354;
}

.nav-mobile li:nth-child(5) .menu-link {
    color: #181816;
}

.nav-mobile li:nth-child(6) .menu-link {
    color: #9c27b0;
}



.testi-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--ink);
    width: 44px;
    padding: 0;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.testi-nav:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: translateY(-50%) scale(1.08);
}

.testi-prev {
    left: -22px;
}

.testi-next {
    right: -22px;
}



.testi-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.testi-dots .tdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-dots .tdot.active {
    background: var(--red);
    width: 26px;
    border-radius: 12px;
}

.tcard {
    background: var(--white);
    border-radius: 22px;
    padding: 28px 24px;
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s
}

.tcard:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .07)
}

.tcard-stars {
    color: var(--yellow);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.tcard-q {
    font-family: var(--hf);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px
}

.tcard-q::before {
    content: '\201C';
    color: var(--red)
}

.tcard-q::after {
    content: '\201D';
    color: var(--red)
}

.tcard-name {
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: 2px
}

.tcard-meta {
    font-size: 12px;
    color: var(--muted)
}

/* ══ S10 FINAL CTA — ink ══ */
.final {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center
}

.final-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 20% 50%, rgba(212, 59, 41, .12) 0%, transparent 60%), radial-gradient(ellipse 60% 60% at 80% 50%, rgba(63, 111, 173, .1) 0%, transparent 60%)
}

.final-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 96px 60px;
    width: 100%
}

.final-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hf);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 22px
}

.ftdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yellow)
}

.final-h {
    font-family: var(--hf);
    font-size: clamp(44px, 6.5vw, 82px);
    font-weight: 800;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -4px;
    margin-bottom: 26px
}

.final-h em {
    color: var(--yellow);
    font-style: normal
}

.final-copy {
    font-size: 16px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto
}

.final-copy em {
    color: rgba(255, 255, 255, .8);
    font-style: normal
}

.final-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.final-guar {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap
}

.fg {
    font-size: 13px;
    color: rgba(255, 255, 255, .28);
    display: flex;
    align-items: center;
    gap: 6px
}

.fg strong {
    color: rgba(255, 255, 255, .5)
}

/* ══ FOOTER ══ */
footer {
    background: #111110;
    padding: 68px 60px 36px
}

.fw {
    max-width: 1160px;
    margin: 0 auto
}

.ftop {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 44px
}

.fb-name {
    font-family: var(--hf);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    margin: 10px 0 4px
}

.fb-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    font-style: italic;
    margin-bottom: 12px
}

.fb p {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.75;
    max-width: 240px
}

.f-contacts {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px
}

.f-contacts a {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s;
}

.f-contacts a:hover {
    transform: translate(10px, 10px);
}

.f-contacts a:nth-child(1) {
    background-color: #e8543e;
}

.f-contacts a:nth-child(2) {
    background-color: #3b6fba;
}

.f-contacts a:nth-child(3) {
    background-color: #f4c430;
}


.f-contact {
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s
}

.f-contact:hover {
    color: #fff
}

.fcol h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 16px
}

.fcol ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
}

.fcol a {
    text-decoration: none;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    transition: color .2s
}

.fcol a:hover {
    color: #fff
}

.fbot {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.fbot p {
    font-size: 13px;
    margin-bottom: 0px;
    color: rgba(255, 255, 255, .5)
}

.fbot .fi {
    font-family: var(--hf);
    font-style: italic;
    color: rgba(255, 255, 255, .55);
    font-weight: 600
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-l>* {
    animation: fadeUp .6s ease both
}

.hero-l>*:nth-child(1) {
    animation-delay: .05s
}

.hero-l>*:nth-child(2) {
    animation-delay: .11s
}

.hero-l>*:nth-child(3) {
    animation-delay: .17s
}

.hero-l>*:nth-child(4) {
    animation-delay: .23s
}

.hero-l>*:nth-child(5) {
    animation-delay: .29s
}

.hero-l>*:nth-child(6) {
    animation-delay: .35s
}

.hero-r {
    animation: fadeUp .85s .18s ease both
}

/* ── RESPONSIVE ── */

/* ── AGE BADGE + PRODUCT CLARITY (v8) ── */
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--hf);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 9px 19px;
    border-radius: 50px;
    margin-bottom: 20px;
    width: 60%;
    text-align: center;
}

.age-badge .ab-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink)
}

.hero-what {
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.2px;
    max-width: 460px;
    margin-bottom: 10px;
    line-height: 1.5
}

/* ── PERFECT FOR (v8) ── */
.pfor {
    background: var(--white);
    border-bottom: 1px solid var(--border)
}

.pfor-hdr {
    text-align: center;
    max-width: 620px;
    margin: 0 auto
}

.pfor-hdr .bar {
    margin: 20px auto
}

.pfor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px
}

.pfc {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .25s, box-shadow .25s
}

.pfc:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(24, 24, 22, .12)
}

.pfc img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pfc-ol {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 44px 16px 13px;
    background: linear-gradient(180deg, rgba(24, 24, 22, 0) 0%, rgba(24, 24, 22, .82) 100%)
}

.pfc-name {
    font-family: var(--hf);
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px
}

.pfc-name .d {
    flex: none
}

.pfc-desc {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .85)
}

.pfor-strip {
    margin-top: 24px;
    background: var(--sage);
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px
}

.pfor-strip .ps-icon {
    font-size: 24px;
    flex: none
}

.pfor-strip p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mid)
}

.pfor-strip strong {
    color: var(--ink);
    font-weight: 700
}

/* ── SIGNATURE BRAND STATEMENT (v9) ── */
.sig {
    background: var(--base);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 130px 60px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.sig::before,
.sig::after {
    font-family: var(--hf);
    font-size: 480px;
    font-weight: 800;
    line-height: 1;
    position: absolute;
    color: rgba(0, 0, 0, .04);
    pointer-events: none;
    user-select: none
}

.sig::before {
    content: '\201C';
    top: -60px;
    left: 20px
}

.sig::after {
    content: '\201D';
    bottom: -160px;
    right: 20px
}

.sig .dots {
    justify-content: center;
    margin-bottom: 34px;
    position: relative;
    z-index: 1
}

.sig-h {
    font-family: var(--hf);
    font-size: clamp(34px, 5.2vw, 68px);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1.12;
    color: var(--ink);
    position: relative;
    z-index: 1
}

.sig-h em {
    font-style: normal;
    color: var(--red)
}

.sig-tag {
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    position: relative;
    z-index: 1
}

/* ── BUILD & TRACE JOURNEY (v9) ── */
.trace {
    background: var(--base)
}

.trace-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 0
}

.tstep {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border)
}

.tstep:last-child {
    border-bottom: none
}

.tstep-n {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hf);
    font-weight: 800;
    font-size: 14px;
    color: #fff
}

.tstep h4 {
    font-family: var(--hf);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.4px;
    color: var(--ink);
    margin-bottom: 5px
}

.tstep p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mid)
}

.tstep-arr {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    line-height: 1;
    padding: 2px 0 2px 19px;
    text-align: left
}

.trace-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start
}

.trace-imgs img {
    width: 100%;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(24, 24, 22, .10);
    animation: float 4s ease-in-out infinite;
}



.trace-imgs img:last-child {
    margin-top: 34px
}

.trace-imgs .ti-span {
    grid-column: 1/-1;
    max-height: 420px;
    object-fit: cover;
    object-position: center 38%
}

.trace-note {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--muted);
    text-align: center
}


/* ── v13: door caption + over-highlights ── */
.story-img-cap {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--mid);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 11px 16px
}

.sig {
    padding: 50px 60px
}

.sig-h em {
    background: linear-gradient(transparent 58%, rgba(244, 197, 62, .45) 58%, rgba(244, 197, 62, .45) 92%, transparent 92%);
    padding: 0 10px;

}

.sig-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--ink);
    border-radius: 50px;
    padding: 11px 26px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-top: 0;
    margin-bottom: 28px
}

.br6 {
    border: 2px solid var(--blue);
    background: #eef4fc;
    box-shadow: 0 16px 40px rgba(63, 111, 173, .18)
}

.br6 .brow-right {
    background: transparent
}

.br6 .brow-al,
.br6 .brow-sl {
    color: var(--blue)
}

.br6 .brow-act {
    font-size: 26px
}

.br6 .bsk {
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    padding: 9px 16px
}

.br6 .bsk:last-child {
    background: var(--yellow);
    color: var(--ink)
}


/* ── v14: strip image + stages ── */
.ps-img {
    width: 150px;
    border-radius: 12px;
    flex: none;
    display: block;
    border: 1px solid var(--border)
}

.stages {
    background: var(--white);
    border-bottom: 1px solid var(--border)
}

.stg-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 44px
}

.stg {
    background: var(--base);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column
}

.stg-age {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--hf);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 50px;
    padding: 5px 12px;
    margin-bottom: 10px
}

.stg-name {
    font-family: var(--hf);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--ink);
    margin-bottom: 10px
}

.stg ul {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    flex: 1
}

.stg li {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--mid);
    padding-left: 14px;
    position: relative;
    margin-bottom: 5px
}

.stg li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--muted)
}

.stg-sees {
    background: var(--sage);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--ink)
}

.stg-sees b {
    display: block;
    font-size: 9.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 3px;
    font-weight: 700
}

.stg5 {
    background: var(--ink);
    border-color: var(--ink)
}

.stg5 .stg-name {
    color: #fff
}

.stg5 li {
    color: rgba(255, 255, 255, .78)
}

.stg5 li:before {
    background: rgba(255, 255, 255, .4)
}

.stg5 .stg-sees {
    background: rgba(255, 255, 255, .09);
    color: #fff
}

.stg5 .stg-sees b {
    color: rgba(255, 255, 255, .5)
}


/* ── v15: stages timeline ── */
.tl {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 56px
}

.tl-line {
    position: absolute;
    top: 51px;
    left: 8%;
    right: 8%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--red), var(--blue), var(--yellow), var(--green), var(--ink))
}

.tl-stop {
    text-align: center;
    position: relative
}

.tl-age {
    display: inline-block;
    font-family: var(--hf);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    color: #fff;
    border-radius: 50px;
    padding: 5px 12px;
    margin-bottom: 13px
}

.tl-dot {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 0 auto 14px;
    box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--border)
}

.tl-dot {
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}


.tl-name {
    font-family: var(--hf);
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.4px;
    margin-bottom: 6px
}

.tl-sees {
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--mid);
    max-width: 175px;
    margin: 0 auto
}

.breather {
    /* height: 420px;*/
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.breather img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 38%;
    display: block;
    animation: float 4s ease-in-out infinite;
}

.breather-duo img {
    object-position: 50% 30%
}

.breather-carry img {
    object-position: 50% 32%
}


/* ── FIND YOUR BOARD chooser (added to homepage) ── */
.choose {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 16px
}

.ch-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: transform .25s, box-shadow .25s
}

.ch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .07)
}

.ch-card .ch-ic {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px
}

.ch-card h3 {
    font-family: var(--hf);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -.4px
}

.ch-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mid);
    margin-bottom: 16px
}

.ch-card a {
    font-family: var(--hf);
    font-weight: 700;
    font-size: 14px;
    color: var(--blue);
    text-decoration: none
}

.ch-card a:hover {
    text-decoration: underline
}





/* about css start  */




/* ── ABOUT (confidence-led, v2) ── */
.ab-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    overflow: hidden
}

.ab-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 46%
}

.ab-hero .ab-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 24, 22, .2) 0%, rgba(24, 24, 22, 0) 32%, rgba(24, 24, 22, .7) 100%)
}

.ab-hero .ab-h-copy {
    position: relative;
    padding: 10px 10px 70px
}

.ab-hero .dots {
    margin-bottom: 18px
}

.ab-hero h1 {
    font-family: var(--hf);
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1.06;
    max-width: 820px
}

.ab-hero .ab-moments {
    margin-top: 20px;
    max-width: 540px
}

.ab-hero .ab-moments p {
    font-size: 17px;
    color: rgba(255, 255, 255, .9);
    line-height: 1.7
}

.ab-hero .ab-moments strong {
    color: #fff;
    font-weight: 700
}

/* founder story */
.story-wrap {
    max-width: 680px;
    margin: 0 auto;
    text-align: center
}

.story-wrap .ab-p {
    font-size: 18px;
    line-height: 1.85;
    color: var(--body);
    margin-bottom: 22px
}

.story-wrap .ab-p strong {
    color: var(--ink);
    font-weight: 700
}

.story-wrap .closer {
    font-family: var(--hf);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.6px;
    color: var(--ink);
    margin-top: 8px
}

/* manifesto pillars */
.man-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px
}

.man {
    text-align: center;
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px
}

.man .man-n {
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 2px;
    margin-bottom: 16px
}

.man .man-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center
}

.man h3 {
    font-family: var(--hf);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 10px
}

.man p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--mid)
}

/* more than a toy — philosophy */
.phil {
    max-width: 680px;
    margin: 0 auto;
    text-align: center
}

.phil .q {
    font-family: var(--hf);
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    letter-spacing: -.7px;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 18px
}

.phil .q .muted {
    color: var(--muted)
}

.phil .q .blue {
    color: var(--blue)
}

.phil .caps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 36px 0
}

.phil .cap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 16px;
    padding: 24px 16px
}

.phil .cap-icon {
    font-size: 28px;
    line-height: 1
}

.phil .cap-text {
    font-family: var(--hf);
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    text-align: center;
    line-height: 1.3
}

.phil p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--mid)
}

/* difference cards */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 46px
}

.diff {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px 24px
}

.diff .diff-ic {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px
}

.diff h4 {
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.3px;
    color: var(--ink);
    line-height: 1.2
}

/* moments — full-bleed */
.moments {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.moments img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%
}

.moments .m-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(24, 24, 22, .82) 0%, rgba(24, 24, 22, .5) 50%, rgba(24, 24, 22, .12) 100%)
}

.moments .m-copy {
    position: relative;
    max-width: 620px;
    padding: 0 60px
}

.moments .ey {
    color: var(--yellow)
}

.moments h2 {
    font-family: var(--hf);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    letter-spacing: -1.2px;
    color: #fff;
    line-height: 1.18;
    margin: 12px 0 22px
}

.moments .m-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}

.moments .m-list li {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .92);
    padding-left: 24px;
    position: relative
}

.moments .m-list li:before {
    content: "›";
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 800
}

.moments .m-why {
    font-family: var(--hf);
    font-size: 20px;
    font-weight: 800;
    color: #fff
}

/* promise */
.prom-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 8px
}

.prom {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 13px 24px;
    font-family: var(--hf);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink)
}

.prom .pr-ck {
    color: var(--green)
}

/* final */
.fin {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden
}

.fin img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%
}

.fin .fin-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 24, 22, .55), rgba(24, 24, 22, .72))
}

.fin .fin-copy {
    position: relative;
    max-width: 640px;
    padding: 0 32px
}

.fin h2 {
    font-family: var(--hf);
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 800;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1.04
}

.fin p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
    margin-top: 22px
}

.fin p strong {
    color: #fff;
    font-weight: 700
}

.fin .dots {
    justify-content: center;
    margin-bottom: 22px
}

/* ── REAL STORY (founder's own child) ── */
.rstory {
    background: var(--white)
}

.rstory-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
    margin-top: 8px
}

.rstory-img {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border)
}

.rstory-img img {
    width: 100%;
    display: block
}

.rstory-body .ey {
    margin-bottom: 6px
}

.rstory-body h2 {
    font-family: var(--hf);
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 20px
}

.rstory-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 16px
}

.rstory-body p strong {
    color: var(--ink);
    font-weight: 700
}

.rstory-pull {
    border-left: 3px solid var(--yellow);
    padding-left: 20px;
    margin: 24px 0;
    font-family: var(--hf);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.4px;
    line-height: 1.4;
    color: var(--ink)
}

.rstory-sign {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
    margin-top: 8px
}




/* contact css start  */



/* ── CONTACT PAGE ── */
.ct-hero {
    background: var(--base);
    padding: 104px 0 20px;
    text-align: center
}

.ct-hero .ey {
    justify-content: center
}

.ct-hero h1 {
    font-family: var(--hf);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    color: var(--ink);
    margin: 6px 0 16px
}

.ct-hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--mid);
    max-width: 560px;
    margin: 0 auto;
    margin-top: 10px;
}

.ct-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px
}

.ct-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 38px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform .25s, box-shadow .25s
}


section.S p {
    margin-bottom: initial;
}


.ct-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .08)
}

.ct-ic {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px
}

.ct-card h3 {
    font-family: var(--hf);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.4px;
    color: var(--ink);
    margin-bottom: 8px
}

.ct-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--mid);
    margin-bottom: 20px;
    flex: 1
}

.ct-btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 50px;
    font-family: var(--hf);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: transform .2s, filter .2s
}

.ct-btn:hover {
    transform: translateY(-2px)
}

.ct-wa {
    background: #25D366;
    color: #fff
}

.ct-em {
    background: var(--ink);
    color: #fff
}

.ct-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff
}

.ct-hours {
    width: fit-content;
    margin: 44px auto 0;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    background: #f5f3ef;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .08);
    letter-spacing: 0.01em
}

/* faq */
.faq {
    max-width: 760px;
    margin: 42px auto 0
}

.faq-q {
    border-bottom: 1px solid var(--border);
    padding: 22px 0
}

.faq-q summary {
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px
}

.faq-q summary::-webkit-details-marker {
    display: none
}

.faq-q summary:after {
    content: "+";
    color: var(--blue);
    font-size: 22px;
    flex: none
}

.faq-q[open] summary:after {
    content: "–"
}

.faq-q p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--mid);
    margin-top: 14px
}

/* personal note band */
.note {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.note img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center
}

.note .note-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(24, 24, 22, .8) 0%, rgba(24, 24, 22, .45) 55%, rgba(24, 24, 22, .1) 100%)
}

.note .note-copy {
    position: relative;
    max-width: 560px;
    padding: 0 60px
}

.note .ey {
    color: var(--yellow)
}

.note h2 {
    font-family: var(--hf);
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    letter-spacing: -1.2px;
    color: #fff;
    line-height: 1.15;
    margin: 10px 0 16px
}

.note p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .9)
}

/* peduct-duo css start  */


/* ── MAX PDP v3 — outcome-first ── */
.pdp {
    padding: 104px 0 60px;
    background: var(--base)
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: start
}

.gallery {
    position: sticky;
    top: 90px
}

.g-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: zoom-in
}

.g-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.g-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px
}

.g-thumb {
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    background: var(--white);
    padding: 0
}

.g-thumb.active {
    border-color: var(--blue)
}

.g-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.busyb-lightbox-open {
    overflow: hidden
}

.busyb-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(16, 20, 26, .88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 9999;
    padding: 24px
}

.busyb-lightbox.open {
    opacity: 1;
    pointer-events: auto
}

.busyb-lightbox-stage {
    max-width: min(92vw, 1080px);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.busyb-lightbox-stage img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 18px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25)
}

.busyb-lightbox-close,
.busyb-lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px)
}

.busyb-lightbox-close {
    top: 18px;
    right: 18px;
    font-size: 30px;
    line-height: 1
}

.busyb-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px
}

.busyb-lightbox-nav.prev {
    left: 18px
}

.busyb-lightbox-nav.next {
    right: 18px
}

.pdp-bc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px
}

.pdp-bc a {
    color: var(--muted);
    text-decoration: none
}

.pdp-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: #fff;
    font-family: var(--hf);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 18px
}

.pdp-name {
    font-family: var(--hf);
    font-size: clamp(44px, 6vw, 68px);
    font-weight: 800;
    letter-spacing: -2.5px;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 10px
}

.pdp-quote {
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 20px;
    letter-spacing: .1px
}

.pdp-imgnote {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px;
    text-align: center
}

.pdp-h1 {
    font-family: var(--hf);
    font-size: clamp(32px, 4.1vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.06;
    color: var(--ink);
    margin-bottom: 16px
}

.pdp-h1 span {
    color: var(--blue)
}

.pdp-lede {
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 24px;
    max-width: 520px
}

.pdp-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 10px
}

.pdp-checks li {
    display: flex;
    gap: 11px;
    align-items: center;
    font-size: 15px;
    color: var(--body);
    font-weight: 500
}

.pdp-checks .ck {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    background: var(--green)
}

.pdp-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px
}

.pdp-price .pp {
    font-family: var(--hf);
    font-size: 38px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px
}

.pdp-tax {
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 22px
}

.pdp-buy {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 18px
}

.buy-row {
    display: flex;
    gap: 11px;
    align-items: stretch
}

.busyb-purchase-form {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%
}

.buy-row-primary .busyb-qty {
    width: 124px;
    min-width: 124px;
    height: 54px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: var(--white);
    overflow: hidden
}

.buy-row-primary .busyb-qty .qty-btn {
    flex: 0 0 42px;
    width: 42px;
    height: 100%;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: #fff !important;
    color: var(--ink) !important;
    font-size: 22px;
    line-height: 1;
    font-family: var(--hf);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    -webkit-appearance: none;
    transition: background .2s, color .2s
}

.buy-row-primary .busyb-qty .qty-btn:hover {
    background: var(--base) !important
}

.buy-row-primary .busyb-qty .qty-minus {
    border-right: 1px solid var(--border)
}

.buy-row-primary .busyb-qty .qty-plus {
    border-left: 1px solid var(--border)
}

.buy-row-primary .busyb-qty .qty-input.input-text {
    flex: 0 0 40px;
    width: 40px;
    max-width: 40px;
    min-width: 0;
    height: 100%;
    border: none;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent !important;
    text-align: center;
    font-family: var(--hf);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink) !important;
    padding: 0;
    display: block;
    appearance: textfield;
    -webkit-appearance: none;
    outline: none
}

.buy-row-primary .busyb-qty .qty-input::-webkit-outer-spin-button,
.buy-row-primary .busyb-qty .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.buy-row-primary .busyb-qty .qty-input[type=number] {
    -moz-appearance: textfield
}

.busyb-woo-notices {
    position: fixed;
    top: 84px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 780px;
    z-index: 9999;
    background: transparent;
    pointer-events: none
}

.busyb-woo-notices .woocommerce-notices-wrapper {
    margin-bottom: 0;
    background: transparent;
    pointer-events: auto
}

.busyb-woo-notices .woocommerce-message,
.busyb-woo-notices .woocommerce-info,
.busyb-woo-notices .woocommerce-error {
    margin: 0;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-left: 4px solid var(--green);
    border-radius: 18px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 32px rgba(24, 24, 22, .12);
    padding: 14px 20px;
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 600;
    padding-left: 45px;
    pointer-events: auto;
}

.busyb-woo-notices .woocommerce-error {
    border-left-color: var(--red)
}

.busyb-woo-notices .woocommerce-message .button,
.busyb-woo-notices .woocommerce-info .button,
.busyb-woo-notices .woocommerce-error .button {
    border-radius: 999px !important;
    background: var(--ink) !important;
    color: #fff !important;
    border: none !important;
    font-family: var(--hf) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 8px 20px !important;
    flex-shrink: 0;
    margin-left: auto;
    pointer-events: auto !important;
    cursor: pointer !important
}

.busyb-woo-notices .woocommerce-message .button:hover,
.busyb-woo-notices .woocommerce-info .button:hover,
.busyb-woo-notices .woocommerce-error .button:hover {
    background: #333;
    color: #fff
}

.busyb-woo-notices .woocommerce-message::before,
.busyb-woo-notices .woocommerce-info::before,
.busyb-woo-notices .woocommerce-error::before {
    top: 50%;
    transform: translateY(-50%);
    color: var(--green)
}

.btn-cart {
    flex: 1;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0 30px;
    min-height: 52px;
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s, background .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px
}

.btn-cart:hover {
    background: #000;
    transform: translateY(-2px)
}

.btn-wawidthder {
    width: initial !important;
    height: initial !important;
}

.btn-wa {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0 24px;
    min-height: 52px;
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .2s;
    white-space: nowrap
}

.btn-wa:hover {
    transform: translateY(-2px);
    color: #fff;
}

.btn-buynow {
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0 24px;
    min-height: 52px;
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.btn-buynow:hover {
    transform: translateY(-2px)
}

.buy-row-secondary {
    align-items: center
}

.buy-row-secondary .btn-buynow,
.buy-row-secondary .btn-wa {
    width: auto;
    flex: 0 0 auto
}

.busyb-purchase-form-closer .buy-row-primary .busyb-qty {
    background: rgba(255, 255, 255, .95)
}

.sku-strip .qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    justify-content: center;
}

.sku-strip .qty button {
    background: var(--white);
    border: none;
    width: 42px;
    height: 54px;
    font-size: 18px;
    cursor: pointer;
    color: var(--ink)
}

.sku-strip .qty span {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-family: var(--hf)
}

/* trust badges near buy */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    padding-top: 20px;
    border-top: 1px solid var(--border)
}

.tbg {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--mid)
}

.tbg .tb-ic {
    color: var(--green);
    font-size: 14px;
    flex: none
}

/* OUTCOMES */
.out-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 46px
}

.out-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 26px
}

.out-card .oc-ic {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px
}

.out-card h3 {
    font-family: var(--hf);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--ink);
    margin-bottom: 9px
}

.out-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mid)
}

/* HERO LIFESTYLE */
.lifestyle {
    position: relative;
    height: 82vh;
    min-height: 540px;
    overflow: hidden
}

.lifestyle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block
}

.lifestyle .ls-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 24, 22, .04) 0%, rgba(24, 24, 22, 0) 30%, rgba(24, 24, 22, .55) 100%)
}

.lifestyle .ls-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 0 64px
}

.ls-copy h2 {
    font-family: var(--hf);
    font-size: clamp(30px, 4.6vw, 58px);
    font-weight: 800;
    letter-spacing: -1.8px;
    color: #fff;
    line-height: 1.05;
    max-width: 760px
}

.ls-copy p {
    font-size: 17px;
    color: rgba(255, 255, 255, .88);
    margin-top: 16px;
    max-width: 480px;
    line-height: 1.6
}

/* WHY (outcome-first cards) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 46px
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px 34px
}

.why-card .wc-bar {
    width: 46px;
    height: 4px;
    border-radius: 4px;
    margin-bottom: 22px
}

.why-card .wc-n {
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 16px
}

.why-card h3 {
    font-family: var(--hf);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.7px;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.14
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--mid)
}

/* COMPARISON TABLE */
.cmp {
    max-width: 760px;
    margin: 46px auto 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white)
}

.cmp-row {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.cmp-row>div {
    padding: 18px 26px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px
}

.cmp-row .c-l {
    color: var(--muted);
    border-right: 1px solid var(--border)
}

.cmp-row .c-r {
    color: var(--ink);
    font-weight: 600;
    background: var(--sage)
}

.cmp-row:not(:last-child)>div {
    border-bottom: 1px solid var(--border)
}

.cmp-head .c-l,
.cmp-head .c-r {
    font-family: var(--hf);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.cmp-head .c-r {
    color: var(--blue)
}

.cmp-row .c-l:before {
    content: "✕";
    color: #c9bfb3;
    font-weight: 700;
    flex: none
}

.cmp-row .c-r:before {
    content: "✓";
    color: var(--green);
    font-weight: 800;
    flex: none
}

.cmp-head .c-l:before,
.cmp-head .c-r:before {
    content: ""
}

/* TESTIMONIALS */
.tst-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px
}

.tst {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px 28px
}

.tst .stars {
    color: var(--yellow);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.tst p {
    font-family: var(--hf);
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -.3px
}

/* SCALE */
.scale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px
}

.scale-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white)
}

.scale-card .sc-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: var(--sage)
}

.scale-card .sc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.scale-card .sc-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
    padding: 20px;
    background: repeating-linear-gradient(45deg, var(--sage), var(--sage) 12px, #e7eee8 12px, #e7eee8 24px)
}

.scale-card .sc-ph .ic {
    font-size: 30px;
    margin-bottom: 10px
}

.scale-card .sc-ph b {
    font-family: var(--hf);
    color: var(--ink);
    font-size: 14px;
    display: block;
    margin-bottom: 4px
}

.scale-card .sc-ph span {
    font-size: 12px;
    line-height: 1.5
}

.scale-card .sc-cap {
    padding: 18px 20px;
    font-size: 14px;
    color: var(--body);
    line-height: 1.5
}

.scale-card .sc-cap b {
    font-family: var(--hf);
    display: block;
    color: var(--ink);
    margin-bottom: 3px
}

/* JOURNEY */
.mj {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 46px
}

.mj-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.mj-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: var(--sage)
}

.mj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.mj-ph {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
    padding: 16px;
    background: repeating-linear-gradient(45deg, var(--sage), var(--sage) 12px, #e7eee8 12px, #e7eee8 24px)
}

.mj-body {
    padding: 20px 22px
}

.mj-age {
    display: inline-block;
    font-family: var(--hf);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 50px;
    padding: 5px 12px;
    margin-bottom: 10px
}

.mj-body h4 {
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px
}

.mj-body p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--mid)
}

.mj-foot {
    text-align: center;
    max-width: 660px;
    margin: 48px auto 0;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.5;
    color: var(--ink);
    font-family: var(--hf);
    font-weight: 800;
    letter-spacing: -.3px;
    background: #f5f3ef;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    padding: 28px 36px;
    padding-bottom: 10px;

}

.mj-foot::before {
    content: '\201C';
    display: block;
    font-family: var(--hf);
    font-size: 36px;
    line-height: 1;
    color: var(--green);
    margin-bottom: 10px;
    font-weight: 800;
    line-height: 0px;
}

/* BUILT TO STAY closer */
.stay {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center
}

.stay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%
}

.stay .stay-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(24, 24, 22, .85) 0%, rgba(24, 24, 22, .58) 45%, rgba(24, 24, 22, .15) 100%)
}

.stay .stay-copy {
    position: relative;
    max-width: 640px;
    padding: 80px 60px
}

.stay .ey {
    color: var(--yellow)
}

.stay h2 {
    font-family: var(--hf);
    font-size: clamp(32px, 4.6vw, 56px);
    font-weight: 800;
    letter-spacing: -1.6px;
    color: #fff;
    line-height: 1.06;
    margin: 10px 0 22px
}

.stay p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 14px
}

.stay p strong {
    color: #fff;
    font-weight: 700
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 42px
}

.box-item {
    display: flex;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 22px
}

.box-item .bx-n {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--ink);
    font-family: var(--hf);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    font-size: 14px
}

.box-item h4 {
    font-family: var(--hf);
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 4px
}

.box-item h4 .worth {
    color: var(--green);
    font-weight: 700
}

.box-item p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--mid)
}

.faq {
    max-width: 760px;
    margin: 42px auto 0
}

.faq-q {
    border-bottom: 1px solid var(--border);
    padding: 22px 0
}

.faq-q summary {
    font-family: var(--hf);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px
}

.faq-q summary::-webkit-details-marker {
    display: none
}

.faq-q summary:after {
    content: "+";
    color: var(--blue);
    font-size: 22px;
    flex: none
}

.faq-q[open] summary:after {
    content: "–"
}

.faq-q p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--mid);
    margin-top: 14px
}

.sku-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 90;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .06)
}

.sku-strip .ss-name {
    font-family: var(--hf);
    font-weight: 800;
    color: var(--ink);
    font-size: 15px
}

.sku-strip .ss-price {
    color: var(--mid);
    font-size: 14px
}

.sku-strip .ss-btns {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ftop p {
    color: rgb(255, 255, 255);
}


/* ── DUO v2: explore/create split ── */
.ec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 46px
}

.ec-card {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    flex-direction: column
}

.ec-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative
}

.ec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.callout {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: translate(-50%, -50%)
}

.callout-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--ink);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25)
}

.callout-lbl {
    font-family: var(--hf);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    background: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.ec-body {
    padding: 32px 34px
}

.ec-eyebrow {
    font-family: var(--hf);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px
}

.ec-body h3 {
    font-family: var(--hf);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.8px;
    color: var(--ink);
    margin-bottom: 14px
}

.ec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.ec-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    background: var(--base);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 7px 14px
}

.ec-builds {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px
}

.ec-builds li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    color: var(--mid)
}

.ec-builds .eb-ck {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff
}

/* Build & Trace Book — "Included Free" two-up card */
.sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border)
}

.sides-img {
    min-height: 380px;
    position: relative
}

.sides-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.sides-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.sides-body h3 {
    font-family: var(--hf);
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.7px;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.15
}

.sides-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 18px
}



/* learning journey vertical timeline */
.lj {
    max-width: 720px;
    margin: 46px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lj-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: start
}

.lj-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--hf);
    font-weight: 800;
    font-size: 22px;
    color: #fff
}

.lj-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px 28px;
    margin-bottom: 0
}

.lj-card h4 {
    font-family: var(--hf);
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px
}

.lj-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--mid)
}

.lj-arrow {
    grid-column: 1;
    justify-self: center;
    color: var(--border);
    font-size: 26px;
    line-height: 1;
    margin: 8px 0
}

.lj-pair {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px
}

/* personalisation */
.pers {
    position: relative;
    min-height: 530px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.pers img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 36%
}

.pers .pers-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(24, 24, 22, .84) 0%, rgba(24, 24, 22, .5) 50%, rgba(24, 24, 22, .1) 100%)
}

.pers-copy {
    position: relative;
    max-width: 560px;
    padding: 70px 60px
}

.pers-copy .ey {
    color: var(--yellow)
}

.pers-copy h2 {
    font-family: var(--hf);
    font-size: clamp(30px, 4.2vw, 50px);
    font-weight: 800;
    letter-spacing: -1.4px;
    color: #fff;
    line-height: 1.08;
    margin: 10px 0 18px
}

.pers-copy p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 10px
}

.pers-copy .pers-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px
}

.pers-pill {
    font-family: var(--hf);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    padding: 7px 14px
}

/* outcomes icon grid */
.oc-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 44px
}

.dual-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.dual-col .dc-hdr {
    text-align: center;
    max-width: none;
    margin-bottom: 0
}


.oc-pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 12px;
    text-align: center
}

.oc-pill .oi {
    font-size: 26px;
    margin-bottom: 10px
}

.oc-pill div.l {
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25
}

/* trust badges grid */
.tr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px
}

.tr-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 22px;
    font-family: var(--hf);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink)
}

.tr-item .tr-ck {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: none
}

/* included flat grid */
.inc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px
}

.inc {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px
}

.inc .ic-ck {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex: none;
    margin-top: 1px
}

.inc h4 {
    font-family: var(--hf);
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 2px
}

.inc h4 .worth {
    color: var(--green);
    font-weight: 700;
    font-size: 12px
}

.inc p {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--mid)
}



/* ── Early Parent Feedback placeholders ── */
.efb-note {
    max-width: 620px;
    margin: 0 auto 30px;
    text-align: center;
    font-size: 13.5px;
    color: var(--muted);
    background: #fffbe9;
    border: 1px solid #f0e4b8;
    border-radius: 12px;
    padding: 12px 18px
}

.tst.placeholder {
    border: 2px dashed var(--border);
    background: repeating-linear-gradient(45deg, #fafaf7, #fafaf7 10px, #f3f1ea 10px, #f3f1ea 20px);
    box-shadow: none
}

.tst.placeholder .stars {
    opacity: .35
}

.tst.placeholder p {
    color: var(--muted);
    font-style: italic
}

.tst.placeholder .efb-tag {
    display: block;
    font-style: normal;
    font-family: var(--hf);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    margin-top: 10px
}




/* ── GO: portability tiles + two-sides ── */
.use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 44px
}

.use-tile {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border)
}

.use-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.use-ol {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px 14px 12px;
    background: linear-gradient(180deg, rgba(24, 24, 22, 0), rgba(24, 24, 22, .8));
    color: #fff;
    font-family: var(--hf);
    font-weight: 800;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px
}

.sides {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    margin-top: 44px
}

.sides-img {
    min-height: 400px;
    position: relative
}

.sides-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.callout {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: translate(-50%, -50%)
}

.callout-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--ink);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25)
}

.callout-lbl {
    font-family: var(--hf);
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    background: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.sides-ph {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--muted);
    background: repeating-linear-gradient(45deg, var(--sage), var(--sage) 12px, #e7eee8 12px, #e7eee8 24px)
}

.sides-ph .ic {
    font-size: 32px;
    margin-bottom: 10px
}

.sides-ph b {
    font-family: var(--hf);
    color: var(--ink)
}

.sides-body {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.sides-body h3 {
    font-family: var(--hf);
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.7px;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.15
}

.sides-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 13px
}

.oc-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 44px
}

.oc-pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 12px;
    text-align: center
}

.oc-pill .oi {
    font-size: 26px;
    margin-bottom: 10px
}

.oc-pill div.l {
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25
}

.tr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px
}

.tr-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 22px;
    font-family: var(--hf);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink)
}

.tr-item .tr-ck {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: none
}

.dual-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.dual-col .dc-hdr {
    text-align: center;
    max-width: none;
    margin-bottom: 0
}






/* product-max css start  */

.tt-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 42px
}

.tt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden
}

.tt-today {
    padding: 18px 20px;
    font-size: 14px;
    color: var(--muted);
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center
}

.tt-today:before {
    content: "Today: ";
    font-weight: 700;
    color: var(--ink);
    margin-right: 4px
}

.tt-tom {
    padding: 18px 20px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 600;
    background: var(--sage);
    display: flex;
    align-items: center
}

.tt-tom:before {
    content: "Tomorrow: ";
    font-weight: 800;
    color: var(--green);
    margin-right: 4px
}


/* Why Families Choose MAX — pillar cards */
.why-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 46px
}

.pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0 28px 28px;
    overflow: hidden
}

.pill-bar {
    height: 6px;
    margin: 0 -28px 26px;
    border-radius: 0
}

.pill h3 {
    font-family: var(--hf);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.25
}

.pill p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--mid);
    margin-bottom: 18px
}

.pill-feat {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
    padding-top: 16px;
    border-top: 1px solid var(--border)
}

.pf-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex: none;
    margin-top: 5px
}



/* ── SHOP / ALL PRODUCTS ── */
.shop-hero {
    padding: 104px 0 50px;
    background: var(--base);
    text-align: center
}

/* ── WOOCOMMERCE PAGE TITLES ── */
.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header,
.woocommerce-account .entry-header,
.woocommerce-cart .ast-woocommerce-container .page-title,
.woocommerce-checkout .ast-woocommerce-container .page-title,
.woocommerce-account .ast-woocommerce-container .page-title,
.woocommerce-account .entry-title,
.woocommerce-account .page-title {
    display: none
}

.busyb-woo-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 122px 20px 58px;
    text-align: center;
    background: linear-gradient(135deg, var(--sage) 0%, var(--base) 58%, #fff8dd 100%);
    border-bottom: 1px solid var(--border);
    margin-bottom: 60px;
}

.busyb-woo-hero-inner {
    max-width: 900px
}

.busyb-woo-hero .ey {
    margin-bottom: 12px
}

.busyb-woo-hero h1 {
    font-family: var(--hf);
    font-size: clamp(36px, 5.3vw, 68px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -2.5px;
    color: var(--ink);
    margin: 0
}

.busyb-woo-hero .bar {
    margin: 20px auto 16px
}

.busyb-woo-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--muted)
}

.busyb-woo-breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}

.busyb-woo-breadcrumbs a:hover {
    color: var(--ink)
}

.busyb-woo-breadcrumbs .sep {
    color: rgba(61, 59, 56, .45)
}

.shop-hero .ey {
    justify-content: center
}

.shop-hero h1 {
    font-family: var(--hf);
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.04;
    color: var(--ink);
    margin: 6px 0 18px
}

.shop-hero p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--mid);
    max-width: 600px;
    margin: 0 auto
}

/* product range cards */
.range {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 6px
}

.rcard {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .25s, box-shadow .25s
}

.rcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .1)
}

.rcard.feat {
    border-color: var(--ink);
    border-width: 2px
}

.rcard-badge {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--yellow);
    padding: 6px 18px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 2
}

.rcard-img {
    height: 260px;
    overflow: hidden
}

.rcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s
}

.rcard:hover .rcard-img img {
    transform: scale(1.05)
}

.rcard-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.rcard-for {
    font-family: var(--hf);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px
}

.rcard-name {
    font-family: var(--hf);
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px
}

.rcard-sub {
    font-size: 14px;
    line-height: 1.6;
    color: var(--mid);
    margin-bottom: 18px
}

.rcard-feats {
    list-style: none;
    flex: 1;
    margin-bottom: 18px;
    padding: 0;
    margin: 0;
}

.rcard-feats li {
    font-size: 13.5px;
    color: var(--body);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.45
}

.rcard-feats li:last-child {
    border: none
}

.rcard-feats .rf {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
    margin-top: 2px
}

.rcard-price {
    font-family: var(--hf);
    font-size: 30px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 3px
}

.rcard-tax {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 16px
}

.rcard-btns {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.rcard-view {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--ink);
    color: var(--ink);
    background: transparent;
    transition: all .2s
}

.rcard-view:hover {
    background: var(--ink);
    color: #fff
}

.rcard.feat .rcard-view {
    background: var(--ink);
    color: #fff
}

.rcard.feat .rcard-view:hover {
    background: var(--red);
    border-color: var(--red)
}

.rcard-wa {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 50px;
    font-family: var(--hf);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    background: transparent
}

.rcard-wa:hover {
    text-decoration: underline
}

/* comparison table */
.ctab {
    margin-top: 46px;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    background: var(--white);
    overflow-x: auto
}

.ctab table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px
}

.ctab th,
.ctab td {
    padding: 18px 22px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14.5px
}

.ctab thead th {
    background: var(--base);
    font-family: var(--hf);
    font-weight: 800;
    font-size: 15px;
    color: var(--ink);
    letter-spacing: -.3px
}

.ctab thead th.col-feat {
    color: var(--blue);
    position: relative
}

.ctab tbody td:first-child {
    font-weight: 600;
    color: var(--mid);
    font-size: 13.5px
}

.ctab td.col-feat {
    background: #f7faf7
}

.ctab tbody tr:last-child td {
    border-bottom: none
}

.ctab .ct-name {
    font-family: var(--hf);
    font-weight: 800;
    font-size: 18px;
    color: var(--ink)
}

.ctab .ct-price {
    font-family: var(--hf);
    font-weight: 800;
    color: var(--ink)
}

.ctab .yes {
    color: var(--green);
    font-weight: 800
}

.ctab .no {
    color: #c9bfb3
}

.assure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600
}



.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.desktop-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav-burger span {
    width: 25px;
    height: 2px;
    background: #000;
    transition: .3s;
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
    opacity: 0;
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


.ct-btn:hover {
    color: #fff;
}

.woocommerce-order-received .woocommerce-order p {
    padding-left: 15px;
}

.woocommerce {
    padding-top: 0px !important;
}



/* ── WooCommerce Cart & Checkout Button Theme Overrides ── */
.woocommerce .button.alt,
.woocommerce #payment #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce button[name="woocommerce_checkout_place_order"] {
    background: var(--ink) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    font-family: var(--hf) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: -.2px !important;
    transition: background .2s !important
}

.woocommerce .button.alt:hover,
.woocommerce #payment #place_order:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce button[name="woocommerce_checkout_place_order"]:hover {
    background: #333 !important;
    color: #fff !important
}

/* Apply coupon + Update cart */
.woocommerce .cart .button,
.woocommerce table.cart td.actions .button {
    background: var(--ink) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 999px !important;
    font-family: var(--hf) !important;
    font-weight: 700 !important;
    font-size: 14px !important
}

.woocommerce table.cart td.actions input[type="text"] {
    border-radius: 999px !important;
    border: 1px solid var(--border) !important;
    padding: 10px 18px !important;
    font-family: var(--hf) !important;
    font-size: 14px !important
}

/* Update cart (outlined style) */
.woocommerce table.cart td.actions button[name="update_cart"] {
    background: transparent !important;
    color: var(--ink) !important;
    border: 1.5px solid var(--ink) !important
}

.woocommerce table.cart td.actions button[name="update_cart"]:hover {
    background: var(--ink) !important;
    color: #fff !important
}


/* Home Page slider Section Css */


.hero-r-section {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    overflow: hidden;
}

.hero-r-section .hero-float {
    left: 20px;
}

.hero-r-section .hero-pill {
    right: 20px;
}

.hero-r-section .slider {
    position: relative;
    width: 100%;

    overflow: hidden;
}

.hero-r-section .slides {
    display: flex;
    transition: transform .8s ease-in-out;
}

.hero-r-section .slides img {
    width: 100%;
    height: 100vh;
    flex-shrink: 0;
    object-fit: cover;
}

/* Arrows */

.hero-r-section .prev,
.hero-r-section .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
    transition: .3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-r-section .prev:hover,
.hero-r-section .next:hover {
    background: #000;
}

.hero-r-section .prev {
    left: 15px;
}

.hero-r-section .next {
    right: 15px;
}

/* Dots */


.hero-r-section .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition: .3s;
}

.hero-r-section .dot.active {
    width: 28px;
    border-radius: 20px;
    background: #fff;
}

#heroSlider .dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

/* ---------- base ---------- */
.content_section_r-p {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.65;
    margin: 0;
}

.container_r_p {
    max-width: 1260px;
    margin: 0 auto;
    padding: 96px 24px 10px;
}

/* ---------- title / hero ---------- */
.refund_title_section {
    margin-bottom: 40px;
}

/* eyebrow pill above H1 — mirrors the reference badge, optional to use */
.refund_title_section::before {
    content: "POLICY";
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.refund_title_section h1 {
    font-family: var(--hf);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    color: var(--ink);
}

/* four-dot brand mark under the H1 */
.refund_title_section h1::after {
    content: "";
    display: block;
    margin-top: 20px;
    width: 84px;
    height: 12px;
    background-image:
        radial-gradient(circle, var(--red) 5px, transparent 5px),
        radial-gradient(circle, var(--blue) 5px, transparent 5px),
        radial-gradient(circle, var(--yellow) 5px, transparent 5px),
        radial-gradient(circle, var(--green) 5px, transparent 5px);
    background-repeat: no-repeat;
    background-position: 0 50%, 24px 50%, 48px 50%, 72px 50%;
    background-size: 10px 10px;
}

/* ---------- body content ---------- */
.refund_content_section {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 48px 48px 10px 48px;
}

.refund_content_section .wp-block-paragraph {
    font-size: 16px;
    color: #3A3A38;
    margin: 0 0 20px;
}

.refund_content_section .wp-block-paragraph b {
    color: var(--ink);
    font-weight: 700;
}

/* section headings — colored tab on the left instead of generic underline */
.refund_content_section h2.wp-block-heading {
    font-family: var(--hf);
    font-weight: 700;
    font-size: 26px;
    color: var(--ink);
    margin: 44px 0 18px;
    padding-left: 16px;
    border-left: 6px solid var(--yellow);
}

.refund_content_section h3.wp-block-heading {
    font-family: var(--hf);
    font-weight: 700;
    font-size: 19px;
    color: var(--ink);
    margin: 32px 0 12px;
    padding-left: 16px;
    border-left: 6px solid var(--blue);
}

/* alternate the left-tab color for every other h2 for a bit of rhythm */
.refund_content_section h2.wp-block-heading:nth-of-type(2n) {
    border-left-color: var(--red);
}

.refund_content_section h2.wp-block-heading:nth-of-type(3n) {
    border-left-color: var(--green);
}

/* lists — swap bullets for brand-colored dots cycling red/blue/yellow/green */
.refund_content_section ul.wp-block-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.refund_content_section ul.wp-block-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    font-size: 16px;
    color: #3A3A38;
    border-bottom: 1px solid var(--line);
}

.refund_content_section ul.wp-block-list li:last-child {
    border-bottom: none;
}

.refund_content_section ul.wp-block-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
}

.refund_content_section ul.wp-block-list li:nth-child(4n+2)::before {
    background: var(--blue);
}

.refund_content_section ul.wp-block-list li:nth-child(4n+3)::before {
    background: var(--yellow);
}

.refund_content_section ul.wp-block-list li:nth-child(4n+4)::before {
    background: var(--green);
}

/* inline "contact us" style mentions e.g. {email address}, {physical address} */
.refund_content_section .wp-block-paragraph {
    word-break: break-word;
}

/* ---------- links ---------- */
.refund_content_section a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.refund_content_section a:hover {
    color: var(--red);
}

/* ---------- responsive ---------- */


/* ---------- accessibility ---------- */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }
}



.trust-bar {
    background: var(--ink, #1A1A1A);
    overflow: hidden !important;
    white-space: nowrap !important;
    width: 100% !important;
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
}

.tb-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    -webkit-animation: tbMarquee 25s linear infinite !important;
    animation: tbMarquee 25s linear infinite !important;
    align-items: center !important;
    will-change: transform;
}

.trust-bar:hover .tb-track {
    -webkit-animation-play-state: paused !important;
    animation-play-state: paused !important;
}

.tb-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    flex-shrink: 0 !important;
}

.tb-i {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px 35px !important;
    border-right: 1px solid rgba(255, 255, 255, .07) !important;
    border-bottom: none !important;
    transition: background .2s !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    min-width: auto !important;
    width: auto !important;
}

.tb-i:hover {
    background: rgba(255, 255, 255, .04) !important;
}

.tb-icon {
    font-size: 22px !important;
    flex-shrink: 0 !important;
}

.tb-text {
    font-family: var(--hf);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88) !important;
    line-height: 1.3;
    letter-spacing: -.2px;
    white-space: nowrap !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}





@-webkit-keyframes tbMarquee {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes tbMarquee {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 1200px) {
    .testi-prev {
        left: 2px;
    }

    .testi-next {
        right: 2px;
    }

    .stg-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .purpose-grid {
        grid-template-columns: 1fr 1fr
    }

    .act-col:last-child {
        display: none
    }
}

@media(max-width:1024px) {
    nav {
        padding: 0 28px
    }

    nav ul {
        display: none
    }

    .nav-burger {
        display: flex
    }

    .nav-ghost {
        display: none
    }

    .S {
        padding: 50px 28px
    }

    .tomorrow {
        padding: 72px 28px
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-l {
        padding: 96px 28px 48px
    }

    .hero-r {
        height: 440px
    }

    .story-grid,
    .qual-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .prm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 24px;

    }

    .prm-grid::before {
        display: none
    }

    .testi-grid,
    .prod-grid {
        grid-template-columns: 1fr 1fr
    }

    .pfor-grid {
        grid-template-columns: 1fr 1fr
    }

    .trace-grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .tl {
        grid-template-columns: repeat(5, minmax(150px, 1fr));
        overflow-x: auto;
        padding-bottom: 10px
    }

    .stg-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .sig {
        padding: 50px 28px
    }

    .brow {
        grid-template-columns: 1fr 48px 1fr
    }

    .ftop {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    footer {
        padding: 52px 28px 28px
    }

    .tb-inner {
        flex-wrap: nowrap;
    }

    .tb-i {
        min-width: auto;
        border-right: 1px solid rgba(255, 255, 255, .07);
        border-bottom: none;
    }
}

@media (max-width:991px) {

    .desktop-menu {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .dual-col {
        grid-template-columns: 1fr;
        gap: 52px
    }

    .why-pillars {
        grid-template-columns: 1fr
    }

    .dual-col {
        grid-template-columns: 1fr;
        gap: 52px
    }

    .sides {
        grid-template-columns: 1fr
    }

    .sides-img {
        min-height: 280px
    }

    .rstory-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .ct-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 42px auto 0
    }

    .note-copy {
        padding: 0 30px
    }

    .testi-slider .tcard {
        flex: 0 0 calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
    }

    .nav-mobile ul a {
        padding: 9px 4px;
    }
}

@media(max-width:980px) {
    .man-grid {
        grid-template-columns: 1fr
    }

    .diff-grid {
        grid-template-columns: 1fr 1fr
    }

    .moments .m-copy {
        padding: 0 30px
    }

    .ab-hero {
        min-height: 520px
    }

    .pdp-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .gallery {
        position: static
    }

    .out-grid {
        grid-template-columns: 1fr 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .tst-grid {
        grid-template-columns: 1fr
    }

    .scale-grid {
        grid-template-columns: 1fr
    }

    .mj {
        grid-template-columns: 1fr 1fr
    }

    .stay-copy {
        padding: 60px 32px
    }

    .box-grid {
        grid-template-columns: 1fr
    }

    .sku-strip {
        display: flex
    }

    .lifestyle {
        height: 66vh
    }

    .range {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto
    }

    .choose {
        grid-template-columns: 1fr
    }

    .ec {
        grid-template-columns: 1fr
    }

    .oc-icons {
        grid-template-columns: repeat(3, 1fr)
    }

    .tr-grid {
        grid-template-columns: 1fr
    }

    .inc-grid {
        grid-template-columns: 1fr
    }

    .pers-copy {
        padding: 50px 30px
    }

    .use-grid {
        grid-template-columns: 1fr 1fr
    }

    .sides {
        grid-template-columns: 1fr
    }

    .sides-img {
        min-height: 300px
    }

    .oc-icons {
        grid-template-columns: repeat(3, 1fr)
    }

    .tr-grid {
        grid-template-columns: 1fr
    }

    .choose {
        grid-template-columns: 1fr
    }

    .tl-line {
        top: 48px;
        width: 725px;
    }

}

@media (max-width: 768px) {
    .tb-i {
        padding: 14px 20px !important;
        gap: 8px !important;
    }

    .tb-text {
        font-size: 13px !important;
    }

    .tb-icon {
        font-size: 18px !important;
    }

    .hero-h1 {
        font-size: clamp(37px, 5.8vw, 78px);
    }

    .tom-tom-v {
        font-size: 14px;
    }

    .tp5 .tom-tom-v {
        font-size: 16px;
    }

    .testi-hdr {
        margin: 0 auto 20px;
    }

    .testi-next {
        right: -20px;
    }

    .testi-prev {
        left: -20px;
    }

    .tcard {
        padding: 7px 24px;
    }


    .final-h {
        font-size: clamp(38px, 6.5vw, 82px);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 40px 16px 64px;
    }

    .refund_content_section {
        padding: 28px 24px;
        border-radius: var(--radius-md);
    }

    .refund_content_section h2.wp-block-heading {
        font-size: 22px;
    }

    .container_r_p {
        padding: 62px 24px 10px;
    }
}

@media (max-width: 600px) {
    .shop-hdr {
        margin: 0 auto 17px;
    }




    .testi-slider .tcard {
        flex: 0 0 100%;
        min-width: 100%;
    }



    .tl {
        padding-bottom: 0px;
    }

    .btn-p {
        padding: 10px 25px;
    }

    .btn-s {
        padding: 10px 25px;
    }

    .nav-mobile ul {
        padding: 8px 0px 0px;
        margin-left: 0px;
    }

    .pdp {
        padding: 40px 0 50px;
    }


    .final {
        min-height: initial;
    }

    .final-copy {
        margin-bottom: 16px;
    }

    .btn-y {
        padding: 11px 40px;
    }

    .btn-gw {
        padding: 11px 40px;
    }

    .trace-grid {
        gap: 0;
    }

    .purpose-hdr {
        margin: 0 auto 23px;
    }

    .tb-i {
        justify-content: center;
        padding: 6px 28px;
    }

    nav {
        padding: 10px 18px !important;
        height: initial;
    }

    .nav-logo {
        width: 42px;
    }

    .hero-r-section .slides img {
        height: 63vh !important;
    }

    .age-badge {
        width: 100%;
        justify-content: center;
        letter-spacing: initial;
        white-space: nowrap;
    }

    .busyb-woo-hero {
        padding: 102px 18px 42px
    }

    .busyb-woo-hero h1 {
        letter-spacing: -1.4px
    }

    .busyb-woo-breadcrumbs {
        font-size: 12px;
        gap: 6px
    }

    .busyb-woo-notices {
        top: 70px;
        width: calc(100% - 24px)
    }

    .sides-img {
        grid-template-columns: 1fr !important;
    }

    .mj {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .brow {
        grid-template-columns: 1fr !important;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 0 18px
    }

    .S {
        padding: 30px 18px
    }

    .tomorrow {
        padding: 20px 18px
    }

    .hero-l {
        padding: 88px 18px 40px
    }

    .testi-grid,
    .prod-grid,
    .qual-badges {
        grid-template-columns: 1fr
    }

    .pfor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .breather {
        height: 260px
    }

    .ps-img {
        width: 100%;
        max-width: 240px;
        margin: 0 auto
    }

    .pfor-strip {
        flex-direction: column;
        text-align: center;
        gap: 8px
    }

    .sig {
        padding: 50px 15px 0px 15px;
    }

    .trace-imgs img:last-child {
        margin-top: 0
    }

    .brow {
        grid-template-columns: 1fr
    }

    .brow-mid {
        flex-direction: row;
        padding: 12px;
        border: none;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        writing-mode: initial
    }

    .brow-mid-lbl {
        writing-mode: initial;
        transform: none;
        font-size: 10px;
        letter-spacing: 2px
    }

    .brow-mid-arr {
        font-size: 18px
    }

    .tom-row {
        grid-template-columns: 1fr
    }

    .tom-arr-col {
        flex-direction: row;
        padding: 10px 20px;
        border-radius: 0;
        writing-mode: initial
    }

    .tom-arr-word {
        writing-mode: initial;
        transform: none
    }

    .tom-today {


        padding: 13px 17px;
        border-radius: 18px 18px 0 0
    }

    .ch-card {
        padding: 16px 28px;
    }

    .tom-tomorrow {
        border-radius: 0 0 18px 18px;
        padding: 13px 17px;
    }

    .final-inner {
        padding: 33px 18px;
    }

    footer {
        padding: 18px 18px 24px;
    }

    .ftop {
        grid-template-columns: 1fr;
        margin-bottom: 13px;
    }

    .fbot {
        flex-direction: column;
        text-align: center
    }

    .tb-i {
        min-width: auto;
    }

    .buy-row {
        flex-direction: column
    }

    .buy-row-primary .busyb-qty {
        width: 100%;
        min-width: 0
    }

    .buy-row-secondary .btn-buynow,
    .buy-row-secondary .btn-wa,
    .btn-cart {
        width: 100%;
        min-height: 52px;
    }

    .busyb-purchase-form-closer {
        width: 100%
    }



    .out-grid {
        grid-template-columns: 1fr
    }

    .mj {
        grid-template-columns: 1fr
    }

    .trust-badges {
        grid-template-columns: 1fr
    }

    .sku-strip .ss-price {
        display: none
    }

    .cmp-row>div {
        padding: 14px 16px;
        font-size: 13.5px
    }

    .stay-copy {
        padding: 48px 22px
    }

    .oc-icons {
        grid-template-columns: repeat(2, 1fr)
    }

    .tt-row {
        grid-template-columns: 1fr !important;
    }

    .diff {
        padding: 20px 13px !important;
    }

    .oc-icons {
        grid-template-columns: repeat(2, 1fr)
    }

    .prom {
        width: 100%;
        padding: 6px 24px;
    }

    .prom-grid {
        gap: 7px;
    }

    .lj-step,
    .lj-pair {
        grid-template-columns: 48px 1fr;
        gap: 14px
    }


    .lj-num {
        width: 48px;
        height: 48px;
        font-size: 18px
    }

    .nav-logo {
        flex-direction: column-reverse;
        align-items: start;
        gap: 0px;
    }

    .nav-name {
        margin-bottom: 2px;
        display: block;
    }



    .phil .caps {
        grid-template-columns: repeat(2, 1fr);
    }

    .man {
        padding: 12px 28px;
    }
}

/* ══════════════════════════════════════════════
   MY ACCOUNT PAGE
   ══════════════════════════════════════════════ */

body.woocommerce-account .woocommerce {
    padding-bottom: 100px;
}

.busyb-account-layout {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 32px;
    align-items: start;
}

/* -- sidebar navigation --
   NOTE: two other rulesets already target this element and must be
   outranked with matching specificity:
   1) the sitewide `nav{}` rule (site header bar) is an unscoped tag
      selector, so it also matches this <nav class="woocommerce-MyAccount-navigation">.
      (display, height, align-items, justify-content, backdrop-filter,
      z-index, left/right are reset below to stop that leak.)
   2) Astra's own WooCommerce CSS ships
      `.woocommerce-account .woocommerce-MyAccount-navigation{float:left;width:30%}`
      at the same specificity as a bare `.woocommerce-MyAccount-navigation`
      rule would have, and that shrinks the sidebar to 30% of its grid
      column. Matching that selector's specificity here (and loading after
      it) is what lets our width/float win. */
.woocommerce-account .woocommerce-MyAccount-navigation {
    display: block;
    float: none;
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px;
    height: auto;
    align-items: unset;
    justify-content: unset;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1;
    position: sticky;
    top: 120px;
    left: auto;
    right: auto;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.woocommerce-MyAccount-navigation-link a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    font-family: var(--hf);
    font-size: 14px;
    font-weight: 600;
    color: var(--mid);
    text-decoration: none;
    transition: background .2s, color .2s;
}

.woocommerce-MyAccount-navigation-link a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    flex: none;
    transition: background .2s;
}

.woocommerce-MyAccount-navigation-link a:hover {
    background: var(--sage);
    color: var(--ink);
}

.woocommerce-MyAccount-navigation-link:nth-child(4n+1) a::before {
    background: var(--red);
}

.woocommerce-MyAccount-navigation-link:nth-child(4n+2) a::before {
    background: var(--blue);
}

.woocommerce-MyAccount-navigation-link:nth-child(4n+3) a::before {
    background: var(--yellow);
}

.woocommerce-MyAccount-navigation-link:nth-child(4n+4) a::before {
    background: var(--green);
}

/* `body` prefix matches the specificity of Astra's dynamically-injected
   `body .woocommerce-MyAccount-navigation-link.is-active a{background-color:...}`
   rule so ours (loaded later) actually wins instead of leaving white text
   on Astra's near-white active-state background. */
body .woocommerce-MyAccount-navigation-link.is-active a {
    background: var(--ink);
    color: #fff;
}

.woocommerce-MyAccount-navigation-link.is-active a::before {
    background: var(--yellow) !important;
}

.woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: var(--red);
}

.woocommerce-MyAccount-navigation-link--customer-logout a::before {
    background: var(--red) !important;
}

/* -- content card --
   NOTE: Astra ships `.woocommerce-account .woocommerce-MyAccount-content{float:right;width:68%}`
   at higher specificity than a bare `.woocommerce-MyAccount-content` rule —
   matching that selector here is what lets width/float win. */
.woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-width: 0;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-family: var(--hf);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.woocommerce-MyAccount-content>p {
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 14px;
}

.woocommerce-MyAccount-content a {
    color: var(--blue);
    font-weight: 600;
}

.woocommerce-MyAccount-content>p a {
    text-decoration: none;
}

.woocommerce-MyAccount-content>p a:hover {
    text-decoration: underline;
}

/* -- dashboard welcome card -- */
.busyb-account-welcome {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 26px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--border);
}

.busyb-account-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: block;
}

.busyb-account-hello {
    font-family: var(--hf);
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.5px;
    margin-bottom: 6px !important;
}

.busyb-account-hello strong {
    color: var(--red);
}

.busyb-account-sub {
    font-size: 14.5px;
}

.busyb-account-logout {
    font-size: 13px;
    color: var(--muted) !important;
    margin-bottom: 0 !important;
}

.busyb-account-logout a {
    color: var(--muted) !important;
    text-decoration: underline;
    font-weight: 600 !important;
}

/* -- dashboard quick links -- */
.busyb-account-quicklinks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.busyb-ql-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none !important;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.busyb-ql-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
    border-color: var(--ink);
}

.busyb-ql-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 4px;
}

.busyb-ql-card:nth-child(5n+1) .busyb-ql-dot {
    background: var(--red);
}

.busyb-ql-card:nth-child(5n+2) .busyb-ql-dot {
    background: var(--blue);
}

.busyb-ql-card:nth-child(5n+3) .busyb-ql-dot {
    background: var(--yellow);
}

.busyb-ql-card:nth-child(5n+4) .busyb-ql-dot {
    background: var(--green);
}

.busyb-ql-card:nth-child(5n+5) .busyb-ql-dot {
    background: #8B5CF6;
}

.busyb-ql-label {
    font-family: var(--hf);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink) !important;
}

.busyb-ql-desc {
    font-size: 12.5px;
    color: var(--muted);
}

/* -- tables: orders / payment methods -- */
.woocommerce-orders-table,
.woocommerce-MyAccount-paymentMethods {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 14px;
}

.woocommerce-orders-table thead th,
.woocommerce-MyAccount-paymentMethods thead th {
    background: var(--sage);
    font-family: var(--hf);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.woocommerce-orders-table td,
.woocommerce-MyAccount-paymentMethods td,
.woocommerce-orders-table th.woocommerce-orders-table__cell-order-number {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--body);
    vertical-align: middle;
}

.woocommerce-orders-table tr:last-child td,
.woocommerce-MyAccount-paymentMethods tr:last-child td {
    border-bottom: none;
}

.woocommerce-orders-table tbody tr:hover {
    background: var(--cream-soft);
}

.woocommerce-orders-table__cell-order-number a {
    font-family: var(--hf);
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
}

.woocommerce-orders-table__cell-order-number a:hover {
    text-decoration: underline;
}

.woocommerce-orders-table__cell-order-status {
    font-family: var(--hf);
    font-weight: 700;
    font-size: 12px;
}

.woocommerce-orders-table__cell-order-status::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    margin-right: 6px;
    vertical-align: middle;
}

.woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status {
    color: var(--green);
}

.woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status {
    color: var(--blue);
}

.woocommerce-orders-table__row--status-on-hold .woocommerce-orders-table__cell-order-status {
    color: #6a42b8;
}

.woocommerce-orders-table__row--status-pending .woocommerce-orders-table__cell-order-status {
    color: #9a7200;
}

.woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status,
.woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status {
    color: var(--red);
}

.woocommerce-orders-table__cell-order-actions .button,
.woocommerce-MyAccount-paymentMethods .button {
    display: inline-block;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    font-family: var(--hf) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border: 1.5px solid var(--ink) !important;
    color: var(--ink) !important;
    background: transparent !important;
    transition: all .2s;
    margin: 2px 4px 2px 0;
}

.woocommerce-orders-table__cell-order-actions .button:hover,
.woocommerce-MyAccount-paymentMethods .button:hover {
    background: var(--ink) !important;
    color: #fff !important;
}

.woocommerce-orders-table__cell-order-actions .button.view,
.woocommerce-orders-table__cell-order-actions .button.pay {
    background: var(--ink) !important;
    color: #fff !important;
}

.woocommerce-orders-table__cell-order-actions .button.view:hover,
.woocommerce-orders-table__cell-order-actions .button.pay:hover {
    background: var(--red) !important;
    border-color: var(--red) !important;
}

.woocommerce-orders-table__cell-order-actions .button.cancel {
    border-color: var(--red) !important;
    color: var(--red) !important;
}

.woocommerce-orders-table__cell-order-actions .button.cancel:hover {
    background: var(--red) !important;
    color: #fff !important;
}

/* -- pagination -- */
.woocommerce-pagination {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.woocommerce-pagination a {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    font-family: var(--hf);
    font-weight: 700;
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    transition: all .2s;
}

.woocommerce-pagination a:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #fff;
}

/* -- responsive tables -- */
@media (max-width: 700px) {

    .shop_table_responsive thead {
        display: none;
    }

    .shop_table_responsive tr {
        display: block;
        margin-bottom: 14px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .shop_table_responsive tr:last-child {
        margin-bottom: 0;
    }

    .shop_table_responsive td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        gap: 14px;
    }

    .shop_table_responsive td:last-child {
        border-bottom: none;
    }

    .shop_table_responsive td::before {
        content: attr(data-title) ": ";
        font-family: var(--hf);
        font-weight: 700;
        color: var(--ink);
        text-align: left;
    }
}

/* -- addresses --
   NOTE: Astra ships `.woocommerce .col2-set .col-1{float:left;width:48%}`
   / `.col-2{float:right;width:48%}` (3-class specificity) — the billing
   and shipping cards carry those `.col-1`/`.col-2` classes, so a plain
   `.woocommerce-Address` rule loses the width fight and the cards render
   at ~48% of their grid cell. Matching the ancestor chain here wins it back. */
.woocommerce-Addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Astra's `.woocommerce .col2-set::before/::after{content:" ";display:table}`
   clearfix (2-class specificity) generates real boxes that, once this
   element becomes a grid container, get placed as actual grid items —
   consuming the first/last cells and pushing the two address cards into a
   diagonal layout. Matching that specificity here is what lets us drop them. */
.woocommerce .woocommerce-Addresses::before,
.woocommerce .woocommerce-Addresses::after,
.woocommerce-page .woocommerce-Addresses::before,
.woocommerce-page .woocommerce-Addresses::after {
    content: none;
    display: none;
}

.woocommerce-Address,
.woocommerce .col2-set .woocommerce-Address {
    float: none;
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    background: var(--cream-soft);
}

.woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.woocommerce-Address-title h2,
.woocommerce-Address-title h3 {
    font-family: var(--hf);
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

.woocommerce-Address-title .edit {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
    white-space: nowrap;
}

.woocommerce-Address-title .edit:hover {
    text-decoration: underline;
}

.woocommerce-Address address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.8;
    color: var(--mid);
}

/* -- forms: edit account / edit address / add payment method / login / register -- */
.woocommerce-form-row,
.form-row {
    margin-bottom: 18px;
}

.woocommerce-form-row label {
    display: block;
    font-family: var(--hf);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 7px;
}

.woocommerce-form-row .required {
    color: var(--red);
    text-decoration: none;
}

.woocommerce-MyAccount-content .woocommerce-Input,
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea,
.busyb-login-shell .woocommerce-Input,
.busyb-login-shell input[type="text"],
.busyb-login-shell input[type="email"],
.busyb-login-shell input[type="password"],
.busyb-login-shell input[type="tel"],
.busyb-login-shell select,
.busyb-login-shell textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--bf);
    font-size: 14px;
    color: var(--body);
    background: var(--cream-soft);
    transition: border-color .2s, background .2s;
}

.woocommerce-MyAccount-content .woocommerce-Input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus,
.busyb-login-shell .woocommerce-Input:focus,
.busyb-login-shell select:focus,
.busyb-login-shell textarea:focus {
    outline: none;
    border-color: var(--ink);
    background: #fff;
}

.woocommerce-form-row-first,
.woocommerce-form-row--first {
    width: 48%;
    float: left;
    clear: both;
}

.woocommerce-form-row-last,
.woocommerce-form-row--last {
    width: 48%;
    float: right;
}

.woocommerce-MyAccount-content fieldset {
    border: none;
    padding: 20px 0 0;
    margin-top: 10px;
    border-top: 1px solid var(--border);
}

.woocommerce-MyAccount-content fieldset legend {
    font-family: var(--hf);
    font-weight: 800;
    font-size: 15px;
    color: var(--ink);
    padding: 0 0 14px;
}

.woocommerce-Button,
.woocommerce-button,
.woocommerce-MyAccount-content button[type="submit"] {
    background: var(--ink) !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 34px !important;
    border-radius: 999px !important;
    font-family: var(--hf) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.woocommerce-Button:hover,
.woocommerce-button:hover {
    background: var(--red) !important;
    transform: translateY(-2px);
}

/* select2 (country / state dropdowns) */
.select2-container--default .select2-selection--single {
    height: auto !important;
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    padding: 13px 18px !important;
    background: var(--cream-soft) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    line-height: 1.4 !important;
    color: var(--body) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 14px !important;
}

.select2-dropdown {
    border-color: var(--border) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    font-family: var(--bf);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: var(--ink) !important;
}

/* -- login / register --
   `#customer_login` carries the same `.col2-set`/`.col-1`/`.col-2` classes
   Astra targets for the Addresses columns, including the `::before`/
   `::after{content:" ";display:table}` clearfix that gets placed as a real
   grid item once this element becomes a grid container. The ID selector
   here outranks Astra's class-based rules unconditionally, so it's enough
   to just override width/float and drop the pseudo-elements. */
#customer_login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
}

#customer_login::before,
#customer_login::after {
    content: none;
    display: none;
}

#customer_login .u-column1,
#customer_login .u-column2 {
    width: 100%;
    float: none;
}

.busyb-login-shell {
    max-width: 1160px;
    margin: 0 auto;
    padding: 60px 15px 100px;
}

.busyb-login-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

/* when registration is disabled there's no #customer_login grid — this is
   a lone card directly in the shell, so keep it centered and narrow rather
   than stretching a 2-field form across the full content width */
.busyb-login-shell > .busyb-login-card {
    max-width: 460px;
    margin: 0 auto;
}

.busyb-login-card h2 {
    font-family: var(--hf);
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.5px;
    margin-bottom: 24px;
}

.woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--mid);
    font-weight: 500 !important;
    margin-bottom: 16px;
}

.woocommerce-LostPassword {
    margin-top: 14px;
    font-size: 13px;
}

.woocommerce-LostPassword a {
    color: var(--blue);
    text-decoration: none;
}

.woocommerce-LostPassword a:hover {
    text-decoration: underline;
}

/* -- notices -- */
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-error,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-notice {
    background: var(--cream-soft);
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--blue);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
    list-style: none;
}

body.woocommerce-account .woocommerce-message {
    border-left-color: var(--green);
}

/* the icon font WooCommerce positions here doesn't render reliably on this
   site, and the colored left border already signals notice type */
body.woocommerce-account .woocommerce-message::before,
body.woocommerce-account .woocommerce-info::before,
body.woocommerce-account .woocommerce-error::before {
    display: none;
}

body.woocommerce-account .woocommerce-error {
    border-left-color: var(--red);
}

body.woocommerce-account .woocommerce-message .button,
body.woocommerce-account .woocommerce-error .button,
body.woocommerce-account .woocommerce-info .button {
    margin-left: 10px;
    padding: 6px 16px !important;
    border-radius: 999px !important;
    background: var(--ink) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

/* -- responsive layout -- */
@media (max-width: 900px) {
    .busyb-account-layout {
        grid-template-columns: 1fr;
    }

    .woocommerce-MyAccount-navigation {
        position: static;
        padding: 10px;
    }

    .woocommerce-MyAccount-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .woocommerce-MyAccount-navigation-link {
        flex: 1 1 auto;
    }

    .woocommerce-MyAccount-navigation-link a {
        padding: 10px 14px;
        font-size: 13px;
    }

    .woocommerce-MyAccount-navigation-link--customer-logout {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    .woocommerce-MyAccount-content {
        padding: 26px 20px;
    }

    #customer_login.col2-set {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .busyb-account-welcome {
        flex-direction: column;
        align-items: flex-start;
    }

    .woocommerce-form-row-first,
    .woocommerce-form-row--first,
    .woocommerce-form-row-last,
    .woocommerce-form-row--last {
        width: 100%;
        float: none;
    }
}

/* ══════════════════════════════════════════════
   DUO BOOK PREVIEW — CLICK TO ZOOM
   ══════════════════════════════════════════════ */
.duo-book-zoom {
    display: block;
    position: relative;
    height: 100%;
    cursor: zoom-in;
}

.duo-book-zoom::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 24, 22, 0);
    transition: background .2s;
}

.duo-book-zoom:hover::after {
    background: rgba(24, 24, 22, .25);
}

.duo-book-zoom .zoom-hint {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.85);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: opacity .2s, transform .2s;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.duo-book-zoom:hover .zoom-hint {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.duo-book-zoom:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: -3px;
}

/* -- lightbox overlay --
   Namespaced `busyb-duo-*` (rather than reusing the sitewide
   `.busyb-lightbox` product-gallery viewer in footer.php, which is tightly
   coupled to `.gallery`/`.g-thumb` markup) so the two class systems don't
   collide — a same-name collision here previously left this overlay stuck
   at opacity:0 because the other `.busyb-lightbox{opacity:0}` base rule
   still applied and nothing in this block overrode it. */
.busyb-duo-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(24, 24, 22, .92);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.busyb-duo-lightbox.is-open {
    display: flex;
}

body.busyb-duo-lightbox-open {
    overflow: hidden;
}

.busyb-duo-lightbox-img {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
    background: var(--white);
}

.busyb-duo-lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.busyb-duo-lightbox-close:hover {
    background: rgba(255, 255, 255, .25);
}

@media (max-width: 600px) {
    .busyb-duo-lightbox {
        padding: 20px;
    }

    .busyb-duo-lightbox-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .duo-book-zoom .zoom-hint {
        opacity: 1;
        transform: translate(-50%, -50%) scale(.85);
    }
}