html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
body {
        font-family: Arial, sans-serif 14px;
        color: black;
        display: flex;
        flex-direction: column;
        /* text-align: center; */
    }
footer {
        background-color: #D69A2D;
        padding: 20px;
        text-align: center;
        width: 100%;
        margin-top: auto; 
        border-top: 2px solid orange;
        border-bottom: 2px solid orange;
    }
header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #D69A2D;
        border-bottom: 2px solid orange;
    }
header img {
        height: 50px;
    }
.cart-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
        gap: 15px;
}
nav a:hover {
        color: #4169E1;
}
header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color:#D69A2D;
}
header img {
        height: 50px;
    }
footer a {
        margin: 0 10px;
        text-decoration: underline;
        color: black;
    }
footer a:hover {
        text-decoration: none;
        color: #4169E1;
    }
/* new */
#cart {
        border: 1px solid white;
        padding: 10px;
        width: 20%;
        margin: auto;
        background-color: white;
        border: 2px solid orange;
        border-bottom-color: chocolate;
        border-top-color: chocolate;
}
button:hover {
        border-color:transparent;
}
button {
        color: black;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        background-color: transparent;
        border-color:#0077cf;
        padding: 10px 10px;
        margin: 5px;
        cursor: pointer;
}

#promo-section {
        display: flex;
        align-items: center;
        gap: 10px; 
        margin-top: 10px;
}  
#promo-section input {
        padding: 8px;
        font-size: 14px;
        width: 200px;
}  
#promo-section button {
        padding: 8px 12px;
        font-size: 14px;
        border: 1px solid #0077cf;
        background-color: transparent;
        cursor: pointer;
}
#promo-message {
        font-weight: bold;
        margin-left: 10px;
        margin-right: 10px;
}
/* Popup Style */
.popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: white;
        border: 2px solid orange; 
        padding: 10px;
        border-radius: 5px;
        text-align: center;
        z-index: 1000;
        width: 200px;
}
.popup::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
        background: transparent;
        z-index: -1;
} 
.popup-content button {
        color: black;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        background-color: transparent;
        border-color:#0077cf;
        padding: 10px 10px;
        margin: 5px;
        cursor: pointer;
}
.popup-content button:hover {
        background: transparent;
}
    
#cart {
  max-width: 600px;
  margin: auto;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  background-color: white;
  border: 2px solid #FFA500; /* Hex code for orange */
  box-shadow: 0 4px 10px rgba(255, 165, 0, 0.2); 
}

#cart h2 {
  text-align: center;
  color: #152d47;
}

#cart-items {
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
}

#promo-section {
  margin: 20px 0;
  text-align: center;
}

#promo-section input {
  padding: 6px;
  width: 200px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#promo-section button {
  padding: 6px 12px;
  margin-left: 8px;
    background-color: #D69A2D;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#promo-message {
  color: green;
  font-size: 1px;
  margin-top: 5px;
}

.summary p {
  font-size: 12px;
  margin: 6px 0;
}

.checkout-btn {
  width: 100%;
 background-color: #0077cf;;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.checkout-btn:hover {
  background-color: #D69A2D;
}

button.continue-btn{
  margin-top: 10px;
  width: 100%;
   background-color: #0077cf;
  color: #333;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
  background-color: #fff;
  padding: 20px;
  border: 1px solid #999;
  border-radius: 10px;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.popup-content button {
  margin-top: 10px;
  background-color: #0077cf;
  color: #fff;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn-continue {
  margin-top: 10px;
  width: 100%;
   background-color: #0077cf;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.btn-continue:hover {
  background-color:  #D69A2D;; 
}