* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #F8F2E8;
}

/* Header */
header {
  top: 60px;
  right: 10px;
  width: fit-content;
  padding: 20px;
  position: absolute;
  align-items: center;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(51, 99, 97, 0.3);
  transition: 0.3s ease-in-out;
}

.logo {
  font-size: 1.5rem;
  color: #F8F2E8;
  font-weight: 600;
  text-decoration: none;
}

.cart-icon {
  position: relative;
  font-size: 1.8rem;
  color: var(--str-gree);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.cart-item-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #EED16C;
  color: #336361;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

/* Cart Page */
.cart-page {
  max-width: 800px;
  margin: 100px auto 50px;
  padding: 20px;
  background: #F8F2E8;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(51, 99, 97, 0.1);
}

.cart-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #336361;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #EED16C;
  align-items: flex-start;
}

.cart-item-left {
  width: 80px;
  flex-shrink: 0;
}

.cart-book-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #EED16C;
}

.cart-item-right {
  flex: 1;
}

.ref {
  color: #95a5a6;
  font-size: 0.9rem;
}

.delivery-options {
  margin: 10px 0;
  display: flex;
  gap: 15px;
}

.delivery-options span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #336361;
}

.item-details {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #336361;
  font-weight: 500;
}

.order-summary {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 2px solid #EED16C;
}

.total-items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: 600;
  color: #336361;
}

.total-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: 600;
  color: #336361;
}

.btn-buy {
  width: 100%;
  padding: 10px;
  background: #336361;
  color: #F8F2E8;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-buy:hover {
  background: #EED16C;
  color: #336361;
}

.btn-delete {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: #e74c3c;
  /* Red for delete */
  color: #F8F2E8;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.btn-delete:hover {
  background: #c0392b;
  /* Darker red on hover */
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.8rem;
  color: #95a5a6;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .cart-item {
    flex-direction: column;
    gap: 10px;
  }

  .cart-item-left {
    width: 100%;
  }

  .cart-book-img {
    height: auto;
    max-height: 150px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
}