
.credit-side-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}
.credit-side-panel .panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
}
.credit-side-panel .side-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    z-index: 10002;
    overflow-y: auto;
    width: 33.333%;
    max-width: 550px;
}
@media (max-width: 1368px) {
    .credit-side-panel .side-panel { width: 50%; }
}
@media (max-width: 992px) {
    .credit-side-panel .side-panel { width: 75%; }
}
@media (max-width: 768px) {
    .credit-side-panel .side-panel { width: 100%; }
}
.credit-side-panel .panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}
.credit-side-panel .panel-header h4 {
    margin: 0;
    font-weight: 600;
}
.credit-side-panel .close-panel-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
}
.credit-side-panel .panel-content {
    padding: 20px;
}
.product-info-row {
    margin-bottom: 20px;
}
.product-name {
    margin-top: 10px;
}
.slider-container {
    margin: 20px 0 10px;
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.slider-label {
    cursor: pointer;
    font-size: 12px;
    color: #6c757d;
    padding: 0 2px;
}
.slider-label:hover {
    font-weight: bold;
    color: #007bff;
}
.selected-term-info {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    color: #28a745;
}
.installment-cards-block {
    margin-top: 25px;
    border-top: 1px solid #e9ecef; 
    padding-top: 15px;
}
.card-item {
    transition: transform 0.2s, box-shadow 0.2s;
}
.card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
body.panel-open {
    overflow: hidden;
}