
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.item-img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}
.item-info {
  flex: 1;
}
.item-title {
  font-weight: bold;
}
.item-size {
  font-size: 14px;
  color: #666;
}
.item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.item-controls button {
  width: 26px;
  height: 26px;
  font-size: 16px;
  border-radius: 50%;
  border: 1px solid #aaa;
  background: none;
  cursor: pointer;
}
.item-price {
  font-weight: bold;
  min-width: 80px;
  text-align: right;
}
.item-remove {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-left: 8px;
}

/* Added grid layout for products */
.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.product-card {
    width: 100%;
}
/* Responsive: 2 columns on smaller screens */
@media (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Continue Shopping button spacing */
.continue-shopping { display: block; margin: 8px auto 0; }


/* Mobile footer layout */
@media screen and (max-width: 600px) {
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .footer-links a {
    display: block;
    text-align: center;
    padding: 5px 0;
  }
}
