/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff9f0;
  margin: 0;
  padding: 0;
  color: #333;
}

.checkout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.checkout-form, .order-summary {
  flex: 1 1 400px;
}

.checkout-form h2, .order-summary h2 {
  margin-bottom: 20px;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

form input, form textarea, form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

form button:hover {
  background-color: #c2185b;
}

.order-summary #orderItems {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 15px;
}

.order-summary .total {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

 */

 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffaf7;
  margin: 0;
  padding: 0;
  color: #333;
}

.checkout-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 60px auto;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.checkout-form,
.order-summary {
  flex: 1 1 400px;
}

.checkout-form h2,
.order-summary h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 20px;
  color: #b76e79;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #e91e63;
  outline: none;
  background-color: #fff0f5;
}

form button {
  margin-top: 25px;
  padding: 14px 20px;
  background: linear-gradient(to right, #e91e63, #f06292);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

form button:hover {
  background: linear-gradient(to right, #c2185b, #ec407a);
}

.order-summary {
  background-color: #fff8fb;
  border: 1px solid #ffe4ec;
  border-radius: 12px;
  padding: 20px;
}

.order-summary #orderItems {
  border-top: 1px solid #ddd;
  padding-top: 15px;
  margin-top: 15px;
}

.order-summary .total {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #c2185b;
}

@media screen and (max-width: 768px) {
  .checkout-container {
    flex-direction: column;
    padding: 20px;
  }
}

.fixed-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  /* z-index: 999; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1px;
  border-radius: 0px 0px 20px 20px;
}

.logo img {
  height: 78px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #b76e79;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #e91e63;
}

.cart-icon {
  position: relative;
}


