body {
    margin: 0;
    padding: 0%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: #f7f5f2;
}

#navbar {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff;
}

#navbar-inner {
    width: 100%;
    max-width: 1700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#navbar-inner p {
    flex: 1;
    text-align: center;
    font-weight: 600;
}

#order-btn {
    margin-left: auto;
}

#container {
    width: 100%;
    max-width: 1700px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 28px;
    margin: 120px auto 40px auto;
}

#menu-tabs {
    width: 100%;
    max-width: 1700px;
    margin: 90px auto 10px auto;
    display: flex;
    gap: 8px;
}

.menu-tab {
    border-radius: 999px;
    padding: 8px 18px;
    border: 1px solid #000000;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 13px;
}

.menu-tab.active {
    background-color: #000000;
    color: #ffffff;
}

.card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 24px 20px;
    border-radius: 12px;
    background-color: #ffffff;
    font-size: 15px;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#banner {
    width: 100%;
    max-width: 1700px;
    display: block;
    margin: 90px auto 20px auto;
}

.card>.image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.item-count {
    margin-top: 6px;
    font-size: 12px;
    color: #555;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.button-row button {
    flex: 1;
}

button {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    cursor: pointer;
}

button:hover {
    background-color: #000000;
    color: #ffffff;
    box-shadow: none;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.25);
  }

  .modal-content {
    background-color: #ffffff;
    position: absolute;
    right: 0;
    top: 72px;
    height: calc(100% - 72px);
    width: 380px;
    padding: 16px 20px 20px 20px;
    border-left: 1px solid #000000;
    border-radius: 0;
    text-align: left;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }

  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }

  .modal-body {
    flex: 1;
    overflow: hidden;
    padding-right: 4px;
  }

  .modal-footer {
    margin-top: 10px;
  }

  .footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }
  .close {
    color: #000000;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    text-decoration: none;
    cursor: pointer;
  }

  #food-img{
    width:400px;
    height:200px;
  }
