/* ==========================================================
   CRAFT BOXES UK
   MASTER PRODUCT PAGE TEMPLATE
=========================================================== */


/* ==========================================================
   0 — TOKENS / RESET
=========================================================== */

.cbp-product-page {

    --cbp-ink: #2d1d16;
    --cbp-ink-soft: #4b382e;

    --cbp-orange: #c94e08;
    --cbp-orange-dark: #a83d00;
    --cbp-orange-soft: #fff0e7;

    --cbp-kraft: #c9894e;
    --cbp-kraft-dark: #87501f;

    --cbp-olive: #5e603a;

    --cbp-white: #ffffff;

    --cbp-cream: #f7f0e9;
    --cbp-cream-light: #fcf9f6;
    --cbp-cream-deep: #eee0d3;

    --cbp-muted: #715f55;

    --cbp-border: #e5d5c8;
    --cbp-border-dark: #d6bfaf;

    --cbp-shadow:
        0 20px 55px rgba(55, 31, 18, .08);

    color: var(--cbp-ink);

    background: var(--cbp-white);

    font-family:
        inherit;

    font-size: 16px;

    line-height: 1.6;

    overflow: hidden;
}


.cbp-product-page *,
.cbp-product-page *::before,
.cbp-product-page *::after {
    box-sizing: border-box;
}


.cbp-product-page img {
    max-width: 100%;
}


.cbp-product-page a {
    color: inherit;
    text-decoration: none;
}


.cbp-product-page button,
.cbp-product-page input,
.cbp-product-page textarea,
.cbp-product-page select {
    font: inherit;
}


.cbp-product-page h1,
.cbp-product-page h2,
.cbp-product-page h3,
.cbp-product-page p {
    margin-top: 0;
}


.cbp-shell {

    width:
        min(
            calc(100% - 48px),
            1320px
        );

    margin-inline: auto;
}


.cbp-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    color: var(--cbp-orange-dark);

    font-size: 12px;

    font-weight: 850;

    line-height: 1.3;

    letter-spacing: .11em;

    text-transform: uppercase;
}


.cbp-eyebrow::before {

    content: "";

    width: 25px;
    height: 2px;

    flex: 0 0 auto;

    background: var(--cbp-orange);
}


.cbp-lead {

    color: var(--cbp-muted);

    font-size: 16px;

    line-height: 1.75;
}


.cbp-mini-title {

    display: block;

    margin-bottom: 12px;

    color: var(--cbp-orange-dark);

    font-size: 12px;

    font-weight: 850;

    letter-spacing: .09em;

    line-height: 1.4;
}


.cbp-text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--cbp-orange-dark);

    font-size: 14px;

    font-weight: 850;
}


.cbp-text-link span {
    font-size: 18px;
}


.cbp-section-head {

    margin-bottom: 30px;
}


.cbp-section-head--split {

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .65fr);

    gap: clamp(40px, 7vw, 100px);

    align-items: end;
}


.cbp-section-head h2 {

    max-width: 760px;

    margin: 0;

    font-size:
        clamp(32px, 3.6vw, 52px);

    font-weight: 830;

    line-height: 1.04;

    letter-spacing: -.045em;
}


.cbp-section-head > p {

    margin: 0;

    color: var(--cbp-muted);

    font-size: 15px;

    line-height: 1.72;
}


/* ==========================================================
   01 — BREADCRUMB
=========================================================== */

.cbp-breadcrumb {

    padding:
        15px
        0;

    background:
        #fbf6f1;
}


.cbp-breadcrumb ol {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.cbp-breadcrumb li {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--cbp-muted);

    font-size: 13px;

    font-weight: 650;
}


.cbp-breadcrumb li:not(:last-child)::after {

    content: "›";

    color: #a38c7d;

    font-size: 17px;
}


.cbp-breadcrumb li:last-child {

    color: var(--cbp-ink);

    font-weight: 800;
}


/* ==========================================================
   CRAFT BOXES UK
   MASTER PRODUCT HERO — PACKAGING SPECIFICATION STUDIO
=========================================================== */


/* ==========================================================
   HERO ROOT
=========================================================== */

.cbp-hero {

    position: relative;

    width: 100%;
    min-width: 0;

    padding:
        34px
        0
        58px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 10%,
            rgba(201, 78, 8, .07),
            transparent 24%
        ),
        linear-gradient(
            180deg,
            #fbf6f1 0%,
            #f5ebe2 100%
        );
}


/* subtle large technical decoration */

.cbp-hero::before {

    content: "";

    position: absolute;

    width: 680px;
    height: 680px;

    right: -350px;
    top: -410px;

    border:
        1px solid
        rgba(135, 80, 31, .08);

    border-radius: 50%;

    pointer-events: none;
}


.cbp-hero::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -210px;
    top: -280px;

    border:
        1px solid
        rgba(135, 80, 31, .07);

    border-radius: 50%;

    pointer-events: none;
}


/* ==========================================================
   MAIN PRODUCT STUDIO
=========================================================== */

.cbp-hero__studio {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(390px, .72fr);

    gap:
        clamp(26px, 3.8vw, 56px);

    /* FIX — do not stretch gallery to dossier height */
    align-items: start;
}


/* ==========================================================
   PRODUCT GALLERY SYSTEM
=========================================================== */

.cbp-gallery {

    display: grid;

    grid-template-columns:
        88px
        minmax(0, 1fr);

    gap: 12px;

    min-width: 0;

    /* FIX — gallery ends at its real content height */
    align-self: start;
}


/* ==========================================================
   VERTICAL VIEW RAIL
=========================================================== */

.cbp-gallery__rail {

    display: flex;

    flex-direction: column;

    gap: 8px;

    min-width: 0;

    align-self: start;
}


.cbp-gallery__rail-title {

    display: flex;

    align-items: center;

    min-height: 33px;

    color:
        var(--cbp-orange-dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .13em;
}


/* Thumbnail */

.cbp-gallery__thumb {

    position: relative;

    width: 100%;
    height: 88px;

    padding: 4px;

    overflow: hidden;

    cursor: pointer;

    border:
        1px solid
        var(--cbp-border);

    border-radius: 11px;

    background:
        rgba(255,255,255,.58);

    opacity: .63;

    transition:
        opacity 160ms ease,
        border-color 160ms ease,
        transform 160ms ease,
        background-color 160ms ease;
}


.cbp-gallery__thumb:hover {

    opacity: 1;

    transform:
        translateX(2px);
}


.cbp-gallery__thumb.is-active {

    opacity: 1;

    border-color:
        var(--cbp-orange);

    background:
        var(--cbp-white);
}


.cbp-gallery__thumb > span {

    position: absolute;

    z-index: 2;

    left: 7px;
    top: 7px;

    display: grid;

    place-items: center;

    width: 22px;
    height: 22px;

    color:
        var(--cbp-ink);

    border-radius: 6px;

    background:
        rgba(255,255,255,.88);

    font-size: 9px;

    font-weight: 900;
}


.cbp-gallery__thumb img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 7px;
}


/* ==========================================================
   PRODUCT CANVAS
=========================================================== */

.cbp-gallery__canvas {

    position: relative;

    min-width: 0;

    /* FIX — prevents blank stretched canvas */
    height: fit-content;
    align-self: start;

    overflow: hidden;

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius: 23px;

    background:
        rgba(255,255,255,.52);

    box-shadow:
        0 22px 55px
        rgba(67,40,20,.07);
}


/* top status */

.cbp-gallery__canvas-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    min-height: 55px;

    padding:
        0
        18px;

    border-bottom:
        1px solid
        var(--cbp-border);

    background:
        rgba(255,255,255,.62);
}


.cbp-gallery__product-type {

    color:
        var(--cbp-orange-dark);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .12em;
}


.cbp-gallery__view-counter {

    display: flex;

    align-items: baseline;

    gap: 3px;
}


.cbp-gallery__view-counter strong {

    color:
        var(--cbp-ink);

    font-size: 18px;

    font-weight: 850;
}


.cbp-gallery__view-counter i {

    color:
        var(--cbp-muted);

    font-size: 10px;

    font-style: normal;

    font-weight: 750;
}


/* ==========================================================
   IMAGE STAGE
=========================================================== */

.cbp-gallery__stage {

    position: relative;

    height:
        clamp(435px, 36vw, 545px);

    overflow: hidden;

    background:
        #efe5dc;
}


.cbp-gallery__stage img {

    position: relative;

    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity 150ms ease,
        transform 350ms ease;
}


.cbp-gallery__canvas:hover
.cbp-gallery__stage img {

    transform:
        scale(1.012);
}


/* technical grid overlay */

.cbp-gallery__grid-lines {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            rgba(135,80,31,.055) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(135,80,31,.055) 1px,
            transparent 1px
        );

    background-size:
        46px
        46px;

    pointer-events: none;
}


/* ==========================================================
   IMAGE ANNOTATIONS
=========================================================== */

.cbp-gallery__annotation {

    position: absolute;

    z-index: 4;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        7px
        9px;

    color:
        var(--cbp-ink-soft);

    border:
        1px solid
        rgba(255,255,255,.8);

    border-radius: 8px;

    background:
        rgba(255,255,255,.88);

    backdrop-filter:
        blur(8px);

    font-size: 10px;

    font-weight: 750;

    line-height: 1.3;

    box-shadow:
        0 7px 18px
        rgba(67,40,20,.08);
}


.cbp-gallery__annotation i {

    display: block;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        var(--cbp-orange);
}


.cbp-gallery__annotation--structure {

    left: 18px;
    top: 25px;
}


.cbp-gallery__annotation--board {

    right: 19px;
    top: 45%;
}


.cbp-gallery__annotation--print {

    left: 20%;
    bottom: 24px;
}


/* ==========================================================
   CANVAS FOOT
=========================================================== */

.cbp-gallery__canvas-foot {

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr);

    gap: 35px;

    align-items: center;

    padding:
        15px
        18px;

    border-top:
        1px solid
        var(--cbp-border);

    background:
        var(--cbp-white);
}


.cbp-gallery__canvas-foot small,
.cbp-gallery__canvas-foot strong {

    display: block;
}


.cbp-gallery__canvas-foot small {

    margin-bottom: 2px;

    color:
        var(--cbp-orange-dark);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .09em;
}


.cbp-gallery__canvas-foot strong {

    font-size: 12px;

    font-weight: 820;
}


.cbp-gallery__canvas-foot p {

    max-width: 390px;

    margin: 0 0 0 auto;

    color:
        var(--cbp-muted);

    font-size: 11px;

    line-height: 1.55;

    text-align: right;
}


/* ==========================================================
   PRODUCT DOSSIER
=========================================================== */

.cbp-product-dossier {

    position: relative;

    min-width: 0;

    align-self: start;

    padding:
        clamp(25px, 3vw, 40px);

    overflow: hidden;

    border-top:
        4px solid
        var(--cbp-orange);

    background:
        rgba(255,255,255,.38);
}


/* technical side line */

.cbp-product-dossier::after {

    content: "";

    position: absolute;

    right: 0;
    top: 94px;
    bottom: 35px;

    width: 1px;

    background:
        var(--cbp-border);
}


/* ==========================================================
   DOSSIER HEADER
=========================================================== */

.cbp-product-dossier__top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;
}


.cbp-product-dossier__index {

    display: flex;

    align-items: baseline;

    gap: 7px;
}


.cbp-product-dossier__index span {

    color:
        var(--cbp-muted);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .12em;
}


.cbp-product-dossier__index strong {

    color:
        var(--cbp-orange-dark);

    font-size: 16px;

    font-weight: 900;
}


.cbp-product-dossier__status {

    padding:
        7px
        9px;

    color:
        var(--cbp-orange-dark);

    border:
        1px solid
        rgba(201,78,8,.18);

    border-radius: 999px;

    background:
        rgba(201,78,8,.055);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .08em;
}


/* ==========================================================
   DOSSIER H1
=========================================================== */

.cbp-product-dossier h1 {

    max-width: 580px;

    margin:
        0
        0
        20px;

    color:
        var(--cbp-ink);

    font-size:
        clamp(45px, 4.8vw, 70px);

    font-weight: 840;

    line-height: .96;

    letter-spacing: -.056em;
}


.cbp-hero__intro {

    max-width: 650px;

    margin:
        0
        0
        27px;

    color:
        var(--cbp-muted);

    font-size: 15px;

    line-height: 1.75;
}


/* ==========================================================
   PRODUCT PRINCIPLES
=========================================================== */

.cbp-product-dossier__principles {

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    border-top:
        1px solid
        var(--cbp-border);

    border-left:
        1px solid
        var(--cbp-border);
}


.cbp-product-dossier__principles > div {

    display: grid;

    grid-template-columns:
        27px
        minmax(0,1fr);

    gap: 10px;

    min-width: 0;

    padding:
        14px;

    border-right:
        1px solid
        var(--cbp-border);

    border-bottom:
        1px solid
        var(--cbp-border);
}


.cbp-product-dossier__principles > div > span {

    display: grid;

    place-items: center;

    width: 26px;
    height: 26px;

    color:
        var(--cbp-orange-dark);

    border-radius: 7px;

    background:
        var(--cbp-orange-soft);

    font-size: 9px;

    font-weight: 900;
}


.cbp-product-dossier__principles p {

    margin: 0;

    color:
        var(--cbp-muted);

    font-size: 11px;

    line-height: 1.5;
}


.cbp-product-dossier__principles strong {

    display: block;

    margin-bottom: 2px;

    color:
        var(--cbp-ink);

    font-size: 13px;

    font-weight: 820;
}


/* ==========================================================
   SPECIFICATION ROUTE
=========================================================== */

.cbp-product-dossier__route {

    margin-top: 24px;

    padding:
        15px
        17px;

    color:
        var(--cbp-white);

    border-radius: 12px;

    background:
        var(--cbp-ink);
}


.cbp-product-dossier__route > span {

    display: block;

    margin-bottom: 12px;

    color:
        #efb27f;

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .1em;
}


.cbp-product-dossier__route > div {

    display: grid;

    grid-template-columns:
        auto
        1fr
        auto
        1fr
        auto
        1fr
        auto;

    gap: 7px;

    align-items: center;
}


.cbp-product-dossier__route strong {

    color:
        var(--cbp-white);

    font-size: 10px;

    font-weight: 760;
}


.cbp-product-dossier__route i {

    display: block;

    height: 1px;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,.28) 0 4px,
            transparent 4px 8px
        );
}


/* ==========================================================
   PRODUCT LINKS
=========================================================== */

.cbp-product-dossier__links {

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 8px;

    margin-top: 16px;
}


.cbp-product-dossier__links a {

    display: grid;

    grid-template-columns:
        26px
        minmax(0,1fr)
        auto;

    gap: 9px;

    align-items: center;

    padding:
        11px;

    border:
        1px solid
        var(--cbp-border);

    border-radius: 9px;

    background:
        rgba(255,255,255,.5);

    color:
        var(--cbp-ink);

    font-size: 11px;

    font-weight: 780;
}


.cbp-product-dossier__links a > span {

    color:
        var(--cbp-orange-dark);

    font-size: 9px;

    font-weight: 900;
}


.cbp-product-dossier__links a > i {

    color:
        var(--cbp-orange-dark);

    font-size: 13px;

    font-style: normal;
}


/* ==========================================================
   QUOTE DOCK
=========================================================== */

.cbp-quote {

    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(285px,.48fr)
        minmax(0,1.52fr);

    margin-top: 22px;

    overflow: hidden;

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius: 22px;

    background:
        var(--cbp-white);

    box-shadow:
        0 24px 60px
        rgba(67,40,20,.09);
}


/* orange production line */

.cbp-quote::before {

    content: "";

    position: absolute;

    z-index: 5;

    left: 0;
    right: 0;
    top: 0;

    height: 4px;

    background:
        var(--cbp-orange);
}


/* ==========================================================
   QUOTE LEFT RAIL
=========================================================== */

.cbp-quote__rail {

    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    padding:
        25px;

    color:
        var(--cbp-white);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(201,78,8,.18),
            transparent 31%
        ),
        #2d1d16;
}


/* rail technical line */

.cbp-quote__rail::after {

    content: "";

    position: absolute;

    right: 20px;
    top: 92px;
    bottom: 24px;

    width: 1px;

    background:
        rgba(255,255,255,.06);
}


.cbp-quote__rail-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 34px;
}


.cbp-quote__rail-head span {

    color:
        rgba(255,255,255,.52);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .12em;
}


.cbp-quote__rail-head strong {

    color:
        #efb27f;

    font-size: 10px;

    font-weight: 850;
}


/* ==========================================================
   QUOTE TITLE
=========================================================== */

.cbp-quote__eyebrow {

    display: block;

    margin-bottom: 10px;

    color:
        #efb27f;

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .1em;
}


.cbp-quote__rail-main h2 {

    max-width: 400px;

    margin:
        0
        0
        12px;

    color:
        var(--cbp-white);

    font-size:
        clamp(29px,2.8vw,40px);

    font-weight: 830;

    line-height: 1.05;

    letter-spacing: -.035em;
}


.cbp-quote__rail-main > p {

    max-width: 400px;

    margin: 0;

    color:
        rgba(255,255,255,.66);

    font-size: 13px;

    line-height: 1.65;
}


/* ==========================================================
   QUOTE STEPS
=========================================================== */

.cbp-quote__rail-steps {

    margin-top: 27px;

    border-top:
        1px solid
        rgba(255,255,255,.11);
}


.cbp-quote__rail-steps > div {

    display: grid;

    grid-template-columns:
        30px
        minmax(0,1fr);

    gap: 11px;

    align-items: center;

    padding:
        11px
        0;

    border-bottom:
        1px solid
        rgba(255,255,255,.09);
}


.cbp-quote__rail-steps span {

    display: grid;

    place-items: center;

    width: 27px;
    height: 27px;

    color:
        rgba(255,255,255,.48);

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 50%;

    font-size: 9px;

    font-weight: 850;
}


.cbp-quote__rail-steps strong {

    color:
        rgba(255,255,255,.58);

    font-size: 12px;

    font-weight: 750;
}


.cbp-quote__rail-steps
.is-active span {

    color:
        var(--cbp-white);

    border-color:
        var(--cbp-orange);

    background:
        var(--cbp-orange);
}


.cbp-quote__rail-steps
.is-active strong {

    color:
        var(--cbp-white);
}


/* ==========================================================
   QUOTE NOTE
=========================================================== */

.cbp-quote__note {

    display: grid;

    grid-template-columns:
        31px
        minmax(0,1fr);

    gap: 11px;

    margin-top: auto;

    padding-top: 25px;
}


.cbp-quote__note > span {

    display: grid;

    place-items: center;

    width: 29px;
    height: 29px;

    color:
        var(--cbp-ink);

    border-radius: 50%;

    background:
        #efb27f;

    font-size: 12px;

    font-weight: 900;
}


.cbp-quote__note p {

    margin: 0;

    color:
        rgba(255,255,255,.58);

    font-size: 11px;

    line-height: 1.55;
}


.cbp-quote__note strong {

    display: block;

    margin-bottom: 3px;

    color:
        var(--cbp-white);

    font-size: 12px;

    font-weight: 800;
}


/* ==========================================================
   QUOTE WORKSPACE
=========================================================== */

.cbp-quote__workspace {

    min-width: 0;

    background:
        #fff;
}


.cbp-quote__workspace-head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-height: 70px;

    padding:
        15px
        clamp(20px,2.5vw,34px);

    border-bottom:
        1px solid
        var(--cbp-border);

    background:
        var(--cbp-cream-light);
}


.cbp-quote__workspace-head span,
.cbp-quote__workspace-head strong {

    display: block;
}


.cbp-quote__workspace-head
> div > span {

    margin-bottom: 3px;

    color:
        var(--cbp-orange-dark);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: .1em;
}


.cbp-quote__workspace-head
> div > strong {

    color:
        var(--cbp-ink);

    font-size: 16px;

    font-weight: 820;
}


.cbp-quote__workspace-state {

    padding:
        7px
        9px;

    color:
        var(--cbp-olive);

    border:
        1px solid
        rgba(94,96,58,.17);

    border-radius: 999px;

    background:
        rgba(94,96,58,.06);

    font-size: 9px !important;

    font-weight: 850;

    letter-spacing: .07em;
}


/* ==========================================================
   FORM AREA
=========================================================== */

.cbp-quote__form {

    width: 100%;

    min-width: 0;

    padding:
        clamp(22px,2.6vw,34px);
}


/* ==========================================================
   FORM WIDTH RESET
=========================================================== */

.cbp-quote__form > *,
.cbp-quote__form form,
.cbp-quote__form fieldset {

    width: 100% !important;

    max-width: none !important;

    box-sizing: border-box;
}


.cbp-quote__form form {

    margin: 0 !important;
}


/* ==========================================================
   FORM ELEMENTS
=========================================================== */

.cbp-quote__form input,
.cbp-quote__form select,
.cbp-quote__form textarea {

    max-width: 100%;

    color:
        var(--cbp-ink);

    border:
        1px solid
        var(--cbp-border-dark) !important;

    border-radius:
        8px !important;

    background:
        var(--cbp-white) !important;

    font-size:
        14px !important;

    box-sizing:
        border-box;
}


.cbp-quote__form input,
.cbp-quote__form select {

    min-height: 45px;
}


.cbp-quote__form textarea {

    min-height: 85px;

    resize: vertical;
}


.cbp-quote__form label {

    color:
        var(--cbp-ink) !important;

    font-size:
        13px !important;

    font-weight:
        750 !important;

    line-height:
        1.4 !important;
}


.cbp-quote__form button,
.cbp-quote__form input[type="submit"] {

    min-height: 48px;

    border:
        0 !important;

    border-radius:
        8px !important;

    color:
        var(--cbp-white) !important;

    background:
        var(--cbp-orange-dark) !important;

    font-size:
        14px !important;

    font-weight:
        850 !important;
}


/* ==========================================================
   LARGE LAPTOP
=========================================================== */

@media (max-width: 1180px) {

    .cbp-hero__studio {

        grid-template-columns:
            minmax(0,1fr)
            minmax(350px,.72fr);

        gap: 30px;

        align-items: start;
    }


    .cbp-gallery {

        grid-template-columns:
            76px
            minmax(0,1fr);

        align-self: start;
    }


    .cbp-gallery__canvas {

        height: fit-content;
        align-self: start;
    }


    .cbp-gallery__thumb {

        height: 76px;
    }


    .cbp-gallery__stage {

        height: 460px;
    }


    .cbp-product-dossier {

        padding:
            26px;

        align-self: start;
    }


    .cbp-product-dossier h1 {

        font-size:
            clamp(43px,5vw,59px);
    }


    .cbp-product-dossier__principles {

        grid-template-columns: 1fr;
    }


    .cbp-product-dossier__links {

        grid-template-columns: 1fr;
    }


    .cbp-quote {

        grid-template-columns:
            minmax(270px,.52fr)
            minmax(0,1.48fr);
    }

}


/* ==========================================================
   TABLET
=========================================================== */

@media (max-width: 900px) {

    .cbp-hero {

        padding:
            28px
            0
            46px;
    }


    .cbp-hero__studio {

        grid-template-columns: 1fr;

        gap: 26px;

        align-items: start;
    }


    .cbp-gallery {

        grid-template-columns:
            80px
            minmax(0,1fr);

        align-self: start;
    }


    .cbp-gallery__canvas {

        height: fit-content;
        align-self: start;
    }


    .cbp-gallery__stage {

        height:
            clamp(420px,64vw,560px);
    }


    .cbp-product-dossier {

        padding:
            28px
            0
            5px;

        border-top-width: 3px;

        background:
            transparent;

        align-self: start;
    }


    .cbp-product-dossier::after {
        display: none;
    }


    .cbp-product-dossier h1 {

        max-width: 680px;

        font-size:
            clamp(43px,8vw,62px);
    }


    .cbp-hero__intro {

        max-width: 760px;
    }


    .cbp-product-dossier__principles {

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    .cbp-product-dossier__links {

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }


    /* Quote */

    .cbp-quote {

        grid-template-columns: 1fr;

        margin-top: 30px;
    }


    .cbp-quote__rail {

        padding:
            27px;
    }


    .cbp-quote__rail-steps {

        display: grid;

        grid-template-columns:
            repeat(4,minmax(0,1fr));

        gap: 9px;

        margin-top: 24px;

        border-top: 0;
    }


    .cbp-quote__rail-steps > div {

        display: block;

        padding: 12px;

        border:
            1px solid
            rgba(255,255,255,.1);

        border-radius: 9px;
    }


    .cbp-quote__rail-steps span {

        margin-bottom: 8px;
    }


    .cbp-quote__note {

        margin-top: 22px;

        padding-top: 18px;

        border-top:
            1px solid
            rgba(255,255,255,.1);
    }

}


/* ==========================================================
   MOBILE
=========================================================== */

@media (max-width: 640px) {

    .cbp-hero {

        padding:
            22px
            0
            38px;
    }


    /* gallery becomes top canvas + horizontal view rail */

    .cbp-gallery {

        display: flex;

        flex-direction: column;

        align-self: start;
    }


    .cbp-gallery__canvas {

        order: 1;

        height: fit-content;

        align-self: stretch;

        border-radius: 17px;
    }


    .cbp-gallery__rail {

        order: 2;

        flex-direction: row;

        overflow-x: auto;

        gap: 6px;

        padding-top: 3px;

        scrollbar-width: none;
    }


    .cbp-gallery__rail::-webkit-scrollbar {

        display: none;
    }


    .cbp-gallery__rail-title {

        display: none;
    }


    .cbp-gallery__thumb {

        flex:
            0
            0
            72px;

        height: 67px;

        border-radius: 8px;
    }


    .cbp-gallery__stage {

        height:
            clamp(320px,91vw,430px);
    }


    .cbp-gallery__annotation {

        padding:
            6px
            7px;

        font-size: 9px;
    }


    .cbp-gallery__annotation--board {

        right: 10px;
    }


    .cbp-gallery__canvas-foot {

        grid-template-columns: 1fr;

        gap: 5px;

        padding:
            13px;
    }


    .cbp-gallery__canvas-foot p {

        margin: 0;

        text-align: left;
    }


    /* dossier */

    .cbp-product-dossier {

        padding-top: 24px;

        align-self: start;
    }


    .cbp-product-dossier__top {

        margin-bottom: 23px;
    }


    .cbp-product-dossier h1 {

        margin-bottom: 17px;

        font-size:
            clamp(38px,12vw,51px);
    }


    .cbp-hero__intro {

        font-size: 15px;

        line-height: 1.7;
    }


    .cbp-product-dossier__principles {

        grid-template-columns: 1fr;
    }


    .cbp-product-dossier__principles p {

        font-size: 12px;
    }


    .cbp-product-dossier__principles strong {

        font-size: 14px;
    }


    .cbp-product-dossier__route
    > div {

        grid-template-columns:
            repeat(4,auto);

        justify-content:
            space-between;
    }


    .cbp-product-dossier__route i {

        display: none;
    }


    .cbp-product-dossier__links {

        grid-template-columns: 1fr;
    }


    /* quote */

    .cbp-quote {

        margin-top: 25px;

        border-radius: 17px;
    }


    .cbp-quote__rail {

        padding:
            23px
            18px;
    }


    .cbp-quote__rail-head {

        margin-bottom: 26px;
    }


    .cbp-quote__rail-main h2 {

        font-size:
            clamp(29px,9vw,38px);
    }


    .cbp-quote__rail-main > p {

        font-size: 13px;
    }


    .cbp-quote__rail-steps {

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 7px;
    }


    .cbp-quote__rail-steps strong {

        font-size: 11px;
    }


    .cbp-quote__workspace-head {

        align-items: flex-start;

        flex-direction: column;

        gap: 9px;

        padding:
            15px
            17px;
    }


    .cbp-quote__form {

        padding:
            20px
            15px;
    }

}


/* ==========================================================
   SMALL MOBILE
=========================================================== */

@media (max-width: 390px) {

    .cbp-gallery__stage {

        height: 300px;
    }


    .cbp-gallery__thumb {

        flex-basis: 64px;

        height: 60px;
    }


    .cbp-gallery__annotation--print {

        left: 10px;
    }


    .cbp-product-dossier__status {

        font-size: 8px;
    }


    .cbp-product-dossier h1 {

        font-size: 38px;
    }


    .cbp-quote__rail-steps {

        grid-template-columns: 1fr;
    }

}


/* ==========================================================
   FOCUS / ACCESSIBILITY
=========================================================== */

.cbp-gallery__thumb:focus-visible,
.cbp-product-dossier__links a:focus-visible {

    outline:
        3px solid
        rgba(201,78,8,.28);

    outline-offset: 3px;
}


/* ==========================================================
   REDUCED MOTION
=========================================================== */

@media (prefers-reduced-motion: reduce) {

    .cbp-hero *,
    .cbp-hero *::before,
    .cbp-hero *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }

}

/* ==========================================================
   02 — SPECIFICATIONS
=========================================================== */

.cbp-specs {

    padding:
        54px
        0
        62px;

    background:
        var(--cbp-white);
}


.cbp-specs__panel {

    overflow: hidden;

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius: 18px;

    background:
        var(--cbp-cream-light);
}


.cbp-specs__panel dl {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin: 0;
}


.cbp-specs__panel dl > div {

    min-width: 0;

    padding:
        21px
        23px;

    border-right:
        1px solid
        var(--cbp-border);

    border-bottom:
        1px solid
        var(--cbp-border);
}


.cbp-specs__panel dl > div:nth-child(3n) {
    border-right: 0;
}


.cbp-specs__panel dl > div:nth-last-child(-n+3) {
    border-bottom: 0;
}


.cbp-specs dt {

    margin-bottom: 6px;

    color:
        var(--cbp-orange-dark);

    font-size: 11px;

    font-weight: 850;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.cbp-specs dd {

    margin: 0;

    color:
        var(--cbp-ink);

    font-size: 15px;

    font-weight: 750;

    line-height: 1.5;
}


/* ==========================================================
   03 — APPLICATIONS
=========================================================== */

.cbp-applications {

    padding:
        62px
        0;

    background:
        linear-gradient(
            180deg,
            #f8f1eb,
            #f4e9df
        );
}


.cbp-applications__grid {

    display: grid;

    grid-template-columns:
        minmax(0, .92fr)
        minmax(0, 1fr);

    gap:
        clamp(42px, 7vw, 100px);

    align-items: center;
}


.cbp-applications__visual {

    position: relative;

    min-height: 510px;

    overflow: hidden;

    border-radius: 22px;

    background:
        #e8d8ca;
}


.cbp-applications__visual img {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.cbp-applications__caption {

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    padding:
        17px
        18px;

    color:
        var(--cbp-white);

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 12px;

    background:
        rgba(45,29,22,.9);

    backdrop-filter:
        blur(8px);
}


.cbp-applications__caption span {

    display: block;

    margin-bottom: 4px;

    color:
        #efb27f;

    font-size: 11px;

    font-weight: 850;

    letter-spacing: .1em;
}


.cbp-applications__caption strong {

    display: block;

    font-size: 15px;

    font-weight: 800;

    line-height: 1.45;
}


.cbp-applications__content h2 {

    max-width: 680px;

    margin:
        0
        0
        17px;

    font-size:
        clamp(34px, 3.7vw, 54px);

    font-weight: 830;

    line-height: 1.03;

    letter-spacing: -.047em;
}


.cbp-application-groups {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 12px;

    margin-top: 27px;
}


.cbp-application-groups > div {

    padding:
        20px;

    border:
        1px solid
        var(--cbp-border);

    border-radius: 14px;

    background:
        rgba(255,255,255,.62);
}


.cbp-application-groups ul {

    display: grid;

    gap: 9px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.cbp-application-groups li {

    position: relative;

    padding-left: 17px;

    color:
        var(--cbp-ink-soft);

    font-size: 14px;

    font-weight: 650;

    line-height: 1.45;
}


.cbp-application-groups li::before {

    content: "";

    position: absolute;

    left: 0;
    top: .58em;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--cbp-orange);
}

/* ==========================================================
   CRAFT BOXES UK — MASTER PRODUCT TEMPLATE
   GENERIC SECTIONS 04 / 05 / 06
=========================================================== */


/* ==========================================================
   04 — STRUCTURE, SIZE & PRODUCT FIT
=========================================================== */

.cbp-sizing {

    padding:
        58px
        0
        62px;

    background:
        var(--cbp-white);
}


.cbp-sizing__grid {

    display: grid;

    grid-template-columns:
        minmax(0, .92fr)
        minmax(460px, .78fr);

    gap:
        clamp(45px, 6vw, 88px);

    align-items: center;
}


/* ==========================================================
   SIZING CONTENT
=========================================================== */

.cbp-sizing__content {

    min-width: 0;
}


.cbp-sizing__content h2 {

    max-width: 760px;

    margin:
        0
        0
        18px;

    font-size:
        clamp(34px, 3.7vw, 54px);

    font-weight: 830;

    line-height: 1.03;

    letter-spacing: -.047em;
}


.cbp-sizing__content .cbp-lead {

    max-width: 750px;

    margin:
        0;

    color:
        var(--cbp-muted);

    font-size:
        15px;

    line-height:
        1.72;
}


/* ==========================================================
   SIZING POINTS
=========================================================== */

.cbp-sizing__points {

    margin:
        25px
        0
        20px;

    border-top:
        1px solid
        var(--cbp-border);
}


.cbp-sizing__points > div {

    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr);

    gap: 14px;

    padding:
        15px
        0;

    border-bottom:
        1px solid
        var(--cbp-border);
}


.cbp-sizing__points > div > span {

    display: grid;

    place-items: center;

    width: 40px;
    height: 40px;

    color:
        var(--cbp-orange-dark);

    border-radius:
        10px;

    background:
        var(--cbp-orange-soft);

    font-size:
        12px;

    font-weight:
        900;
}


.cbp-sizing__points p {

    margin: 0;

    color:
        var(--cbp-muted);

    font-size:
        14px;

    line-height:
        1.6;
}


.cbp-sizing__points strong {

    display: block;

    margin-bottom:
        3px;

    color:
        var(--cbp-ink);

    font-size:
        15px;

    font-weight:
        820;
}


/* ==========================================================
   GENERIC GUIDANCE
=========================================================== */

.cbp-sizing__guidance {

    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1fr);

    gap:
        18px;

    align-items: start;

    margin-bottom:
        20px;

    padding:
        16px
        18px;

    border:
        1px solid
        rgba(94, 96, 58, .18);

    border-radius:
        12px;

    background:
        rgba(94, 96, 58, .055);
}


.cbp-sizing__guidance > span {

    color:
        var(--cbp-olive);

    font-size:
        10px;

    font-weight:
        900;

    line-height:
        1.4;

    letter-spacing:
        .09em;
}


.cbp-sizing__guidance p {

    margin:
        0;

    color:
        var(--cbp-muted);

    font-size:
        13px;

    line-height:
        1.6;
}


.cbp-sizing__guidance strong {

    color:
        var(--cbp-ink);

    font-weight:
        820;
}


/* ==========================================================
   DIMENSION WORKBENCH
=========================================================== */

.cbp-dimensions {

    min-width: 0;

    overflow: hidden;

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius:
        22px;

    background:
        var(--cbp-cream-light);

    box-shadow:
        var(--cbp-shadow);
}


/* ==========================================================
   DIMENSION HEADER
=========================================================== */

.cbp-dimensions__head {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap:
        20px;

    padding:
        19px
        21px;

    color:
        var(--cbp-white);

    background:
        var(--cbp-ink);
}


.cbp-dimensions__head > div > span,
.cbp-dimensions__head > div > strong {

    display:
        block;
}


.cbp-dimensions__head > div > span {

    margin-bottom:
        4px;

    color:
        #efb27f;

    font-size:
        11px;

    font-weight:
        850;

    letter-spacing:
        .1em;
}


.cbp-dimensions__head > div > strong {

    color:
        var(--cbp-white);

    font-size:
        17px;

    font-weight:
        820;
}


.cbp-dimensions__head-code {

    flex:
        0 0 auto;

    padding:
        7px
        10px;

    color:
        #efb27f;

    border:
        1px solid
        rgba(239, 178, 127, .25);

    border-radius:
        8px;

    background:
        rgba(255, 255, 255, .05);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        .08em;
}


/* ==========================================================
   DIMENSION CANVAS
=========================================================== */

.cbp-dimensions__canvas {

    position:
        relative;

    min-height:
        420px;

    overflow:
        hidden;

    background:
        #fbf7f3;
}


.cbp-dimensions__grid {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            rgba(201, 78, 8, .038) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(201, 78, 8, .038) 1px,
            transparent 1px
        );

    background-size:
        30px
        30px;

    pointer-events:
        none;
}


/* ==========================================================
   SVG DIAGRAM
=========================================================== */

.cbp-dimensions__diagram {

    position:
        relative;

    z-index:
        2;

    display:
        block;

    width:
        100%;

    height:
        auto;

    min-height:
        420px;
}


/* box */

.cbp-dimensions__face {

    stroke:
        #874412;

    stroke-width:
        3;

    stroke-linejoin:
        round;
}


.cbp-dimensions__face--top {

    fill:
        #e4aa73;
}


.cbp-dimensions__face--front {

    fill:
        #c98242;
}


.cbp-dimensions__face--side {

    fill:
        #d79350;
}


/* Product text */

.cbp-dimensions__product-label {

    fill:
        #633410;

    font-family:
        inherit;

    font-size:
        14px;

    font-weight:
        850;

    letter-spacing:
        2px;

    text-anchor:
        middle;
}


/* guide lines */

.cbp-dimensions__extension {

    stroke:
        rgba(155, 63, 13, .48);

    stroke-width:
        1.2;

    stroke-dasharray:
        4 5;
}


.cbp-dimensions__measurement {

    color:
        var(--cbp-orange-dark);

    stroke:
        currentColor;

    stroke-width:
        1.7;

    fill:
        none;
}


.cbp-dimensions__measurement-label {

    fill:
        var(--cbp-orange-dark);

    font-family:
        inherit;

    font-size:
        12px;

    font-weight:
        900;

    letter-spacing:
        1px;

    text-anchor:
        middle;
}


.cbp-dimensions__measurement-label--vertical {

    writing-mode:
        vertical-rl;

    text-orientation:
        mixed;
}


/* ==========================================================
   DIMENSION FOOTER
=========================================================== */

.cbp-dimensions__footer {

    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top:
        1px solid
        var(--cbp-border);

    border-bottom:
        1px solid
        var(--cbp-border);

    background:
        var(--cbp-white);
}


.cbp-dimensions__footer > div {

    display:
        grid;

    grid-template-columns:
        32px
        minmax(0, 1fr);

    gap:
        9px;

    padding:
        13px;

    border-right:
        1px solid
        var(--cbp-border);
}


.cbp-dimensions__footer > div:last-child {

    border-right:
        0;
}


.cbp-dimensions__footer > div > span {

    display:
        grid;

    place-items:
        center;

    width:
        30px;

    height:
        30px;

    color:
        var(--cbp-white);

    border-radius:
        8px;

    background:
        var(--cbp-orange-dark);

    font-size:
        11px;

    font-weight:
        900;
}


.cbp-dimensions__footer p {

    margin:
        0;

    color:
        var(--cbp-muted);

    font-size:
        10px;

    line-height:
        1.45;
}


.cbp-dimensions__footer strong {

    display:
        block;

    margin-bottom:
        2px;

    color:
        var(--cbp-ink);

    font-size:
        12px;

    font-weight:
        820;
}


/* ==========================================================
   DIMENSION NOTE
=========================================================== */

.cbp-dimensions__note {

    display:
        grid;

    grid-template-columns:
        auto
        minmax(0, 1fr);

    gap:
        14px;

    align-items:
        center;

    padding:
        16px
        20px;

    background:
        var(--cbp-cream-light);
}


.cbp-dimensions__note strong {

    color:
        var(--cbp-orange-dark);

    font-size:
        17px;

    font-weight:
        900;
}


.cbp-dimensions__note span {

    color:
        var(--cbp-muted);

    font-size:
        12px;

    line-height:
        1.55;
}


/* ==========================================================
   05 — MATERIALS
=========================================================== */

.cbp-materials {

    padding:
        58px
        0
        62px;

    background:
        linear-gradient(
            180deg,
            #f8f2ec 0%,
            #f4e9df 100%
        );
}


/* ==========================================================
   MATERIAL TABLE
=========================================================== */

.cbp-material-table {

    overflow:
        hidden;

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius:
        17px;

    background:
        var(--cbp-white);

    box-shadow:
        0 18px 45px
        rgba(67, 40, 20, .05);
}


.cbp-material-table__row {

    display:
        grid;

    grid-template-columns:
        1fr
        1.55fr
        1.25fr
        .72fr;

    align-items:
        stretch;

    min-width:
        0;

    border-bottom:
        1px solid
        var(--cbp-border);
}


.cbp-material-table__row:last-child {

    border-bottom:
        0;
}


.cbp-material-table__row > * {

    display:
        flex;

    align-items:
        center;

    min-width:
        0;

    padding:
        17px
        19px;

    border-right:
        1px solid
        var(--cbp-border);
}


.cbp-material-table__row > *:last-child {

    border-right:
        0;
}


/* Header */

.cbp-material-table__head {

    color:
        var(--cbp-white);

    background:
        var(--cbp-ink);
}


.cbp-material-table__head span {

    color:
        rgba(255, 255, 255, .75);

    font-size:
        11px;

    font-weight:
        850;

    line-height:
        1.4;

    letter-spacing:
        .07em;

    text-transform:
        uppercase;
}


/* body */

.cbp-material-table__row:not(.cbp-material-table__head) > span {

    color:
        var(--cbp-muted);

    font-size:
        13px;

    line-height:
        1.55;
}


.cbp-material-table__row strong {

    gap:
        9px;

    color:
        var(--cbp-ink);

    font-size:
        14px;

    font-weight:
        820;

    line-height:
        1.45;
}


/* ==========================================================
   MATERIAL DOTS
=========================================================== */

.cbp-material-dot {

    width:
        14px;

    height:
        14px;

    flex:
        0 0 auto;

    border:
        2px solid
        var(--cbp-kraft-dark);

    border-radius:
        50%;
}


.cbp-material-dot--kraft {

    background:
        #bd7f42;
}


.cbp-material-dot--board {

    background:
        #f0eee7;
}


.cbp-material-dot--corrugated {

    background:
        repeating-linear-gradient(
            90deg,
            #bb7c3e 0 3px,
            #e2b078 3px 6px
        );
}


.cbp-material-dot--rigid {

    background:
        #6e6259;
}


/* ==========================================================
   MATERIAL DECISION ROUTE
=========================================================== */

.cbp-materials__decision {

    display:
        grid;

    grid-template-columns:
        170px
        minmax(0, 1fr);

    gap:
        25px;

    align-items:
        center;

    margin-top:
        14px;

    padding:
        16px
        18px;

    color:
        var(--cbp-white);

    border-radius:
        13px;

    background:
        var(--cbp-ink);
}


.cbp-materials__decision-label {

    color:
        #efb27f;

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        .1em;
}


.cbp-materials__decision > div {

    display:
        grid;

    grid-template-columns:
        auto
        1fr
        auto
        1fr
        auto
        1fr
        auto
        1fr
        auto;

    gap:
        9px;

    align-items:
        center;
}


.cbp-materials__decision > div > span {

    display:
        flex;

    align-items:
        center;

    gap:
        6px;

    color:
        rgba(255, 255, 255, .78);

    font-size:
        11px;

    font-weight:
        750;

    white-space:
        nowrap;
}


.cbp-materials__decision > div > span strong {

    color:
        #efb27f;

    font-size:
        9px;

    font-weight:
        900;
}


.cbp-materials__decision i {

    height:
        1px;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, .25) 0 4px,
            transparent 4px 8px
        );
}


/* ==========================================================
   MATERIAL FOOTER
=========================================================== */

.cbp-materials__footer {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        25px;

    margin-top:
        14px;

    padding:
        15px
        18px;

    border:
        1px solid
        var(--cbp-border);

    border-radius:
        12px;

    background:
        rgba(255, 255, 255, .63);
}


.cbp-materials__footer p {

    max-width:
        900px;

    margin:
        0;

    color:
        var(--cbp-muted);

    font-size:
        13px;

    line-height:
        1.55;
}


.cbp-materials__footer strong {

    color:
        var(--cbp-ink);

    font-size:
        13px;

    font-weight:
        820;
}


.cbp-materials__footer a {

    flex:
        0 0 auto;

    color:
        var(--cbp-orange-dark);

    font-size:
        13px;

    font-weight:
        850;
}


/* ==========================================================
   06 — PRINTING & FINISHING
=========================================================== */

.cbp-print {

    padding:
        58px
        0
        62px;

    background:
        var(--cbp-white);
}


/* ==========================================================
   PRINT HEADING
=========================================================== */

.cbp-print__heading {

    max-width:
        900px;

    margin-bottom:
        30px;
}


.cbp-print__heading h2 {

    max-width:
        850px;

    margin:
        0
        0
        15px;

    font-size:
        clamp(34px, 3.7vw, 54px);

    font-weight:
        830;

    line-height:
        1.03;

    letter-spacing:
        -.047em;
}


.cbp-print__heading > p {

    max-width:
        770px;

    margin:
        0;

    color:
        var(--cbp-muted);

    font-size:
        15px;

    line-height:
        1.72;
}


/* ==========================================================
   PRINT WORKSPACE
=========================================================== */

.cbp-print__workspace {

    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        14px;
}


/* ==========================================================
   PRINT COLUMNS
=========================================================== */

.cbp-print__column {

    min-width:
        0;

    overflow:
        hidden;

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius:
        17px;

    background:
        var(--cbp-cream-light);
}


/* column head */

.cbp-print__column-head {

    display:
        grid;

    grid-template-columns:
        48px
        minmax(0, 1fr);

    gap:
        13px;

    align-items:
        center;

    min-height:
        89px;

    padding:
        18px
        20px;

    color:
        var(--cbp-white);

    background:
        var(--cbp-ink);
}


.cbp-print__column-head > span {

    display:
        grid;

    place-items:
        center;

    width:
        44px;

    height:
        44px;

    color:
        #efb27f;

    border:
        1px solid
        rgba(255, 255, 255, .16);

    border-radius:
        10px;

    font-size:
        12px;

    font-weight:
        900;
}


.cbp-print__column-head small {

    display:
        block;

    margin-bottom:
        4px;

    color:
        #efb27f;

    font-size:
        10px;

    font-weight:
        850;

    letter-spacing:
        .1em;
}


.cbp-print__column-head strong {

    display:
        block;

    color:
        var(--cbp-white);

    font-size:
        16px;

    font-weight:
        820;

    line-height:
        1.4;
}


/* ==========================================================
   OPTION LIST
=========================================================== */

.cbp-option-list {

    padding:
        4px
        20px;
}


.cbp-option-list > div {

    display:
        grid;

    grid-template-columns:
        minmax(155px, .55fr)
        minmax(0, 1fr);

    gap:
        22px;

    padding:
        16px
        0;

    border-bottom:
        1px solid
        var(--cbp-border);
}


.cbp-option-list > div:last-child {

    border-bottom:
        0;
}


.cbp-option-list strong {

    color:
        var(--cbp-ink);

    font-size:
        14px;

    font-weight:
        820;

    line-height:
        1.45;
}


.cbp-option-list span {

    color:
        var(--cbp-muted);

    font-size:
        13px;

    line-height:
        1.58;
}


/* ==========================================================
   PRINT DECISION ROUTE
=========================================================== */

.cbp-print__route {

    display:
        grid;

    grid-template-columns:
        minmax(250px, .42fr)
        minmax(0, 1fr);

    gap:
        28px;

    align-items:
        center;

    margin-top:
        14px;

    padding:
        18px
        20px;

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius:
        13px;

    background:
        var(--cbp-cream-light);
}


.cbp-print__route-intro > span,
.cbp-print__route-intro > strong {

    display:
        block;
}


.cbp-print__route-intro > span {

    margin-bottom:
        4px;

    color:
        var(--cbp-orange-dark);

    font-size:
        10px;

    font-weight:
        900;

    letter-spacing:
        .1em;
}


.cbp-print__route-intro > strong {

    color:
        var(--cbp-ink);

    font-size:
        13px;

    font-weight:
        820;

    line-height:
        1.5;
}


.cbp-print__route-flow {

    display:
        grid;

    grid-template-columns:
        auto
        1fr
        auto
        1fr
        auto
        1fr
        auto
        1fr
        auto;

    gap:
        8px;

    align-items:
        center;
}


.cbp-print__route-flow > div {

    text-align:
        center;
}


.cbp-print__route-flow > div span {

    display:
        grid;

    place-items:
        center;

    width:
        28px;

    height:
        28px;

    margin:
        0
        auto
        5px;

    color:
        var(--cbp-orange-dark);

    border:
        1px solid
        rgba(201, 78, 8, .18);

    border-radius:
        50%;

    background:
        var(--cbp-white);

    font-size:
        9px;

    font-weight:
        900;
}


.cbp-print__route-flow > div strong {

    color:
        var(--cbp-muted);

    font-size:
        10px;

    font-weight:
        750;
}


.cbp-print__route-flow > i {

    height:
        1px;

    background:
        repeating-linear-gradient(
            90deg,
            var(--cbp-border-dark) 0 5px,
            transparent 5px 9px
        );
}


/* ==========================================================
   GENERIC PRINT NOTE
=========================================================== */

.cbp-print__note {

    display:
        grid;

    grid-template-columns:
        155px
        minmax(0, 1fr);

    gap:
        26px;

    margin-top:
        14px;

    padding:
        20px
        22px;

    color:
        var(--cbp-white);

    border-radius:
        14px;

    background:
        var(--cbp-olive);
}


.cbp-print__note > span {

    color:
        rgba(255, 255, 255, .72);

    font-size:
        11px;

    font-weight:
        850;

    line-height:
        1.4;

    letter-spacing:
        .09em;
}


.cbp-print__note p {

    margin:
        0;

    color:
        rgba(255, 255, 255, .8);

    font-size:
        14px;

    line-height:
        1.65;
}


.cbp-print__note strong {

    color:
        var(--cbp-white);

    font-size:
        14px;

    font-weight:
        820;
}


/* ==========================================================
   LAPTOP
=========================================================== */

@media (max-width: 1100px) {

    .cbp-sizing__grid {

        grid-template-columns:
            minmax(0, 1fr)
            minmax(400px, .82fr);

        gap:
            42px;
    }


    .cbp-dimensions__canvas {

        min-height:
            380px;
    }


    .cbp-dimensions__diagram {

        min-height:
            380px;
    }


    .cbp-materials__decision {

        grid-template-columns:
            145px
            minmax(0, 1fr);
    }

}


/* ==========================================================
   TABLET
=========================================================== */

@media (max-width: 900px) {

    .cbp-sizing,
    .cbp-materials,
    .cbp-print {

        padding:
            52px
            0;
    }


    /* sizing */

    .cbp-sizing__grid {

        grid-template-columns:
            1fr;

        gap:
            34px;
    }


    .cbp-dimensions {

        width:
            min(100%, 720px);

        margin-inline:
            auto;
    }


    .cbp-dimensions__canvas {

        min-height:
            410px;
    }


    .cbp-dimensions__diagram {

        min-height:
            410px;
    }


    /* materials become scrollable table */

    .cbp-material-table {

        overflow-x:
            auto;

        scrollbar-width:
            thin;
    }


    .cbp-material-table__row {

        min-width:
            850px;
    }


    .cbp-materials__decision {

        grid-template-columns:
            1fr;

        gap:
            13px;
    }


    .cbp-materials__decision > div {

        width:
            100%;
    }


    /* printing */

    .cbp-print__workspace {

        grid-template-columns:
            1fr;
    }


    .cbp-print__route {

        grid-template-columns:
            1fr;

        gap:
            18px;
    }

}


/* ==========================================================
   MOBILE
=========================================================== */

@media (max-width: 640px) {

    .cbp-sizing,
    .cbp-materials,
    .cbp-print {

        padding:
            46px
            0;
    }


    /* ----------------------------------
       SIZING
    ----------------------------------- */

    .cbp-sizing__content h2,
    .cbp-print__heading h2 {

        font-size:
            clamp(30px, 9.5vw, 40px);
    }


    .cbp-sizing__content .cbp-lead,
    .cbp-print__heading > p {

        font-size:
            14px;

        line-height:
            1.68;
    }


    .cbp-sizing__points > div {

        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap:
            12px;
    }


    .cbp-sizing__points > div > span {

        width:
            36px;

        height:
            36px;
    }


    .cbp-sizing__points p {

        font-size:
            13px;
    }


    .cbp-sizing__points strong {

        font-size:
            14px;
    }


    .cbp-sizing__guidance {

        grid-template-columns:
            1fr;

        gap:
            6px;
    }


    /* Dimension graphic */

    .cbp-dimensions {

        border-radius:
            17px;
    }


    .cbp-dimensions__head {

        padding:
            16px;
    }


    .cbp-dimensions__head > div > strong {

        font-size:
            15px;
    }


    .cbp-dimensions__canvas {

        min-height:
            300px;
    }


    .cbp-dimensions__diagram {

        width:
            125%;

        max-width:
            none;

        min-height:
            300px;

        margin-left:
            -13%;
    }


    .cbp-dimensions__footer {

        grid-template-columns:
            1fr;
    }


    .cbp-dimensions__footer > div {

        border-right:
            0;

        border-bottom:
            1px solid
            var(--cbp-border);
    }


    .cbp-dimensions__footer > div:last-child {

        border-bottom:
            0;
    }


    .cbp-dimensions__note {

        grid-template-columns:
            1fr;

        gap:
            4px;

        padding:
            15px;
    }


    /* ----------------------------------
       MATERIALS
    ----------------------------------- */

    .cbp-material-table__row {

        min-width:
            760px;
    }


    .cbp-material-table__row > * {

        padding:
            15px;
    }


    .cbp-materials__decision {

        padding:
            16px;
    }


    .cbp-materials__decision > div {

        display:
            grid;

        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        gap:
            5px;
    }


    .cbp-materials__decision > div > span {

        display:
            block;

        white-space:
            normal;

        text-align:
            center;

        font-size:
            9px;
    }


    .cbp-materials__decision > div > span strong {

        display:
            block;

        margin-bottom:
            3px;
    }


    .cbp-materials__decision i {

        display:
            none;
    }


    .cbp-materials__footer {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            10px;
    }


    /* ----------------------------------
       PRINT
    ----------------------------------- */

    .cbp-print__column {

        border-radius:
            14px;
    }


    .cbp-print__column-head {

        grid-template-columns:
            43px
            minmax(0, 1fr);

        padding:
            16px;
    }


    .cbp-print__column-head > span {

        width:
            40px;

        height:
            40px;
    }


    .cbp-print__column-head strong {

        font-size:
            14px;
    }


    .cbp-option-list {

        padding:
            3px
            16px;
    }


    .cbp-option-list > div {

        grid-template-columns:
            1fr;

        gap:
            4px;

        padding:
            14px
            0;
    }


    .cbp-option-list strong {

        font-size:
            14px;
    }


    .cbp-option-list span {

        font-size:
            12px;
    }


    .cbp-print__route {

        padding:
            16px;
    }


    .cbp-print__route-flow {

        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        gap:
            5px;
    }


    .cbp-print__route-flow > i {

        display:
            none;
    }


    .cbp-print__note {

        grid-template-columns:
            1fr;

        gap:
            8px;

        padding:
            18px;
    }


    .cbp-print__note p {

        font-size:
            13px;
    }

}


/* ==========================================================
   SMALL MOBILE
=========================================================== */

@media (max-width: 390px) {

    .cbp-dimensions__head-code {

        display:
            none;
    }


    .cbp-dimensions__diagram {

        width:
            138%;

        margin-left:
            -19%;
    }


    .cbp-materials__decision > div {

        grid-template-columns:
            repeat(3, 1fr);

        gap:
            9px;
    }


    .cbp-print__route-flow {

        grid-template-columns:
            repeat(3, 1fr);

        gap:
            10px;
    }

}

/* ==========================================================
   07 — BUYING GUIDE
=========================================================== */

.cbp-guide {

    padding:
        68px
        0;

    background:
        #f7efe8;
}


.cbp-guide__layout {

    display: grid;

    grid-template-columns:
        minmax(270px,.52fr)
        minmax(0,1.2fr);

    gap:
        clamp(50px,8vw,115px);

    align-items: start;
}


.cbp-guide__aside {

    position: sticky;

    top: 25px;
}


.cbp-guide__aside h2 {

    margin:
        0
        0
        15px;

    font-size:
        clamp(32px,3.2vw,47px);

    font-weight: 830;

    line-height: 1.05;

    letter-spacing: -.045em;
}


.cbp-guide__aside > p {

    margin:
        0
        0
        23px;

    color:
        var(--cbp-muted);

    font-size: 14px;

    line-height: 1.7;
}


.cbp-guide__aside nav {

    border-top:
        1px solid
        var(--cbp-border);
}


.cbp-guide__aside nav a {

    display: block;

    padding:
        11px
        0;

    color:
        var(--cbp-muted);

    border-bottom:
        1px solid
        var(--cbp-border);

    font-size: 13px;

    font-weight: 750;
}


.cbp-guide__aside nav a:hover {
    color: var(--cbp-orange-dark);
}


.cbp-guide__article {

    padding:
        4px
        0;
}


.cbp-guide__article > section {

    position: relative;

    padding:
        0
        0
        34px;

    margin-bottom: 34px;

    border-bottom:
        1px solid
        var(--cbp-border);
}


.cbp-guide__article > section:last-child {

    margin-bottom: 0;

    padding-bottom: 0;

    border-bottom: 0;
}


.cbp-guide__number {

    display: block;

    margin-bottom: 9px;

    color:
        var(--cbp-orange-dark);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: .08em;
}


.cbp-guide__article h3 {

    max-width: 760px;

    margin:
        0
        0
        14px;

    font-size:
        clamp(24px,2.4vw,34px);

    font-weight: 820;

    line-height: 1.17;

    letter-spacing: -.025em;
}


.cbp-guide__article p {

    margin:
        0
        0
        14px;

    color:
        var(--cbp-muted);

    font-size: 15px;

    line-height: 1.78;
}


.cbp-guide__article p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   08 — PROCESS
=========================================================== */

.cbp-process {

    padding:
        62px
        0;

    background:
        var(--cbp-white);
}


.cbp-process__track {

    display: grid;

    grid-template-columns:
        repeat(5,minmax(0,1fr));

    overflow: hidden;

    margin-bottom: 22px;

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius: 17px;

    background:
        var(--cbp-cream-light);
}


.cbp-process__track > div {

    position: relative;

    min-width: 0;

    padding:
        21px
        19px;

    border-right:
        1px solid
        var(--cbp-border);
}


.cbp-process__track > div:last-child {
    border-right: 0;
}


.cbp-process__track > div > span {

    display: grid;

    place-items: center;

    width: 39px;
    height: 39px;

    margin-bottom: 27px;

    color:
        var(--cbp-orange-dark);

    border-radius: 50%;

    background:
        var(--cbp-orange-soft);

    font-size: 11px;

    font-weight: 900;
}


.cbp-process__track > div:not(:last-child)::after {

    content: "→";

    position: absolute;

    right: -10px;
    top: 29px;

    z-index: 2;

    display: grid;

    place-items: center;

    width: 20px;
    height: 20px;

    color:
        var(--cbp-orange-dark);

    background:
        var(--cbp-white);

    font-size: 14px;

    font-weight: 900;
}


.cbp-process__track small {

    display: block;

    margin-bottom: 4px;

    color:
        var(--cbp-orange-dark);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .09em;
}


.cbp-process__track strong {

    display: block;

    margin-bottom: 8px;

    font-size: 16px;

    font-weight: 820;
}


.cbp-process__track p {

    margin: 0;

    color:
        var(--cbp-muted);

    font-size: 13px;

    line-height: 1.58;
}


/* ==========================================================
   09 — RELATED PRODUCTS
=========================================================== */

.cbp-related {

    padding:
        62px
        0;

    background:
        linear-gradient(
            180deg,
            #f8f2ec,
            #f4e9df
        );
}


.cbp-related__grid {

    display: grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr));

    gap: 12px;
}


.cbp-related__card {

    min-width: 0;

    padding: 13px;

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius: 16px;

    background:
        var(--cbp-white);

    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}


.cbp-related__card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(201,78,8,.35);

    box-shadow:
        0 18px 38px
        rgba(55,31,18,.08);
}


.cbp-related__image {

    height: 190px;

    margin-bottom: 15px;

    overflow: hidden;

    border-radius: 11px;

    background:
        #eee5dd;
}


.cbp-related__image img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 300ms ease;
}


.cbp-related__card:hover img {
    transform: scale(1.035);
}


.cbp-related__card small {

    display: block;

    margin-bottom: 5px;

    color:
        var(--cbp-orange-dark);

    font-size: 10px;

    font-weight: 850;

    letter-spacing: .09em;
}


.cbp-related__card strong {

    display: block;

    margin-bottom: 11px;

    color:
        var(--cbp-ink);

    font-size: 16px;

    font-weight: 820;
}


.cbp-related__card > span {

    display: block;

    color:
        var(--cbp-orange-dark);

    font-size: 12px;

    font-weight: 820;
}


/* ==========================================================
   10 — BRIEF
=========================================================== */

.cbp-brief {

    padding:
        68px
        0;

    background:
        var(--cbp-white);
}


.cbp-brief__layout {

    display: grid;

    grid-template-columns:
        minmax(290px,.62fr)
        minmax(0,1.15fr);

    gap:
        clamp(50px,7vw,100px);

    align-items: start;
}


.cbp-brief__intro h2 {

    margin:
        0
        0
        16px;

    font-size:
        clamp(34px,3.6vw,52px);

    font-weight: 830;

    line-height: 1.04;

    letter-spacing: -.045em;
}


.cbp-brief__intro > p {

    color:
        var(--cbp-muted);

    font-size: 15px;

    line-height: 1.72;
}


.cbp-brief__help {

    margin-top: 25px;

    padding:
        20px;

    color:
        var(--cbp-white);

    border-radius: 14px;

    background:
        var(--cbp-ink);
}


.cbp-brief__help > span {

    display: block;

    margin-bottom: 7px;

    color:
        #efb27f;

    font-size: 11px;

    font-weight: 850;

    letter-spacing: .09em;
}


.cbp-brief__help strong {

    display: block;

    margin-bottom: 7px;

    font-size: 16px;

    font-weight: 820;

    line-height: 1.45;
}


.cbp-brief__help p {

    margin: 0;

    color:
        rgba(255,255,255,.68);

    font-size: 13px;

    line-height: 1.6;
}


.cbp-brief__checklist {

    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    border:
        1px solid
        var(--cbp-border-dark);

    border-radius: 17px;

    overflow: hidden;
}


.cbp-brief__checklist > div {

    padding:
        21px;

    background:
        var(--cbp-cream-light);

    border-right:
        1px solid
        var(--cbp-border);

    border-bottom:
        1px solid
        var(--cbp-border);
}


.cbp-brief__checklist > div:nth-child(2n) {
    border-right: 0;
}


.cbp-brief__checklist > div:nth-last-child(-n+2) {
    border-bottom: 0;
}


.cbp-brief__checklist > div > span {

    display: block;

    margin-bottom: 7px;

    color:
        var(--cbp-orange-dark);

    font-size: 11px;

    font-weight: 850;

    letter-spacing: .08em;
}


.cbp-brief__checklist strong {

    display: block;

    margin-bottom: 12px;

    font-size: 16px;

    font-weight: 820;
}


.cbp-brief__checklist ul {

    display: grid;

    gap: 8px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.cbp-brief__checklist li {

    position: relative;

    padding-left: 20px;

    color:
        var(--cbp-muted);

    font-size: 13px;

    line-height: 1.5;
}


.cbp-brief__checklist li::before {

    content: "□";

    position: absolute;

    left: 0;

    color:
        var(--cbp-orange-dark);

    font-weight: 900;
}


.cbp-brief__resources {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 24px;

    padding-top: 20px;

    border-top:
        1px solid
        var(--cbp-border);
}


.cbp-brief__resources a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        9px
        12px;

    border:
        1px solid
        var(--cbp-border);

    border-radius: 999px;

    background:
        var(--cbp-cream-light);

    font-size: 12px;

    font-weight: 780;
}


.cbp-brief__resources a span {

    color:
        var(--cbp-orange-dark);

    font-size: 14px;
}


/* ==========================================================
   11 — FAQ
=========================================================== */

.cbp-faq {

    padding:
        68px
        0;

    background:
        #f7efe8;
}


.cbp-faq__layout {

    display: grid;

    grid-template-columns:
        minmax(270px,.52fr)
        minmax(0,1.2fr);

    gap:
        clamp(50px,8vw,110px);

    align-items: start;
}


.cbp-faq__intro {

    position: sticky;

    top: 25px;
}


.cbp-faq__intro h2 {

    margin:
        0
        0
        14px;

    font-size:
        clamp(34px,3.5vw,50px);

    font-weight: 830;

    line-height: 1.04;

    letter-spacing: -.045em;
}


.cbp-faq__intro > p {

    margin:
        0
        0
        20px;

    color:
        var(--cbp-muted);

    font-size: 14px;

    line-height: 1.7;
}


.cbp-faq__items {

    border-top:
        1px solid
        var(--cbp-border-dark);
}


.cbp-faq details {

    border-bottom:
        1px solid
        var(--cbp-border-dark);
}


.cbp-faq summary {

    position: relative;

    display: grid;

    grid-template-columns:
        38px
        minmax(0,1fr);

    gap: 12px;

    align-items: center;

    padding:
        19px
        42px
        19px
        0;

    cursor: pointer;

    list-style: none;

    color:
        var(--cbp-ink);

    font-size: 16px;

    font-weight: 800;

    line-height: 1.45;
}


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


.cbp-faq summary > span {

    display: grid;

    place-items: center;

    width: 36px;
    height: 36px;

    color:
        var(--cbp-orange-dark);

    border-radius: 9px;

    background:
        var(--cbp-orange-soft);

    font-size: 11px;

    font-weight: 900;
}


.cbp-faq summary::after {

    content: "+";

    position: absolute;

    right: 5px;
    top: 50%;

    transform:
        translateY(-50%);

    color:
        var(--cbp-orange-dark);

    font-size: 24px;

    font-weight: 500;
}


.cbp-faq details[open] summary::after {
    content: "−";
}


.cbp-faq details > div {

    padding:
        0
        48px
        19px
        50px;
}


.cbp-faq details p {

    max-width: 750px;

    margin: 0;

    color:
        var(--cbp-muted);

    font-size: 14px;

    line-height: 1.72;
}


/* ==========================================================
   12 — FINAL CTA
=========================================================== */

.cbp-final {
    padding: 62px 0;
    background: var(--cbp-white);
}


.cbp-final__panel {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(280px, .55fr);

    overflow: hidden;

    color: var(--cbp-white);

    border-radius: 24px;

    background: var(--cbp-ink);

    box-shadow:
        0 28px 65px
        rgba(45, 29, 22, .15);
}


.cbp-final__panel::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: 17%;
    top: -280px;

    border:
        1px solid
        rgba(255, 255, 255, .07);

    border-radius: 50%;
}


.cbp-final__content {
    position: relative;
    z-index: 2;

    padding:
        clamp(34px, 5vw, 65px);
}


.cbp-final__eyebrow {
    display: block;

    margin-bottom: 13px;

    color: #efb27f;

    font-size: 11px;
    font-weight: 850;
    letter-spacing: .11em;
}


.cbp-final__content h2 {
    max-width: 760px;

    margin:
        0
        0
        16px;

    color: var(--cbp-white);

    font-size:
        clamp(36px, 4.3vw, 62px);

    font-weight: 830;
    line-height: 1;
    letter-spacing: -.05em;
}


.cbp-final__content > p {
    max-width: 680px;

    margin:
        0
        0
        26px;

    color:
        rgba(255, 255, 255, .7);

    font-size: 15px;
    line-height: 1.72;
}


.cbp-final__actions {
    display: flex;

    align-items: center;
    flex-wrap: wrap;

    gap:
        14px
        22px;
}


/* ==========================================================
   CTA BUTTON
=========================================================== */

.cbp-final .cbp-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 49px;

    padding:
        0
        20px;

    border: 1px solid transparent;
    border-radius: 9px;

    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;

    text-decoration: none;

    cursor: pointer;

    transition:
        background-color .22s ease,
        color .22s ease,
        border-color .22s ease,
        transform .22s ease;
}


/* IMPORTANT:
   Force dark text on white button
*/

.cbp-final .cbp-btn--light,
.cbp-final .cbp-btn--light:link,
.cbp-final .cbp-btn--light:visited {
    color: var(--cbp-ink) !important;
    background: var(--cbp-white) !important;

    border-color:
        rgba(255, 255, 255, .95);

    text-decoration: none !important;
}


/* Make any text/icon inside inherit button colour */

.cbp-final .cbp-btn--light *,
.cbp-final .cbp-btn--light span {
    color: inherit !important;
}


.cbp-final .cbp-btn span {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;
    line-height: 1;
}


/* Hover */

.cbp-final .cbp-btn--light:hover {
    color: var(--cbp-white) !important;

    background: #b76532 !important;

    border-color: #b76532;

    transform:
        translateY(-2px);
}


.cbp-final .cbp-btn--light:hover *,
.cbp-final .cbp-btn--light:hover span {
    color: var(--cbp-white) !important;
}


/* Keyboard focus */

.cbp-final .cbp-btn--light:focus-visible {
    outline:
        3px solid
        rgba(239, 178, 127, .45);

    outline-offset: 3px;
}


/* ==========================================================
   CONTACT
=========================================================== */

.cbp-final__contact {
    color:
        rgba(255, 255, 255, .82);

    font-size: 14px;
    font-weight: 780;
    text-decoration: none;
}


.cbp-final__contact:hover {
    color: #efb27f;
}


/* ==========================================================
   SIDE PANEL
=========================================================== */

.cbp-final__side {
    position: relative;
    z-index: 2;

    padding: 32px;

    border-left:
        1px solid
        rgba(255, 255, 255, .11);

    background:
        rgba(255, 255, 255, .04);
}


.cbp-final__side > span {
    display: block;

    margin-bottom: 17px;

    color: #efb27f;

    font-size: 11px;
    font-weight: 850;
    letter-spacing: .1em;
}


.cbp-final__side > div {
    display: grid;

    grid-template-columns:
        35px
        minmax(0, 1fr);

    gap: 11px;

    align-items: center;

    padding:
        11px
        0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .1);
}


.cbp-final__side small {
    color:
        rgba(255, 255, 255, .42);

    font-size: 11px;
    font-weight: 800;
}


.cbp-final__side strong {
    color: var(--cbp-white);

    font-size: 14px;
    font-weight: 780;
}


.cbp-final__side > a {
    display: inline-block;

    margin-top: 21px;

    color: #efb27f;

    font-size: 13px;
    font-weight: 780;

    text-decoration: none;
}


.cbp-final__side > a:hover {
    color: var(--cbp-white);
}


/* ==========================================================
   TABLET
=========================================================== */

@media (max-width: 900px) {

    .cbp-final__panel {
        grid-template-columns: 1fr;
    }

    .cbp-final__side {
        border-left: 0;

        border-top:
            1px solid
            rgba(255, 255, 255, .11);
    }
}


/* ==========================================================
   MOBILE
=========================================================== */

@media (max-width: 600px) {

    .cbp-final {
        padding:
            48px
            0;
    }

    .cbp-final__panel {
        border-radius: 18px;
    }

    .cbp-final__content {
        padding:
            32px
            22px;
    }

    .cbp-final__content h2 {
        font-size:
            clamp(32px, 10vw, 42px);

        line-height: 1.04;
    }

    .cbp-final__content > p {
        font-size: 14px;
        line-height: 1.68;
    }

    .cbp-final__actions {
        align-items: stretch;
        flex-direction: column;

        gap: 15px;
    }

    .cbp-final .cbp-btn {
        width: 100%;

        min-height: 52px;
    }

    .cbp-final__contact {
        text-align: center;
    }

    .cbp-final__side {
        padding:
            27px
            22px;
    }
}
/* ==========================================================
   RESPONSIVE — LAPTOP
=========================================================== */

@media (max-width: 1180px) {

    .cbp-hero__grid {

        grid-template-columns:
            minmax(0,1fr)
            minmax(0,.9fr);
    }


    .cbp-quote {

        grid-column:
            1 / -1;
    }


    .cbp-quote__form {

        max-width: 100%;
    }


    .cbp-process__track {

        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }


    .cbp-process__track > div {

        border-bottom:
            1px solid
            var(--cbp-border);
    }


    .cbp-process__track > div:nth-child(3) {
        border-right: 0;
    }


    .cbp-process__track > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }


    .cbp-process__track > div::after {
        display: none !important;
    }


    .cbp-related__grid {

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}


/* ==========================================================
   RESPONSIVE — TABLET
=========================================================== */

@media (max-width: 900px) {

    .cbp-shell {

        width:
            min(
                calc(100% - 36px),
                1320px
            );
    }


    .cbp-section-head--split {

        grid-template-columns:
            1fr;

        gap: 15px;
    }


    .cbp-section-head > p {
        max-width: 700px;
    }


    .cbp-hero__grid,
    .cbp-applications__grid,
    .cbp-sizing__grid,
    .cbp-guide__layout,
    .cbp-brief__layout,
    .cbp-faq__layout {

        grid-template-columns:
            1fr;
    }


    .cbp-hero__content {
        padding-top: 0;
    }


    .cbp-quote {
        grid-column: auto;
    }


    .cbp-gallery__stage {

        height:
            min(68vw, 570px);
    }


    .cbp-specs__panel dl {

        grid-template-columns:
            repeat(2,1fr);
    }


    .cbp-specs__panel dl > div:nth-child(3n) {
        border-right:
            1px solid
            var(--cbp-border);
    }


    .cbp-specs__panel dl > div:nth-child(2n) {
        border-right: 0;
    }


    .cbp-specs__panel dl > div:nth-last-child(-n+3) {
        border-bottom:
            1px solid
            var(--cbp-border);
    }


    .cbp-specs__panel dl > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }


    .cbp-applications__visual {
        min-height: 470px;
    }


    .cbp-sizing__grid {

        gap: 38px;
    }


    .cbp-print__grid {

        grid-template-columns:
            1fr;
    }


    .cbp-guide__layout,
    .cbp-faq__layout {

        gap: 32px;
    }


    .cbp-guide__aside,
    .cbp-faq__intro {

        position: static;
    }


    .cbp-guide__aside nav {

        display: flex;

        flex-wrap: wrap;

        gap: 7px;

        padding-top: 12px;
    }


    .cbp-guide__aside nav a {

        padding:
            8px
            10px;

        border:
            1px solid
            var(--cbp-border);

        border-radius: 999px;

        background:
            rgba(255,255,255,.5);
    }


    .cbp-final__panel {

        grid-template-columns:
            1fr;
    }


    .cbp-final__side {

        border-top:
            1px solid
            rgba(255,255,255,.11);

        border-left: 0;
    }

}


/* ==========================================================
   RESPONSIVE — MOBILE
=========================================================== */

@media (max-width: 640px) {

    .cbp-product-page {
        font-size: 16px;
    }


    .cbp-shell {

        width:
            calc(100% - 28px);
    }


    .cbp-breadcrumb {

        padding:
            12px
            0;
    }


    .cbp-breadcrumb li {

        font-size: 12px;
    }


    .cbp-hero {

        padding:
            24px
            0
            45px;
    }


    .cbp-hero__grid {

        gap: 28px;
    }


    .cbp-gallery__stage {

        height:
            min(92vw, 440px);

        border-radius: 16px;
    }


    .cbp-gallery__thumbs {

        display: flex;

        overflow-x: auto;

        padding-bottom: 4px;

        scrollbar-width: none;
    }


    .cbp-gallery__thumbs::-webkit-scrollbar {
        display: none;
    }


    .cbp-gallery__thumb {

        flex:
            0
            0
            76px;

        height: 70px;
    }


    .cbp-hero__content h1 {

        font-size:
            clamp(38px,12vw,50px);
    }


    .cbp-hero__intro {

        font-size: 15px;
    }


    .cbp-hero__benefits p {
        font-size: 14px;
    }


    .cbp-hero__benefits strong {
        font-size: 15px;
    }


    .cbp-quote__head,
    .cbp-quote__form {

        padding:
            19px
            17px;
    }


    .cbp-quote__note {

        margin:
            0
            16px
            16px;
    }


    .cbp-specs,
    .cbp-applications,
    .cbp-sizing,
    .cbp-materials,
    .cbp-print,
    .cbp-guide,
    .cbp-process,
    .cbp-related,
    .cbp-brief,
    .cbp-faq,
    .cbp-final {

        padding:
            46px
            0;
    }


    .cbp-section-head h2,
    .cbp-applications__content h2,
    .cbp-sizing__content h2,
    .cbp-print__heading h2,
    .cbp-guide__aside h2,
    .cbp-brief__intro h2,
    .cbp-faq__intro h2 {

        font-size:
            clamp(30px,9.5vw,40px);
    }


    .cbp-specs__panel dl {

        grid-template-columns:
            1fr;
    }


    .cbp-specs__panel dl > div,
    .cbp-specs__panel dl > div:nth-child(2n),
    .cbp-specs__panel dl > div:nth-child(3n),
    .cbp-specs__panel dl > div:nth-last-child(-n+2),
    .cbp-specs__panel dl > div:nth-last-child(-n+3) {

        border-right: 0;

        border-bottom:
            1px solid
            var(--cbp-border);
    }


    .cbp-specs__panel dl > div:last-child {
        border-bottom: 0;
    }


    .cbp-specs dt {
        font-size: 11px;
    }


    .cbp-specs dd {
        font-size: 15px;
    }


    .cbp-applications__visual {
        min-height: 390px;
    }


    .cbp-application-groups {

        grid-template-columns:
            1fr;
    }


    .cbp-application-groups li {
        font-size: 14px;
    }


    .cbp-sizing__points p,
    .cbp-sizing__points strong {
        font-size: 14px;
    }


    .cbp-dimensions__canvas {
        min-height: 310px;
    }


    .cbp-dimensions__box {

        width: 62%;
        height: 40%;
    }


    /* Materials become mobile specification blocks */

    .cbp-material-table {

        border: 0;

        border-radius: 0;

        background: transparent;
    }


    .cbp-material-table__head {
        display: none;
    }


    .cbp-material-table__row {

        display: grid;

        grid-template-columns:
            1fr;

        margin-bottom: 10px;

        border:
            1px solid
            var(--cbp-border-dark);

        border-radius: 13px;

        overflow: hidden;

        background:
            var(--cbp-white);
    }


    .cbp-material-table__row > *,
    .cbp-material-table__row > *:last-child {

        padding:
            11px
            14px;

        border-right: 0;

        border-bottom:
            1px solid
            var(--cbp-border);
    }


    .cbp-material-table__row > *:last-child {
        border-bottom: 0;
    }


    .cbp-material-table__row strong {
        font-size: 15px;
    }


    .cbp-material-table__row:not(.cbp-material-table__head) > span {
        font-size: 13px;
    }


    .cbp-materials__footer {

        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }


    .cbp-materials__footer a {
        font-size: 13px;
    }


    .cbp-option-list > div {

        grid-template-columns:
            1fr;

        gap: 4px;
    }


    .cbp-option-list strong {
        font-size: 14px;
    }


    .cbp-option-list span {
        font-size: 13px;
    }


    .cbp-print__note {

        grid-template-columns:
            1fr;

        gap: 7px;
    }


    .cbp-print__note p,
    .cbp-print__note strong {
        font-size: 14px;
    }


    .cbp-guide__article h3 {

        font-size:
            clamp(23px,7vw,29px);
    }


    .cbp-guide__article p {
        font-size: 15px;
    }


    .cbp-process__track {

        grid-template-columns:
            1fr;
    }


    .cbp-process__track > div,
    .cbp-process__track > div:nth-child(3),
    .cbp-process__track > div:nth-last-child(-n+2) {

        border-right: 0;

        border-bottom:
            1px solid
            var(--cbp-border);
    }


    .cbp-process__track > div:last-child {
        border-bottom: 0;
    }


    .cbp-process__track > div > span {
        margin-bottom: 13px;
    }


    .cbp-process__track small {
        font-size: 10px;
    }


    .cbp-process__track strong {
        font-size: 16px;
    }


    .cbp-process__track p {
        font-size: 13px;
    }


    .cbp-related__grid {

        display: flex;

        overflow-x: auto;

        gap: 10px;

        padding-bottom: 8px;

        scroll-snap-type:
            x mandatory;

        scrollbar-width: none;
    }


    .cbp-related__grid::-webkit-scrollbar {
        display: none;
    }


    .cbp-related__card {

        flex:
            0
            0
            min(82vw, 310px);

        scroll-snap-align:
            start;
    }


    .cbp-related__card small {
        font-size: 10px;
    }


    .cbp-related__card strong {
        font-size: 16px;
    }


    .cbp-related__card > span {
        font-size: 12px;
    }


    .cbp-brief__checklist {

        grid-template-columns:
            1fr;
    }


    .cbp-brief__checklist > div,
    .cbp-brief__checklist > div:nth-child(2n),
    .cbp-brief__checklist > div:nth-last-child(-n+2) {

        border-right: 0;

        border-bottom:
            1px solid
            var(--cbp-border);
    }


    .cbp-brief__checklist > div:last-child {
        border-bottom: 0;
    }


    .cbp-brief__checklist > div > span {
        font-size: 11px;
    }


    .cbp-brief__checklist strong {
        font-size: 15px;
    }


    .cbp-brief__checklist li {
        font-size: 13px;
    }


    .cbp-brief__resources {

        flex-direction: column;
    }


    .cbp-brief__resources a {

        justify-content:
            space-between;

        width: 100%;

        border-radius: 9px;

        font-size: 13px;
    }


    .cbp-faq summary {

        grid-template-columns:
            35px
            minmax(0,1fr);

        padding:
            17px
            35px
            17px
            0;

        font-size: 15px;
    }


    .cbp-faq details > div {

        padding:
            0
            10px
            18px
            47px;
    }


    .cbp-faq details p {
        font-size: 14px;
    }


    .cbp-final__panel {
        border-radius: 18px;
    }


    .cbp-final__content {

        padding:
            30px
            22px;
    }


    .cbp-final__content h2 {

        font-size:
            clamp(34px,10vw,44px);
    }


    .cbp-final__content > p {
        font-size: 14px;
    }


    .cbp-final__actions {

        align-items: stretch;

        flex-direction: column;
    }


    .cbp-btn {

        width: 100%;

        min-height: 51px;
    }


    .cbp-final__side {

        padding:
            25px
            22px;
    }


    .cbp-final__side strong {
        font-size: 14px;
    }

}


/* ==========================================================
   VERY SMALL DEVICES
=========================================================== */

@media (max-width: 380px) {

    .cbp-shell {
        width:
            calc(100% - 22px);
    }


    .cbp-gallery__label {

        left: 10px;
        top: 10px;

        font-size: 10px;
    }


    .cbp-hero__benefits > div {

        grid-template-columns:
            26px
            minmax(0,1fr);
    }


    .cbp-sizing__points > div {

        grid-template-columns:
            38px
            minmax(0,1fr);
    }


    .cbp-print__column-head {

        grid-template-columns:
            42px
            minmax(0,1fr);

        padding:
            16px;
    }


    .cbp-option-list {
        padding:
            4px
            16px;
    }


    .cbp-faq summary {
        font-size: 14px;
    }

}


/* ==========================================================
   ACCESSIBILITY / MOTION
=========================================================== */

.cbp-gallery__thumb:focus-visible,
.cbp-product-page a:focus-visible,
.cbp-product-page summary:focus-visible {

    outline:
        3px solid
        rgba(201,78,8,.32);

    outline-offset:
        3px;
}


@media (prefers-reduced-motion: reduce) {

    .cbp-product-page *,
    .cbp-product-page *::before,
    .cbp-product-page *::after {

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;
    }

}

.cbp-dynamic-description__content { max-width: 900px; color: #554940; font-size: 16px; line-height: 1.75; }
.cbp-dynamic-description__content > :last-child { margin-bottom: 0; }
