body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin: 0;
}

.container {
  max-width: 1500px;
  padding: 0px;
  margin: 0 auto;
  flex-grow: 1;
}

h1 {
  font-family: 'League Gothic', sans-serif;
  font-size: 128px;
  text-transform: uppercase;
  background: rgba(109, 169, 228, 1);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
  margin: 0;
}

header {
  display: flex;
  flex-direction: column;
}

nav {
  background-color: rgb(47, 87, 128);
  padding: 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.main-nav {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.user-nav {
  display: flex;
  justify-content: flex-end;
}

.user-nav .user-nav-right {
  margin-left: 10px;
}

nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin-right: 10px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
}

nav ul li a:hover {
  background-color: #333;
  color: #fff;
}

nav ul li a.current {
  background-color: rgba(246, 186, 111, 1);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown.dropbtn {
  background-color: rgba(246, 186, 111, 1);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #333;
  color: white;
}

.dropdown:hover .dropbtn {
  background-color: #333;
}

.content {
  padding-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background-color: #f4f4f4;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card .add-to-cart {
  margin-top: 10px;
}

.product-image {
  width: 200px;
  height: 300px;
  object-fit: contain;
}

.product-name {
  font-weight: bold;
}

.product-price {
  color: #555;
  margin-top: 10px;
}

.add-to-cart {
  background-color: rgba(109, 169, 228, 1);
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.add-to-cart:hover {
  background-color: rgba(246, 186, 111, 1);
}

.product-cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.product-image-cart {
  width: 100px;
  height: auto;
  margin-right: 10px;
}

.product-details {
  flex-grow: 1;
}

.product-name-cart {
  font-weight: bold;
  margin-bottom: 5px;
}

.product-price-cart,
.product-quantity-cart {
  margin-bottom: 5px;
}

.remove-form {
  margin-left: auto;
}

.remove-button {
  background-color: #f44336;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.cart-total {
  font-weight: bold;
}


.checkout-form {
  margin-left: auto;
  text-align: right; /* Add this line to align the content to the right */
}
.checkout-button {
  background-color: rgba(109, 169, 228, 1);
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.checkout-button:hover {
  background-color: rgba(246, 186, 111, 1);
}



.order-card {
  background-color: #f4f4f4;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.order-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.order-card p {
  margin-top: 0;
  margin-bottom: 5px;
}

.order-card table {
  width: 100%;
  margin-bottom: 10px;
  border-collapse: collapse;
}

.order-card table th,
.order-card table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.order-card table th {
  background-color: #f9f9f9;
}

.order-card .toggle-button {
  background-color: rgba(109, 169, 228, 1);
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.order-card .toggle-button:hover {
  background-color: rgba(246, 186, 111, 1);
}

.order-card .billing-details {
  display: none;
  padding-top: 10px;
}

.order-card .toggle-button::after {
  
  margin-left: 5px;
}



.order-card .toggle-button.active + .billing-details {
  display: block;
}

/* Additional styling */
.order-card {
  border: 1px solid #ccc;
  border-radius: 5px;
}

.order-card h4 {
  background-color: #f9f9f9;
  padding: 10px;
  margin-bottom: 15px;
}

.order-card .toggle-button {
  margin-bottom: 10px;
}

.order-card .billing-details {
  margin-top: 10px;
}




footer {
  background: rgba(109, 169, 228, 1);
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  margin-top: auto;
}