/* Shop Section */
.shop-section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
}

.product-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.product-name {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-description {
  margin-bottom: 1rem;
}

.product-price {
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-actions {
  display: flex;
  justify-content: space-between;
}

.add-to-cart {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #0056b3;
}

/* Product Detail */
.product-detail {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.product-detail .product-image {
  flex: 1;
}

.product-detail .product-info {
  flex: 1;
}

.product-detail .product-info .price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-detail .product-info .button-container {
  display: flex;
  justify-content: space-between;
}

.back-to-shop {
  background-color: #6c757d;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.back-to-shop:hover {
  background-color: #5a6268;
}
