/* Disposable Cubicle Curtains (product 1088) — bulk-pricing + hanging-style picker */

.ct-disp-bulk {
        margin: 14px 0 18px;
}

.ct-disp-bulk:empty {
        display: none;
}

.ct-disp-bulk-head {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: #5a6470;
        margin-bottom: 8px;
}

.ct-disp-tiers {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
}

.ct-disp-tier {
        flex: 1 1 140px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 10px 12px;
        border: 1px solid #e2e6ea;
        border-radius: 8px;
        background: #f8fafb;
}

.ct-disp-tier-qty {
        font-size: 12px;
        font-weight: 700;
        color: #1f2933;
}

.ct-disp-tier-price {
        font-size: 16px;
        font-weight: 700;
        color: #c0392b;
}

.ct-disp-tier-save {
        font-size: 12px;
        font-weight: 600;
        color: #2e7d32;
}

/* ── Hanging Style visual picker ──────────────────────────────────────────── */

/* Hide the native WC select; keep it in the DOM for variation logic */
.ct-hs-hidden-select {
        position: absolute;
        opacity: 0;
        pointer-events: none;
        width: 1px;
        height: 1px;
}

.ct-hs-picker {
        margin-top: 6px;
}

/* Keep the variations table th aligned to the top so it doesn't appear to float
   between rows when the tile grid wraps */
table.variations th.label {
        vertical-align: top;
        padding-top: 10px;
}

.ct-hs-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 260px;
}

.ct-hs-tile {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 8px 10px;
        border: 2px solid #d5dde5;
        border-radius: 10px;
        background: #f8fafb;
        cursor: pointer;
        transition: border-color .15s, background .15s, box-shadow .15s;
        text-align: left;
        font-family: inherit;
        line-height: 1.2;
        width: 100%;
        box-sizing: border-box;
}

.ct-hs-tile:hover {
        border-color: #1a3567;
        background: #eef2f8;
}

.ct-hs-tile.is-selected {
        border-color: #1a3567;
        background: #e8edf7;
        box-shadow: 0 0 0 3px rgba(26,53,103,.15);
}

.ct-hs-tile-img {
        display: block;
        width: 64px;
        height: 64px;
        border-radius: 6px;
        object-fit: cover;
        flex-shrink: 0;
}

.ct-hs-tile-label {
        display: flex;
        flex-direction: column;
        font-size: 12px;
        font-weight: 700;
        color: #1f2933;
        gap: 2px;
}

.ct-hs-tile-sub {
        font-size: 10px;
        font-weight: 400;
        color: #5a6470;
        line-height: 1.3;
}

.ct-hs-selected-name {
        margin: 10px 0 0;
        font-size: 13px;
        color: #1f2933;
}
