/* Padlock/Admin access CSS */
.logo-container {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 1;
}

.logo-image-normal {
  width: 50px; /* adjust logo width */
  height: 50px; /* adjust logo height */
  display: block;
}

.logo-image-hover {
  width: 50px; /* adjust logo width */
  height: 50px; /* adjust logo height */
  display: none;
}

.logo-link:hover .logo-image-normal {
  display: none;
}

.logo-link:hover .logo-image-hover {
  display: block;
}
/* END OF Padlock/Admin access CSS */

.section-title-container {
    display: grid;
    place-items: center;
    padding: 5px 0;
  }
  
  .section-title {
    font-size: 48px;
    color: #c3c3c3;
    text-decoration: none;
    font-style: bold;
    text-decoration: underline;
  }

  .section-title-cart-container {
    display: grid;
    place-items: center;
    padding: 5px 0;
  }
  
  /* "Your cart is empty.." code */
  .cart-title {
    font-size: 24px;
    color: #c3c3c3;
    text-decoration: none;
  }

.grand-total-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 350px;
  margin-bottom: 10px; /* Space between "Grand Total" and "Promotional Code" box */
}

#grand-total-label {
  font-size: 24px;
  font-weight: bold;
  color: #c3c3c3;
}

#grand-total-amount {
  font-size: 24px;
  font-weight: bold;
  color: #c3c3c3;
  text-align: right;
}


/* Promo-Code Container */
.promo-code-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  margin-top: 30px; 
  margin-bottom: 100px; /* Distance between promotional code container and bottom of screen */
}

.promo-code-container {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 350px;
  margin-bottom: 10px; /* Distance between promotional code box and error message */
}
  
  #promo-code {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
  }

  /* Error message code */

  .error-message-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 350px;
    height: 45px;
  }
  
  #error-message {
    color: red;
    font-size: 18px;
    margin: 0; /* Remove margin */
    text-align: center;
  }
  
  #apply-btn {
    margin-left: 15px; /* added space between input and button */
    font-weight: bold;
    font-size: 18px;
    background-color: #13aff0;
    color: #f0f0f0;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #apply-btn:hover {
    background-color: #13aff0;
  }
