@font-face {
    font-family: 'Li Ador Noirrit';
    src: url('../../font/Unicode/Li-Ador-Noirrit-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Li Ador Noirrit';
    src: url('../../font/Unicode/Li-Ador-Noirrit-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Base Wrapper */
.sks-calculator-wrapper,
.sks-calculator-wrapper *,
.sks-calculator-wrapper button,
.sks-calculator-wrapper input {
    font-family: 'Li Ador Noirrit', 'Inter', 'Roboto', sans-serif !important;
}

.sks-calculator-wrapper {
    color: #a9a3a4;
}

.sks-calculator-container {
    display: flex;
    flex-wrap: wrap;
    background-color: transparent;
}

.sks-left-panel,
.sks-right-panel {
    padding: 40px;
    flex: 1;
    min-width: 320px;
    box-sizing: border-box;
}

.sks-left-panel {
    border-right: 1px solid #403a2f66;
}

.sks-panel-header {
    font-size: 18px;
    letter-spacing: 0;
    color: #cca465;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.sks-icon {
    margin-right: 10px;
}

/* Input Groups */
.sks-input-group {
    margin-bottom: 25px;
}

.sks-input-group label {
    display: block;
    font-size: 16px;
    color: #a9a3a4;
    margin-bottom: 10px;
}

/* Number Input */
.sks-number-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sks-number-input button {
    background-color: #121212 !important;
    border: 1px solid #403a2f66 !important;
    border-radius: 0 !important;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sks-number-input button:hover {
    background-color: #222;
}

.sks-number-input input {
    background-color: #121212 !important;
    border: 1px solid #403a2f66 !important;
    border-radius: 0 !important;
    color: #cca465 !important;
    height: 60px;
    flex: 1;
    text-align: center;
    font-size: 16px;
    outline: none !important;
    box-shadow: none !important;
    -moz-appearance: textfield;
}

.sks-number-input input::-webkit-outer-spin-button,
.sks-number-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sks-number-input input:hover,
.sks-number-input input:focus {
    background-color: #121212 !important;
    border: 1px solid #403a2f66 !important;
    color: #cca465 !important;
}

/* Payment Methods */
.sks-payment-methods {
    display: flex;
    gap: 15px;
}
.sks-payment-methods button {
    font-size: 16px !important;
}

.sks-method-btn {
    flex: 1;
    background-color: #121212 !important;
    border: 1px solid #403a2f66 !important;
    border-radius: 0 !important;
    color: #a9a3a4 !important;
    padding: 12px;
    height: 60px;
    box-sizing: border-box;
    font-size: 12px;
    letter-spacing: 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    outline: none !important;
}

.sks-method-btn.active,
.sks-method-btn:hover {
    background-color: #261b0f !important;
    border-color: #cca465 !important;
    color: #cca465 !important;
}

/* Down Payment Input */
.sks-down-payment-input {
    margin-bottom: 12px;
    -moz-appearance: textfield;
}

.sks-down-payment-input::-webkit-outer-spin-button,
.sks-down-payment-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Custom Slider Styling */
.sks-calculator-container input[type=range]#sks-down-payment-slider,
input[type=range]#sks-down-payment-slider {
    --fill-percent: 0%;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    accent-color: #cca465 !important;
    width: 100% !important;
    height: 16px !important;
    background: transparent !important;
    border: 0 !important;
    border-style: none !important;
    border-radius: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    margin-top: 15px !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.sks-calculator-container input[type=range]#sks-down-payment-slider:focus,
.sks-calculator-container input[type=range]#sks-down-payment-slider:hover,
input[type=range]#sks-down-payment-slider:focus,
input[type=range]#sks-down-payment-slider:hover {
    outline: none !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Webkit (Chrome, Edge, Safari) Thumb */
.sks-calculator-container input[type=range]#sks-down-payment-slider::-webkit-slider-thumb,
input[type=range]#sks-down-payment-slider::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    height: 20px !important;
    width: 20px !important;
    border-radius: 50% !important;
    background: #cca465 !important;
    border: 2px solid #0a0a0a !important;
    box-shadow: 0 0 6px rgba(204, 164, 101, 0.6) !important;
    cursor: pointer !important;
    margin-top: -7px !important;
}

/* Webkit Track */
.sks-calculator-container input[type=range]#sks-down-payment-slider::-webkit-slider-runnable-track,
input[type=range]#sks-down-payment-slider::-webkit-slider-runnable-track {
    width: 100% !important;
    height: 6px !important;
    cursor: pointer !important;
    background: linear-gradient(90deg, #cca465 var(--fill-percent, 0%), #222 var(--fill-percent, 0%)) !important;
    border-radius: 3px !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Firefox Thumb & Track */
.sks-calculator-container input[type=range]#sks-down-payment-slider::-moz-range-thumb,
input[type=range]#sks-down-payment-slider::-moz-range-thumb {
    height: 20px !important;
    width: 20px !important;
    border-radius: 50% !important;
    background: #cca465 !important;
    border: 2px solid #0a0a0a !important;
    box-shadow: 0 0 6px rgba(204, 164, 101, 0.6) !important;
    cursor: pointer !important;
}

.sks-calculator-container input[type=range]#sks-down-payment-slider::-moz-range-track,
input[type=range]#sks-down-payment-slider::-moz-range-track {
    width: 100% !important;
    height: 6px !important;
    cursor: pointer !important;
    background: linear-gradient(90deg, #cca465 var(--fill-percent, 0%), #222 var(--fill-percent, 0%)) !important;
    border-radius: 3px !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Bonus Message */
.sks-bonus-message {
    background-color: #17120a;
    border: 1px solid #403a2f66;
    color: #cca465;
    padding: 15px;
    font-size: 13px;
    margin-top: 30px;
}

/* Right Panel Summary */
.sks-summary-details {
    margin-bottom: 30px;
    border-bottom: 1px solid #403a2f66;
    padding-bottom: 20px;
}

.sks-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #403a2f66;
    font-size: 16px;
}

.sks-summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sks-summary-row span:first-child {
    color: #a9a3a4;
}

.sks-summary-row span:last-child {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

#sks-discount-amount {
    color: #fff;
}

/* Final Amounts */
.sks-installment-label,
.sks-payable-label {
    font-size: 16px;
    color: #a9a3a4;
    letter-spacing: 0;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.sks-installment-amount,
.sks-payable-amount {
    color: #cca465;
    font-size: 42px;
    margin-bottom: 40px;
    display: flex;
    align-items: baseline;
}

.sks-installment-amount .currency,
.sks-payable-amount .currency {
    font-size: 32px;
    margin-right: 8px;
}

.sks-installment-amount .month {
    font-size: 14px;
    color: #a9a3a4;
    margin-left: 8px;
    font-family: 'Inter', 'Roboto', sans-serif;
}

/* Button */
#sks-calculator-form {
    width: 100% !important;
    display: block !important;
}

.sks-reserve-btn {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    background: linear-gradient(100deg, oklch(62% .105 66), oklch(0.8 0.13 81.27), oklch(72% .12 72)) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 18px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.4s ease-in-out !important;
    outline: none !important;
    border-radius: 0 !important;
}

.sks-reserve-btn:hover,
.sks-reserve-btn:focus {
    background: linear-gradient(100deg, oklch(62% .105 66), oklch(0.8 0.13 81.27), oklch(72% .12 72)) !important;
    border: none !important;
    color: #111 !important;
}

.sks-reserve-btn:active {
    transform: translateY(0);
    box-shadow: none !important;
}

.sks-disclaimer {
    margin-top: 20px;
    font-size: 16px;
    color: #a9a3a4;
    text-align: center;
}

/* Inline Form Styles */
.sks-form-inline {
    margin-top: 15px;
}

.sks-form-inline .sks-input-group {
    margin-bottom: 20px;
}

.sks-form-inline .sks-input-group:last-child {
    margin-bottom: 0;
}

.sks-text-input {
    width: 100%;
    height: 55px !important;
    background-color: #121212 !important;
    border: 1px solid #403a2f66 !important;
    border-radius: 0 !important;
    color: #fff !important;
    padding: 0 15px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border-color 0.3s;
    outline: none !important;
    box-shadow: none !important;
}

.sks-text-input:hover,
.sks-text-input:focus {
    background-color: #121212 !important;
    border-color: #cca465 !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}

#sks-form-message {
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

#sks-form-message.success {
    color: #4CAF50;
}

#sks-form-message.error {
    color: #f44336;
}

/* Responsive */
@media (max-width: 768px) {
    .sks-calculator-container {
        flex-direction: column;
    }

    .sks-left-panel {
        border-right: none;
        border-bottom: 1px solid #403a2f66;
    }
}