/* ─── CarSell — Make an Offer ─────────────────────────────────────────────── */

/* ── Offer block on listing page ─────────────────────────────────────────── */

.carsell-offer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 10px;
    padding: 18px 20px;
    margin: 24px 0;
}

.carsell-offer-intro {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.carsell-offer-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }

.carsell-offer-intro strong {
    display: block;
    font-size: 15px;
    color: #0c4a6e;
    margin-bottom: 3px;
}

.carsell-offer-intro p {
    margin: 0;
    font-size: 13px;
    color: #0369a1;
    line-height: 1.4;
}

.carsell-offer-btn {
    background: #0284c7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
    flex-shrink: 0;
}

.carsell-offer-btn:hover { background: #0369a1; }

/* Pending sale notice */
.carsell-offer-pending-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 16px 18px;
    margin: 24px 0;
}

.carsell-offer-pending-icon { font-size: 22px; flex-shrink: 0; }

.carsell-offer-pending-notice strong {
    display: block;
    color: #78350f;
    font-size: 15px;
    margin-bottom: 4px;
}

.carsell-offer-pending-notice p {
    margin: 0;
    font-size: 13px;
    color: #92400e;
}

/* Active offer status block */
.carsell-offer-status-block {
    border-radius: 8px;
    padding: 16px 18px;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.5;
}

.carsell-offer-status--pending   { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e3a5f; }
.carsell-offer-status--countered { background: #fff7ed; border: 1px solid #fed7aa; color: #7c2d12; }
.carsell-offer-status--accepted  { background: #f0fdf4; border: 1px solid #bbf7d0; color: #14532d; }
.carsell-offer-status--declined  { background: #fef2f2; border: 1px solid #fecaca; color: #7f1d1d; }

.carsell-offer-status-block p { margin: 0 0 10px; }
.carsell-offer-note { font-style: italic; color: #6b7280; font-size: 13px; margin: 6px 0 12px !important; }

.carsell-offer-counter-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.carsell-offer-withdraw-btn,
.carsell-offer-decline-counter-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    transition: border-color .15s, color .15s;
}

.carsell-offer-withdraw-btn:hover,
.carsell-offer-decline-counter-btn:hover {
    border-color: #ef4444;
    color: #b91c1c;
}

.carsell-offer-accept-counter-btn {
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}

.carsell-offer-accept-counter-btn:hover { background: #15803d; }

.carsell-offer-retry-btn {
    margin-top: 10px;
    font-size: 13px;
    padding: 8px 18px;
}

/* ── Modal overlay ───────────────────────────────────────────────────────── */

.carsell-offer-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998;
}

.carsell-offer-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #fff;
    border-radius: 12px;
    padding: 28px 28px 24px;
    width: 92%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

body.carsell-modal-open { overflow: hidden; }

.carsell-offer-modal h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f172a;
}

.carsell-offer-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color .15s;
}

.carsell-offer-modal-close:hover { color: #374151; }

.carsell-offer-listed-price {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 16px;
}

.carsell-offer-listed-price strong { color: #0f172a; }

.carsell-offer-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 14px;
}

.carsell-offer-amount-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    overflow: hidden;
    margin-top: 6px;
    background: #fff;
    transition: border-color .15s;
}

.carsell-offer-amount-wrap:focus-within { border-color: #3b82f6; }

.carsell-offer-currency {
    padding: 0 12px;
    background: #f8fafc;
    color: #374151;
    font-weight: 700;
    font-size: 15px;
    border-right: 1px solid #e2e8f0;
    line-height: 40px;
    flex-shrink: 0;
}

.carsell-offer-amount-input,
.carsell-counter-amount-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-size: 15px;
    background: transparent;
    color: #0f172a;
}

.carsell-offer-message,
.carsell-counter-note-input {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 13px;
    resize: vertical;
    font-family: inherit;
    color: #374151;
    transition: border-color .15s;
    box-sizing: border-box;
}

.carsell-offer-message:focus,
.carsell-counter-note-input:focus { border-color: #3b82f6; outline: none; }

.carsell-offer-optional { font-weight: 400; color: #9ca3af; font-size: 12px; }

.carsell-offer-disclaimer {
    font-size: 12px;
    color: #94a3b8;
    margin: 0 0 14px;
    line-height: 1.4;
}

.carsell-offer-submit-btn {
    width: 100%;
    background: #0284c7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
}

.carsell-offer-submit-btn:hover:not(:disabled) { background: #0369a1; }
.carsell-offer-submit-btn:disabled { opacity: .65; cursor: not-allowed; }

.carsell-offer-login-btn {
    display: block;
    background: #0284c7;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 14px;
    transition: background .15s;
}

.carsell-offer-login-btn:hover { background: #0369a1; color: #fff; }

/* ── Dealer offer cards (shortcode) ──────────────────────────────────────── */

.carsell-dealer-offers { max-width: 780px; }

.carsell-offers-heading {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carsell-offers-heading--past {
    margin-top: 32px;
    color: #64748b;
    font-size: 15px;
}

.carsell-offers-count {
    background: #ef4444;
    color: #fff;
    border-radius: 20px;
    padding: 1px 9px;
    font-size: 12px;
    font-weight: 700;
}

.carsell-offers-empty {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.carsell-offer-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 14px;
    transition: box-shadow .15s;
}

.carsell-offer-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.carsell-offer-card--resolved { opacity: .6; }

.carsell-offer-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.carsell-offer-card-listing a {
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
    text-decoration: none;
}

.carsell-offer-card-listing a:hover { color: #0284c7; }

.carsell-offer-listed {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

/* Status pills */
.carsell-offer-status-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.carsell-offer-pill--pending   { background: #dbeafe; color: #1d4ed8; }
.carsell-offer-pill--countered { background: #fef3c7; color: #92400e; }
.carsell-offer-pill--accepted  { background: #dcfce7; color: #15803d; }
.carsell-offer-pill--declined  { background: #fee2e2; color: #b91c1c; }
.carsell-offer-pill--withdrawn { background: #f1f5f9; color: #64748b; }

.carsell-offer-card-body {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.carsell-offer-card-buyer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
}

.carsell-offer-card-buyer img { border-radius: 50%; }

.carsell-offer-time { color: #9ca3af; font-size: 11px; }

.carsell-offer-card-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.carsell-offer-amount-label { font-size: 12px; color: #94a3b8; font-weight: 600; }

.carsell-offer-amount-value {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}

.carsell-offer-diff { font-size: 12px; font-weight: 600; }
.carsell-offer-above { color: #15803d; }
.carsell-offer-below { color: #b91c1c; }

.carsell-offer-card-message {
    font-size: 13px;
    color: #374151;
    font-style: italic;
    background: #f8fafc;
    border-left: 3px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: 0 4px 4px 0;
    width: 100%;
}

.carsell-offer-msg-icon { margin-right: 4px; }

/* Action buttons */
.carsell-offer-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.carsell-offer-action-btn {
    border: none;
    border-radius: 7px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s, background .15s;
}

.carsell-offer-action-btn:disabled { opacity: .55; cursor: not-allowed; }

.carsell-offer-accept  { background: #16a34a; color: #fff; }
.carsell-offer-accept:hover:not(:disabled)  { background: #15803d; }

.carsell-offer-counter-toggle { background: #f8fafc; color: #374151; border: 1px solid #d1d5db; }
.carsell-offer-counter-toggle:hover { background: #f1f5f9; }

.carsell-offer-decline { background: #fee2e2; color: #b91c1c; }
.carsell-offer-decline:hover:not(:disabled) { background: #fecaca; }

/* Counter form */
.carsell-offer-counter-form {
    border-top: 1px solid #f1f5f9;
    margin-top: 14px;
    padding-top: 14px;
}

.carsell-offer-counter-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.carsell-counter-form-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.carsell-offer-counter-cancel {
    background: transparent;
    border: none;
    font-size: 13px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
}

.carsell-offer-counter-cancel:hover { color: #374151; }

/* Buyer offers list */
.carsell-offer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
    flex-wrap: wrap;
}

.carsell-offer-row:last-child { border-bottom: none; }

.carsell-offer-row-listing a { font-weight: 600; color: #0f172a; text-decoration: none; }
.carsell-offer-row-listing a:hover { color: #0284c7; }
.carsell-offer-row-listing .carsell-offer-time { display: block; }

.carsell-offer-row-amounts { display: flex; gap: 14px; flex-wrap: wrap; }
.carsell-offer-counter-badge { color: #b45309; }

/* Pending sale card class */
.carsell-pending-sale .listing-badge::after,
.carsell-pending-sale::after {
    content: 'Pending Sale';
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f59e0b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: .03em;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media ( max-width: 600px ) {
    .carsell-offer-wrap { flex-direction: column; align-items: flex-start; }
    .carsell-offer-btn  { width: 100%; text-align: center; }
    .carsell-offer-card-body { flex-direction: column; align-items: flex-start; }
    .carsell-offer-amount-value { font-size: 18px; }
    .carsell-offer-modal { padding: 20px 16px; }
}
