body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: rgb(173, 173, 173);
  background-size: cover;
  background-attachment: fixed;
  color: #333;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100;
}

.shop-main {
  max-width: 1200px;
  margin: 20px auto 20px;
  padding: 2rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.cart-indicator {
  font-size: 1.2rem;
}
.hero {
  text-align: center;
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.product-info {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-info h2 {
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.price {
  font-weight: bold;
  margin-bottom: 15px;
}
.btn {
  padding: 10px;
  border: none;
  background: #d9534f;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
}
.btn:hover {
  background: #c9302c;
}
