/* Modern Cart Styles */
.cart-container {
  max-width: 700px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(180,136,42,0.08);
  padding: 32px;
}
.cart-title {
  text-align: center;
  font-size: 2rem;
  color: #b4882a;
  font-family: 'Cinzel', serif;
  margin-bottom: 32px;
}
.cart-list {
  list-style: none;
  padding: 0;
}
.cart-item {
  margin-bottom: 18px;
  background: #f9f6f1;
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(180,136,42,0.08);
}
.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cart-book-title {
  font-weight: 600;
  color: #7c5e2a;
  font-size: 1.08rem;
}
.cart-book-price {
  color: #4caf50;
  font-weight: 600;
  font-size: 1rem;
}
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty {
  color: #b4882a;
  font-weight: 600;
  font-size: 1rem;
  margin: 0 8px;
}
.cart-qty-btn {
  background: #e2c275;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-qty-btn:hover {
  background: #b4882a;
}
.cart-remove-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-remove-btn:hover {
  background: #c0392b;
}
.checkout-btn {
  margin-top: 24px;
  padding: 12px 32px;
  background: #b4882a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(180,136,42,0.08);
}
@media (max-width: 700px) {
  .cart-container {
    padding: 10px;
  }
  .cart-title {
    font-size: 1.3rem;
  }
  .cart-item {
    padding: 8px 6px;
  }
}
body {
  background: #f8f8f8;
  font-family: 'Poppins', Arial, sans-serif;
}
.books-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(180,136,42,0.08);
}
.books-title {
  text-align: center;
  font-size: 2rem;
  color: #b4882a;
  font-family: 'Cinzel', serif;
  margin-bottom: 32px;
}
.books-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.book-card {
  background: #f9f6f1;
  border: 1.5px solid #e2c275;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(180,136,42,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.book-card:hover {
  box-shadow: 0 6px 24px rgba(180,136,42,0.18);
}
.book-image {
  width: 120px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid #e2c275;
}
.book-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #7c5e2a;
  margin-bottom: 6px;
  text-align: center;
}
.book-author {
  font-size: 1rem;
  color: #a05c1a;
  margin-bottom: 4px;
}
.book-category {
  font-size: 0.95rem;
  color: #b4882a;
  margin-bottom: 8px;
}
.book-summary {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 10px;
  text-align: center;
}
.book-price {
  font-size: 1.08rem;
  color: #4caf50;
  font-weight: 600;
  margin-bottom: 8px;
}
.book-meta {
  font-size: 0.92rem;
  color: #888;
  margin-bottom: 4px;
}
@media (max-width: 700px) {
  .books-container {
    padding: 8px;
  }
  .books-title {
    font-size: 1.3rem;
  }
  .books-list {
    gap: 16px;
  }
  .book-card {
    padding: 10px;
  }
}
