body {
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
  color: #2d3436;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}
.container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #4a90e2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}
.products-grid .product-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #eee;
}
.products-grid .product-card h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
}
.products-grid .product-card .price {
  font-size: 1.2rem;
  color: #2ecc71;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}
.products-grid .product-card button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #4a90e2;
  color: white;
  font-weight: 600;
}
.products-grid .product-card button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.products-grid .product-card button {
  width: 100%;
}

.cart-section {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.cart-section h2 {
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.cart-section #cart-items .cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed #ddd;
}
.cart-section #cart-items .cart-item:last-child {
  border-bottom: none;
}
.cart-section #cart-items .cart-item .item-info span {
  display: block;
}
.cart-section #cart-items .cart-item .item-info span.item-name {
  font-weight: 600;
}
.cart-section #cart-items .cart-item .item-info span.item-price {
  color: #666;
  font-size: 0.9rem;
}
.cart-section #cart-items .cart-item .btn-remove {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #e74c3c;
  color: white;
  font-weight: 600;
}
.cart-section #cart-items .cart-item .btn-remove:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
.cart-section #cart-items .cart-item .btn-remove {
  padding: 5px 12px;
  font-size: 0.8rem;
}

.cart-footer {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid #f8f9fa;
}
.cart-footer h3 {
  font-size: 1.5rem;
}
.cart-footer h3 span {
  color: #2ecc71;
}
.cart-footer .btn-clear {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f39c12;
  color: white;
  font-weight: 600;
}
.cart-footer .btn-clear:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/*# sourceMappingURL=style.css.map */
