/* ============================================
   VAT Override — customer-facing styles
   Used by: ticket selection, basket, checkout,
            session date page (circular flash)
   ============================================ */

/* ---------- Wide banner ("strap") ---------- */
.vat-banner {
    background: #00bcd4;
    color: #ffffff;
    padding: 14px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 4px;
    margin: 0 0 20px 0;
    line-height: 1.3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .vat-banner {
        font-size: 15px;
        padding: 12px 14px;
    }
}

/* ---------- Circular flash on Session Date page ---------- */
.vat-flash {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #00bcd4;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.vat-flash .vat-flash-rate {
    font-size: 22px;
    display: block;
}

.vat-flash .vat-flash-label {
    font-size: 12px;
    display: block;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .vat-flash {
        width: 68px;
        height: 68px;
        top: -10px;
        right: -10px;
    }

    .vat-flash .vat-flash-rate {
        font-size: 18px;
    }

    .vat-flash .vat-flash-label {
        font-size: 10px;
    }
}

/* The container that holds the flash needs position:relative */
.vat-flash-container {
    position: relative;
}

/* ---------- Strikethrough price + saving badge ---------- */
.vat-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 6px;
    display: inline-block;
}

.vat-reduced-price {
    color: inherit;
    font-weight: 700;
    display: inline-block;
}

.vat-saving-badge {
    display: inline-block;
    background: #00bcd4;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.3px;
}

.vat-saving-line {
    color: #00838f;
    font-size: 12px;
    font-weight: 600;
    margin-top: 2px;
}
