.cs-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--cs-primary, #F09C12);
    color: var(--cs-primary, #F09C12);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.cs-quote-btn:hover {
    background: var(--cs-primary, #F09C12);
    color: #fff;
}

.cs-quote-btn.added {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

.cs-quote-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    color: inherit;
    text-decoration: none;
    padding-top: 6px;
    padding-right: 8px;
}

.cs-quote-nav-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--cs-primary, #F09C12);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-quote-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cs-quote-table th,
.cs-quote-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.cs-quote-thumb {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cs-quote-remove {
    background: #f5f5f5;
    border: 0;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: #999;
}

.cs-quote-remove:hover {
    color: #c62828;
}

.cs-quote-form {
    max-width: 600px;
}

.cs-quote-submit {
    background: var(--cs-primary, #F09C12);
    color: #fff;
    border: 0;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.cs-quote-submit:hover {
    background: var(--cs-primary-hover, #616357);
}
