body {
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  font-family: Para Supreme Normal, serif;
}

/* Logo at top */
.shop-logo {
  text-align: center;
  margin-top: 1rem;
}
.shop-logo img {
  width: 80px;
  height: auto;
}

/* Shop info block */
.shop-info {
  text-align: center;
  margin: 1rem 0 2rem;
  color: #555;
}
.shop-owner {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #999;
  margin: 0;
}
.shop-info h2 {
  margin: 0.3rem 0;
  font-size: 1.3rem;
  font-weight: 600;
}
.product-count {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  color: #666;
}
.disclaimer {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: #999;
}

/* Hero combo */
.hero-combo {
  text-align: center;
  margin: 2rem 0;
}
.hero-combo img {
  width: 240px;
  height: auto;
}

/* Image gallery */
.flat-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 1rem 2rem;
}

.flat-gallery a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  max-width: 200px;
}

.flat-gallery img {
  width: 100%;
  height: auto;
  transition: transform 0.2s ease;
  cursor: pointer;
  border-radius: 6px;
}

.flat-gallery img:hover {
  transform: scale(1.05);
}

.p1.line {
  color: #333;
  font-family: "DM Sans", "Karla", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.47px;
  margin: 0.5rem 0 0;
  padding: 0 8px;
  text-align: center;
  white-space: normal;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.8rem;
  color:black;
  padding: 1rem;
}

/* -------------------
   RESPONSIVENESS
------------------- */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
  .flat-gallery a {
    max-width: 45%; /* 2 per row */
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .flat-gallery {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .flat-gallery a {
    max-width: 90%; /* full-width cards */
  }
  .flat-gallery img {
    max-width: 280px;
  }
}
