.cover {
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 30vh;
    width: 100vw;
    margin: calc((var(--logo-whitespace) * -1) + 1px);
    margin-bottom: 0;
}

label {
    display: block;
}

form {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

fieldset {
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: .5em;
}

fieldset .textarea,
fieldset .text {
    margin-top: 1em;
}

body > main {
    padding-bottom: 4em;
}
    
textarea,
input[type=text],
input[type=password],
input[type=password],
input[type=number],
input[type=email],
input[type=search],
input[type=submit],
input[type=datetime-local],
input[type=tel],
input[type=url] {
    width: 100%;
    padding: .5em;
    font-size: 1.1em;
    background-color: var(--bg-color);
    border: 1px solid var(--fg-muted-color);
    color: var(--fg-color);
}
    
/* hints */
textarea + label,
input + label {
    font-size: .9em;
    color: var(--fg-muted-color);
}

/* no required-asterix */
textarea + label::after,
input + label::after {
    content: none !important;
}

fieldset {
    border: 1px solid var(--soft-divider-color);
}

input[type=number] {
    width: 4em;    
}

input[type=submit] {
    background-color: var(--irf-blue-80);
    border: 7px solid var(--bg-color);
    color: white;
}

input[type=submit]:focus {
    background-color: var(--irf-blue);
    border: 7px double var(--bg-color);    
}

form > div:has([required]) label::after {
    color: var(--irf-red);
    content: " *"
}

.minus-number-plus {
    display: flex;
    flex-wrap: nowrap;        
}

.plus, .minus {
    border: 1px solid var(--fg-muted-color);    
    padding: 0 1em;
    font-weight: bold;
}

.minus-number-plus input {
    border-left: none;
    border-right: none;
}

#cart-items {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

@media screen {
    .receipt {
        border: 1px solid black;
        padding: 0 1em;
        margin-bottom: 1em;    
    }
}

@media print {
    #receipt-container ~ .content {
        display: none !important;
    }
}
  