body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #ff6a00;
}

.navbar nav a {
  margin: 0 20px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #ff6b00;
}

.cart-page-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 30px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.cart-page-section h2 {
  text-align: center;
  color: #ff6a00;
  margin-bottom: 30px;
  font-size: 2.5em;
}

.cart-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  gap: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.cart-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-details h3 {
  margin: 0 0 5px 0;
  font-size: 1.4em;
  color: #333;
}

.cart-item-details p {
  margin: 4px 0;
  color: #555;
  font-size: 0.95em;
}

.remove-btn {
  padding: 10px 18px;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 500;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.remove-btn:hover {
  background-color: #c0392b;
}

.cart-summary {
  margin-top: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-top: 2px solid #ff6a00;
  border-radius: 0 0 8px 8px;
  text-align: right;
}

.cart-summary h3 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
}

.cart-summary #total-price {
  font-weight: bold;
  color: #ff6a00;
}

.checkout-container {
  text-align: center;
  margin-top: 30px;
}

#checkout-button {
  padding: 15px 30px;
  background-color: #ff6b00;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#checkout-button:hover {
  background-color: #e65c00;
  transform: translateY(-2px);
}

.empty-cart-message {
  font-size: 1.2em;
  color: #777;
  text-align: center;
  padding: 50px 20px;
  width: 100%;
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  .cart-page-section {
    padding: 20px 15px;
    margin: 20px auto;
  }
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .cart-item-image {
    width: 80px;
    height: 80px;
  }
  .remove-btn {
    align-self: flex-end;
    margin-top: 10px;
  }
  .cart-summary {
    text-align: center;
  }
}
/* Fullscreen Background Video */
body {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.backed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.cart-page-section,
.navbar,
/* .footer, */
.alert-placeholder,
.checkout-container,
.cart-summary,
.cart-container {
  position: relative;
  z-index: 2;
}
.navbar,
.cart-page-section {
  background-color: #ffffffd9;
  backdrop-filter: blur(10px);
}

.footer {
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center;
  padding: 30px 0;
  margin-top: 50px;
  position: relative;
  /* z-index: 2;  */
}
