.chat-offer-card {
    width: 100%;
    max-width: 340px;
    border-radius: 14px;
    border: 1px solid rgba(0, 61, 116, 0.25);
    background: #f8fafc;
    padding: 14px 16px;
    margin: 4px 0;
}
.chat-msg-wrapper.admin .chat-offer-card,
.message-wrapper.received .chat-offer-card {
    margin-right: auto;
}
.chat-offer-badge {
    font-size: 12px;
    font-weight: 700;
    color: #003d74;
    margin-bottom: 8px;
}
.chat-offer-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.chat-offer-price {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}
.chat-offer-list-price {
    font-size: 14px;
    color: #64748b;
    text-decoration: line-through;
}
.chat-offer-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 3px;
}
.chat-offer-note {
    font-size: 13px;
    color: #334155;
    font-style: italic;
    margin-top: 8px;
}
.chat-offer-status {
    font-size: 12px;
    color: #64748b;
    margin-top: 8px;
}
.chat-offer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}
.chat-offer-btn {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    text-decoration: none;
}
.chat-offer-btn-primary {
    background: #003d74;
    color: #fff;
}
.chat-offer-btn-primary:hover {
    background: #002a52;
    color: #fff;
}
.chat-offer-btn-secondary {
    background: #fff;
    color: #334155;
    border: 1px solid #cbd5e1;
}
.chat-offer-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.chat-offer-wrapper {
    width: 100%;
    max-width: 85%;
}
.chat-msg-wrapper.admin .chat-offer-wrapper {
    margin-right: auto;
}
.chat-msg-wrapper.user .chat-offer-wrapper {
    margin-left: auto;
}
.message-wrapper .chat-offer-wrapper {
    max-width: 100%;
}
