@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

html, body {
    overflow-x: hidden;
    font-family: 'Oswald';
}
.container-wave {
    position: relative;
    background: #FA661E;
    border-bottom: 20px solid #d5581b;
    height: 50vh;
    color: #fff;
    a {
        color: #fff !important;
    }
}
.container-wave-two {
    height: 30vh;
}
.logo-nav, .btn-home, .text-home {
    position: relative;
    z-index: 999;
    width: 60%;
}
.logo-nav-interno {
    width: 30%;
}
.btn-home {
    color: #FFF;
    transition: all 0.5s;
    position: relative;
    padding: 10px 30px;
}
.btn-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s;
}
.btn-home:hover::before {
    opacity: 0 ;
    transform: scale(0.5,0.5);
}
.btn-home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.5);
    transform: scale(1.2,1.2);
}
.btn-home:hover::after {
    opacity: 1;
    transform: scale(1,1);
}
.icon-home {
    display: inline-block;
    padding: 6px 8px 0px 8px;
    background: transparent;
    border-radius: 4px;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    transition: all ease 0.5s;
    cursor: pointer;
    img {
        filter: brightness(0) invert(1);
    }
}
.icon-home:hover {
    background: transparent;
}
.wave {
    position: absolute;
    height: 250px;
    width: 100%;
    background: #FA661E;
    bottom: 0;
}
.wave::before, .wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
}
.wave::before {
    width: 55%;
    height: 109%;
    background-color: #fff;
    right: -1.5%;
    top: 60%;
}
.wave::after {
    width: 55%;
    height: 100%;
    background-color: #FA661E;
    left: -1.5%;
    top: 40%;
}
#sandwichs {
    margin-top: 70px;
    margin-bottom: 40px;
}
#platos, #pizzas, #papitas, #fajitas {
    margin-bottom: 40px;
}
#platos, #papitas {
    background-color: #f7f7f7;
    padding-top: 30px;
    padding-bottom: 30px;
}
.product-card{
    min-height: 400px;
    margin-bottom: 20px;
    padding: 1.667vw 1.25vw;
    border-radius: 30px;
    border: 1px solid #fff;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #f0f0f0;
    width: 100%;
    position: relative;
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.04), 6px 3px 14px 0px rgba(0, 0, 0, 0.04), 23px 12px 26px 0px rgba(0, 0, 0, 0.03), 53px 27px 35px 0px rgba(0, 0, 0, 0.02), 94px 48px 42px 0px rgba(0, 0, 0, 0.01);
    .product-img{
        margin-bottom: 20px;
        filter: drop-shadow(0px 10px 30px #00000040);
        height: 130px;
        img{
            height: 100%;
            border-radius: 8px;
            -webkit-transition: all 0.6s linear 0s;
                transition: all 0.6s linear 0s;
        }
    }
    .title{
        margin-bottom: 16px;
    }
    .desc{
        font-size: 14px;
        margin-bottom: 10px;
        min-height: 100px;
    }
    .price-cart {
        display: flex;
        align-items: end;
    }
    &:hover{
        .product-img{
            img{
                -webkit-transform: scale(1.05);
                transform: scale(1.05);
                -webkit-transition: all 0.6s linear 0s;
                transition: all 0.6s linear 0s;
            }
        }
    }
}
.quantity {
    background: #F0F0F0;
    display: flex;
    gap: 8px;
    width: fit-content;
    border-radius: 5px;
    padding: 0.833vw;
    height: 2.917vw;
    input {
        background: transparent;
        border: none;
    }
}
.quantity .decrement, .quantity .increment {
    display: grid;
    align-content: center;
    cursor: pointer;
}
.cart-list {
    li {
        padding-left: 0;
    }
    img {
        width: 40px;
        border-radius: 8px;
        margin-right: 10px;
        height: fit-content;
    }
}
.detail-cart {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.sidenav {
    height: 100%;
    width: 400px;
    position: fixed;
    z-index: 1;
    top: 0;
    right: -100%;
    opacity: 0;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
    a {
        text-decoration: none;
    }
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: #FA661E;
}

.cart-btn-update {
    background-color: #FA661E;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 0;
}
.cart-btn-update:hover {
    border: 1px solid #FA661E;
    color: #FA661E;
}

.agregados-extra {
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    padding-top: 4px;
    padding-bottom: 4px;
}
.pointer {
    cursor: pointer;
}
.cart-btn-list {
    color: #FA661E;
    border: 1px solid #FA661E;
    width: 100%;
    border-radius: 0;
    padding: 4px;
}
.cart-btn-list:hover {
    background-color: #FA661E;
    color: #FFF;
}
.small-agregates {
    font-size: 12px;
    font-weight: normal;
}
.delete-div {
    position: absolute;
    right: 0;
}
.blue {
    color: #FA661E;
    border-bottom: 2px solid #FA661E;
}
.revert-color {
    background-color: #FA661E;
}
.bg-footer {
    background-color: #FA661E;
}
.show-mobile {
    display: none;
}
.rotate-circle {
    animation: loading 1s infinite;
}
@keyframes loading {
    to{
        transform: rotate(.5turn);
    }
}
@media screen and (max-height: 450px) {
    .sidenav { padding-top: 15px; }
    .sidenav a { font-size: 18px; }
}
@media only screen and (max-width: 767px) {
    #sandwichs {
        margin-top: 120px;
    }
    .btn-home {
        padding: 4px 4px;
        font-size: 14px;
    }
    .text-home {
        margin-bottom: 0;
    }
    .product-card {
        border-radius: 0;
        min-height: auto;
        .desc {
            min-height: auto;
        }
    }
    .my-5 {
        margin-top: 0 !important;
    }
    .ocultar-mobile {
        display: none;
    }
    .center-mobile {
        text-align: center !important;
    }
    .text-home {
        width: 100%;
    }
    .show-mobile {
        display: block;
    }
    .container-wave {
        height: auto;
        padding-bottom: 20px;
    }
    #sandwichs {
        margin-top: 30px;
    }
    #header-icons-content {
        justify-content: center !important;
        width: 100%;
    }
    .sidenav {
        width: 100%;
    }
}

.btn-secondary {
    color: #515151;
    background-color: transparent;
    padding: 4px 10px;
    border: none;
}
.btn-secondary:hover {
    background-color: transparent;
    color: #000;
}
.btn-primary {
    background-color: #fa1e1e;
    border: none;
    font-size: 16px;
    padding: 4px 10px;
}
.btn-primary:hover {
    background-color: #f40a0a;
}
a {
    color: #FA661E;
    text-decoration: none;
}
a:hover {
    color: #d5581b;
}
.end-footer {
    width: 100%;
    color: #fff;
    background-color: #000;
    padding: 5px 0px;
    text-align: center;
}