html, body {
    height: 100%;
    margin: 0;
  }
  
  body {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%;
  }
  
  
  .m3d-header {
    background-color: rgb(196, 196, 196);
      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);
  
  }
  
  .m3d-header-left-section {
      width: 100px;
  }
  
  
  .gold-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 18px;
  
  }
  
  .m3d-logo {
    width: 100px;
  }
  
  
  .m3d-header-middle-section {
      display: flex;
      max-width: 1200px;
      justify-content: space-between;
      margin: 0 auto;
  }
  
  .links {
    background: none;
    border: none;
    text-decoration: none;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    padding-left: 5px;
  }

  .links:hover {
    color: #2CC295;
}
  
  .link {
    background: none;
    border: none;
    text-decoration: none;
    color: white;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    padding: 0;
  }
  
  .dropdown.active > .link,
  .link:hover {
    color: #17876D;
  }
  
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + .35rem);
    background-color:  rgba(70, 70, 70, 0.904);
    padding: .75rem;
    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: 250px;
    gap: 20px;
    color: white;
  }

  
  .dropdown-links {
    display: none;
    position: absolute;
    left: 85%;
    background-color: rgba(85, 85, 85, 0.973);
    border-radius: .25rem;
    border-bottom:  1px solid  #57575794;
    border-right: 2px solid  #2CC295;
    z-index: 99;
  }


  .dropdown-links a {
    display: grid;
    padding: 10px 30px;
    min-width: 180px;
    font-size: 16px;
  }

  .dropdown-links a:hover {
    color: #2CC295;
    background-color: #686868;
    border-radius: .25rem;
  }

  .dropdown-heading {
    width: 250px;
    height: 42px;
    align-content: center;
  }

  .dropdown-heading:hover {
    background-color: rgba(85, 85, 85, 0.973);
    border-radius: .25rem;
  }

  .dropdown-heading::after {
    content: "❯";
    color: #7e7e7e;
    float: right;
    position: absolute;
    left: 85%;
  }

  .dropdown.active > .dropdown-menu:hover .dropdown-heading, .subcategory-container:hover .dropdown-links{
    display: inline-block;
  }
  
  .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, 250px);
        gap: 1rem;
        overflow: scroll !important;
        max-height: 60vh;
        background: hsla(0, 0%, 9%, 0.938);
        border-radius: 0 15px 15px 0;
      }
    
      .links {
        color: #2CC295;
        padding: 0;
      }

      .dropdown-links {
        display: flex;
        flex-direction: column;
        position: relative;
        left: 0;
        gap: 0;
        border: none;
        background-color: transparent;
      }

      .dropdown-links a {
        padding: 10px 30px;
        font-size: 14px;
      }

      .dropdown-heading {
        width: 180px;
      }
      .dropdown-heading::after {
        content: none;
      }
      
  }
  
  @media (max-width: 500px) {
  
    .menu {
      --gap: 2em;
  
      position: fixed;
      z-index: 1000;
      inset: 0 35% 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, 180px);
        gap: 8px;
        overflow: scroll !important;
        max-height: 60vh;
        background: hsla(0, 0%, 9%, 0.938);
        border-radius: 0 15px 15px 0;
      }

      .links {
        color: #2CC295;
      }

      .dropdown-links {
        display: flex;
        flex-direction: column;
        position: relative;
        left: 0;
        gap: .35rem;
        border: none;
        background-color: transparent;
      }

      .dropdown-links a {
        padding: 5px 10px;
        max-width: 120px;
      }

      .dropdown-heading {
        width: 160px;
      }
      .dropdown-heading::after {
        content: "❯";
        color: #7e7e7e;
        float: right;
        position: absolute;
        left: 85%;
      }
  }

  .m3d-header-right-section {
    margin-right: 20px;
  }
  
  .cart-link  {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
  }
  
  /* .cart-icon-text {
    font-family: "Quicksand", "Arial";
    font-size: 18px;
    font-weight: 400;
  } */

  .cart-icon {
    width: 37px;
  }
  
  .cart-quantity {
    font-family: "Quicksand", "Arial";
    color: #2FA98C;
    font-size: 18px;
    position: absolute;
    top: 27px;
    right: 46px;
    width: 20px;
    text-align: center;
  }
  
  footer {
    background-color: rgb(0, 0, 0);
    padding: 25px 0;
    font-family: "Quicksand";
    border-top: 1px solid #2FA98C;
  }
  
  .footer-columns {
    display: grid;
    grid-template-columns: 300px 1fr;
    padding-bottom: 12px;
    align-items: start;
  }
  
  .footer-column-left {
    padding: 20px;
    display: grid;
    grid-template-rows: 1fr 1fr;
  }
  
  .footer-logo-image {
    margin: 0 auto;
  }
  .footer-logo-image img{
    max-width: 150px;
  }
  
  .footer-column-right {
    margin-right: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
  
  .footer-column-right h3 {
    color: #fff;
    margin-bottom: 16px;
  }
  
  .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: 8px;
    color: white;
  }
  
  .footer-column-right ul li a {
    text-decoration: none;
    color: white;
  }
  
  .footer-column-right ul li a:hover {
    color:#2CC295;
  }
  
  .footer-column-right a {
    text-decoration: none;
    color: #2FA98C;
    font-weight: 500;
  }
  
  .footer-column-right p {
    padding: 10px;
    color: white;
  
  }
  
  .footer-column-right a:hover {
    color: #2CC295;
    text-decoration: none;
  }

  .footer-services p{
    padding: 6px;
    margin: 0;
  }
  
  .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;
      letter-spacing: 1px;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 8px 0;
    color: white;
  }
  
  .footer-bottom a {
    text-decoration: none;
    margin-left: 10px;
  }
  
  .footer-bottom a:hover {
    color: #656e6b;
  }

.social-media  {
  margin: 0 auto;
}
.social-media a {
  display: inline-block;
  margin: 30px 10px;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.social-media svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.social-media a:hover svg {
  fill: #2CC295;
  transform: scale(1.1);
}
  
  @media (max-width: 690px) {
  
    .footer-column-right {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  
    .footer-bottom {
      font-size: 10px;
    }
  
    .m3d-logo {
      width: 80px;
    }
    
    .m3d-header-right-section {
        margin-right: 20px;
    }
  
    .cart-icon {
        width: 36px;
    }
  
    .cart-quantity {
        font-size: 18px;
        position: absolute;
        top: 28px;
        right: 45px;
    }
    .mobile-nav-toggle {
      width: 2.2rem;
      top: 2.5rem;
      left: 8rem;
      
    }

  }

    @media (max-width: 550px) {

    .social-media a {
      display: inline-block;

    }

      .footer-columns {
        grid-template-columns: 1fr;
      }

      .footer-column-left {
        margin: 0 auto;
        padding: 20px;
        justify-content: center;
      }

      .footer-column-right {
        margin: 0;
        padding: 20px;
      }

      .footer-column-right h3{
        font-size: 16px;
      }

      .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: 14px;
      }
  
      .footer-material-symbols-outlined {
          font-size: 18px;
      }
  
      .footer-bottom {
          padding-top: 10px;
          font-size: 8px;
      }

      .footer-services {
        font-size: 14px;
      }
  }
  
  @media (max-width: 500px) {

      .link {
          font-size: 14px;
      }
      .links {
          font-size: 14px;
      }
  
      .m3d-logo {
          width: 70px;
      }
      .m3d-header-right-section {
          margin-right: 20px;
      }
  
      .cart-icon {
          width: 30px;
      }
  
      .cart-quantity {
          font-size: 14px;
          position: absolute;
          top: 34px;
          right: 42px;
      }
  
      .menu {
          display: flex;
          align-items: baseline;
          padding: 1rem;
          padding-top: 6rem;
          gap: 1rem;
          font-size: 14px;
      }
  }
  