
/* start header */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9999;
  }

  .header__navbar {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    font-weight: 700;
    box-shadow: 0 1px 3px rgb(0 0 0 / 10%), 0 2px 2px rgb(0 0 0 / 6%), 0 0 2px rgb(0 0 0 / 7%);
    border-bottom: 1px solid #fff;
    z-index: 10;
  }

  .header__content {
    display: flex;
    height: 100%;
    align-items: center;
  }

  .nav__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
  }
  .header__navbar-logo {
    width: 51px;
    height: auto;
    text-decoration: none;
  }
  .navbar__list {
    display: flex;
    list-style: none;
    align-items: center;
    font-size: var(--text-font);
    margin-left: 40px;
    text-transform: uppercase;
  }
  .navbar__list-item {
    display: list-item;
    height: var(--header-height);
  }
  
  .list__item {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: var(--header-height);
    margin-right: 24px;
    color: rgba(0, 0, 0, .87);
    letter-spacing: 1px;
  }
  
  .list__item-menu {
    box-shadow: inset 0 -6px #00754a;
  }
  
  .header__info {
    display: flex;
    font-size: var(--text-font);
    font-weight: 600;
    font-size: 1.4rem;
    align-items: center;
  }
  
  .sign__btn {
    text-decoration: none;
    color: rgba(0, 0, 0, .87);
    background: none;
    border-radius: 50px;
    border-style: solid;
    border-width: 1px;
    display: inline-block;
    font-weight: 600;
    line-height: 1.2;
    padding: 7px 16px;
    text-align: center;
    text-decoration: none;
    transition: all .2s ease;
  }
  
  .locate {
    margin-right: 40px;
    padding-right: 8px;
  }
  .locate:hover {
    color: #00754a;
  }
  
  .locate i {
    transform: translateY(2px);
    font-size: 20px;
    padding-right: 6px;
  }
  .user-item__link {
    font-size: 13px;
    text-decoration: none;
    color: rgba(0, 0, 0, .87);
    font-weight: 700;
  }
  
  .locate__icon-map {
    padding-right: 8px;
    font-size: 20px;
  }
  
  .btn__sign-in {
    margin-right: 16px;
  
  }
  
  .btn__join-now {
    background-color: #000;
    border-color: #000;
    color: #fff;
  }
  
  .list__item:hover,
  .header__info:hover {
    cursor: pointer;
    color: #00754a;
  }
  
  .btn__sign-in:hover {
    background-color: rgba(0, 0, 0, .06);
  }
  
  .btn__join-now:hover {
    background-color: rgba(0, 0, 0, .7);
    border-color: rgba(0, 0, 0, .7);
  }
  
  /* end: header__navbar */
  
  /* header menu */
  .header__menu {
    width: 100%;
    height: var(--menu-height);
    background-color: #f9f9f9;
    /* display: flex; */
    padding-left: 131px;
    padding-right: 40px;
    border: 1px solid #edebe9;
  }
  /* start mobile */
  .header__menu-bars {
    margin-right: 24px;
      font-size: 24px;
      user-select: none;
      transition: all linear 0.2s;
      display: none;
  }
  .header__menu-exit {
    margin-right: 32px;
      font-size: 32px;
      user-select: none;
      display: none;
  }
  .nav__mobile {
    position: fixed;
    top: 83px;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 100%;
    background-color: #fff;
    z-index: 3;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
    display: none;
    transform: translateX(101%);
    transition: all linear 0.2s;
  }
  .nav__mobile-list {
    margin: 24px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  }
  
  .nav__mobile-list__item {
    width: 100%;
  }
  
  .nav__mobile-list__item-link {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    padding: 20px;
    width: 100%;
  }
  
  .nav__info {
    padding: 40px;
    height: auto;
  }
  .nav__sign {
    min-height: 50px;
  }
  .header__find {
    font-size: 20px;
  }
  
  .nav-sign__btn {
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 7px 16px;
    line-height: 1.2rem;
    font-size: 14px;
    margin-right: 12px;
  }
  
  
  .overlay {
    position: fixed;
    top: 83px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    display: none;
  }
  
  .nav-input:checked~.overlay {
    display: block;
  }
  
  .nav-input:checked~.nav__mobile {
    transform: translateX(0%);
  }
  
  .nav-input:checked~body {
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .btn {
    padding: 7px 16px;
    border: 1px solid #000;
    border-radius: 50px;
    line-height: 1.2;
  }
  
  .sign-btn {
    margin-right: 16px;
  }
  
  .sign-btn:hover {
    background-color: rgba(0, 0, 0, .06);
  }
  
  .join-btn {
    background-color: #000;
    color: #fff;
  }
  
  .join-btn:hover {
    background-color: rgba(0, 0, 0, .7);
    border-color: rgba(0, 0, 0, .7);
  }
  /* mobile */
  .menu__item {
    display: flex;
    align-items: center;
    height: var(--menu-height);
  }
  
  .item__list {
    height: var(--menu-height);
    display: flex;
    margin: 0;
    list-style: none;
    align-items: center;
    width: 100%;
    padding-left: 0;
  }
  .li__item {
    display: flex;
    height: var(--menu-height);
    align-items: center;
  }
  
  .item__list-link {
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -.01em;
    text-decoration: none;
    font-size: 1.3rem;
    color: rgba(0, 0, 0, .87);
    margin-right: 32px;
    /* padding: 18px 0; */
  }

  .item__all-active {
    position: relative;
  }
  
  .item__all-active::after {
    border-bottom: 1px solid;
    bottom: -3px;
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
  }
  /* end header */

  /* container */
  .bar {
    margin: 0;
    border: 0;
    padding-bottom: 32px;
  }
  
  .bar::before {
    border-top-width: 1px;
    border-top: 2px solid rgba(0, 0, 0, .1);
    content: "";
    display: block;
    box-sizing: inherit;
  }
  .app_container {
    margin-top: 153px;
  }
  
  .container {
    padding-left: 131px;
  }
  .list__product {
    padding: 0;
    margin: 0;
  }
  
  .product__item {
    list-style: none;
  }
  .category__product {
    text-decoration: none;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, .58);
    line-height: 1.5;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    line-height: 1.5;
    margin-top: 20px;
  }
  .navigation__option {
    color: rgba(0,0,0,.58)!important;
    padding-bottom: 8px;
  }
  .navigation-menu {
    font-size: 1.6rem;
    color: rgba(0,0,0,.58)!important;
  }
  .navigation-hot {
    font-size: 1.8rem;
    font-weight: 600;
  }
  .title-menu {
    font-weight: 700;
    font-size: 2.8rem;
    padding-bottom: 48px;
  }
  .menu-option {
    font-weight: 700;
    font-size: 2.4rem;
    padding-bottom: 16px;
  }

  .title {
    line-height: 1.5;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 24px;
  }
  .drinks {
    display: grid;
    column-gap: 50px;
    grid-template-columns: auto auto auto auto;
  }
  
  .select-item {
    display: block;
    align-items: center;
    flex-direction: column;
  }
  
  .select-item:hover {
    cursor: pointer;
  }
  
  .img-item {
    border-radius: 50%;
    overflow: hidden;
  }
  
  .name-item {
    color: rgb(31, 57, 31);
    font-size: 1.9rem;
    padding-left: 15px;
    font-weight: 500;
    text-align: center;
    width: 130px;
  }
  .section-list {
    padding-bottom: 24px;
  }





  /* end container */

  /* footer css */
  .footer {
    overflow-x: hidden;
    margin-top: 48px;
    padding: 48px 40px 0 131px;
    box-shadow: 0 -1px 3px rgb(0 0 0 / 10%), 0 -2px 2px rgb(0 0 0 / 6%), 0 0 2px rgb(0 0 0 / 7%);
  }
  
  .footer-category {
    border-bottom: 2px solid rgb(213, 213, 213);
    padding-bottom: 32px;
  }
  
  .footer-category__item {
    position: relative;
  }
  
  .footer-category h5 {
    font-weight: 500;
    font-size: 19px;
    margin-bottom: 32px;
  }
  
  .footer-category li {
    padding: 10px 0;
  }
  
  .category-wrap {
    user-select: none;
  }
  
  .category-list {
    width: 100%;
  }
  
  .category-list-item a {
    text-decoration: none;
    font-size: 15px;
    color: rgba(0, 0, 0, .58);
    width: 100%;
    font-weight: 500;
    padding: 0;
  }
  
  .extend-btn {
    transition: all linear 0.22s;
  }
  
  .category-list-item a:hover {
    color: black
  }
  
  .footer-social {
    padding: 32px 0;
  }
  
  .footer-social a {
    text-decoration: none;
    color: black;
    font-size: 32px;
    margin-right: 10px;
  }
  
  .rules {
    padding-bottom: 28px;
  }
  
  .rules-item {
    padding: 0 14px;
    border-right: 2px solid #ccc;
  }
  
  .rules-item:last-child {
    border: none;
  }
  
  .rules-item a {
    display: block;
    padding: 0 14px;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
  }
  
  .rules-item a:hover {
    text-decoration: underline;
  }
  
  .license {
    padding: 0 0 56px 14px;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
  }
  
  /* bottomDrawer */
  .bottomDrawer {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    background-color: #1e3932!important;
    height: 94px;
  
  }
  .bottom-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 400px;
  padding-right: 266px;
  height: 100%;
  }
  .menu-search {
  display: flex;
  align-items: center;
  box-shadow: inset 0 -1.5px 0 hsl(0deg 0% 100% / 30%);
  flex-direction: row;
  flex-grow: 1;
  justify-content: space-between;
  min-width: 240px;
  min-height: 48px;
  text-decoration: none;
  line-height: 1.5;
  }
  .search-text {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  }
  .text-item {
  color: hsla(0,0%,100%,.7)!important;
  font-weight: 700;
  }
  .text-choose {
  color: #fff;
  font-weight: 700;
  }
  .menu-cart {
    background-repeat: no-repeat;
    display: inline-block;
    height: 32px;
    width: 32px;
  }
  .cart-link {
    color: #fff;
  }
  /* Responsive */
  @media (max-width: 1279px) {
    .drinks {
      grid-template-columns: auto auto auto;
    }
  }
  @media (max-width: 1024px) {
    .footer-category__item {
      color: rgba(0, 0, 0, 0.8);
      position: relative;
      display: flex;
      align-items: center;
      max-height: 40px;
      margin: 24px 0 0 0;
      top: 0;
    }
  
    .footer-category__item:hover {
      cursor: pointer;
    }
  
    .footer-category h5 {
      font-size: 18px;
      margin: 32px 0;
      padding: 0;
    }
  
    .category-wrap {
      max-height: 64px;
      overflow: hidden;
      transition: all 0.25s linear;
    }
  
    .category-wrap.expand {
      max-height: 360px;
    }
  
    .category-list.active {
      display: block;
    }
  
    .footer-category button {
      background-color: transparent;
      width: 44px;
      height: 44px;
      font-size: 24px;
      right: 0;
      margin-left: auto;
      text-align: center;
      align-self: center;
      border: 0;
      border-radius: 50px;
    }
  
    .footer-category button:hover {
      background-color: rgb(235, 235, 235);
      cursor: pointer;
      transition: all .2s ease-out;
    }
    .footer {
      padding-bottom: 50px;

    }
  }
  
  @media (min-width: 1024px) {
    .header {
      position: fixed;
    }
  
    .card {
      width: 25%;
    }
  
    .hide-on-pc {
      display: none;
    }
  
    .bottom-menu {
      padding-right: 90.625px;
    }
    
    .footer {
      margin-top: 48px;
      padding: 48px 0 100px 131px; 
    }

    .grid-column-11 {
      padding-right: 79px;
    }
  }
  @media (max-width: 1024px) {
    .header__navbar {
      padding: 0 24px;
    }
    .title-menu {
      padding-bottom: 32px;
    }
    
   
    .grid-column-1 {
      display: none;
    }
    .grid-column-11 {
      padding-left: 0;
      padding-top: 32px;
      padding-right: 16px;
    }
    .bottom-menu {
      padding-left: 99px;
      padding-right: 16px;
      
    }
  }
  @media (min-width: 768px)  and (max-width: 798px) {
    .footer {
      margin-top: 48px;
      padding-top: 48px;
      padding-bottom: 48px;
    }
  }

  @media (max-width: 799px) {
    .header__menu-bars,
      .header__menu-exit {
          display: block;
      }
      .header__navbar {
        padding: 0 24px;
      }
  
      .img-item {
        width: 72px;
        height: 72px;
      }
      .nav__mobile {
          display: block;
      }
      .navbar__list {
        display: none;
      }
      .header__info {
        display: none;
      }
      .header__navbar {
        display: flex;
        justify-content: space-between;
        height: 83px;
      }
      .nav__content {
        display: none;
      }
      .grid-column-1 {
        display: none;
      }
      .grid-column-11 {
        padding-left: 0;
        padding-top: 16px;
        padding-right: 16px;
      }
      .select-item {
        display: flex;
      }
      .img-item {
        width: 170px;
        height: 170px;
      }
      
      .rules {
        flex-direction: column;
      }
    
      .rules-item {
        border: 0;
        margin-bottom: 4px;
        padding: 8px 0;
      }
    
      .bottom-menu {
        padding-left: 99px;
        padding-right: 16px;
        
      }
    
      .cart-link {
        color: hsla(0,0%,100%,.7)!important;
      }
    
      .text-choose {
        color: hsla(0,0%,100%,.7)!important;
      }
    }
    @media (max-width: 767px) {
      .header__menu {
        display: none;
      }
      .app_container {
        margin-top: 82px;
      }
      .container {
        padding: 32px 16px 0 16px;
      }
      .drinks {
        grid-template-columns: auto auto;
      }
      .select-item {
        display: flex;
      }
      .img-item {
        width: 170px;
        height: 170px;
      }
      .bottom-menu {
        padding-left: 16px;
      }
      .footer {
        padding: 0 16px;
        padding-bottom: 60px;
      }

    }
    @media (max-width: 415px) {
      .img-item {
        width: 100px;
        height: 100px;
      }
    }
    @media (max-width:376px) {
      .header__navbar {
        padding: 0 16px;
      }
      .img-item {
        width: 100px;
        height: 100px;
      }
    }

    @media (max-width: 320px) {
      .drinks {
        display: grid;
        column-gap: normal;
        grid-template-columns: auto auto;
      }
      .img-item {
        width: 100px;
        height: 100px;
      }
      .bottom-menu {
        padding: 0 10px;
      }
      .title-menu {
        font-size: 22px;
      }
      .menu-option {
        font-size: 22px;
      }
    }