/* ============================================================
   Cubicle Track Configurator
   ============================================================ */

.ct-configurator {
        margin: 24px 0 28px;
        padding: 22px 24px 24px;
        background: #f7f8fa;
        border: 1px solid #e3e6ea;
        border-radius: 8px;
        color: #222;
        font-size: 14px;
}

.ct-configurator .ct-section { margin-bottom: 18px; padding: 0; }
.ct-configurator .ct-section:last-child { margin-bottom: 0; }
/* site-redesign.css defines a homepage `.ct-section { padding: 64px 0 }`
   that would otherwise blow this open. Override with stronger specificity. */
.ct-configurator.ct-configurator .ct-section { padding: 0; }

.ct-label {
        display: block;
        font-weight: 600;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: #555;
        margin-bottom: 10px;
}

/* Layout picker --------------------------------------------- */
.ct-layout-options {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
}
.ct-layout-option { display: block; }
.ct-layout-option input { position: absolute; opacity: 0; pointer-events: none; }
.ct-layout-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 6px 8px;
        background: #fff;
        border: 2px solid #e3e6ea;
        border-radius: 6px;
        cursor: pointer;
        color: #444;
        transition: border-color .15s, color .15s, box-shadow .15s;
        font-weight: 500;
        min-height: 0;
}
.ct-layout-icon { width: 100%; }
.ct-layout-icon svg { width: 100%; height: auto; max-width: 80px; display: block; margin: 0 auto; }
.ct-layout-name { font-size: 13px; font-weight: 700; line-height: 1.2; text-align: center; color: #2c3e50; margin-top: 2px; }
.ct-layout-cap { font-size: 10.5px; line-height: 1.25; text-align: center; color: #8a929b; margin-top: 1px; }
.ct-layout-option:hover .ct-layout-btn { border-color: #b8c1cc; }
.ct-layout-option input:checked + .ct-layout-btn {
        border-color: #1a5276;
        color: #1a5276;
        box-shadow: 0 0 0 3px rgba(26, 82, 118, .12);
}
.ct-layout-desc {
        margin: 10px 2px 0;
        font-size: 12px;
        color: #888;
        font-style: italic;
}

/* Body: diagram + fields ------------------------------------ */
.ct-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        align-items: start;
}
@media (max-width: 720px) {
        .ct-body { grid-template-columns: 1fr; }
}

.ct-diagram-wrap {
        background: #fff;
        border: 1px solid #e3e6ea;
        border-radius: 6px;
        padding: 14px;
        text-align: center;
}
#ct-track-svg { width: 100%; height: auto; max-width: 380px; display: block; margin: 0 auto; }
.ct-diagram-note {
        margin: 8px 0 0;
        font-size: 11px;
        color: #999;
        letter-spacing: .03em;
}

/* Fields --------------------------------------------------- */
.ct-fields { display: flex; flex-direction: column; gap: 10px; }
.ct-field label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 4px;
        color: #333;
}
.ct-side-sub {
        font-weight: 400;
        color: #888;
        margin-left: 6px;
        font-size: 12px;
}
.ct-req { color: #c0392b; font-weight: 700; }
.ct-input-wrap {
        position: relative;
        display: flex;
        align-items: center;
}
.ct-input-wrap input {
        width: 100%;
        padding: 9px 44px 9px 12px;
        border: 1px solid #cdd2d8;
        border-radius: 5px;
        font-size: 15px;
        background: #fff;
        transition: border-color .15s, box-shadow .15s;
}
.ct-input-wrap input:focus {
        border-color: #1a5276;
        box-shadow: 0 0 0 3px rgba(26, 82, 118, .12);
        outline: none;
}
.ct-unit {
        position: absolute;
        right: 12px;
        font-size: 12px;
        color: #888;
        pointer-events: none;
}
.ct-field--colour select {
        width: 100%;
        padding: 9px 12px;
        border: 1px solid #cdd2d8;
        border-radius: 5px;
        font-size: 15px;
        background: #fff;
}
.ct-hint { margin: 4px 0 0; font-size: 11px; color: #888; }

/* Quote card ----------------------------------------------- */
.ct-quote { margin-top: 6px; }
.ct-quote-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        background: #1a5276;
        color: #fff;
        padding: 16px 22px;
        border-radius: 8px;
        flex-wrap: wrap;
}
.ct-quote-main {
        display: flex;
        flex-direction: column;
        gap: 2px;
}
.ct-quote-label {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: #cfd8e3;
}
.ct-quote-price {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.1;
}
.ct-quote-price .amount,
.ct-quote-price .woocommerce-Price-amount { color: #fff; }
.ct-quote-meta {
        font-size: 13px;
        color: #d8e1ec;
        flex: 1 1 220px;
        text-align: right;
        line-height: 1.4;
}
@media (max-width: 540px) {
        .ct-quote-meta { text-align: left; flex-basis: 100%; }
}
.ct-kit-line {
        margin: 12px 2px 0;
        font-size: 13px;
        color: #555;
        line-height: 1.55;
        background: #fff;
        border: 1px solid #e3e6ea;
        border-radius: 6px;
        padding: 10px 14px;
}
.ct-kit-line strong { color: #222; }

/* Shop archive label --------------------------------------- */
.ct-from-price {
        display: inline-block;
        font-weight: 600;
        color: #1a5276;
}

/* ============================================================
   Wide-layout override for the cubicle track product page
   Stack the gallery above the summary so the configurator gets
   the full content width to lay out all 7 layout options + a
   larger diagram + bigger dimension inputs.
   ============================================================ */
@media (min-width: 850px) {
        body.ct-track-product .product-gallery,
        body.ct-track-product .product-info {
                width: 100%;
                max-width: 100%;
                flex: 0 0 100%;
        }
        body.ct-track-product .product-gallery {
                margin-bottom: 24px;
        }
        body.ct-track-product .product-info .product-short-description,
        body.ct-track-product .product-info .product_meta {
                max-width: 720px;
        }
        /* Configurator can now stretch wide — 7 layout buttons across 2 rows (4+3) */
        body.ct-track-product .ct-layout-options {
                grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 860px;
        }
        body.ct-track-product #ct-track-svg {
                max-width: 520px;
        }
        body.ct-track-product .ct-body {
                grid-template-columns: 1.2fr 1fr;
                gap: 32px;
        }
}
@media (max-width: 849px) {
        /* On narrow screens (where it stays in the summary column or on mobile)
           allow the buttons to flow naturally. */
        .ct-layout-options {
                grid-template-columns: repeat(2, minmax(0, 1fr));
        }
}

/* ============================================================
   Lock the main product photo to ONE fixed size.
   Uni CPO (still active on product 940) and the Flickity gallery
   slider both try to re-fit the image when an option / quantity
   changes, which makes the hero photo jump and resize. We pin the
   gallery viewport, slides and images to a fixed box so the photo
   never changes size regardless of what those scripts do.
   ============================================================ */
body.ct-track-product .product-gallery {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
}
body.ct-track-product .woocommerce-product-gallery__wrapper,
body.ct-track-product .woocommerce-product-gallery .flickity-viewport {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
}
body.ct-track-product .woocommerce-product-gallery__image,
body.ct-track-product .woocommerce-product-gallery__image.slide {
        height: 400px !important;
}
body.ct-track-product .woocommerce-product-gallery__image a {
        display: block;
        height: 100% !important;
        width: 100%;
}
body.ct-track-product .woocommerce-product-gallery__image img {
        height: 100% !important;
        width: 100% !important;
        max-height: 400px !important;
        object-fit: cover;
        object-position: center;
}
@media (max-width: 549px) {
        body.ct-track-product .woocommerce-product-gallery__wrapper,
        body.ct-track-product .woocommerce-product-gallery .flickity-viewport,
        body.ct-track-product .woocommerce-product-gallery__image,
        body.ct-track-product .woocommerce-product-gallery__image.slide {
                height: 280px !important;
                min-height: 280px !important;
                max-height: 280px !important;
        }
        body.ct-track-product .woocommerce-product-gallery__image img {
                max-height: 280px !important;
        }
}

/* ============================================================
   Price anchor + CTA above the configurator
   ============================================================ */
.ct-price-anchor {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 22px;
        margin: 0 0 26px;
        padding: 20px 24px;
        background: #0e2747;
        color: #fff;
        border-radius: 10px;
}
.ct-price-anchor__price {
        display: flex;
        align-items: baseline;
        gap: 8px;
        line-height: 1;
        white-space: nowrap;
}
.ct-price-anchor__from {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        opacity: 0.8;
}
.ct-price-anchor__amount,
.ct-price-anchor__amount .amount,
.ct-price-anchor__amount .woocommerce-Price-amount {
        font-size: 36px;
        font-weight: 800;
        color: #fff;
}
.ct-price-anchor__vat {
        font-size: 13px;
        opacity: 0.7;
}
.ct-price-anchor__copy {
        flex: 1 1 260px;
        display: flex;
        flex-direction: column;
        gap: 10px;
}
.ct-price-anchor .ct-price-anchor__lead {
        margin: 0;
        font-size: 15px;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.92);
}
.ct-price-anchor__cta {
        align-self: flex-start;
        background: #c0392b;
        color: #fff !important;
        font-weight: 700;
        font-size: 14px;
        padding: 11px 20px;
        border-radius: 6px;
        text-decoration: none;
        transition: background 0.15s ease;
}
.ct-price-anchor__cta:hover,
.ct-price-anchor__cta:focus {
        background: #a93226;
        color: #fff !important;
}
@media (max-width: 549px) {
        .ct-price-anchor {
                padding: 16px 18px;
                gap: 14px;
        }
        .ct-price-anchor__amount,
        .ct-price-anchor__amount .amount,
        .ct-price-anchor__amount .woocommerce-Price-amount {
                font-size: 30px;
        }
}

/* ============================================================
   Curtain configurator — section heads with icons + tooltips
   ============================================================ */
.ct-configurator--curtain .ct-section { margin-bottom: 18px; }

.ct-section-head {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
}
.ct-section-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 6px;
        background: #eef3f8;
        color: #1a5276;
        flex: 0 0 auto;
}
.ct-section-icon svg { width: 17px; height: 17px; display: block; }
.ct-section-title {
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: #222;
}
.ct-section-head--sm .ct-section-icon { width: 24px; height: 24px; }
.ct-section-head--sm .ct-section-icon svg { width: 14px; height: 14px; }
.ct-section-head--sm .ct-section-title { font-size: 12px; }

/* Info tooltip (CSS-only, hover + focus) ---------------------- */
.ct-tip {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        color: #7a8694;
        cursor: help;
        outline: none;
        margin-left: 2px;
}
.ct-tip svg { width: 16px; height: 16px; display: block; }
.ct-tip:hover, .ct-tip:focus { color: #1a5276; }
.ct-tip__bubble {
        position: absolute;
        bottom: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%) translateY(4px);
        width: 260px;
        max-width: 78vw;
        padding: 10px 12px;
        background: #1a2330;
        color: #fff;
        font-size: 12px;
        line-height: 1.45;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0;
        border-radius: 6px;
        box-shadow: 0 6px 18px rgba(0,0,0,.18);
        opacity: 0;
        pointer-events: none;
        transition: opacity .12s ease, transform .12s ease;
        z-index: 50;
}
.ct-tip__bubble::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-top-color: #1a2330;
}
.ct-tip__bubble strong { color: #fff; }
.ct-tip:hover .ct-tip__bubble,
.ct-tip:focus .ct-tip__bubble {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
}
/* Near the right edge of the form, anchor the bubble to the right
   so it doesn't get clipped. */
.ct-option-block:last-child .ct-tip__bubble {
        left: auto;
        right: 0;
        transform: translateY(4px);
}
.ct-option-block:last-child .ct-tip:hover .ct-tip__bubble,
.ct-option-block:last-child .ct-tip:focus .ct-tip__bubble {
        transform: translateY(0);
}
.ct-option-block:last-child .ct-tip__bubble::after {
        left: auto;
        right: 4px;
        transform: none;
}

/* Condensed two-column size inputs */
.ct-fields--two {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        max-width: 520px;
}

/* Five-feature strip under the product title */
.ct-product-features {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 6px;
        list-style: none;
        margin: 8px 0 18px;
        padding: 12px 8px;
        background: #f7f8fa;
        border: 1px solid #e3e6ea;
        border-radius: 8px;
}
.ct-product-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 6px 4px;
        margin: 0;
        list-style: none;
}
.ct-product-feature__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #e3e6ea;
        color: #1a5276;
}
.ct-product-feature__icon svg { width: 20px; height: 20px; display: block; }
.ct-product-feature__label {
        font-size: 11.5px;
        line-height: 1.3;
        font-weight: 600;
        color: #1a2330;
}
.ct-product-feature__label span {
        display: block;
        font-weight: 400;
        color: #5b6470;
        font-size: 10.5px;
        margin-top: 2px;
}
@media (max-width: 600px) {
        .ct-product-features {
                grid-template-columns: repeat(5, minmax(0, 1fr));
                gap: 2px;
                padding: 10px 4px;
        }
        .ct-product-feature__icon { width: 30px; height: 30px; }
        .ct-product-feature__icon svg { width: 16px; height: 16px; }
        .ct-product-feature__label { font-size: 10px; }
        .ct-product-feature__label span { font-size: 9.5px; }
}

/* Row-based options stack (header / tiebacks / colour) — each row is a clear
   horizontal band: icon + title + helper text on the left, controls on the right. */
.ct-options-stack {
        background: #fff;
        border: 1px solid #e3e6ea;
        border-radius: 8px;
        overflow: hidden;
}
.ct-option-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
        align-items: center;
        gap: 24px;
        padding: 18px 20px;
        border-bottom: 1px solid #eef0f3;
}
.ct-option-row:last-child { border-bottom: 0; }
/* Controls render first in DOM order but visually we want them on the left
   and the info (title + helper) on the right. */
.ct-option-row .ct-option-control { order: 1; grid-column: 1; }
.ct-option-row .ct-option-info    { order: 2; grid-column: 2; }
.ct-option-info .ct-section-head { margin-bottom: 6px; }
.ct-option-help {
        margin: 0;
        font-size: 12.5px;
        line-height: 1.5;
        color: #5b6470;
}
.ct-option-help strong { color: #1a2330; font-weight: 600; }
.ct-option-control { min-width: 0; }

.ct-layout-options--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ct-layout-options--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ct-options-stack .ct-layout-btn {
        min-height: 52px;
        padding: 12px 10px;
        font-size: 13px;
}
.ct-options-stack .ct-layout-name { font-size: 13px; font-weight: 600; }
.ct-options-stack .ct-field--colour select {
        display: block;
        box-sizing: border-box;
        width: 100%;
        height: 48px;
        line-height: 1.2;
        padding: 0 38px 0 14px;
        margin: 0;
        border: 1.5px solid #cdd2d8;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        color: #1a2330;
        background-color: #fff;
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23555' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
}
.ct-options-stack .ct-field--colour select:focus {
        outline: none;
        border-color: #1a5276;
        box-shadow: 0 0 0 3px rgba(26,82,118,.12);
}

@media (max-width: 720px) {
        .ct-fields--two { grid-template-columns: 1fr 1fr; gap: 10px; }
        .ct-option-row {
                grid-template-columns: 1fr;
                gap: 12px;
                padding: 16px;
        }
        /* In single-column mode the explicit grid-column refs from the
           desktop layout collide with the icon row, so reset them. */
        .ct-option-row .ct-option-info,
        .ct-option-row .ct-option-control { grid-column: auto; }
        .ct-tip__bubble { width: 220px; }
        /* On mobile, anchor every bubble to the left edge of its trigger so it
           never gets clipped by the right of the screen. */
        .ct-tip__bubble {
                left: 0;
                right: auto;
                transform: translateY(4px);
        }
        .ct-tip:hover .ct-tip__bubble,
        .ct-tip:focus .ct-tip__bubble { transform: translateY(0); }
        .ct-tip__bubble::after { left: 10px; right: auto; transform: none; }
}

/* =========================================================================
 * Curtain product page (3313) — CRO additions:
 * swatches, header diagrams, downloads, delivery strip, quote CTA,
 * cross-sell, trust band, FAQ, sticky mobile bar.
 * ========================================================================= */

/* Empty state for the price area before size is entered. */
.ct-quote-empty {
        font-size: 18px;
        font-weight: 600;
        color: #1a2330;
        letter-spacing: -.01em;
}

/* ---------- Header style diagrams -------- */
.ct-header-option .ct-layout-btn {
        flex-direction: column;
        gap: 8px;
        min-height: 92px;
        padding: 14px 10px 12px;
}
.ct-header-diagram {
        display: block;
        width: 64px;
        height: 36px;
        color: #1a2330;
        opacity: .85;
}
.ct-header-svg { width: 100%; height: 100%; display: block; }
.ct-header-option input:checked + .ct-layout-btn .ct-header-diagram { color: #b32d2e; opacity: 1; }

/* ---------- Colour swatch picker ---------- */
.ct-swatch-picker { width: 100%; }
.ct-swatches {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
        gap: 10px;
}
.ct-swatch {
        all: unset;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 6px 4px 8px;
        border: 2px solid transparent;
        border-radius: 8px;
        transition: border-color .15s, background .15s, transform .12s;
        box-sizing: border-box;
}
.ct-swatch:hover { background: #f4f6f8; }
.ct-swatch:focus-visible { outline: 2px solid #1a5276; outline-offset: 2px; }
.ct-swatch.is-selected {
        border-color: #b32d2e;
        background: rgba(179,45,46,.06);
}
.ct-swatch-chip {
        display: block;
        width: 48px;
        height: 48px;
        border-radius: 6px;
        border: 1px solid rgba(0,0,0,.12);
        background-size: cover;
        background-position: center;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 1px 2px rgba(0,0,0,.08);
}
.ct-swatch.is-selected .ct-swatch-chip {
        box-shadow: 0 0 0 2px #fff, 0 0 0 4px #b32d2e;
}
.ct-swatch-name {
        font-size: 11.5px;
        font-weight: 600;
        color: #1a2330;
        text-align: center;
        line-height: 1.2;
}
.ct-swatch-current { font-weight: 700; color: #b32d2e; }

/* ---------- Delivery + lead-time strip ---------- */
.ct-delivery-strip {
        list-style: none;
        margin: 14px 0 0;
        padding: 12px 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 14px 20px;
        background: #f7f9fb;
        border: 1px solid #e3e6ea;
        border-radius: 8px;
        font-size: 13px;
        color: #1a2330;
}
.ct-delivery-strip li {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0;
}
.ct-delivery-strip svg {
        width: 18px; height: 18px;
        color: #1a5276;
        flex-shrink: 0;
}

/* ---------- Compliance / spec downloads ---------- */
.ct-downloads {
        margin: 18px 0 0;
        padding: 14px 16px;
        background: #fff;
        border: 1px solid #e3e6ea;
        border-left: 4px solid #1a5276;
        border-radius: 6px;
}
.ct-downloads__head { font-size: 14px; color: #1a2330; }
.ct-downloads__head strong { display: inline-block; margin-right: 8px; }
.ct-downloads__note { font-size: 12px; color: #5b6470; }
.ct-downloads__note a { color: #1a5276; }
.ct-downloads__list {
        list-style: none;
        margin: 10px 0 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 8px 14px;
}
.ct-download-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: #1a5276;
        padding: 6px 12px;
        background: #f0f4f8;
        border-radius: 999px;
        border: 1px solid #d6dee6;
        text-decoration: none;
        transition: background .15s, border-color .15s;
}
.ct-download-link:hover { background: #e4ebf2; border-color: #b6c4d2; color: #102e44; }
.ct-download-link svg { width: 14px; height: 14px; }

/* ---------- Bulk-pricing nudge above qty ---------- */
.ct-bulk-nudge {
        margin: 16px 0 6px;
        padding: 10px 14px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        background: #fffaf0;
        border: 1px solid #f0d8a8;
        border-radius: 6px;
        font-size: 13px;
        color: #5a4a20;
}
.ct-bulk-nudge svg { width: 18px; height: 18px; color: #b32d2e; flex-shrink: 0; margin-top: 1px; }
.ct-bulk-nudge a { color: #b32d2e; font-weight: 700; text-decoration: underline; }

/* ---------- Quote / PO CTA + cross-sell ---------- */
.ct-cta-row { margin: 10px 0 0; }
.ct-cta-quote {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: #1a2330;
        color: #fff;
        border-radius: 6px;
        font-size: 14px;
        line-height: 1.3;
        text-decoration: none;
        transition: background .15s;
}
.ct-cta-quote:hover { background: #b32d2e; color: #fff; }
.ct-cta-quote strong { display: block; font-size: 14px; font-weight: 700; }
.ct-cta-quote svg { width: 22px; height: 22px; flex-shrink: 0; opacity: .9; }

.ct-cross-sell {
        margin: 14px 0 0;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        gap: 14px;
        background: #fff;
        border: 1px dashed #b6c4d2;
        border-radius: 6px;
        font-size: 13.5px;
        line-height: 1.45;
        color: #1a2330;
}
.ct-cross-sell__icon svg { width: 64px; height: 32px; color: #1a5276; display: block; }
.ct-cross-sell strong { display: block; color: #1a2330; }
.ct-cross-sell__link {
        display: inline-block;
        margin-top: 4px;
        color: #b32d2e;
        font-weight: 700;
        text-decoration: none;
}
.ct-cross-sell__link:hover { text-decoration: underline; }

/* ---------- Trust band (above description tab) ---------- */
.ct-trust-band {
        margin: 36px 0 26px;
        padding: 30px 24px;
        background: #f7f9fb;
        border-radius: 10px;
        border: 1px solid #e3e6ea;
}
.ct-trust-band__heading {
        margin: 0 0 18px;
        font-size: 22px;
        font-weight: 700;
        color: #1a2330;
        text-align: center;
        letter-spacing: -.01em;
}
.ct-logo-row {
        list-style: none;
        margin: 0 0 28px;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 14px;
}
.ct-logo-slot {
        position: relative;
        background: #fff;
        border: 1px solid #e3e6ea;
        border-radius: 6px;
        aspect-ratio: 3 / 2;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
}
.ct-logo-slot__inner {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
}
.ct-logo-slot img {
        max-width: 80%;
        max-height: 60%;
        display: block;
        object-fit: contain;
        filter: grayscale(.4);
        opacity: .85;
        position: relative;
        z-index: 2;
}
.ct-logo-slot__placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 11px;
        color: #8993a3;
        line-height: 1.3;
        padding: 6px;
        z-index: 1;
}
.ct-logo-slot.is-empty .ct-logo-slot__placeholder { color: #5b6470; }

.ct-testimonial-row {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
}
.ct-testimonial {
        background: #fff;
        border: 1px solid #e3e6ea;
        border-left: 3px solid #b32d2e;
        border-radius: 6px;
        padding: 16px 18px;
        font-size: 13.5px;
        line-height: 1.55;
        color: #1a2330;
}
.ct-testimonial blockquote { margin: 0 0 8px; font-style: italic; }
.ct-testimonial cite {
        display: block;
        font-style: normal;
        font-size: 12px;
        color: #5b6470;
}
.ct-testimonial cite strong { color: #1a2330; }

/* ---------- FAQ accordion ---------- */
.ct-faq {
        margin: 28px 0 0;
        padding: 22px 22px 8px;
        background: #fff;
        border: 1px solid #e3e6ea;
        border-radius: 8px;
}
.ct-faq__heading {
        margin: 0 0 12px;
        font-size: 18px;
        font-weight: 700;
        color: #1a2330;
        letter-spacing: -.01em;
}
.ct-faq__row {
        border-top: 1px solid #eef0f3;
        padding: 12px 0;
}
.ct-faq__row:first-of-type { border-top: 0; }
.ct-faq__row summary {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        font-size: 14.5px;
        font-weight: 600;
        color: #1a2330;
        list-style: none;
        padding: 4px 0;
}
.ct-faq__row summary::-webkit-details-marker { display: none; }
.ct-faq__chev {
        font-size: 22px;
        color: #1a5276;
        transition: transform .2s;
        line-height: 1;
        width: 22px;
        text-align: center;
        flex-shrink: 0;
}
.ct-faq__row[open] .ct-faq__chev { transform: rotate(45deg); }
.ct-faq__a {
        margin-top: 8px;
        padding: 6px 0 4px;
        font-size: 13.5px;
        line-height: 1.6;
        color: #4b5563;
}
.ct-faq__a strong { color: #1a2330; }
.ct-faq__a a { color: #b32d2e; font-weight: 600; }

/* ---------- Mobile sticky buy bar ---------- */
.cc-sticky-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        display: none;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 14px;
        background: #1a2330;
        color: #fff;
        box-shadow: 0 -4px 16px rgba(0,0,0,.18);
        transform: translateY(110%);
        transition: transform .25s ease;
}
.cc-sticky-bar.is-visible {
        display: flex;
        transform: translateY(0);
}
.cc-sticky-bar__price { display: flex; flex-direction: column; line-height: 1.1; }
.cc-sticky-bar__label { font-size: 11px; opacity: .75; text-transform: uppercase; letter-spacing: .04em; }
.cc-sticky-bar__amount { font-size: 18px; font-weight: 700; }
.cc-sticky-bar .cc-sticky-cta {
        background: #b32d2e;
        color: #fff;
        border: 0;
        border-radius: 4px;
        padding: 10px 18px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: .04em;
}
.cc-sticky-bar .cc-sticky-cta:hover { background: #d8362c; }

@media (max-width: 720px) {
        .ct-cta-quote { font-size: 13.5px; padding: 11px 14px; }
        .ct-cross-sell { flex-direction: column; align-items: flex-start; }
        .ct-cross-sell__icon svg { width: 56px; }
        .ct-logo-row { grid-template-columns: repeat(3, 1fr); }
        .ct-testimonial-row { grid-template-columns: 1fr; }
        .ct-trust-band { padding: 22px 16px; }
        .ct-trust-band__heading { font-size: 18px; }
        .cc-curtain-product .product-footer,
        .cc-curtain-product .footer-wrapper { padding-bottom: 80px; }
}

/* Curtain-page payment/returns ribbon — make it visually distinct from the
 * generic top-of-site USP strip so it doesn't read as a duplicate. */
.ct-product-trust--curtain {
        background: #fff;
        border: 1px solid #e3e6ea;
        border-radius: 8px;
        padding: 12px 16px;
}
.ct-product-trust--curtain li { color: #1a2330; font-size: 13px; }
.ct-product-trust--curtain li strong { color: #b32d2e; }

/* ---- Curtain colour dropdown (replaces the old tile grid) -------------- */
.ct-swatch-dropdown { position: relative; width: 100%; }
.ct-swatch-toggle {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        min-height: 48px;
        padding: 6px 14px 6px 8px;
        background: #fff;
        border: 1.5px solid #cdd2d8;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        color: #1a2330;
        text-align: left;
        transition: border-color .15s, box-shadow .15s;
        box-sizing: border-box;
}
.ct-swatch-toggle:hover { border-color: #1a5276; }
.ct-swatch-dropdown[data-open="true"] .ct-swatch-toggle,
.ct-swatch-toggle:focus-visible {
        outline: none;
        border-color: #1a5276;
        box-shadow: 0 0 0 3px rgba(26,82,118,.12);
}
.ct-swatch-toggle__chip {
        width: 32px; height: 32px;
        border-radius: 4px;
        flex-shrink: 0;
}
.ct-swatch-toggle__name { flex: 1; min-width: 0; }
.ct-swatch-toggle__caret {
        display: inline-flex;
        color: #5b6470;
        transition: transform .15s;
        flex-shrink: 0;
}
.ct-swatch-dropdown[data-open="true"] .ct-swatch-toggle__caret { transform: rotate(180deg); }

.ct-swatch-menu {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        z-index: 30;
        background: #fff;
        border: 1px solid #cdd2d8;
        border-radius: 6px;
        box-shadow: 0 10px 24px rgba(0,0,0,.12);
        padding: 4px;
        max-height: 320px;
        overflow-y: auto;
        display: none;
}
.ct-swatch-dropdown[data-open="true"] .ct-swatch-menu { display: block; }
.ct-swatch--row {
        all: unset;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 8px 10px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        color: #1a2330;
        box-sizing: border-box;
}
.ct-swatch--row:hover { background: #f4f6f8; }
.ct-swatch--row:focus-visible { outline: 2px solid #1a5276; outline-offset: -2px; }
.ct-swatch--row.is-selected { background: rgba(179,45,46,.06); color: #b32d2e; font-weight: 600; }
.ct-swatch--row .ct-swatch-chip {
        width: 28px; height: 28px;
        border-radius: 4px;
        flex-shrink: 0;
}
.ct-swatch--row .ct-swatch-name {
        flex: 1;
        text-align: left;
        font-size: 14px;
        color: inherit;
}
.ct-swatch-tick {
        opacity: 0;
        color: #b32d2e;
        font-size: 16px;
        font-weight: 700;
}
.ct-swatch--row.is-selected .ct-swatch-tick { opacity: 1; }

/* ---- Delivery strip clarifier --------------------------------------- */
.ct-delivery-ex {
        font-style: normal;
        font-weight: 500;
        color: #5b6470;
        font-size: 12px;
        margin-left: 2px;
}

/* ---- "Each curtain includes" — pushed below Add-to-cart ------------- */
.ct-kit-line {
        margin: 14px 0 0;
        padding: 10px 14px;
        background: #f7f9fb;
        border: 1px solid #e3e6ea;
        border-radius: 6px;
        font-size: 13px;
        line-height: 1.5;
        color: #5b6470;
}
.ct-kit-line strong { color: #1a2330; }

/* ---- Payment-method badge strip (below Add-to-cart) ----------------- */
.ct-payments {
        list-style: none;
        margin: 12px 0 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
}
.ct-payments li { margin: 0; }
.ct-pay-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 56px;
        height: 30px;
        padding: 0 10px;
        font-family: -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .02em;
        background: #fff;
        border: 1px solid #d6dee6;
        border-radius: 4px;
        color: #1a2330;
        line-height: 1;
}
.ct-pay-badge--visa  { color: #1a1f71; font-style: italic; font-size: 14px; letter-spacing: .04em; }
.ct-pay-badge--mc    { color: #1a2330; padding: 0 8px; flex-direction: column; gap: 0; }
.ct-pay-badge--mc span { font-size: 9.5px; font-weight: 700; line-height: 1.05; }
.ct-pay-badge--mc::before {
        content: "";
        width: 14px; height: 14px;
        margin-right: 6px;
        background: radial-gradient(circle at 35% 50%, #eb001b 50%, transparent 50.1%),
                    radial-gradient(circle at 65% 50%, #f79e1b 50%, transparent 50.1%);
        background-blend-mode: multiply;
        border-radius: 50%;
        flex-shrink: 0;
}
.ct-pay-badge--amex  { background: #2e77bb; color: #fff; border-color: #2e77bb; letter-spacing: .06em; }
.ct-pay-badge--paypal { color: #003087; font-size: 13px; }
.ct-pay-badge--paypal em { color: #009cde; font-style: normal; font-weight: 800; }
.ct-pay-badge--text  { background: #f4f6f8; color: #1a2330; }

@media (max-width: 720px) {
        .ct-pay-badge { min-width: 48px; height: 28px; font-size: 11px; padding: 0 8px; }
        .ct-pay-badge--visa { font-size: 13px; }
        .ct-pay-badge--mc span { font-size: 8.5px; }
}

/* ---- Buyer-details block in Description tab ------------------------- */
.ct-buyer-details {
        margin: 0 0 28px;
        padding: 0;
}
.ct-buyer-details .ct-kit-line { margin-top: 0; }
.ct-buyer-details .ct-cta-row { margin-top: 14px; }
.ct-buyer-details .ct-downloads { margin-top: 16px; }
.ct-product-trust--inline {
        margin-top: 18px;
        padding: 14px 16px;
        background: #f7f9fb;
        border: 1px solid #e3e6ea;
        border-left: 4px solid #c8102e;
        border-radius: 6px;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 24px;
}
.ct-product-trust--inline li {
        margin: 0;
        padding: 0 0 0 22px;
        position: relative;
        font-size: 13px;
        line-height: 1.45;
        color: #1a2330;
}
.ct-product-trust--inline li::before {
        content: "";
        position: absolute;
        left: 0; top: 4px;
        width: 12px; height: 12px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #1f7a3a;
}
@media (max-width: 600px) {
        .ct-product-trust--inline { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------
 * Surfaced "Bespoke quote" CTA bar (sits above the product tabs on #940)
 * ------------------------------------------------------------------------- */
.ct-bespoke-cta-bar {
        margin: 28px 0 8px;
}
.ct-bespoke-cta-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 16px 24px;
        background: #0b2545;
        background: var(--ct-navy, #0b2545);
        color: #fff;
        border-radius: 10px;
        padding: 20px 26px;
}
.ct-bespoke-cta-copy { display: flex; flex-direction: column; gap: 3px; }
.ct-bespoke-cta-copy strong { font-size: 1.05em; line-height: 1.25; }
.ct-bespoke-cta-copy span { opacity: .85; font-size: .92em; }
.ct-bespoke-cta-btn.button {
        margin: 0;
        flex: 0 0 auto;
        background: #c8102e;
        background: var(--ct-accent, #c8102e);
        border-color: transparent;
        color: #fff;
        font-weight: 600;
        white-space: nowrap;
}
.ct-bespoke-cta-btn.button:hover {
        background: #99081f;
        background: var(--ct-accent-dark, #99081f);
}
@media (max-width: 600px) {
        .ct-bespoke-cta-inner { flex-direction: column; align-items: flex-start; }
        .ct-bespoke-cta-btn.button { width: 100%; text-align: center; }
}

/* ---------------------------------------------------------------------------
 * "Configure your track" scroll-to CTA — top of the product summary column
 * on the track product page (#940). Full-width on mobile.
 * ------------------------------------------------------------------------- */
.ct-scroll-cta-wrap {
        margin: 0 0 20px;
}
a.ct-scroll-cta.button {
        display: block;
        width: 100%;
        text-align: center;
        background: #c8102e;
        background: var(--ct-accent, #c8102e);
        border: none;
        color: #fff;
        font-weight: 700;
        font-size: 1.04em;
        padding: 13px 28px;
        border-radius: 6px;
        letter-spacing: .25px;
        transition: background .18s;
        box-sizing: border-box;
}
a.ct-scroll-cta.button:hover,
a.ct-scroll-cta.button:focus {
        background: #a50d23;
        background: var(--ct-accent-dark, #a50d23);
        color: #fff;
}

/* ==========================================================================
   Indicative pricing guide — between price anchor and shape picker
   ========================================================================== */

.ct-price-guide {
        list-style: none;
        margin: 18px 0 0;
        padding: 12px 16px;
        background: #f5f7fa;
        border-left: 3px solid #c8102e;
        border-left-color: var(--ct-accent, #c8102e);
        border-radius: 0 4px 4px 0;
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 4px 24px;
        font-size: .86em;
        color: #333;
}
.ct-price-guide li {
        display: flex;
        align-items: baseline;
        gap: 6px;
}
.ct-price-guide__hd {
        width: 100%;
        font-weight: 700;
        color: #555;
        font-size: .82em;
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 2px;
}
.ct-price-guide__val {
        font-weight: 700;
        color: #c8102e;
        color: var(--ct-accent, #c8102e);
        white-space: nowrap;
}
.ct-price-guide__more {
        width: 100%;
        border-top: 1px solid #dde2ea;
        padding-top: 7px;
        margin-top: 4px;
        color: #555;
}
.ct-price-guide__more a {
        color: #c8102e;
        color: var(--ct-accent, #c8102e);
        font-weight: 600;
        text-decoration: none;
}
.ct-price-guide__more a:hover { text-decoration: underline; }

@media (max-width: 549px) {
        .ct-price-guide { flex-direction: column; gap: 7px; }
}

/* ==========================================================================
   Near-cart signals — urgency text, secondary CTA, installation upsell
   ========================================================================== */

.ct-near-cart {
        margin: 16px 0 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
}
.ct-urgency {
        margin: 0;
        font-size: .88em;
        color: #1f5c1f;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 7px;
        line-height: 1.35;
}
.ct-urgency svg { flex-shrink: 0; }
.ct-quote-prompt {
        margin: 0;
        font-size: .875em;
        color: #444;
        line-height: 1.3;
}
a.button.ct-quote-cta-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 11px 22px;
        font-size: .92em;
        font-weight: 700;
        background: transparent;
        border: 2px solid #c8102e;
        border-color: var(--ct-accent, #c8102e);
        color: #c8102e;
        color: var(--ct-accent, #c8102e);
        border-radius: 5px;
        line-height: 1.3;
        text-decoration: none;
        transition: background .15s, color .15s;
        box-sizing: border-box;
}
a.button.ct-quote-cta-btn:hover,
a.button.ct-quote-cta-btn:focus {
        background: #c8102e;
        background: var(--ct-accent, #c8102e);
        color: #fff;
}
.ct-installation-cta {
        margin: 0;
        font-size: .84em;
        color: #555;
        line-height: 1.4;
        padding-top: 4px;
        border-top: 1px solid #eaedf1;
}
.ct-installation-cta a {
        color: #c8102e;
        color: var(--ct-accent, #c8102e);
        font-weight: 600;
        text-decoration: none;
}
.ct-installation-cta a:hover { text-decoration: underline; }

/* ==========================================================================
   Video section — between bespoke CTA (priority 6) and FAQ (priority 25)
   ========================================================================== */

.ct-video-section {
        background: #f8f9fb;
        padding: 52px 0;
        border-top: 1px solid #eaedf1;
        border-bottom: 1px solid #eaedf1;
}
.ct-video-section .ct-h2 {
        margin-bottom: 28px;
}
.ct-video-embed {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 28px rgba(0,0,0,.13);
}
.ct-video-embed iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
}

/* ==========================================================================
   Trust micro-badges — under H1, above short description
   ========================================================================== */

.ct-trust-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin: 10px 0 14px;
}
.ct-trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #f0f7f2;
        border: 1px solid #b8dfc4;
        color: #1a5c2a;
        font-size: .78em;
        font-weight: 600;
        padding: 4px 9px;
        border-radius: 20px;
        white-space: nowrap;
        line-height: 1.3;
}
.ct-trust-badge svg { flex-shrink: 0; }

/* ==========================================================================
   Sticky bottom CTA bar — mobile only
   ========================================================================== */

.ct-sticky-bar {
        display: none; /* shown via media query below */
}

@media (max-width: 849px) {
        /* Space so page content doesn't hide behind the bar */
        body.ct-track-product {
                padding-bottom: 74px;
        }

        .ct-sticky-bar {
                display: block;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 9999;
                background: #fff;
                border-top: 2px solid #eaedf1;
                box-shadow: 0 -4px 18px rgba(0,0,0,.12);
                transition: transform .25s ease, opacity .25s ease;
                will-change: transform;
                /* Start visible */
                transform: translateY(0);
                opacity: 1;
        }
        .ct-sticky-bar--hidden {
                transform: translateY(100%);
                opacity: 0;
                pointer-events: none;
        }
        .ct-sticky-bar__inner {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                padding: 10px 16px;
                max-width: 100%;
        }
        .ct-sticky-bar__price {
                display: flex;
                flex-direction: column;
                line-height: 1.2;
                min-width: 0;
        }
        .ct-sticky-bar__from {
                font-size: .72em;
                color: #888;
                text-transform: uppercase;
                letter-spacing: .4px;
        }
        .ct-sticky-bar__amount {
                font-size: 1.35em;
                font-weight: 800;
                color: #1a1a1a;
                white-space: nowrap;
        }
        .ct-sticky-bar__vat {
                font-size: .7em;
                color: #888;
        }
        .ct-sticky-bar__btn {
                flex: 0 0 auto;
                background: #c8102e;
                background: var(--ct-accent, #c8102e);
                color: #fff;
                border: none;
                border-radius: 7px;
                padding: 13px 22px;
                font-size: .97em;
                font-weight: 700;
                cursor: pointer;
                white-space: nowrap;
                letter-spacing: .2px;
                transition: background .15s;
                -webkit-tap-highlight-color: transparent;
        }
        .ct-sticky-bar__btn:active {
                background: #9c0b23;
        }
}

/* ==========================================================================
   Mobile product page layout polish
   ========================================================================== */

@media (max-width: 849px) {
        /* Hide prev/next product navigation arrows — waste of space on mobile */
        .next-prev-thumbs,
        .product-nav {
                display: none !important;
        }

        /* Breadcrumb: smaller on mobile */
        .product-page-title .woocommerce-breadcrumb {
                font-size: .75em;
        }

        /* Tighter page title area */
        .product-page-title .page-title-inner {
                padding-top: 6px !important;
                padding-bottom: 6px !important;
        }

        /* Product H1: tighter margin below */
        .ct-track-product .product_title {
                margin-bottom: 8px !important;
                font-size: 1.45em !important;
                line-height: 1.25 !important;
        }

        /* Trust badges: full-width wrap on very small screens */
        .ct-trust-badges {
                margin: 8px 0 12px;
        }

        /* Configure CTA button: tighter margins on mobile */
        .ct-scroll-cta-wrap {
                margin: 0 0 14px;
        }

        /* Short description: tighter on mobile */
        .product-short-description {
                font-size: .92em;
                line-height: 1.55;
        }
        .product-short-description p {
                margin-bottom: .75em;
        }

        /* Price anchor: stack vertically on mobile */
        .ct-price-anchor {
                flex-direction: column;
                gap: 6px;
        }

        /* Configurator section: less padding on mobile */
        .ct-section {
                padding: 16px 0 4px;
        }
}

@media (max-width: 549px) {
        /* On very small phones: slightly smaller H1 */
        .ct-track-product .product_title {
                font-size: 1.28em !important;
        }

        /* Trust badges: allow wrapping to 2 columns */
        .ct-trust-badge {
                font-size: .76em;
        }
}

/* ==========================================================================
   Dispatch / delivery banner — above H1 on product page
   ========================================================================== */

.ct-dispatch-banner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px 10px;
        background: #edf7f0;
        border: 1px solid #b3dfc0;
        border-radius: 5px;
        padding: 7px 12px;
        margin-bottom: 12px;
        font-size: .82em;
        font-weight: 600;
        color: #1a5c2a;
        line-height: 1.35;
}
.ct-dispatch-banner__item {
        display: inline-flex;
        align-items: center;
        gap: 5px;
}
.ct-dispatch-banner__sep {
        color: #8cc49a;
        font-size: .9em;
}
@media (max-width: 549px) {
        .ct-dispatch-banner__sep { display: none; }
        .ct-dispatch-banner { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ==========================================================================
   Benefit bullets — replaces dense short description paragraphs
   ========================================================================== */

.ct-benefit-bullets {
        list-style: none;
        margin: 0 0 6px;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 9px;
}
.ct-benefit-bullets li {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        font-size: .93em;
        line-height: 1.4;
        color: #222;
}
.ct-benefit-bullets li svg {
        flex-shrink: 0;
        margin-top: 2px;
}
.ct-benefit-bullets li span {
        flex: 1;
}

/* ==========================================================================
   Social proof line — below trust badges
   ========================================================================== */

.ct-social-proof {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .82em;
        color: #444;
        margin: 0 0 16px;
        line-height: 1.35;
}
.ct-social-proof svg { flex-shrink: 0; }

/* ==========================================================================
   Mobile: hide large diagram (layout-picker icons already give shape context)
   ========================================================================== */
@media (max-width: 720px) {
        .ct-diagram-wrap { display: none !important; }
}

/* ==========================================================================
   Mobile: compress price anchor — hide lead paragraph, fix flex sizing
   ========================================================================== */
@media (max-width: 849px) {
        .ct-price-anchor {
                padding: 11px 14px !important;
                gap: 10px !important;
                align-items: flex-start !important;
        }
        .ct-price-anchor .ct-price-anchor__lead {
                display: none !important;
        }
        /* Without this, flex: 1 1 260px keeps 260px of empty vertical space
           when the lead paragraph is hidden in a column-direction flex parent. */
        .ct-price-anchor__copy {
                flex: 0 0 auto !important;
                gap: 6px !important;
        }
        .ct-price-anchor__cta {
                padding: 9px 16px !important;
                font-size: 13px !important;
        }
        .ct-price-anchor__amount,
        .ct-price-anchor__amount .amount,
        .ct-price-anchor__amount .woocommerce-Price-amount {
                font-size: 26px !important;
        }
}

/* ── Static pencil-pleat header display (replaces 2-option radio) ───────── */
.ct-header-static {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        border: 1.5px solid #dae3ec;
        border-radius: 8px;
        background: #f8fafc;
        width: 100%;
        box-sizing: border-box;
}
.ct-header-diagram--static {
        opacity: 0.9;
        color: #b32d2e;
}
.ct-header-static-label {
        font-size: 0.82em;
        font-weight: 600;
        color: #334862;
        letter-spacing: 0.02em;
}

/* ── Inline colour swatch grid (replaces overflow dropdown) ─────────────── */
.ct-swatch-grid-picker { width: 100%; }

.ct-swatch-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 2px 0 6px;
}

.ct-swatch-chip-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        background: none;
        border: 2px solid transparent;
        border-radius: 6px;
        padding: 4px;
        cursor: pointer;
        transition: border-color 0.15s, background 0.15s;
        line-height: 1;
}
.ct-swatch-chip-btn .ct-swatch-chip {
        width: 34px;
        height: 34px;
        border-radius: 4px;
        border: 1px solid rgba(0,0,0,0.15);
        display: block;
        flex-shrink: 0;
        pointer-events: none;
}
.ct-swatch-chip-label {
        font-size: 10px;
        line-height: 1.25;
        color: #666;
        text-align: center;
        width: 42px;
        white-space: normal;
        word-break: break-word;
        pointer-events: none;
}
.ct-swatch-chip-btn:hover {
        border-color: #b8c1cc;
        background: #f4f6f8;
}
.ct-swatch-chip-btn:focus-visible {
        outline: 2px solid #1a5276;
        outline-offset: 2px;
}
.ct-swatch-chip-btn.is-selected {
        border-color: #1a5276;
        background: #edf3f8;
}
.ct-swatch-chip-btn.is-selected .ct-swatch-chip {
        box-shadow: inset 0 0 0 2px rgba(26,82,118,0.35);
}

.ct-swatch-selected-name {
        font-size: 0.83em;
        color: #666;
        margin: 2px 0 0;
}
.ct-swatch-selected-name strong {
        color: #1a5276;
        font-weight: 600;
}
