   *{
      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;
  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;
}

.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);
}


/* =====================
   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;
    }

    .hero {
      padding: 60px 20px;
      text-align: center;
      background: url('https://images.unsplash.com/photo-1490474418585-ba9bad8fd0ea') center/cover;
      color: white;
    }

    .hero h2 {
      font-size: 2.2rem;
      background: rgba(0,0,0,0.5);
      display: inline-block;
      padding: 15px 25px;
      border-radius: 10px;
    }

    .category-header {
      width: 100%;
      padding: 20px 0 10px;
      border-bottom: 2px solid #e8b84b;
      margin-bottom: 16px;
    }

  .category-header {
    width: 100%;
    padding: 20px 0 10px;
  border-bottom: 2px solid #e8b84b;
    margin-bottom: 16px;
    margin-top: 32px;
  }

  .category-header h2 {
  font-size: 1.4rem;
  color: #333;
  text-align: center;
}

    .category-row {
      display: flex;
      flex-direction:row;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 40px;
      width: 100%;
    }

   .product-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex:1 1 200px;
      width: 200px;
      background: #fff;
      border-radius: 12px;
      padding: 16px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .product-card img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .product-card h3 {
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .product-card .price {
      font-weight: bold;
      color:linear-gradient(90deg, #ff7f50, #ffa502);
      margin-bottom: 6px;
    }

    .product-card .desc {
      font-size: 0.8rem;
      color: rgb(3, 0, 0)k;
      text-align: center;
      margin-bottom: 10px;
    }
    /* Quantity Control */
.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.qty-btn {
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}

.qty-display {
  font-weight: bold;
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}

/* Addons Section */
.addons-section {
  margin: 10px 0;
}

.addons-toggle {
  background: #fff3e0;
  border: 1px solid #ff6b35;
  color: #ff6b35;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  width: 100%;
  text-align: left;
}

.addons-toggle:hover {
  background: #ffe0b2;
}

.addons-dropdown {
  background: #fffdf9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  margin-top: 6px;
  max-height: 200px;
  overflow-y: auto;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  font-size: 13px;
}

.addon-item:last-child {
  border-bottom: none;
}

.addon-item input[type="checkbox"] {
  accent-color: #ff6b35;
  width: 15px;
  height: 15px;
}

.addon-price {
  margin-left: auto;
  color: #28a745;
  font-weight: 600;
  font-size: 12px;
}

/* Total Price */
.total-price {
  font-weight: bold;
  color: #ff6b35;
  font-size: 15px;
  margin: 6px 0;
}

    .product-card button {
      width: 100%;
      padding: 8px;
      background:linear-gradient(90deg, #ff7f50, #ffa502);
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: 500;
    }

    .product-card button:hover {
      background: #d4a030;
    }

    #cart-container {
      display: flex;
      flex-direction: column;
      padding: 20px;
      width:100%;
    }
    section {
      padding: 50px 20px;
      max-width: 1100px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.8rem;
      color: #ff7f50;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr,1fr,1fr));
      gap: 25px;
    }

    .card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      overflow: hidden;
      transition: transform 0.2s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
   .card-body h3 {
  margin-bottom: 8px;
}

    .price {
      font-weight: bold;
      margin: 8px 0;
      color: #2ed573;
    }

    button {
      background: #ff7f50;
      color: white;
      border: none;
      padding: 10px 14px;
      border-radius: 8px;
      cursor: pointer;
      width: 100%;
      font-weight: bold;
      transition: 0.2s ease;
    }

    button:hover {
      background: #ff5722;
    }

    .about{
      text-align: center;
      line-height: 1.6;
      font-size: 1.05rem;
    }

    .contact {
      text-align: center;
      line-height: 1.6;
      font-size: 1.05rem;
    }

    .cart-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff7f50;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-weight: bold;
    z-index:999;
    transition: all 0.3s;

  }
  .cart-box:hover {
    background: #ff5722;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transform: translateY(-2px);
  }

    footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }

    @media (max-width:600px) {
      .hero h2 { font-size: 1.4rem; }
    }