/* Kalkulator Leasingu - gap-simulator.css */

.leasing-calculator {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 20px auto;
    width: 100%;
    box-sizing: border-box;
}

.calculator-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
}

.slider-group {
    margin-bottom: 30px;
}

.slider-label {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

.slider-value {
    font-size: 14px;
    color: #718096;
    margin-bottom: 15px;
}

.slider-container {
    position: relative;
    height: 8px;
    border-radius: 4px;
    margin: 20px 0;
}

.slider-container.monthly-payment {
    background-color: #f1e5ed;
}

.slider-container.other {
    background-color: #f1f5f9;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: transparent;
    outline: none;
    position: relative;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.slider.monthly-payment::-webkit-slider-thumb {
    background-color: #eb007d;
}

.slider.other::-webkit-slider-thumb {
    background-color: #268AFF;
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    background-color: #268AFF;
}

.slider.monthly-payment::-moz-range-thumb {
    background-color: #eb007d;
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #a0aec0;
}

.result-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.result-text {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.result-price {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.result-details {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 15px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
}

.detail-item {
    text-align: left;
}

.detail-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .leasing-calculator {
        padding: 20px;
        margin: 10px;
    }
    
    .calculator-title {
        font-size: 24px;
    }
    
    .result-price {
        font-size: 32px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Resetowanie stylów dla lepszej kompatybilności z Joomla */
.leasing-calculator * {
    box-sizing: border-box;
}

.leasing-calculator input[type="range"] {
    margin: 0;
}

/* Dodatkowe style dla lepszej integracji z Joomla */
#gap-simulator-container {
    width: 100%;
    clear: both;
}