/* BID Forms — Front-end Styles
   Brand: Black #000, Yellow #fed500, Cyan #6bcde6
   Style: Outlined fields, rounded corners, red errors
*/

/* ── Reset & wrap ─────────────────────────────────────────────────────────── */
.bid-form-wrap *,
.bid-form-wrap *::before,
.bid-form-wrap *::after { box-sizing: border-box; }

.bid-form-wrap {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    padding: 32px 0;
    --bid-yellow: #fed500;
    --bid-cyan:   #6bcde6;
    --bid-red:    #e03a3a;
    --bid-border: rgba(255,255,255,0.18);
    --bid-border-focus: #fed500;
    --bid-radius: 8px;
}

.bid-form-topbar {
    margin: 0 0 20px;
}

.bid-form-back-to-site {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.15s ease;
}

.bid-form-back-to-site:hover,
.bid-form-back-to-site:focus-visible {
    color: var(--bid-cyan);
    text-decoration: none;
}

.bid-field--conditional-hidden,
.bid-repeater.bid-field--conditional-hidden {
    display: none !important;
}

/* ── Counter ──────────────────────────────────────────────────────────────── */
.bid-counter {
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}
.bid-counter__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.bid-counter__stat {
    display: flex;
    flex-direction: column;
}
.bid-counter__number {
    font-size: 42px;
    font-weight: 700;
    color: #fed500;
    line-height: 1;
}
.bid-counter__stat--secondary .bid-counter__number {
    font-size: 28px;
    color: #6bcde6;
}
.bid-counter__label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}
.bid-counter__threshold-bar {
    height: 6px;
    background: #222;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}
.bid-counter__threshold-fill {
    height: 100%;
    background: linear-gradient(90deg, #fed500, #6bcde6);
    border-radius: 3px;
    transition: width 0.8s ease;
}
.bid-counter__threshold-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.bid-counter__since {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 12px;
}

/* ── Countdown timer ──────────────────────────────────────────────────────── */
.bid-countdown {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: #0d0d0d;
    border: 1px solid #222;
    border-radius: 10px;
}
.bid-countdown__label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
}
.bid-countdown__units {
    display: flex;
    align-items: center;
    gap: 6px;
}
.bid-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 8px 12px;
}
.bid-countdown__val {
    font-size: 26px;
    font-weight: 700;
    color: #fed500;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.bid-countdown__sub {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
}
.bid-countdown__sep {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    margin: 0 -2px;
    align-self: flex-start;
    padding-top: 8px;
}

/* ── Expired state ────────────────────────────────────────────────────────── */
.bid-form-wrap--expired .bid-form {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(0.5);
    user-select: none;
}
.bid-form-expired {
    text-align: center;
    padding: 32px 24px;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    margin-bottom: 24px;
}
.bid-form-expired__icon {
    font-size: 40px;
    margin-bottom: 12px;
}
.bid-form-expired__msg {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    max-width: 400px;
    margin: 0 auto;
}

/* ── Completion time estimate ───────────────────────────────────────────────── */
.bid-completion-estimate {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 24px;
    padding: 10px 14px;
    background: rgba(107,205,230,0.08);
    border: 1px solid rgba(107,205,230,0.22);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.45;
}
.bid-completion-estimate__icon {
    color: #6bcde6;
    font-size: 17px;
    line-height: 1;
}
.bid-completion-estimate__time {
    color: #fed500;
    font-weight: 600;
}

/* ── Form ─────────────────────────────────────────────────────────────────── */
.bid-form { display: flex; flex-direction: column; gap: 20px; }

/* ── Fields ───────────────────────────────────────────────────────────────── */
.bid-field { display: flex; flex-direction: column; gap: 6px; }

.bid-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}
.bid-required {
    color: #e03a3a;
    margin-left: 3px;
}
.bid-field-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin: 0;
    line-height: 1.5;
}
.bid-field-error {
    font-size: 12px;
    color: #e03a3a;
    display: none;
}
.bid-field--has-error .bid-field-error { display: block; }
.bid-field--has-error .bid-input,
.bid-field--has-error .bid-textarea,
.bid-field--has-error .bid-select {
    border-color: #e03a3a !important;
}

/* Input / Textarea / Select — scoped to beat theme defaults on single-line inputs */
.bid-form-wrap .bid-input,
.bid-form-wrap .bid-textarea,
.bid-form-wrap .bid-select,
.bid-input,
.bid-textarea,
.bid-select {
    background: transparent;
    background-color: transparent;
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    caret-color: #ffffff;
    opacity: 1;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.5;
    padding: 12px 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
    -webkit-appearance: none;
}
.bid-form-wrap .bid-input:focus,
.bid-form-wrap .bid-textarea:focus,
.bid-form-wrap .bid-select:focus,
.bid-input:focus,
.bid-textarea:focus,
.bid-select:focus {
    border-color: #fed500;
    box-shadow: 0 0 0 3px rgba(254,213,0,0.12);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}
/* Placeholder / example text — faded; typed values stay solid white above */
.bid-form-wrap .bid-input::placeholder,
.bid-form-wrap .bid-textarea::placeholder,
.bid-input::placeholder,
.bid-textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
    opacity: 1;
}
.bid-form-wrap .bid-input::-webkit-input-placeholder,
.bid-form-wrap .bid-textarea::-webkit-input-placeholder,
.bid-input::-webkit-input-placeholder,
.bid-textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.38);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.38);
    opacity: 1;
}
.bid-form-wrap .bid-input::-moz-placeholder,
.bid-form-wrap .bid-textarea::-moz-placeholder,
.bid-input::-moz-placeholder,
.bid-textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.38);
    opacity: 1;
}
.bid-form-wrap .bid-input:-ms-input-placeholder,
.bid-form-wrap .bid-textarea:-ms-input-placeholder,
.bid-input:-ms-input-placeholder,
.bid-textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.38);
}
/* Dropdown placeholder option before a value is chosen */
.bid-form-wrap .bid-select:required:invalid,
.bid-select:required:invalid,
.bid-form-wrap .bid-select:has(option[value=""]:checked),
.bid-select:has(option[value=""]:checked) {
    color: rgba(255, 255, 255, 0.38);
}
.bid-form-wrap .bid-select option,
.bid-select option {
    color: #ffffff;
}

/* Browser autofill often makes typed text look faded on dark fields */
.bid-form-wrap .bid-input:-webkit-autofill,
.bid-form-wrap .bid-input:-webkit-autofill:hover,
.bid-form-wrap .bid-input:-webkit-autofill:focus,
.bid-form-wrap .bid-input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    caret-color: #ffffff;
    -webkit-box-shadow: 0 0 0 1000px rgba(13,13,13,0.95) inset !important;
    box-shadow: 0 0 0 1000px rgba(13,13,13,0.95) inset !important;
    border: 1.5px solid rgba(255,255,255,0.18);
    transition: background-color 99999s ease-out 0s;
}
.bid-form-wrap .bid-input:autofill {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    caret-color: #ffffff;
    box-shadow: 0 0 0 1000px rgba(13,13,13,0.95) inset;
}
.bid-select { 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 d='M1 1l5 5 5-5' stroke='%23fed500' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.bid-select option { background: #111; color: #fff; }

/* Date / time — white calendar icon on dark fields */
.bid-form-wrap .bid-input[type="date"],
.bid-form-wrap .bid-input[type="datetime-local"],
.bid-form-wrap .bid-input[type="time"],
.bid-form-wrap .bid-input[type="month"],
.bid-form-wrap .bid-input[type="week"],
.bid-input[type="date"],
.bid-input[type="datetime-local"],
.bid-input[type="time"],
.bid-input[type="month"],
.bid-input[type="week"] {
    color-scheme: dark;
    min-height: 48px;
}

.bid-form-wrap .bid-input[type="date"]::-webkit-calendar-picker-indicator,
.bid-form-wrap .bid-input[type="datetime-local"]::-webkit-calendar-picker-indicator,
.bid-form-wrap .bid-input[type="time"]::-webkit-calendar-picker-indicator,
.bid-form-wrap .bid-input[type="month"]::-webkit-calendar-picker-indicator,
.bid-form-wrap .bid-input[type="week"]::-webkit-calendar-picker-indicator,
.bid-input[type="date"]::-webkit-calendar-picker-indicator,
.bid-input[type="datetime-local"]::-webkit-calendar-picker-indicator,
.bid-input[type="time"]::-webkit-calendar-picker-indicator,
.bid-input[type="month"]::-webkit-calendar-picker-indicator,
.bid-input[type="week"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    filter: none;
}

.bid-file {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    padding: 10px 0;
}
.bid-file::file-selector-button {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 12px;
    font-family: inherit;
    font-size: 13px;
    transition: background 0.15s;
}
.bid-file::file-selector-button:hover { background: #2a2a2a; }

/* Radio & Checkbox */
.bid-radio-group,
.bid-checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.bid-radio-label,
.bid-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}
.bid-radio-label input[type="radio"],
.bid-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    accent-color: #fed500;
    cursor: pointer;
}

/* ── Card Select (AI-generated icon cards) ───────────────────────────────── */
.bid-card-select { flex-direction: row; flex-wrap: wrap; gap: 12px; }
.bid-card-label  { flex: 1; min-width: 140px; cursor: pointer; }
.bid-card-label input[type="radio"],
.bid-card-label input[type="checkbox"] { display: none; }
.bid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 18px 12px;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}
.bid-card-label:hover .bid-card {
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.06);
}
.bid-card-label input:checked + .bid-card {
    border-color: #fed500;
    background: rgba(254,213,0,0.07);
    box-shadow: 0 0 0 1px rgba(254,213,0,0.18);
}
.bid-card__icon  { font-size: 32px; line-height: 1; margin-bottom: 4px; }
.bid-card__image { display: block; width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; }
.bid-card-select--staff .bid-card-label { min-width: 160px; }
.bid-card__title { display: block; font-size: 14px; font-weight: 600; color: #fff; }
.bid-card__desc  { display: block; font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.4; }
.bid-card__price { display: block; font-size: 14px; font-weight: 700; color: #fed500; margin-top: 4px; }

/* Zone select cards */
.bid-zone-select { flex-direction: row; flex-wrap: wrap; gap: 12px; }
.bid-zone-label { flex: 1; min-width: 180px; }
.bid-zone-label input[type="radio"] { display: none; }
.bid-zone-card {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    width: 100%;
}
.bid-zone-label input[type="radio"]:checked + .bid-zone-card {
    border-color: #fed500;
    background: rgba(254,213,0,0.06);
}
.bid-zone-card strong { font-size: 15px; color: #fff; }
.bid-zone-price { font-size: 18px; font-weight: 700; color: #fed500; }
.bid-zone-desc { font-size: 12px; color: rgba(255,255,255,0.4); }

/* Section break */
.bid-field--section-break { margin: 8px 0 4px; }
.bid-section-title { font-size: 17px; font-weight: 600; color: #6bcde6; border-bottom: 1px solid #1a1a1a; padding-bottom: 10px; margin-bottom: 2px; }
.bid-section-desc { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }

.bid-html-block {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 16px;
    margin: 12px 0 16px;
}
.bid-html-block strong { color: rgba(255,255,255,0.9); }
.bid-html-block a { color: #6bcde6; }
.bid-html-block ol,
.bid-html-block ul { margin: 8px 0 8px 1.2em; }
.bid-html-block li { margin-bottom: 6px; }

/* ── Repeater ─────────────────────────────────────────────────────────────── */
.bid-repeater {
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}
.bid-repeater__header {
    padding: 12px 16px;
    background: #0d0d0d;
    border-bottom: 1px solid #1a1a1a;
}
.bid-repeater__entries { padding: 0; }
.bid-repeater__entry {
    border-bottom: 1px solid #1a1a1a;
    padding: 16px;
}
.bid-repeater__entry:last-child { border-bottom: none; }
.bid-repeater__entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}
.bid-repeater__entry-title {
    font-size: 13px;
    font-weight: 600;
    color: #6bcde6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.bid-repeater__entry-fields { display: flex; flex-direction: column; gap: 14px; }
.bid-repeater__remove {
    background: none;
    border: 1px solid #333;
    color: #666;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s, color 0.15s;
}
.bid-repeater__remove:hover { border-color: #e03a3a; color: #e03a3a; }
.bid-btn--add-repeater {
    display: block;
    width: 100%;
    padding: 12px;
    background: #0d0d0d;
    border: none;
    border-top: 1px solid #1a1a1a;
    color: #fed500;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    text-align: center;
}
.bid-btn--add-repeater:hover { background: #161616; }

/* ── GDPR notice ──────────────────────────────────────────────────────────── */
.bid-gdpr-notice {
    margin: 20px 0 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
}
.bid-gdpr-notice a {
    color: rgba(255,255,255,0.75);
    text-decoration: underline;
}
.bid-gdpr-notice a:hover { color: #fff; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.bid-form__submit { margin-top: 8px; }
.bid-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    font-family: inherit;
    transition: all 0.15s;
    position: relative;
    text-decoration: none;
}
.bid-btn--primary {
    background: #fed500;
    color: #000;
    border-color: #fed500;
}
.bid-btn--primary:hover {
    background: #e6c100;
    border-color: #e6c100;
}
.bid-btn--primary:active { transform: scale(0.98); }
.bid-btn--primary:disabled { opacity: 0.5; cursor: not-allowed; }
.bid-btn__spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: bid-spin 0.6s linear infinite;
    display: none;
}
.bid-btn--loading .bid-btn__spinner { display: block; }
.bid-btn--loading .bid-btn__text { opacity: 0.6; }
@keyframes bid-spin { to { transform: rotate(360deg); } }

/* ── Messages ─────────────────────────────────────────────────────────────── */
.bid-form__messages { margin-top: 16px; }
.bid-form__messages:empty { display: none; }
.bid-message {
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}
.bid-message--success {
    background: rgba(107,205,230,0.1);
    border: 1px solid rgba(107,205,230,0.3);
    color: #6bcde6;
}
.bid-message--error {
    background: rgba(224,58,58,0.1);
    border: 1px solid rgba(224,58,58,0.3);
    color: #e03a3a;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.bid-form-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}
.bid-form-footer__logo-link { display: inline-block; margin-bottom: 14px; opacity: 0.7; transition: opacity 0.15s; }
.bid-form-footer__logo-link:hover { opacity: 1; }
.bid-form-footer__logo { height: 36px; width: auto; display: block; }
.bid-form-footer__social {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.bid-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.15s;
}
.bid-social-link:hover { color: #fff; }
.bid-social-link--fb:hover  { color: #1877f2; }
.bid-social-link--ig:hover  { color: #e1306c; }
.bid-social-link--tt:hover  { color: #6bcde6; }

.bid-form-footer__report {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #222;
}
.bid-form-footer__report-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s;
}
.bid-form-footer__report-link:hover,
.bid-form-footer__report-link:focus-visible {
    color: var(--bid-red, #e03a3a);
    outline: none;
}

/* ── Modal ────────────────────────────────────────────────────────────────── */
.bid-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.bid-modal[hidden] { display: none; }
.bid-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    cursor: pointer;
}
.bid-modal__panel {
    position: relative;
    z-index: 1;
    background: #000;
    border: 1px solid #222;
    border-radius: 12px;
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
}
.bid-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.bid-modal__close:hover { background: #2a2a2a; }
.bid-modal .bid-form-wrap { padding: 0; }

/* ── Limited option inventory ─────────────────────────────────────────────── */
.bid-option--exhausted {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}
.bid-option--exhausted .bid-card {
    border-color: rgba(255,255,255,0.07) !important;
    background: rgba(255,255,255,0.01) !important;
    box-shadow: none !important;
    filter: grayscale(0.7);
}

/* Badge pill — "X of N left" or "All allocated" */
.bid-option-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.6;
    vertical-align: middle;
    white-space: nowrap;
    background: rgba(107,205,230,0.12);
    color: #6bcde6;
    border: 1px solid rgba(107,205,230,0.25);
}
.bid-option-badge--low {
    background: rgba(254,213,0,0.12);
    color: #fed500;
    border-color: rgba(254,213,0,0.28);
}
.bid-option-badge--full {
    background: rgba(224,58,58,0.1);
    color: #e03a3a;
    border-color: rgba(224,58,58,0.25);
}

/* Inside card labels the badge sits below the card as a block element */
.bid-card-label .bid-option-badge {
    display: block;
    margin: 6px auto 0;
    text-align: center;
    width: fit-content;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .bid-countdown__val { font-size: 20px; }
    .bid-countdown__unit { min-width: 42px; padding: 6px 8px; }
    .bid-counter__number { font-size: 32px; }
    .bid-zone-select  { flex-direction: column; }
    .bid-card-select  { flex-direction: column; }
    .bid-modal__panel { padding: 20px 16px; }
}
