/* Import Handwriting Font */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

body {
  font-family: 'Great Vibes', cursive;
  background-color: #fdf8f5;
  color: #2c2c2c;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Great Vibes', cursive;
  margin: 10px 0;
}

/* Hero Section */
.hero {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-text {
  margin: 20px auto;
  font-size: 28px;
}

/* Mission Section */
.mission {
  padding: 20px;
  font-size: 22px;
  line-height: 1.6;
}

/* Categories Grid */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.categories img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.categories img:hover {
  transform: scale(1.05);
}
.categories a {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  font-family: 'Great Vibes', cursive;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .categories img {
    height: 180px;
  }
}

/* Product Section */
.product {
  margin: 40px auto;
  max-width: 1000px;
  text-align: center;
}
.product h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.product p {
  font-size: 18px;
  line-height: 1.6;
}

/* Product Gallery Grid */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 20px auto;
  max-width: 1000px;
}
.product-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.product-gallery img:hover {
  transform: scale(1.05);
}

/* Prices, descriptions, details */
.description {
  font-size: 1.3em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 20px;
}
.details {
  font-size: 1.2em;
  margin: 15px auto;
}
.price {
  font-size: 1.5em;
  margin: 10px 0;
}

/* Back to Home Button */
.back-home {
  display: inline-block;
  background: black;
  color: white;
  font-family: 'Great Vibes', cursive;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin: 25px 0;
  transition: background 0.3s ease;
}
.back-home:hover {
  background: #5a2a2a;
}

/* Cart */
.cart {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  margin: 20px auto;
  max-width: 500px;
}
.cart h2 {
  font-size: 26px;
}
button, .btn {
  background-color: black;
  color: white;
  font-family: 'Great Vibes', cursive;
  border: none;
  padding: 10px 18px;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
button:hover, .btn:hover {
  background-color: #5a2a2a;
}

/* Footer */
footer {
  margin-top: 40px;
  padding: 20px;
  background: #f3ece7;
}
footer img.logo {
  width: 160px;
  display: block;
  margin: 20px auto;
}
footer p {
  font-family: 'Great Vibes', cursive;
  font-size: 1.2em;
  margin-top: 15px;
}
.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.payment-icons img {
  height: 40px;
  width: auto;
}

/* ✅ Fix: Remove duplicate big icons outside footer */
body > img[alt="Apple Pay"],
body > img[alt="Visa"],
body > img[alt="Mastercard"],
body > img[alt="PayPal"] {
  display: none !important;
}
