body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(-45deg, #fceabb, #f8b500, #fceabb, #ff6f00);
  background-size: 300% 300%;
  animation: glowBackground 10s ease infinite;
  color: #222;
}
@keyframes glowBackground {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.site-header {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  text-align: center;
  padding: 20px 10px;
  border-bottom: 1px solid #ffbf00;
}
.site-header h1 {
  font-size: 2.5rem;
  color: #ff6f00;
}
nav a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: 600;
  color: #222;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}
nav a:hover {
  border-bottom: 2px solid #ff6f00;
  color: #ff6f00;
}
.slideshow {
  width: 100%;
  max-width: 300px;
  height: 160px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  border-radius: 12px;
}
.slide.active {
  display: block;
}
.intro {
  text-align: center;
  padding: 30px 15px;
}
.intro h2 {
  font-size: 2rem;
  color: #ff6f00;
}
footer {
  margin-top: 50px;
  padding: 20px;
  background-color: #fff0f5;
}
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}
.menu-item {
  background: #fff8f2;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.menu-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px #ffcc70;
}
.menu-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.placeholder {
  width: 100%;
  height: 160px;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef3d8;
  color: #ff8c00;
  border-radius: 8px;
  margin-bottom: 10px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

.contact-info {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.3);
  margin: 20px auto;
  max-width: 600px;
  border-radius: 10px;
}
.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}
.whatsapp-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background-color: #25D366;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.whatsapp-button:hover {
  background-color: #1ebc59;
}

.contact-form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
.contact-form button {
  margin-top: 15px;
  padding: 12px;
  background-color: #ff6f00;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}
.contact-form button:hover {
  background-color: #e66100;
}
/* Cart Icon */
.cart-icon {
  position: relative;
  margin-left: auto;
  padding: 0 15px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: 2px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
}

.cart-sidebar.show {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.close-cart {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f5f5f5;
}

.item-actions {
  display: flex;
  gap: 5px;
}

.quantity-btn, .remove-btn {
  width: 25px;
  height: 25px;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
}

.remove-btn {
  color: #e74c3c;
}

.cart-total {
  text-align: right;
  margin: 20px 0;
  font-size: 18px;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: #27ae60;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.checkout-btn:hover {
  background: #2ecc71;
}

/* Add to Cart buttons */
.add-to-cart {
  margin-top: 10px;
  padding: 8px 15px;
  background: #3498db;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.add-to-cart:hover {
  background: #2980b9;
}

.price {
  font-weight: bold;
  margin: 10px 0;
  color: #27ae60;
  font-size: 18px;

  /* Payment Section Styles */
.payment-section {
  background: #f9f9f9;
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 8px;
  text-align: center;
}

.bank-details {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
}

.bank-details h4 {
  color: #27ae60;
  margin-bottom: 15px;
}

.bank-details p {
  margin: 8px 0;
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(18, 140, 126, 0.3);
}

.whatsapp-btn i {
  margin-right: 8px;
}

/* Payment Options Styling */
.payment-options {
  padding: 15px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 15px 0;
}

.payment-method {
  margin: 10px 0;
}

.payment-method label {
  margin-left: 8px;
}

.delivery-details {
  padding: 15px;
}

.delivery-details h4 {
  margin-bottom: 10px;
}

#delivery-address {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-height: 80px;
  resize: vertical;
}

/* Highlight selected payment method */
input[type="radio"]:checked + label {
  font-weight: bold;
  color: #27ae60;
}
.slogan {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #d35400;
  text-align: center;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.abacha-extras {
  flex-basis: 100%;
  max-width: 100%;
  background-color: #fff7f2;
  border-left: 4px solid #e67e22;
  padding: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.social-media a {
  color: #e67e22;
  text-decoration: none;
  font-weight: bold;
}

.social-media a:hover {
  text-decoration: underline;
}

.gallery-grid video {
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
}