html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  height: 100%;
}


.psb-header {
  background-color: rgb(0, 0, 0);
    padding-left: 1px;
    padding-right: 18px;

    display: flex;
    align-items: center;

    position: static;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;

    z-index: 10;
    transition: 0.3s ease;  
    padding-top: 10px;
    box-shadow: 0 0 4px 0 rgba(2, 2, 2, 0.822);

}

.psb-header-left-section {
    width: 100px;
}


.gold-wrapper {
  position: relative;
  display: inline-block;
  margin-left: 18px;

}

/* .gold-image {
  display: block;
  width: 100%;
  height: auto;
} */

/* .gold-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: #8f6200d8;
  background-image: url("https://www.transparenttextures.com/patterns/brushed-alum.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  mix-blend-mode:  color-dodge;
  
  opacity: 1; 
  pointer-events: none;
  z-index: 2;
} */

.psb-logo {
  width: 100px;
}


.psb-header-middle-section {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    margin: 0 auto;
}

.links {
  background: none;
  border: none;
  text-decoration: none;
  color: #BD0000;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
}

.dropdown.active > .links,
.links:hover {
  color: #BD0000;
}

.link {
  background: none;
  border: none;
  text-decoration: none;
  color: white;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}

.dropdown.active > .link,
.link:hover {
  color: #BD0000;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + .35rem);
  background-color:  rgba(14, 14, 14, 0.904);
  padding: .95rem;
  border-radius: .25rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
  z-index: 1000;
  margin-bottom: 20px;
}

.dropdown.active > .link + .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.information-grid {
  display: grid;
  grid-template-columns: repeat(4, 180px);
  gap: 2.2rem;
  color: white;
  padding: 10px;
}

@media (max-width: 1390px) {
    .information-grid {
        grid-template-columns: repeat(3, 180px);
        gap: 2.2rem;
    }
}

.dropdown-links {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: smaller;
  margin-top: 12px;
  margin-bottom: 12px;
}


.menu {
  background-color:  transparent;
  display: flex;
  align-items: baseline;
  padding: .5rem;
  gap: 2rem;
  text-decoration: none;
  font-family: "Quicksand", Arial;
  font-size: 20px;
  font-style: normal;
}


.mobile-nav-toggle {
  display: none;
}

@media (max-width: 1030px) {

  .menu {
    --gap: 2em;

    position: fixed;
    z-index: 1000;
    inset: 0 50% 0 0;

    flex-direction: column;
    padding: min(40vh, 15rem) 2em;

    background: hsla(0, 0%, 9%, 0.8);
    backdrop-filter: blur(1rem);
    border-radius: 0 15px 15px 0;

    transform: translateX(-100%);
    transition: transform 350ms ease-out;
    border-right: 1px solid #363636;

  }

  .menu[data-visible="true"] {
    transform: translateX(0%);
  }


  .mobile-nav-toggle {
    display: block;
    position: absolute;
    z-index: 9999;
    background-image: url("../images/icons/menu.svg") !important;
    background-color: transparent;
    width: 3rem;
    border: 0;
    aspect-ratio: 1;
    top: 1.8rem;
    left: 8.7rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    
  }
  .dropdown.active > .link + .dropdown-menu {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    
    .information-grid {
      display: grid;
      grid-template-columns: repeat(1, max-content);
      gap: 1rem;
      overflow: scroll !important;
      max-height: 54vh;
    }
    
    .dropdown-links {
      display: flex;
      flex-direction: column;
      gap: .35rem;
    }
}

@media (max-width: 500px) {

  .menu {
    --gap: 2em;

    position: fixed;
    z-index: 1000;
    inset: 0 45% 0 0;

    flex-direction: column;
    padding: min(40vh, 15rem) 2em;

    backdrop-filter: blur(1rem);
    border-radius: 0 15px 15px 0;
    transform: translateX(-100%);
    transition: transform 350ms ease-out;
  }

  .menu[data-visible="true"] {
    transform: translateX(0%);
  }


  .mobile-nav-toggle {
    display: block;
    position: absolute;
    z-index: 1001;
    background-image: url("/images/icons/menu.svg");
    background-color:transparent;
    width: 2.5rem;
    border: 0;
    aspect-ratio: 1;
    top: 2.3rem;
    left: 8rem;
    
  }
  .dropdown.active > .link + .dropdown-menu {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    
    .information-grid {
      display: grid;
      grid-template-columns: repeat(1, max-content);
      gap: 1rem;
      overflow: scroll !important;
      max-height: 60vh;
    }
    
    .dropdown-links {
      display: flex;
      flex-direction: column;
      gap: .35rem;
    }
}

.cart-link  {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.cart-icon-text {
  font-family: "Quicksand", "Arial";
  font-size: 20px;
  font-weight: 400;

}

.cart-icon {
  width: 50px;
}

.cart-quantity {
  font-family: "Quicksand", "Arial";
  color: #BD0000;
  font-size: 20px;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 18px;
  text-align: center;
}

footer {
  background-color: rgb(0, 0, 0);
  padding: 25px 0;
  font-family: "Quicksand";
  border-top: 1px solid #BD0000;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 12px;
}

.footer-column-left {
  width: 200px;
  padding: 20px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}

.footer-logo img{
  width: 100%;
}

.footer-column-right {
  margin-right: 10px;
  display: flex;
  flex-direction: column;
}

.footer-column-right h3 {
  color: #fff;
  margin-bottom: 25px;
}

.footer-column-right h4 {
    color: #fff;
    margin-bottom: 1px;
}

.footer-column-right ul {
  list-style: none;
  padding: 0;
}

.footer-column-right ul li {
  margin-bottom: 10px;
  margin-top: 10px;
  color: white;
}

.footer-column-right ul li a {
  text-decoration: none;
  color: white;
}

.footer-column-right ul li a:hover {
  color:#BD0000;
}

.footer-column-right a {
  text-decoration: none;
  color: #BD0000;
  font-weight: 500;
}

.footer-column-right p {
  padding: 8px;
  color: white;

}

.footer-column-right a:hover {
  color: #db0606;
  text-decoration: none;
}

.footer-material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    color: #ffffff;
    font-size: 22px;
    display: inline-block;
    line-height: 2.2;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    margin-right: 10px;
}

.footer-contact-info-num,
.footer-contact-info-email,
.footer-contact-info-address {
    display: flex;
    align-items: center;
    justify-content: baseline;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-bottom {
  text-align: center;
  padding: 5px 0;
  color: white;
}

.footer-bottom a {
  text-decoration: none;
  margin-left: 10px;
}

.footer-bottom a:hover {
  color: #db0606;
}

@media (max-width: 690px) {

  .footer-column-left {
    width: 100px;
  }

  .footer-column-right {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 10px;
  }

  .psb-logo {
    width: 80px;
  }
  .psb-header-right-section {
      margin-right: 20px;
  }

  .cart-icon-text {
      font-size: 16px;
  }

  .cart-icon {
      width: 40px;
  }

  .cart-quantity {
      font-size: 16px;
      position: absolute;
      top: 40px;
      right: 46px;
  }
  .mobile-nav-toggle {
    width: 2.2rem;
    top: 2.5rem;
    left: 8rem;
    
  }
}

@media (max-width: 400px) {
    .link {
        font-size: 14px;
    }
    .links {
        font-size: 14px;
    }

    .psb-logo {
        width: 70px;
    }
    .psb-header-right-section {
        margin-right: 20px;
    }

    .cart-icon-text {
        font-size: 14px;
    }

    .cart-icon {
        width: 30px;
    }

    .cart-quantity {
        font-size: 14px;
        position: absolute;
        top: 40px;
        right: 42px;
    }

    .menu {
        display: flex;
        align-items: baseline;
        padding: 1rem;
        padding-top: 6rem;
        gap: 1rem;
        font-size: 14px;
    }

    .footer-contact-info-num,
    .footer-contact-info-email,
    .footer-contact-info-address {
        margin-bottom: 10px;
    }

    .footer-contact-info-num,
    .footer-contact-info-email,
    .footer-contact-info-address a {
        font-size: 10px;
    }

    .footer-material-symbols-outlined {
        font-size: 18px;
    }

    .footer-bottom {
        padding-top: 10px;
        font-size: 8px;
    }
}


.footer-columns-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 12px;
}

.footer-column-left-contact {
    width: 200px;
    padding: 20px;
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}

.footer-logo-contact img {
    width: 100%;
}

.footer-column-right-contact {
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-column-right-contact h4 {
    color: #fff;
    margin-bottom: 1px;
}

.footer-column-right-contact ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.footer-column-right-contact ul li {
    margin-bottom: 10px;
    margin-top: 10px;
    color: white;
}

.footer-column-right-contact li {
    padding-left: 10px;
    border-left: 1px solid #ccc;
}

.footer-column-right-contact ul li a {
    text-decoration: none;
    color: white;
}

.footer-column-right-contact ul li a:hover {
    color: #BD0000;
}

.footer-column-right-contact a {
    text-decoration: none;
    color: #BD0000;
    font-weight: 500;
}

.footer-column-right-contact p {
    padding: 8px;
    color: white;

}

.footer-column-right-contact a:hover {
    color: #db0606;
    text-decoration: none;
}

@media (max-width: 600px) {

    .footer-column-right-contact {
        align-items: center;
    }

    .footer-column-right-contact ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        margin-left: 10px;
        font-size: 12px;
    }

    .footer-column-right-contact li {
        padding-left: 0;
        border-left: none;
    }
}