body {
  font-family: "Poppins", sans-serif;
  background: #f7f7f7;
  margin: 0;
  color: #333;
}

/* Navbar1 */
.navbar1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-weight: 600;
}

.logos {
  font-size: 22px;
  letter-spacing: 1px;
}

.secure {
  font-size: 14px;
  color: #4caf50;
}

/* Main container */
.cart-container {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 20px;
}

/* Left Section */
.cart-left {
  flex: 2;
}


.steps {
  text-align: center;
  margin: 20px;
  font-size: 16px;
}

.steps .active {
  color: green;
  font-weight: bold;
}

.reward-banner {
  background: #e8f6e8;
  border-left: 4px solid #4caf50;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Cart Item */
.cart-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.cart-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cart-item-image img {
  width: 120px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

.item-details {
  margin-left: 15px;
  flex: 1;
}

.item-details h3 {
  font-size: 17px;
  margin: 0 0 6px;
  color: #111;
}

.item-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  font-weight: 600;
  font-size: 17px;
  color: #222;
}

.old {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.off {
  color: #4caf50;
  font-size: 14px;
}

.save {
  font-size: 13px;
  color: #4caf50;
  margin: 4px 0 8px;
}

.info {
  font-size: 14px;
  color: #555;
}

.info span {
  font-weight: 600;
  color: #222;
}

/* Footer Row */
.cart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 10px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 5px 10px;
}

.qty-btn {
  background: #f2f2f2;
  border: none;
  font-size: 18px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: #ddd;
}

.qty-value {
  font-size: 15px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.footer-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wishlist-btn {
  border: 1px solid #ccc;
  background: #f6f6f6;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  color: #444;
  transition: all 0.2s;
}

.wishlist-btn:hover {
  background: #efefef;
}

.delete-btn {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s;
}

.delete-btn:hover {
  color: #ff4b4b;
}

/* Right Section */
.cart-right {
  flex: 1;
}

.savings-box {
  background: #fff8e1;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.savings-box .highlight {
  color: #00c853;
  font-weight: 600;
}

.coupon-btn {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  margin-top: 8px;
}

/* Price Details */
.price-details {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.line {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

.discount {
  color: #ff5252;
}

.free {
  color: #00c853;
}

.total {
  font-weight: 600;
}

/* Total Section */
.total-section {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}

.amount {
  float: right;
  font-weight: 600;
}

.bonus {
  font-size: 13px;
  color: #666;
  margin: 5px 0 10px;
}

.place-order {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.place-order:hover {
  background: #222;
}

/* Payment Icons */
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.payment-icons img {
  width: 45px;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-container {
    flex-direction: column;
    padding: 15px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-image img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 10px;
  }

  .cart-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .wishlist-btn {
    width: 100%;
    text-align: center;
  }
}
