/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  width: 100%;
  height: 100%;
  background-color: rgb(212, 201, 201);
  color: #333;
  padding: 20px;
}

/* car nav */

.cart-nav-bar {
  width: 50%;
  /* background-color: #bdbdbd; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25rem;
  padding: 2rem;
}

.cart-nav-bar a {
  font-size: 24px;
  text-decoration: none;
  color: #222;
}

/* Cart Container */
.cart-container {
  background-color: #e2d6d6;
  border-radius: 10px;
  padding: 25px;
  max-width: 800px;
  margin: 5rem auto 5rem auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cart-container h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #444;
}

/* Cart Item */
.cart-item {
  height: auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: right;
  align-items: center;
  margin-top: 3rem;
  padding: 15px;
  border: 2px solid #838383;
  background-color: #c9d1df;
}

.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-details {
  flex: 1;
}

.cart-title {
  font-size: 1.2rem;
  color: #222;
}

.cart-price,
.item-total {
  color: #666;
  margin: 5px 0;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.quantity-control button {
  background-color: #005eff;
  color: #fff;
  border: none;
  padding: 5px 10px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quantity-control button:hover {
  background-color: #0044cc;
}

.remove {
  background-color: #ff4d4f;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.remove:hover {
  background-color: #cc0000;
}

/*  Total Section */
.total-price {
  text-align: right;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 600px) {

  /* car nav */
.cart-nav-bar {
  width: 100%;
  /* background-color: #bdbdbd; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  /* padding: 0.5rem; */
  margin-top: 3rem;
}

.cart-nav-bar a {
  font-size: 20px;
  text-decoration: none;
  color: #ff0000;
  order: 0;
}
  .cart-item {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: rgb(212, 201, 201);
  }
  .cart-details {
    /* background-color: #0044cc; */
    width: 100%;
    padding: 0 2rem 0 1rem;
  }

  .cart-item img {
    width: 80%;
    height: auto;
  }

  .quantity-control {
    justify-content: flex-start;
  }

  .cart-footer {
    text-align: center;
  }
}
