/* Feng Shui Kalkulačka CSS - SMTP verze */
.feng-shui-calculator {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h2 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 2.2em;
}

.calculator-header p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

.calculator-header ol {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    color: #555;
}

.calculator-header ol li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.form-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.form-section h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.form-section h4 {
    color: #2c5530;
    margin: 15px 0 10px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #2c5530;
    background: #f0f8f0;
}

.radio-option input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.2);
}

.radio-option.selected {
    border-color: #2c5530;
    background: #e8f5e8;
}

.radio-label {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.radio-points {
    background: #2c5530;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}

.calculation-result {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(44, 85, 48, 0.3);
}

.total-points {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.total-price {
    font-size: 2em;
    margin-bottom: 15px;
    color: #ffd700;
}

.calc-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.calc-btn-primary {
    background: #2c5530;
    color: white;
}

.calc-btn-primary:hover {
    background: #1e3a21;
    transform: translateY(-2px);
}

.calc-btn-secondary {
    background: #6c757d;
    color: white;
}

.calc-btn-secondary:hover {
    background: #545b62;
}

/* Formulář poptávky */
.inquiry-form {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #2c5530;
}

.inquiry-form h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.inquiry-form input,
.inquiry-form textarea {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #2c5530 !important;
    box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.2);
}

/* Zpráva o úspěchu */
.success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.success-message h3 {
    margin-bottom: 15px;
}

.warning-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    color: #856404;
}

/* Responsivní úpravy */
@media (max-width: 768px) {
    .feng-shui-calculator {
        padding: 20px;
        margin: 10px;
    }

    .radio-group {
        gap: 8px;
    }

    .radio-option {
        padding: 10px;
    }

    .total-points {
        font-size: 2em;
    }

    .total-price {
        font-size: 1.5em;
    }
    
    /* Formulář na mobilu */
    .inquiry-form div[style*="grid-template-columns"] {
        display: block !important;
    }
    
    .inquiry-form div[style*="grid-template-columns"] > div {
        margin-bottom: 15px;
    }
    
    .calc-btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    .calculator-header h2 {
        font-size: 1.8em;
    }
    
    .calculator-header ol {
        padding-left: 15px;
    }
}