body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #111;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-bottom: 1px solid #eee;
}

.hero h1 {
  font-size: 48px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 60px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.card img:hover {
  transform: scale(1.03);
}

.price {
  font-weight: bold;
  margin: 10px 0 20px;
}

.soldout {
  color: red;
}

button {
  background: black;
  color: white;
  border: none;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 14px;
}

button:hover {
  background: #333;
}

footer {
  text-align: center;
  padding: 40px;
  color: #777;
}

.zoom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.zoom-modal img {
  max-width: 90%;
  max-height: 90vh;
}

.zoom-modal .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* ABOUT SECTION */
.about, .faq {
  padding: 60px;
  background: white;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  float: left;
  width: 320px;
  max-width: 40%;
  margin: 0 30px 20px 0;
}

.about::after {
  content: "";
  display: block;
  clear: both;
}