.header {
	background-color: #fff;
	padding: 3rem 0;
  container: header / inline-size;
	& .wrapped {
    position: relative;
		display: flex;
		justify-content: space-between;
		align-items: center;
    @container header (width < 1000px) {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
	}
  .logo {
    font-size: 2.25rem;
    font-style: italic;

    a {
      text-decoration: none;

    }
    .subtitle {
      display: inline-block;
      font-size: 1.5rem;
      font-style: italic;
      color: #888!important;
      padding-left: 1rem;

    }
  }

}

.menu {
	display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
	gap: 1rem;
  & .link {
    white-space: nowrap;
		text-decoration: none;
    display: block;
		padding: 0.5rem 1rem;
    border-radius: 2px;
    transition: background-color 0.2s ease;
    &:hover {
      background-color: var(--orange);
      color: #fff!important;
    }
	}

	& li {
		& a[aria-current="page"] {

      color: var(--orange);
      text-decoration: underline;
      text-underline-offset: 0.2em;
      text-decoration-thickness: 1px;
		}
	}
}

.minicart {
  position: absolute;
  top: 0;
  right: 5%;

  & a {
    text-decoration: none;
    display: block;
    display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 4rem;
  font-weight: 600;
    height: 4rem;
    background-color: var(--green);
    color: #fff;
    text-align: center;
    line-height: 2rem;
    border-radius: 50%;

  }
  & svg {
    width: 1.6rem;
    height: 1.6rem;
    fill: #fff;
  }
}
