* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: Arial, Helvetica, sans-serif;
}

:root {
    --sz-color: #ff8200;
    --sz-color-hover: #ff6600;
}

header {
    background-color: #fe9424;
}

body {
    background-color: #f4f4f4;
}

#sz {
    display: inline;
    font-size: 20px;
    margin-left: 10px;
    font-weight: normal;
}

#right-menu {
    margin-right: 1%
}

#drop {
    min-width: 70px !important;
}

.input-box {
    margin-bottom: 20px;
}

.input-box input {
    width: 80%;
    padding: 10px;
    outline: none;
    font-weight: 400;
    border: none;
    font-size: 17px;
    color: #32324f;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #c6c6c6;
}


.input-box span {
    min-width: 46px;
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    color: #32324f;
    font-weight: 400;
}

.input-box input::placeholder {
    color: #a9adb6;
}

.carrinho {
    height: 100vh;
    max-width: 400px;
    min-width: 400px;
    margin-left: auto;

    background-color: #fff;

    display: grid;
    grid-template-rows: max-content 1fr max-content;
    z-index: 9999;
    position: fixed;
    top: 0;
    right: -400px;
}

.header {
    font-size: 22px;
    color: #000000;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    border-bottom: 1px solid #fe9424;
    padding: 20px 30px;
}

.main {
    padding: 30px;

    display: grid;
    place-content: start;
    gap: 20px;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #fe9424;
}

.item {
    display: flex;
    gap: 20px;
}

.item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.item .title {
    font-size: 16px;
    color: #000000;
    display: flex;
    justify-content: space-between;
}

.price-qty {
    margin-top: 10px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

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

.qty input,
.qty button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.qty button {
    border-radius: 5px;
    border: 1px solid #fe9424;
    color: #ff6600;
    background-color: #ffffff;
    font-size: 1.05rem;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.qty button.sub:hover,
.qty button.add:hover {
    background-color: #fe9424;
    border: 1px solid #fe9424;
    color: #fff;
}


.qty input {
    width: 30px;
    height: 30px;
    border: none;
    text-align: center;
}

.qty input:focus {
    outline: none;
}

.footer {
    padding: 30px;
    border-top: 1px solid #fe9424;
}

.total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

.finish {
    margin-top: 15px;
    background-color: #fe9424;
    color: #fff;
    border: none;
    font-size: 1.05rem;
    padding: 1rem;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.finish:hover {
    background-color: #ffffff;
    border: 1px solid #ff6600;
    color: #ff6600;
}

.finish2 {
    margin-top: 15px;
    background-color: #fff;
    color: #fe9424;
    border: 1px solid #fe9424;
    font-size: 1.05rem;
    padding: 1rem;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.finish2:hover {
    background-color: #fe9424;
    border: 1px solid #ffffff;
    color: #fff;
}
