html {
  font-size: 15px;
}

header {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  padding: 0.4rem 0.8rem;
  min-height: auto;
  max-height: none;
  gap: 0.6rem;
}

#header-logo {
  flex: 0 0 auto;
}

#hamburger-menu {
  background: #000;
  color: #fff;
  display: block;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  transition: 
    color ease 0.3s, 
    background-color ease 0.3s,
    transform ease 0.3s;
}

#hamburger-menu:hover {
  transform: translateY(-3px);
  background-color: #fff;
  color: #000;
}

#logo-hamburger-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#header-logo a {
  min-width: auto;
  max-width: none;
}

#header-nav {
  display: none;
  width: 100%;
}

#header-nav.active {
  display: block;
  width: 100%;
}

#header-nav-ul {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}

#header-nav-ul li {
  display: block;
  width: 100vw;
  text-align: left;
}

#header-nav-ul a {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
}

.product-categories {
  grid-template-columns: repeat(2, 1fr);
}

.products-grid {
  grid-template-columns: repeat(2, 1fr);
}

#page-footer {
  padding: 2rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  gap: 3rem;
  align-items: flex-start;
}

#form-social-media,
#footer-right {
  flex: 1 1 420px;
  min-width: 0;
}

#form {
  width: 100%;
  max-width: 480px;
}

#flex-section {
  max-width: 520px;
  gap: 2rem;
  align-items: flex-start;
}

#footer-nav {
  min-width: 140px;
  max-width: 160px;
  padding-right: 0;
}

#company-address {
  max-width: 320px;
  min-width: 0;
  letter-spacing: normal;
  word-spacing: normal;
}

#company-address p,
#company-address a {
  max-width: 300px;
  width: 100%;
  line-height: 1.6;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-social-media {
  margin-top: 2rem;
}