:root {
    --white: #fff;
    --primary-color: #C90000;
    --gold: #FFC300;
    --second-gold: #FFD429;
    --third-gold: #FFF6A3;
    --fourth-gold: #FFFDE6;
    --light-gold: rgba(255, 246, 163, 0.7);
    --grey: #7D7C7C;
    --dark-grey: #504F4F;
    --light-grey: #E3E3E3;
    --second-light-grey: #F1F1F1;
    --black: #323232;
    --poppins-regular: "poppins-regular",  Arial, Helvetica, sans-serif;
    --poppins-bold: "poppins-bold",  Arial, Helvetica, sans-serif;
    --poppins-light: "poppins-light",  Arial, Helvetica, sans-serif;
}
html{
    box-sizing: border-box;
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
}
*,*:after,*:before{
    box-sizing: inherit;
}

body{
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 1.6rem;
    font-family: "poppins-regular";
    overflow-x: hidden;
}
.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 0.5rem;
}



/*

App style

*/
/* 
=============
-------------
    header
-------------
=============
*/
.header {
    margin-top: 1rem;
}
/* 
=================
    header__nav
=================
*/
.nav__wrapper {

}
.header-nav {
    display: grid;
    grid-template-columns: 5.8rem 63.5rem 18.7rem;
    justify-content: space-between;
    align-items: center;
}
/* 
------------------
    header-menu
------------------
*/
.nav-menu {
    margin-left: -5rem;
}
.menu__wrapper {
    display: flex;
    align-items: center;
}
.menu__itmes {
    margin-right: 5rem;
}
.menu__link {
    color: var(--grey);
    transition: 100ms ease-in;
}
.menu__link:hover {
    color:  var(--black);
}
/* .menu__link:hover {
    border-radius: 10rem;
    color: var(--white);
    background-color: var(--black);
    padding: 1rem;
} */
/* .menu__link::before {
    content: " ";
    background-color: var(--primary-color);
    border-radius: 10px;
    position: absolute;
    height: 0;
    width: 0; 
    transform: rotate(90deg);
    bottom: -9px;
    display: none;
    text-align: center;
}
.menu__link:hover::before{
    display: block;
    width: 3px;
    height: 1.5rem;
} */
.menu__link--active {
    font-weight: bold;
    color: var(--primary-color) !important; 
}
/* 
------------------------
    header-mobile-menu
------------------------
*/
.menu-mobile {
    display: none;
}
.menu-mobile__wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    left: -15rem;
    top: 0;
    bottom: 0;
    background-color: var(--black);
    padding: 2rem;
    transition: 100ms ease-in;
}
.menu-mobile__itmes {
    margin-bottom: 1.5rem;
}
.menu-mobile__link {
    color: var(--white);
    transition: 100ms ease-in;
}
.menu-mobile__link:hover {
    color: var(--gold);
}
.menu-mobile__link--active {
    color: var(--primary-color);
}
/* 
--------------------
    header-links
--------------------
*/
.nav__links {
    justify-self: end;
}
.nav__link {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10rem;
    padding: 1rem;
    margin-right: 0.7rem;
    transition: 100ms ease-in;
}
.nav__link:hover {
    color: var(--white);
    background-color: var(--black);
}
.nav__link--r {
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 10rem;
    padding: 1rem;
    transition: 100ms ease-in;
}
.nav__link--r:hover {
    color: var(--primary-color);
    background-color: var(--light-grey);
}
/* 
--------------------
    header-btns
--------------------
*/
.header__btn, 
.header__btn--close {
    display: none;
    transition: 100ms ease-in;
}
.header__btn {
    transition: 100ms ease-in;
}
#header-btn__input:checked + label svg:first-child {
    display: none;
}
#header-btn__input:checked + label svg:last-child {
    display: block;
}
#header-btn__input:checked +label + div .menu-mobile__wrapper{
    left: 0;
    z-index: 10;
}
/* 
=================
 header__content
=================
*/
.header__content {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: space-evenly;
    margin-top: 7rem;
}
/* 
--------------------
    header__info
--------------------
*/
.header__info {
    
}
.header__title {
    max-width: 34rem;
    font-size: 4.5rem;
    font-family: var(--poppins-bold);
    color: var(--primary-color);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.header__text {
    max-width: 34rem;
    color: var(--dark-grey);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 4rem;
}
.header__img-mobile {
    display: none;
    width: 100%;
}
.header__price {
    display: inline;
    color: var(--dark-grey);
    font-family: var(--poppins-light);
}
.header__price-number {
    display: inline;
    font-family: var(--poppins-regular);
    color: var(--black);
    font-size: 2.4rem;
    font-weight: bold;

}
.header__order {
    max-width: 37rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.2rem;
}
.header__order-number {
    border-radius: 10rem;
    border: 1px solid rgba(241, 241, 241, 0.7);
    box-shadow: 0 10px 17px rgba(112, 144, 176, 0.2);
    padding: 0.8rem 1.6rem;
    display: flex;
    align-items: center;
}
.header__order-plus {
    margin-right: 1.2rem;
    cursor: pointer;
}
.header__order-number-value {
    color: var(--gold);
    font-size: 2rem;
    margin-top: -0.5rem;
    position: relative;
    margin-left: 1.5rem; 
}
.header__order-number-value::after {
    margin-left: 24px;
    margin-top: -3rem;  
    display: block;
}
.header__order-number-value::after, 
.header__order-number-value::before {
    content: " ";
    background-color: var(--second-light-grey);
    width: 1px;
    height: 22px;
}
.header__order-number-value::before {
    margin-right: -34px;
    margin-top: -3rem;
    position: absolute;
    top: 32px;
    color: red;
    left: -16px;
}
.header__order-minus {
    margin-left: 1.2rem;
    cursor: pointer;
}
/* 
--------------------
    header__btn
--------------------
*/
.header__order-btn {
    background-color: var(--gold);
    color: var(--black);
    border-radius: 10rem;
    padding: 1.3rem 2.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--poppins-light);
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 20px 20px rgba(112, 144, 176, 0.2);
}
/* 
--------------------
    header__banner
--------------------
*/
.header__banner {
    position: relative;
}
.header__img {
    width: 100%;
}
/* 
------------------------
  header__delivary-box
------------------------
*/
.header__delivery-box {
    position: absolute;
    top: 5rem;
    left: -11rem;
    background-color: rgba(241, 241, 241, 0.4);
    border: 1px solid var(--second-light-grey);
    border-radius: 5rem 5rem 0 5rem;
    padding: 1.8rem 1.8rem 0.8rem 1.8rem;
}
.header__delivery-texts {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 2.4rem;
}
.header-delivery__svg {
    margin-top: -4px;
}
.header-delivery__title {
    font-size: 2.4rem;
}
.header-delivery__time {
    font-size: 1.6rem;
    text-align: center;
    color: var(--grey);
}
/* 
=============
-------------
    main
-------------
=============
*/
.main {

}
/* 
=================
    menu
=================
*/
.menu {
    margin-top: 5rem;
}
.menu__title {
    color: var(--primary-color);
    font-size: 4.2rem;
    font-family: var(--poppins-bold);
    position: relative;
}
.menu__title::before {
    content: " ";
    width: 12.5rem;
    height: 1rem;
    display: block;
    background-color: var(--third-gold);
    position: absolute;
    top: 4rem;
    z-index: -10;
}
/* 
--------------------
  menu__categories
--------------------
*/
.menu__categories {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(5, max-content);
    gap: 2rem;
    overflow-x: auto;
}
.menu-category__wrapper {
    cursor: pointer;
}
.menu__category {
    padding: 1.2rem 2rem;
    background-color: var(--second-light-grey);
    border-radius: 10rem;
    border: 1px solid var(--light-grey);
    color: var(--dark-grey);
    display: flex;
    gap: 0.6rem;
    font-family: var(--poppins-light);
}
.menu__category--active {
    font-family: var(--poppins-light);
    font-weight: bold;
    background: var(--gold);
}
.menu__foods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
    column-gap: 2.5rem;
    row-gap: 3rem;
    margin-top: 3rem;
}
.food {
    padding: 1.6rem 2rem;
    border-radius: 1.2rem;
    border: 1px solid var(--light-grey);
}
.food__banner {
    position: relative;
    text-align: center;
}
.food__banner::before {
    content: " ";
    display: block;
    background-color: var(--fourth-gold);
    position: absolute;
    z-index: -10;
    bottom: 0;
    left: 0;
    right: 0;
    top: 10rem;
    border-radius: 1rem;
}
.food__seller-svg {
    position: absolute;
    left: 0;
    top: 0;
}
.food__img {
    width: 100%;
    max-width: 227px;
    max-height: 170px;
    object-fit: contain;
}
.food__title {
    font-size: 2rem;
    font-family: var(--poppins-light);
    font-weight: bold;
}
.food__text {
    font-size: 1.4rem;
    color: var(--dark-grey);
}
.food__rate {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.food__stars {
    
}
.rate__number {
    font-size: 1.3rem;
    color: var(--dark-grey);
}
.food__order {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.food__price {
    font-size: 2rem;
    font-weight: bold;
}
.food__order-svg {
    padding: 1rem;
    border-radius: 1rem;
    background-color: var(--primary-color);
    padding-bottom: 0px;
    cursor: pointer;
}
/* 
----------------
    menu__btn
----------------
*/
.menu-btn__wrapper {
    text-align: center;
    margin-top: 4rem;
    font-size: 2rem;
}
.menu__btn {
    text-decoration: underline;
    color: var(--dark-grey);
}
/* 
=================
    Sale off
=================
*/
.sale-off {
    margin-top: 7rem;
}
.sale-off__title {
    color: var(--primary-color);
    font-size: 4.2rem;
    font-family: var(--poppins-bold);
    position: relative;
    width: max-content;
    margin: 0 auto;
}
.sale-off__title::before {
    content: " ";
    width: 100%;
    height: 1rem;
    display: block;
    background-color: var(--third-gold);
    position: absolute;
    top: 4rem;
    z-index: -10;
}
.sale-off__products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
    row-gap: 3rem;
    column-gap: 2.5rem;
    margin-top: 3rem;
}
.sale-off-productd {
    border: 1px solid var(--light-grey);
    border-radius: 2rem;
    background-color: var(--second-light-grey);
    padding: 4rem 3rem;
    transition: 150ms ease-in;
    overflow: hidden;
    position: relative;
}
.sale-off-productd:hover {
    transform: scale(1.1);
    background-color: var(--primary-color);
}
.sale-off-productd:hover .product__category, .product__text {
    color: var(--fourth-gold);
}
.sale-off-productd:hover .product__title {
    color: var(--gold);
}
.sale-off-productd:hover .product__text {
    color: var(--fourth-gold);
}
.sale-off-productd:hover .product__price {
    color: var(--second-light-grey);
}
.sale-off-productd:hover .prudoct__offer-price {
    color: var(--gold);
}
.sale-off-productd:hover .product__order {
    background-color: var(--fourth-gold);
}
.sale-off-productd:hover .product-order__text {
    color: var(--black);
}
.sale-off-productd:hover .product-order__path {
    fill: var(--black);
}
.product__category {
    color: var(--black);
}
.product__info {

}
.product__title {
    font-size: 3.2rem;
    font-family: 'poppins-bold';
    font-weight: bold;
    color: var(--primary-color);
}
.product__text {
    color: var(--dark-grey);
}
.product__banner {
    position: absolute;
    right: -5.8rem;
    top: 12rem;
}
.product__img {
    width: 100%;
}
.product__prices {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.product__price {
    text-decoration: line-through;
    color: var(--grey);
    font-weight: bold;
}
.prudoct__offer-price {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--primary-color);
}
.product__order {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 2rem;
    background-color: var(--dark-grey);
    color: var(--second-light-grey);
    width: max-content;
    padding: 0.8rem 1rem;
    margin-top: 5rem;
}
.product-order__svg {
    margin-top: -0.5rem;
}
.product-order__text {

}
/* 
==================
    application
==================
*/
.application {
    margin-top: 15rem;
    margin-right: 21rem;
    background-color: var(--second-light-grey);
    border-bottom-right-radius: 50rem;
    border-top-right-radius: 50rem;
}
.application__wrapper {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}
.application__banner {
    margin-top: -14rem;
    margin-bottom: -12rem;
}
.application__img {

}
.application__info {

}
.application__target {
    font-size: 2rem;
    color: var(--grey);
}
.application__title {
    font-size: 4.8rem;
    color: var(--primary-color);
    font-weight: bold;
}

.application__text {
    font-size: 1.6rem;
    color: var(--black);
}
.application__links {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}
.application__link {
    background-color: var(--dark-grey);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 2rem;
    border-radius: 5rem;
    color: var(--white);
    line-height: 2.4rem;
}
.application-link__banner {

}
.application-link__svg {

}
.application-link__info {

}
.applicationp-link__text {
    font-size: 1.2rem;
    font-family: var(--poppins-light);
}
.application-link__title {

}

/* 
==================
     location
==================
*/
.location {
    margin-top: 10rem;
}
.location__wrapper {
    text-align: center;
    background-color: var(--black);
    border-radius: 2rem;
    line-height: 4rem;
    padding: 10rem 6rem;
    position: relative;
    overflow: hidden;
}
.location__title {
    font-size: 4.8rem;
    color: var(--third-gold);
}
.location__text {
    color: var(--second-light-grey);
}
.location__form {
    max-width: 53rem;
    margin: 2rem auto 0 auto;
    background-color: var(--gold);
    border-radius: 10rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
}
.location__input {
    background-color: inherit;
    margin-left: 1.5rem;
    color: var(--grey);
    font-weight: bold;
    width: 70%;
}
.location__btn {
    padding: 1rem 2rem;
    border-radius: 10rem;
    font-family: var(--poppins-light);
    font-weight: bold;
}
.location__img--one {
    position: absolute;
    left: 0;
    top: 1rem;
}
.location__img--two {
    position: absolute;
    left: 13rem;
    bottom: 0;
}
/* 
=============
-------------
    footer
-------------
=============
*/
.footer {
    margin-top: 6rem;
    background-color: var(--fourth-gold);
    padding-top: 4rem;
    padding-bottom: 3rem;
}
.footer__wrapper {
    display: flex;
    justify-content: space-around;
}
/* 
==================
  footer__banner
==================
*/
.footer__banner {
    margin-top: 6rem;
}
.foonter__img {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer__icon {

}
.footer__title {
    font-size: 3.2rem;
    font-weight: bold;
}
.footer__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}
/* 
==================
  footer__list
==================
*/
.footer-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.footer-list__title {
    font-size: 2rem;
    font-family: var(--poppins-light);
    font-weight: bold;
}
.footer__items {

}
.footer__item {
    
}
.footer__link {
    color: var(--black);
    font-family: var(--poppins-light);
    cursor: pointer;
    transition: 100ms ease-in;
}
.footer__link:hover {
    text-decoration: underline;
}
/* 
====================
  footer__open-time
====================
*/
.footer-open-time {
    display: flex;
    flex-direction: column;
}
.footer-open-time__title {
    font-size: 2rem;
    font-family: var(--poppins-light);
    font-weight: bold;
}
.footer-open-time__texts {

}
.footer-open-time__text {
    color: var(--black);
    font-family: var(--poppins-light);
}