body {
  font-family: Poppins, sans-serif;
  margin: 0;
  padding: 20px;
  background: #FFF;
}

h1 {
  text-align: center;
  color: #222;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 10px;
}

.card img {
  width: 100%;
  height: auto;
}

.card .title {
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 10px;
}

.card .price {
  color: #333;
  margin: 5px 0;
}

.card button {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-top: 5px;
  border-radius: 4px;
  cursor: pointer;
}

.card button:hover {
  background-color: #1ebc59;
}

.cart {
  position: fixed;
  right: 0;
  top: 60px;
  width: 300px;
  background: white;
  padding: 15px;
  box-shadow: -3px 0 10px rgba(0,0,0,0.2);
  height: calc(100% - 60px);
  overflow-y: auto;
}

.cart h2 {
  margin-top: 0;
}

.cart ul {
  padding-left: 18px;
}

.cart .total {
  font-weight: bold;
  margin-top: 10px;
}

.cart a, .cart button {
  display: block;
  background-color: #25D366;
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
  cursor: pointer;
}
.format {
  font-size: 0.9rem;
  color: #555;
  margin: 5px 0;
}
.site-header {
  text-align: center;
  padding: 20px 0;
  background: #FFF;
}

.logo {
  max-width: 550px;
  height: auto;
}
.technique, .year {
  font-size: 0.9rem;
  color: #666;
  margin: 2px 0;
}
h3 {
  text-align: center;
  color: #222;
  font-size: 12px;
}