*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Pacifico', cursive;
    
    }

    body {
      background: #fffdf8;
      color: #333;
    }

   /* =====================
   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;
  display: flex;
  align-items: center;
  justify-content: center;  
  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;
      align-items:center ;
      gap: 20px;
      background: #fff;
      padding-right: 40px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.08);
      position: sticky;
      top: 80;
      z-index: 99;
    }

    nav a {
      text-decoration: none;
      color: #ff7f50;
      font-weight: bold;
      cursor: pointer;
    }

    .hero {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://images.unsplash.com/photo-1490474418585-ba9bad8fd0ea') center/cover;
  color: white;
}

    h3 {
      background: linear-gradient(90deg, #ff7f50, #ffa502);
      color: white;
      padding: 20px;
      text-align: center;
    }
   .checkout-grid {
  display: grid;
  gap: 20px;
  padding: 20px;
}

    .order-count{
      padding-left:10px;
    }

    #confirmationMessage {
  display: none;
  color: green;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  background: #eaffea;
  border-radius: 10px;
}

.place-B {
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  margin: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}
.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
#checkoutForm {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#checkoutForm input,
#checkoutForm textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#checkoutForm button {
  background: #ff7f50;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.quantity-controls {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.quantity-controls button {
  padding: 5px 10px;
  border: none;
  background: #ffa502;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.remove {
  background:black;
  color: white;
  border: none;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
  
  
}
footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
}