
  .logo-container {
  text-align: right;
}

.logo {
  cursor: pointer;
  width: 100px; /* optional */
  margin-left: 30%;
}
#menu-btn {
  cursor: pointer;
  width: 100px; /* optional */
  margin-left: 8% !important;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  font-size: 16px;
}

.cart-item img {
  width: 80px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin: auto;
}

.cart-item strong {
  flex: 1;
  font-weight: 600;
  font-size: 17px;
    margin: auto;
}

.cart-item span {
  min-width: 80px;
    margin: auto;
}

.cart-item input[type="number"] {
  width: 60px;
  padding: 6px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-align: center;
  margin: auto;
}

.cart-item .remove-btn {
  color: #d10000;
  cursor: pointer;
  font-size: 14px;
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.cart-item .remove-btn:hover {
  font-size: 1rem;
  font-weight: 500;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px !important;
  padding-left: 20px;
  padding-right: 20px;
}

.cart-item img {
  width: 80px;
  height: auto;
}

.cart-item input {
  width: 60px;
  padding: 5px;
}

.remove-btn {
  margin: auto;
  color: red;
  cursor: pointer;
}

/* Totals */
#total {
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
    padding-left: 20px;
  padding-right: 20px;
}

h1 {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

.p{
width: 50% !important;
margin: auto;
}
/* Buttons */
button {
  padding: 12px 20px;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  margin-top: 10px;
  transition: background 0.3s ease;
  
}

button:hover {
  background-color: #444;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
}

.modal input {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.modal button {
  width: 100%;
}

/* Responsive */
@media screen and (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
    h1{
      margin-top: 80px;
    }

    #checkoutSection {
  background: #f9f9f9;
  margin-top: 30px !important;
  padding: 20px;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

#checkoutSection h3,
#checkoutSection h4 {
  margin-top: 0;
  color: #333;
}

#checkoutSection input,
#checkoutSection select {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem ;
  box-sizing: border-box;
  background-color: #fff;
  transition: border-color 0.2s ease;
}

#checkoutSection input:focus,
#checkoutSection select:focus {
  border-color: #000000;
  outline: none;
}

#checkoutSection button#submitOrder {
  width: 100%;
  background-color: #000000;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;

}

#checkoutSection button#submitOrder:hover {
  background-color: #000000;
}
