body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #a8d0b0;
  color: #1b3a26;
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(-45deg, #0b3d24, #145c32, #1b4d2b, #207a45);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: #a8d0b0;
  text-align: center;
  padding: 40px 20px 10px;
  position: relative;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.top-contact {
  position: absolute;
  top: 15px;
  right: 25px;
}
.top-contact a {
  color: #a8d0b0;
  text-decoration: none;
  font-weight: 600;
}

/* Sections */
section {
  margin: 50px auto;
  max-width: 900px;
  padding: 25px;
  border-radius: 15px;
  background-color: #b4d8bc;
}
#shop { background: none; }

/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.product {
  text-align: center;
  background: none;
  border: none;
}
.product img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.product img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

/* Buttons */
button {
  background: linear-gradient(145deg, #1b4d2b, #2a8b4c);
  color: #f4f8f3;
  border: none;
  border-radius: 25px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
}
button:hover {
  transform: scale(1.05);
  background: linear-gradient(145deg, #207a45, #2fa85c);
}

/* Sparkle Animation */
.spark {
  position: fixed;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 100%;
  pointer-events: none;
  animation: sparkleAnim 0.6s ease-out forwards;
  box-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white;
}
@keyframes sparkleAnim {
  0% { opacity: 1; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(3) translateY(-50px); }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #f4f8f3;
}
.modal img {
  max-width: 80%;
  max-height: 70%;
  border-radius: 15px;
  margin-bottom: 10px;
}
.modal-controls button { margin: 0 5px; }
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* About */
/* About */ .about-header { 
  display: flex; justify-content: space-between; 
  align-items: center; } .fkg-logo { 
  width: 100px; 
  height: auto; /* keep proportions */ 
  border-radius: 50%; display: block; 
  margin: 20px auto; /* center it in its section */ 
  transition: transform 0.3s ease; } .fkg-logo:hover { transform: scale(1.05); }


/* Contact */
a { color:  #1b3a26; font-weight: 600; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Modern order form styling */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 1rem auto;
}

.order-form input,
.order-form select {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 2px solid #2d7245;
  font-size: 1rem;
  outline: none;
  transition: 0.3s all ease;
}

.order-form input:focus,
.order-form select:focus {
  border-color: #1b4d2b;
  box-shadow: 0 0 10px rgba(168,208,176,0.5);
}

.submit-btn {
  background-color: #1b4d2b;
  color: #a8d0b0;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s all ease;
  border: 2px solid #2d7245;
}

.submit-btn:hover {
  background-color: #2d7245;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ------------------------------
   Cart Section - Modern & Functional
   ------------------------------ */

.cart {
  background-color: #b4d8bc;
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  font-family: 'Poppins', sans-serif;
  color: #1b3a26;
}

.cart h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1b4d2b;
}

#cartItems div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background-color: #d3e8d4;
  font-weight: 600;
}

#cartItems button {
  background: linear-gradient(145deg, #1b4d2b, #2a8b4c);
  color: #f4f8f3;
  border: none;
  border-radius: 20px;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

#cartItems button:hover {
  transform: scale(1.05);
  background: linear-gradient(145deg, #207a45, #2fa85c);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-qty button {
  padding: 4px 8px;
  font-size: 1rem;
}

#cartTotal {
  font-size: 1.2rem;
  margin-top: 15px;
  font-weight: 700;
}

#checkoutBtn {
  margin-top: 15px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  padding: 12px;
  border: 2px solid #2d7245;
  background-color: #1b4d2b;
  color: #a8d0b0;
  cursor: pointer;
  transition: all 0.3s ease;
}

#checkoutBtn:hover {
  background-color: #2d7245;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.donation-msg em {
  color: #145c32;
  font-style: italic;
}

