header {
    .button-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 1rem;

        svg {
            --size: 30px;
            width: var(--size);
            height: var(--size);
        }
    }
}

.mall-form-control input,
.mall-form-control select,
.mall-form-control textarea {
    border: 1px solid #103d60;
    border-radius: 0;
    background-color: transparent;
}

.mall-product {
    .mall-product__info {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .mall-product__images {
        order: -1;
        width: 100%;

        .mall-product__image {
            width: 100%;
            border-width: 0;
            padding: 0;
            margin: 0 0 1rem;

            img {
                width: 100%;
            }
        }
    }
}