/* Кнопка "Добавить в расчет КП" */
.tb-add-to-kp-btn {
    display: inline-block;
    background-color: #3762b1 !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-transform: uppercase !important;
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}
.tb-add-to-kp-btn:hover {
    background-color: #284c8c !important;
}

/* Стили для кастомных файлов в табах */
.tb-download-link {
    display: inline-flex;
    align-items: center;
    background: #f4f6fa;
    padding: 10px 15px;
    border-left: 3px solid #3762b1;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s;
}
.tb-download-link:hover {
    background: #e8ecf5;
    color: #3762b1;
}

/* Шорткод корзины КП */
.tb-kp-cart-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.tb-kp-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.tb-kp-table th, .tb-kp-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.tb-kp-table th { background: #f9f9f9; font-weight: bold; }
.tb-kp-qty-input { width: 60px; padding: 5px; text-align: center; }
.tb-remove-from-kp { color: #d63636; cursor: pointer; text-decoration: underline; background: none; border: none; }