body {
    font-family:pacifico, cursive;
    background: linear-gradient(135deg, #ff7f50, #ffa502);
    margin: 0;
    padding: 0;
}
   /* =====================
   HEADER
   ===================== */
.main-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #ff7f50, #ffa502);
  padding: 14px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(255, 127, 80, 0.3);
  min-height: 80px;
}

/* LEFT — Logo image */
.left-header {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.left-header a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-image {
  height: 60px;
  width: 60px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

/* MIDDLE — Brand name */
.middle-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 20px;
  text-align: center;
}

.middle-header h1 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

.middle-header p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.5px;
  font-weight: 400;
}

/* RIGHT — Dashboard link */
.right-header {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.account-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  padding: 9px 18px;
  border-radius: 30px;
  transition: all 0.2s ease;
  backdrop-filter: blur(4px);
}

.account-trigger:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.my-acc {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 600px) {
  .main-header {
    padding: 12px 16px;
    min-height: 65px;
  }

  .logo-image {
    height: 46px;
    width: 46px;
  }

  .middle-header h1 {
    font-size: 1.2rem;
  }

  .middle-header p {
    display: none;
  }

  .account-trigger {
    padding: 7px 13px;
  }

  .my-acc {
    font-size: 0.78rem;
  }
}
    header h1 {
      font-size: 2rem;
      margin-bottom: 5px;
    }

    nav {
      display: flex;
      justify-content: center;
      gap: 20px;
      background: #fff;
      padding-right: 40px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    nav a {
      text-decoration: none;
      color: #ff7f50;
      font-weight: bold;
      cursor: pointer;
    }

.container {
    width: 90%;
    max-width: 500px;
    margin: 40px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
    color: #333;
}

.order-summary {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9fafc;
    border-radius: 8px;
}

.payment-section label {
    display: block;
    margin: 10px 0;
    cursor: pointer;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: none;
    background-color: #28a745;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.hidden {
    display: none;
}

.success {
    margin-top: 20px;
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border-radius: 5px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    }

    .item-name { flex: 2; }
    .item-qty { flex: 1; text-align: center; color: #777; }
    .item-price { flex: 1; text-align: right; font-weight: 500; }

    .total-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1.2rem;
    border-top: 2px solid #e8b84b;
    margin-top: 10px;
    }

    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }