.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 8px 16px;
  background-color: #846c5b;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.global-footer {
  padding: 24px 0;
  border-top: 1px solid #eee;
}

.global-footer p {
  font-size: 16px;
  margin-bottom: 0;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  box-sizing: border-box;
}

.global-header {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  line-height: 1.6;
}

.header-nav {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 32px;
}

.logo img {
  height: 40px;
  display: block;
}

.cart-icon {
  display: flex;
  color: #846c5b;
  font-size: 24px;
  padding: 8px;
  position: relative;
  text-decoration: none;
  align-items: center;
}

#cart-count {
  position: absolute;
  bottom: 0px;
  right: -7px;
  background-color: #846c5b;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.global-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.global-nav a {
  color: #846c5b;
  font-weight: 600;
  display: block;
  font-size: 16px;
  text-decoration: none;
}

.global-nav a.active {
  font-weight: 700;
  text-decoration: underline;
}

.global-nav a:hover {
  text-decoration: underline;
}

.global-nav a:focus {
  outline: 2px solid #846c5b;
  outline-offset: 2px;
}

.global-nav .iconoir-cart {
  font-size: 20px;
  color: #846c5b;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 24px;
}

.hamburger:focus {
  outline: 2px solid #846c5b;
  outline-offset: 2px;
}

.hamburger .close-icon {
  display: none;
}

.hamburger.active .hamburger-icon {
  display: none;
}

.hamburger.active .close-icon {
  display: block;
}

@media (max-width: 900px) {
  .global-header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 1001;
  }

  .header-nav {
    position: relative;
    justify-content: space-between;
    gap: 16px;
  }

  .logo {
    flex: 1;
    order: 0;
    display: flex;
    justify-content: center;
  }

  .hamburger {
    display: flex;
    color: #846c5b;
    order: -1;
    z-index: 1002;
  }

  .cart-icon {
    order: 1;
  }
  .global-nav {
    height: calc(100% - 73px);
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 73px;
    left: 0;
    margin-left: 0;
    background-color: #ffffff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 32px;
    border-right: 1px solid #eee;
    display: block;
    visibility: visible;
  }

  .global-nav ul {
    flex-direction: column;
    padding: 0 32px;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
  }

  .global-nav li {
    width: 100%;
  }

  .global-nav a {
    padding: 8px 8px 8px 0;
    font-size: 20px;
    display: block;
    transition: 0.3s;
  }

  .global-nav.active {
    width: 250px;
  }
}
