:root {
    --header-bg: #f7ecda;;
    --text-color: #333;
    --border-color: #ddd;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    overflow-x: hidden;
}

.header-content {
    display: flex;
    align-items: center;
    background: var(--header-bg);
    padding: 0rem 1rem 0rem 1rem;
}

.logo {
    height: 40px;
    margin-right: 15px;
}

#languageSelect {
    margin-left: auto;
    width: 150px;
}

.header-image {
    width: 100%;
    max-width:800px;
    max-height: 50vh;
    object-fit: cover;
    border-radius: 1em;
}

@media (orientation: portrait) {
    .header-image {
        max-height: unset;
        height: auto;
    border-radius: 0em;
    }
}

form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}

label {
    display: block;
    margin: 1rem 0 0.5rem;
    text-align: center;
}
button { background-color: #bbf89d; }

input, select, button {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.1rem;
    border-radius: 2em;
}

select{
    background-color: white;
    text-align: center;
}

input {
    width: calc(100% - 1.5em);
    text-align: center;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
    zoom: 2;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#productInfo {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

footer a {
    margin: 0 1rem;
    color: var(--text-color);
}