* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f7f3e9;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #f6c343, #f4a300);
  padding: 20px;
  text-align: center;
  color: #222;
}

header h1 {
  font-size: 32px;
  font-weight: 700;
}

header p {
  margin-top: 5px;
  font-size: 16px;
}

/* UPLOAD BOX */
.upload-box {
  text-align: center;
  margin: 20px;
}

/* MENU GRID */
#menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
}

.card img:hover {
  transform: scale(1.05);
}

.name {
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
}

.price {
  color: #2e7d32;
  font-size: 18px;
  font-weight: bold;
  padding-left: 10px;
}

/* ORDER BUTTON */
.order {
  margin: 10px;
  padding: 10px;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.order:hover {
  background: #1b5e20;
}

/* POPUP */
#popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-box {
  background: #fff;
  width: 320px;
  border-radius: 16px;
  padding: 15px;
  text-align: center;
}

.popup-box img {
  width: 100%;
  border-radius: 12px;
}

.popup-box h2 {
  margin: 10px 0;
}

.close {
  margin-top: 10px;
  background: #d32f2f;
}
/* ===== SHAYARI ===== */
.shayari {
  background: #fff8e1;
  margin: 20px;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.shayari p {
  font-size: 18px;
  color: #4e342e;
  line-height: 1.6;
}
/* ===== SHAYARI ===== */
.shayari {
  background: #fff8e1;
  margin: 20px;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.shayari p {
  font-size: 18px;
  color: #4e342e;
  line-height: 1.6;
}

