body {
  margin: 0; font-family: Arial, sans-serif;
}
header { background: #4caf50; color: #fff; padding: 10px 20px; }
.navbar { display: flex; text-align: center; justify-content: space-between; }
.nav-links { list-style: none; display: flex; gap: 15px; margin: 0; padding: 0; }
.nav-links li a { color: #fff; text-decoration: none; }
.nav-links li a.active { font-weight: bold; }
.menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; }
footer { text-align: center; padding: 20px; background: #f2f2f2; }

/* Hero */
.hero { background: #e0f7e9; padding: 80px 20px; text-align: center; opacity: 0; transform: translateY(20px); transition: all 1s ease; }
.hero.fade-in { opacity: 1; transform: translateY(0); }
.hero .btn { background: #4caf50; color: #fff; padding: 10px 20px; border: none; cursor: pointer; }
.funny2 { background: #e0f7e9; padding: 80px 20px; text-align: center; opacity: 0; transform: translateY(20px); transition: all 1s ease; }
.hero.fade-in { opacity: 1; transform: translateY(0); }
.hero .btn { background: #4caf50; color: #fff; padding: 10px 20px; border: none; cursor: pointer; }
/* Cards */
.card-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.card { background: #fff; padding: 20px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: transform 0.3s; }
.hover-zoom:hover { transform: scale(1.05); }

/* Products */
.product-grid { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.product-card { background: #fff; padding: 15px; border-radius: 10px; text-align: center; box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: transform 0.3s; }
.product-card.hover-zoom:hover { transform: scale(1.05); }
.add-to-cart { padding: 8px 12px; margin-top: 10px; background: #4caf50; color: #fff; border: none; cursor: pointer; }

/* Order */
#order-summary ul { list-style: none; padding: 0; }
#order-summary li { padding: 5px 0; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: #4caf50; position: absolute; top: 60px; right: 0; width: 200px; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}
/* Contact page styles */
.contact-container {
  max-width: 600px;
  margin: 40px auto;
  background: #f0fff0; /* light green background */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
}
/* Order Page Styling */
.order-container {
  max-width: 700px;
  margin: 50px auto;
  background: #f0fff0; /* Light green background */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
}
.funny {
  max-width: 700px;
  margin: 50px auto;
  background: #f0fff0; /* Light green background */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-align: center;
}

.order-container h2 {
  color: #4caf50;
  margin-bottom: 20px;
}

.order-summary {
  text-align: left;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.order-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-summary li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.order-summary li:last-child {
  border-bottom: none;
}

.order-summary p {
  font-weight: bold;
  font-size: 18px;
  margin-top: 15px;
  text-align: right;
}

.clear-btn {
  background: #f44336;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.clear-btn:hover {
  background: #d32f2f;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .order-container { padding: 20px; }
  .order-summary li { flex-direction: column; align-items: flex-start; }
  .order-summary p { text-align: left; }
}

.contact-container h2 {
  color: #4caf50;
  margin-bottom: 10px;
}

.contact-container p {
  margin-bottom: 20px;
  color: #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.contact-form .btn:hover {
  background: #45a049;
  transform: scale(1.05);
}
/* Products Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product-card {
  background: #f0fff0;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  margin: 10px 0 5px 0;
  color: #4caf50;
}

.product-card p {
  margin: 5px 0;
  color: #333;
}

.product-card .price {
  font-weight: bold;
  color: #2e7d32;
  margin: 10px 0;
}

.product-card button.add-to-cart {
  margin-top: auto;
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.product-card button.add-to-cart:hover {
  background: #45a049;
  transform: scale(1.05);
}

/* Hover zoom effect */
.hover-zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width: 768px) {
  .product-card img {
    height: 120px;
  }
}
.centeralign {
    text-align: center;
}