.fasad-calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.fasad-form-group {
    margin-bottom: 20px;
}

.fasad-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.fasad-form-group input,
.fasad-form-group select,
.fasad-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.fasad-form-group input:focus,
.fasad-form-group select:focus,
.fasad-form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 5px rgba(39, 174, 96, 0.3);
}

.fasad-hinge-choice {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.fasad-hinge-choice label {
    display: inline;
    font-weight: normal;
    margin: 0;
}

.price-display {
    background: white;
    padding: 15px;
    border-radius: 4px;
    border: 2px solid #27ae60;
}

.price-box {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    padding: 20px;
    background: #f0f8f0;
    border-radius: 4px;
    text-align: center;
}

.fasad-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.fasad-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.fasad-btn-primary {
    background: #27ae60;
    color: white;
}

.fasad-btn-primary:hover {
    background: #229954;
}

.fasad-btn-add {
    background: #3498db;
    color: white;
}

.fasad-btn-add:hover {
    background: #2980b9;
}

.fasad-facades-list {
    margin-top: 40px;
    background: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fasad-facade-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fasad-facade-remove {
    background: #e74c3c;
    color: white;
    padding: 10px 20px;
}

.fasad-facade-remove:hover {
    background: #c0392b;
}

.fasad-total-price-box {
    background: #27ae60;
    color: white;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    margin: 20px 0;
    font-size: 24px;
}

.fasad-total-price-box h3 {
    margin: 0;
}

#checkout-section {
    background: white;
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#contact-form {
    margin-top: 20px;
}

#contact-form button {
    margin-top: 20px;
}
