/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 40px;
}
header h1 {
  font-size: 2.5rem;
  color: #b22222;
}
nav {
  margin-top: 10px;
}
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #444;
  font-weight: bold;
}
nav a:hover {
  color: #b22222;
}

/* Sections */
section {
  margin-bottom: 60px;
}
section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #444;
  text-align: center;
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Product Card */
.product-card {
  background-color: #fff;
  border: 2px solid #eee;
  padding: 24px 12px;
  text-align: center;
  font-weight: bold;
  border-radius: 8px;
  transition: transform 0.2s ease;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 384px;
}
.product-card:hover {
  transform: scale(1.05);
  border-color: #b22222;
}

/* Product Images */
.product-card img {
  width: 100%;
  height: auto;
  max-height: 682px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 1.1rem;
  color: #333;
}

/* SOLD Banner */
.product-card.sold .sold-banner {
  position: absolute;
  top: 20px;
  left: -40px;
  transform: rotate(-45deg);
  background-color: #b22222;
  color: white;
  font-weight: bold;
  padding: 10px 60px;
  font-size: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Tweaks */
@media (min-width: 768px) {
  .product-card {
    width: 336px;
  }
  .product-card img {
    height: 600px;
  }
}
