body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #fdf6ec;
    }
    .navbar {
      background-color: #faf2e7;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #dcd2c7;
      position: relative;
    }
    .menu-icon,
    .profile-icon {
      font-size: 1.5rem;
      color: #4a1e00;
      cursor: pointer;
    }

    .navbar-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.5rem;
      font-weight: bold;
      color: #4a1e00;
      font-family: 'Arial Rounded MT Bold', sans-serif;
      white-space: nowrap;
    }

    .navbar-left, .navbar-right {
      display: flex;
      align-items: center;
      gap: 1rem;
      min-width: 80px; /* Keeps space reserved when centered */
    }

    .cart-button {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0.9rem;
      border: 1px solid #a8a29e;
      border-radius: 999px;
      background: #f8f6f1;
      font-weight: bold;
      color: #4a1e00;
      cursor: pointer;
      white-space: nowrap;
    }

    @media (max-width: 600px) {
      .cart-button span {
        display: none;
      }
      .navbar-logo {
        font-size: 1.2rem;
      }
    }





    body {
      margin: 0;
      font-family: 'Arial Rounded MT Bold', sans-serif;
      background-color: #faf2e7;
    }

    .order-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .order-left {
      flex: 1;
      min-width: 280px;
      max-width: 500px;
    }

    .order-left h1 {
      font-size: 3rem;
      color: #4a1e00;
      margin: 0 0 1.5rem;
      line-height: 1.1;
    }

    .btn-group {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 300px;
    }

    .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 1rem 2rem;
      font-size: 1.1rem;
      font-weight: bold;
      border-radius: 999px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-pickup {
      background-color: #d62d00;
      color: white;
      border-color: #d62d00;
    }

    .btn-pickup:hover {
      background-color: #bb2500;
    }

    .btn-delivery {
      background-color: #fdf6ec;
      color: #4a1e00;
      border-color: #4a1e00;
    }

    .btn-delivery:hover {
      background-color: #f3e7d8;
    }

    .order-right {
      flex: 1;
      min-width: 280px;
      max-width: 700px;
      text-align: center;
    }

    .order-right img {
      max-width: 100%;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .order-section {
        flex-direction: column;
        text-align: center;
      }

      .order-left h1 {
        font-size: 2.2rem;
      }
    }






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

    body {
      background-color: #fdf6ee;
      font-family: 'Segoe UI', sans-serif;
      padding: 20px;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      max-width: 550px;
      width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .card img {
      width: 100%;
      height: auto;
      display: block;
    }

    .card-content {
      padding: 20px;
    }

    .card h2 {
      color: #3e1c00;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 16px;
      color: #4e392f;
      margin-bottom: 10px;
      line-height: 1.5;
    }

    .card a {
      color: #4e392f;
      font-weight: bold;
      text-decoration: underline;
      margin-bottom: 20px;
      display: inline-block;
    }

    .order-btn {
      margin-top: 10px;
      display: inline-block;
      border: 2px solid #3e1c00;
      color: #3e1c00;
      background: #fff;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      transition: 0.3s;
    }

    .order-btn:hover {
      background-color: #f1e7db;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        align-items: center;
      }

      .card {
        max-width: 100%;
      }
    }