/* ============================================================
   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(120px, 1fr));
        gap: 8px;
}
.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: 76px;
}
.ct-layout-icon svg { width: 50px; height: 30px; display: block; }
.ct-layout-name { font-size: 12px; line-height: 1.2; text-align: center; }
.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 in one row, bigger diagram */
        body.ct-track-product .ct-layout-options {
                grid-template-columns: repeat(7, minmax(0, 1fr));
        }
        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(auto-fill, minmax(100px, 1fr));
        }
}

/* ============================================================
   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; }
}
