/* CartToQuote — Styles */

.ctq-convert-wrapper { margin-top: 20px; }

.ctq-convert-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f0f7ff;
    border: 1.5px solid #c2dcf7;
    border-radius: 10px;
    padding: 16px 20px;
    flex-wrap: wrap;
}

.ctq-icon { color: #1a73e8; flex-shrink: 0; }

.ctq-text { flex: 1; min-width: 200px; }
.ctq-text strong { display: block; font-size: 15px; color: #1a1a2e; margin-bottom: 3px; }
.ctq-text span { font-size: 13px; color: #555; }

.ctq-btn-convert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #2765ad;
    text-transform: none;
    padding: 15px 20px !important;
    font-weight: 600;
    font-size: 17px;
    color: white;
    white-space: nowrap;
    transition: all 0.2s ease;
}
.ctq-btn-convert:hover {
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
    color: white;
    text-decoration: none;
}
.ctq-btn-convert:focus {
    outline: none;
    color: white;
    text-decoration: none;
}
@media (max-width: 576px) {
    .ctq-convert-box { flex-direction: column; text-align: center; }
    .ctq-btn-convert { width: 100%; justify-content: center; }
}
