*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  height: 100%;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

input {
  outline: none;
}

select {
  appearance: none !important;
  cursor: pointer;
}

.datepicker-container {
  z-index: 10000 !important;
}

.hidden {
  display: none !important;
}

.t-left {
    text-align: left !important;
}

.t-right {
    text-align: right !important;
}

.t-center {
    text-align: center !important;
}

/*------------------------------App------------------------------*/

.app-wrapper {
    width: 100%;
    height: 100dvh;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    display: flex;
    justify-content: center;
    align-items: center;
    background: gainsboro;
}

.app-screen {
    width: 100%;
    height: -webkit-fill-available;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 400px;
    max-height: 650px;
}

.app-header {
    width: 100%;
    padding: 15px 15px;
    padding-bottom: 20px;
}

.app-body {
    width: 100%;
    flex: 1;
    padding: 15px 15px;
    padding-top: 0;
    padding-bottom: 0;
    overflow: auto;
    padding-bottom: 20px;
}

.app-footer {
    width: 100%;
}

/*------------------------------Footer Icons------------------------------*/

.app-footer .bottom-nav {
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.app-footer .nav-item {
    color: #888;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.app-footer .nav-item svg {
    width: 20px;
    height: 20px;
}

.app-footer .nav-item span {
    font-size: 11px;
}

.app-footer .nav-item.active {
    color: #2bb673;
}

/*------------------------------Header Top------------------------------*/

.app-header .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-header .header-top .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-header .header-top .header-left .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid gainsboro;
    overflow: hidden;
}

.app-header .header-top .header-left .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.app-header .header-top .header-left .text {
    position: relative;
}

.app-header .header-top .header-left .text .text-main {
    font-size: 14px;
    color: #161616;
    font-weight: 600;
}

.app-header .header-top .header-left .text .text-sec {
    font-size: 12px;
    color: #888;
}

.app-header .header-top .header-icons {
    display: flex;
    gap: 10px;
}

.app-header .header-top .header-icons .icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid gainsboro;
}

.app-header .header-top .header-icons .icon svg {
    width: 17px;
    height: 17px;
    color: #787878;
}

/*------------------------------Search Bar------------------------------*/

.search-bar {
    margin-top: 15px;
    position: relative;
    background: #f5f5f5;
    border-radius: 13px;
    color: #aaaaaa;
    font-size: 12px;
}

.search-bar svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 18px;
    left: 10px;
}

.search-bar .search-input {
    width: 100%;
    padding: 14px;
    border: none;
    outline: none;
    background: transparent;
    padding-left: 35px;
    border-radius: 13px;
    transition: all .3s ease;
    border: 1px solid transparent;
}

.search-bar .search-input:focus {
    border: 1px solid #00a154;
    box-shadow: 0 0 4px rgba(0, 161, 84, 0.25);
}

/*------------------------------Categories------------------------------*/

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.categories .cat {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.categories .cat img {
    width: 30px;
    height: 30px;
}

.categories .cat span {
    font-size: 11px;
    display: block;
}

.categories .cat.active {
    border: 1px solid #00a154;
    background: #dbffee;
    box-shadow: 0 0 4px rgba(0, 161, 84, 0.25);
}

/*------------------------------Food List------------------------------*/

.food-list {margin-top: 10px;display: flex;flex-direction: column;gap: 8px;}

.food-card {
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    align-items: center;
    border: 1px solid gainsboro;
}

.food-img {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
}

.food-content {
    flex: 1;
}

.food-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.meta {
    font-size: 11px;
    color: #777;
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 13px;
    font-weight: 600;
    color: #00a154;
}

.cart-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #dbffee;
    color: #00a154;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #3fb97f;
}

.cart-btn svg {
    width: 20px;
    height: 20px;
}


























