/* ITX Calculator Styles */
.itx-calculator-wrapper {
    font-family: 'Outfit', sans-serif;
    padding: 30px 15px 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(124, 38, 52, 0.1);
    margin: 0px 0;
}

.itx-calc-title {
    color: #7c2634;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.itx-calculator-form {
    margin-bottom: 20px;
}

.itx-calculator-form .form-group {
    margin-bottom: 25px !important;
}

.itx-calculator-form label {
    display: block;
    color: #333;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.itx-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    color: #333;
    background: #fff;
    transition: all 0.3s ease;
    background-size: 20px;
    padding-right: 40px;
}

.itx-select:focus {
    outline: none;
    border-color: #7c2634;
    box-shadow: 0 0 0 3px rgba(124, 38, 52, 0.1);
}

.itx-select:hover {
    border-color: #7c2634;
}

.itx-btn-submit {
    background: #7c2634;
    color: #fff;
    border: none;
    padding: 14px 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

.itx-btn-submit:hover {
    background: #601e28;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 38, 52, 0.3);
}

.itx-btn-submit:active {
    transform: translateY(0);
}

.itx-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.itx-results {
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 8px;
    border: 2px solid #7c2634;
}

.itx-results-content {
    text-align: left;
}

.result-line {
    padding: 10px 0;
    font-size: 16px;
    color: #333;
    /* border-bottom: 1px solid #e0e0e0; */
    text-align: center;
}

.result-line:last-of-type {
    border-bottom: none;
}

.result-line strong {
    color: #7c2634;
    font-weight: 600;
}

.result-total {
    margin-top: 0;
    padding-top: 20px;
    border-top: 3px solid #7c2634;
    color: #7c2634;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.price-highlight {
    color: #7c2634;
    font-size: 32px;
    font-weight: 700;
}
.itx-btn-submit:hover {
    background: #111;
    color: #fff !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .itx-calculator-wrapper {
        padding: 20px;
    }
    
    .itx-calc-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .itx-calculator-form .form-group {
        margin-bottom: 20px;
    }
    
    .itx-btn-submit {
        width: 100%;
        padding: 14px 30px;
    }
    
    .itx-results {
        padding: 20px;
    }
    
    .result-total {
        font-size: 22px;
    }
    
    .price-highlight {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .itx-calc-title {
        font-size: 18px;
    }
    
    .itx-select {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .result-line {
        font-size: 14px;
    }
    
    .result-total {
        font-size: 20px;
    }
    
    .price-highlight {
        font-size: 24px;
    }
}