/* base */
:root {
    --gap: 4rem;
    --size-label: 70px;
    --cart-padding: 1rem 1rem 2rem 1rem;
}

.display-none {
    display: none;
}

a {
    cursor: pointer;
}

h1 {
    color: var(--white);
    margin: 0;
}

form > label {
    padding-left: 0.5rem;
}

.error-message {
    color: var(--red) !important;
    font-size: 1.1rem !important;
    font-weight: bold;
    justify-content: center;
    margin: 2rem 0;
    text-align: center;
}

.transparent {
    color: transparent !important;
}

.strike {
    color: var(--green);
    text-decoration: line-through;
}

.text-center {
    text-align: center;
}

.main {
    margin: 3rem 0;
    min-height: 54vh;
}

/* cart */
.cart-button {
    align-self: flex-end;
    background-color: var(--red);
    border: var(--white) .2rem solid;
    border-radius: 1rem;
    color: var(--white);
    cursor: pointer;
    height: 4rem;
    opacity: 1;
    transition: transform 300ms ease-in-out 0s,
    box-shadow 300ms ease-in-out 0s;
    width: 4rem;
}

.cart-count-text {
    color: var(--white) !important;
    font-size: 12px !important;
    font-weight: normal;
}

.cart-button:hover,
.cart-button:focus {
    opacity: 1;
}

.cart-button i {
    font-size: 2.07rem;
}

.cart-button:hover {
    transform: translateY(-2px);
}

#cart {
    bottom: 140px;
    position: fixed;
    right: 48px;
    z-index: 9999;
}

.cart-container {
    border-radius: 2rem 2rem 0 0;
    display: block;
    padding: 1rem 1rem;
    text-align: center;
}

.cart-container-title {
    background-color: var(--white);
    border: var(--red) 1px solid;
    border-radius: 2rem 2rem 0 0;
    color: var(--red) !important;
    padding: 0 1rem 0 1rem;
}

.cart-container-title h2 {
    color: var(--red) !important;
}

.cart-container-middle {
    background-color: var(--red);
    border: var(--red) 1px solid;
    border-radius: 0 0 2rem 2rem;
    padding: 1rem 1rem 1rem 1rem;
}

.cart-container-middle p {
    color: var(--white) !important;
}

.cart-container-bottom {
    padding: 1.5rem 1rem 1.5rem 1rem;
}

.cart-item {
    color: var(--white) !important;
}

.cart-items-count {
    align-items: center;
    animation: 0s ease 0s 1 normal none running none;
    aspect-ratio: 1 / 1;
    background-color: rgb(249, 72, 57);
    border: 2px solid rgb(255, 255, 255);
    border-radius: 50%;
    /* ⏹ a perfect square */
    color: var(--white);
    height: 24px;
    justify-content: center;
    position: absolute;
    right: -12px;
    top: -12px;
    width: 24px;
}

.order-button {
    background-color: var(--red);
    border: .2rem solid var(--white);
    color: var(--white);
    font-weight: 600;
    line-height: 2rem;
    opacity: 1;
    width: 100%;
}

.order-button:hover {
    background-color: var(--white);
    border: .2rem solid var(--red);
    color: var(--red);
    opacity: 1;
    padding: -.2rem 0;
    width: 90%;
}

form {
    margin: 0;
}

.rounded {
    border-radius: 2.5rem;
}

.text-center {
    text-align: center;
}

.button_order {
    background-color: var(--green);
    border: solid 0.1rem var(--green);
    border-radius: 5rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 2rem;
    width: 75%;
}

.button_order:hover {
    background-color: #30bf30;
    border: solid 0.1rem var(--green);
    border-radius: 5rem;
    color: white;
    width: 75%;
}

.icon {
    align-items: center;
    display: flex !important;
    justify-content: center;
}

.margin2 {
    margin: 2rem 0;
}

.width-100 {
    width: 100%;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.center {
    margin: 0 auto;
}

.bottom-section-contact-link a {
    display: flex;
    align-items: center;
}

#page {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1 1 auto;
}

.img-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1; /* Take up remaining space */

    & > img {
        position: absolute;
        max-width: 80%;
        bottom: -10px;
        height: auto;
        max-height: 100%;
    }
}

.img-bg-round {
    background-color: var(--red);
    width: 100%;
    height: 100%;
    border-radius: 0 300px 300px 0;
    -webkit-border-radius: 0 300px 300px 0;
    -moz-border-radius: 0 300px 300px 0;
    -ms-border-radius: 0 300px 300px 0;
}

/* contact options styling */

.contact-options-row {
    display: flex;
    gap: .5rem;

    & > td {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
}
