.contact-form {
    margin-top: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #27ae60;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.contact-form h2 {
    color: #27ae60;
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.contact-form textarea {
    min-height: 150px;
    resize: none;
}
.contact-form button {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.contact-form button:hover {
    background-color: #2ecc71;
}
@media (max-width: 768px) {
    .contact-page {
        padding: 15px;
    }
    .contact-page h1 {
        font-size: 1.4rem;
    }
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-hours, .contact-info {
        width: 100%;
        margin: 10px 0;
    }
    .contact-form {
        margin-top: 20px;
    }
    .contact-form input, .contact-form textarea {
        font-size: 0.8rem;
    }
    .contact-form textarea {
        min-height: 100px;
        resize: none;
    }
    .contact-form button {
        padding: 8px 12px;
    }
}
@media (max-width: 480px) {
    .contact-page {
        padding: 10px;
    }
    .contact-page h1 {
        font-size: 1rem;
    }
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    .contact-hours, .contact-info {
        width: 100%;
        margin: 10px 0;
    }
    .contact-form input, .contact-form textarea {
        font-size: 0.7rem;
    }
    .contact-form textarea {
        min-height: 60px;
    }
    .contact-form button {
        padding: 8px 12px;
    }
}
#address-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}
.form-group {
    margin-bottom: 15px;
}
label {
    margin-bottom: 5px;
}
input {
    margin-bottom: 10px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}
@media (max-width: 768px) {
    #address-form {
        width: 90%;
        padding: 10px;
    }
    input {
        font-size: 16px;
    }
}
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
}
.modal-objednat {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    max-height: 800px;
    background-color: white;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
}
.close-objednat {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-objednat:hover {
    color: black;
}
@media (max-width: 1024px) {
    .modal-objednat {
        width: 80%;
    }
}
@media (max-width: 768px) {
    .formOrder {
        width: 80%;
    }
}
@media (max-width: 480px) {
    .formOrder {
        overflow: visible;
        width: 80%;
    }
}
form#address-form {
    max-width: 1000px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #bcfad8;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#address-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
form#address-form h3 {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 10px;
    color: #333;
}
form#address-form p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1em;
    color: #666;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1em;
    color: #333;
}
.form-group input,
.form-group button {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group button:focus {
    outline: none;
    border-color: #50cc80;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.form-group input[type="tel"],
.form-group input[type="text"],
.form-group input[type="email"] {
    background-color: #fff;
}
.form-group input[type="tel"]:disabled,
.form-group input[type="text"]:disabled,
.form-group input[type="email"]:disabled {
    background-color: #f0f0f0;
}
form#address-form button {
    background-color: #39c477;
    color: rgb(255, 255, 255);
    width: 100%;
    border: none;
    cursor: pointer;
    transition: background-color 0.5s ease;
}
form#address-form button:hover {
    background-color: #25942b;
}
form#address-form button:disabled {
    background-color: #94eb79;
    cursor: not-allowed;
}
@media screen and (max-width: 480px) {
    form#address-form {
        padding: 15px;
        max-width: 100%;
    }
    form#address-form h3 {
        font-size: 1.4em;
    }
    .form-group input,
    .form-group button {
        font-size: 0.9em;
        padding: 12px;
    }
    form#address-form button {
        font-size: 1.1em;
    }
}
@media screen and (max-width: 768px) {
    form#address-form {
        padding: 15px;
        max-width: 90%;
    }
    form#address-form h3 {
        font-size: 1.5em;
    }
    .form-group input,
    .form-group button {
        font-size: 1em;
    }
}
@media screen and (max-width: 1024px) {
    form#address-form {
        padding: 10px;
        max-width: 95%;
    }
    form#address-form h3 {
        font-size: 1.4em;
    }
    .form-group input,
    .form-group button {
        padding: 12px;
        font-size: 1.1em;
    }
}