/* styles.css */

/* simpele reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* body / container */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* links */
a {
  color: inherit;
  text-decoration: none;
}


img {
  max-width: 100%;
  display: block;
}

/* Utilities */

.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

.container {
  max-width: 400px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color .2s;
}

.btn-primary {
  background-color: #C8102E;
  color: white;
  padding: .75rem 1.5rem;
}

.btn-primary:hover {
  background-color: #A0061C;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid currentColor;
  padding: .6rem 1.2rem;
}

.error {
  background: #ffe5e5;
  color: #b30b0b;
  padding: .75rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.main{
  margin-top:200px;
}

.product-card {
  background:#fff; border:1px solid #E5E7EB; border-radius:8px;
  overflow:hidden; text-decoration:none; color:inherit;
  transition:box-shadow .2s;
}
.product-card:hover {
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.image-container {
  width:100%; padding-top:100%; position:relative;
  background:#f3f3f3;
}
.image-container img {
  position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover;
}
.product-card h3 {
  margin:12px; font-size:1rem; line-height:1.2;
}
.product-card .price {
  margin:0 12px 12px; color:#C8102E; font-weight:bold;
}
.product-card .meta {
  display:flex; justify-content:space-between; padding:0 12px 12px;
  color:#6B7280; font-size:.875rem;
}
.product-card .seller {
  display:flex; align-items:center; padding:0 12px 12px;
}
.seller-avatar {
  width:24px; height:24px; border-radius:50%; object-fit:cover;
  margin-right:8px;
}
