.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 120px;
  background: #ffffff;
  color: #4d4d4d;
  transition: background 0.35s ease, color 0.35s ease, height 0.35s ease;
}
@media (max-width: 575.98px) {
  .c-header {
    height: 60px;
  }
}
.c-header--transparent:not(.is-scrolled) {
  background: transparent;
  color: #ffffff;
}
.c-header--transparent:not(.is-scrolled) .c-header__logo {
  color: #ffffff;
}
.c-header--transparent:not(.is-scrolled) .c-header__cart-count {
  background: #ffffff;
  color: #000000;
}
.c-header.is-scrolled {
  height: 60px;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
}

.c-header-spacer {
  height: 120px;
  transition: height 0.35s ease;
}
@media (max-width: 575.98px) {
  .c-header-spacer {
    height: 60px;
  }
}
.home .c-header-spacer {
  display: none;
}

.c-header__inner.o-container-fluid-large {
  padding: 0 40px;
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}

.c-header__left,
.c-header__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
}

.c-header__right {
  justify-content: flex-end;
}

.c-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #000000;
}
.c-header__logo a {
  display: block;
  line-height: 0;
}

.c-header__logo-img {
  height: 80px;
  width: auto;
  transition: height 0.35s ease;
}
.is-scrolled .c-header__logo-img {
  height: 40px;
}
@media (max-width: 575.98px) {
  .c-header__logo-img {
    height: 36px;
  }
}

.c-header__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-header__hamburger,
.c-header__search-btn,
.c-header__account,
.c-header__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 4px;
  line-height: 0;
  transition: opacity 0.2s;
  text-decoration: none;
}
.c-header__hamburger:hover,
.c-header__search-btn:hover,
.c-header__account:hover,
.c-header__cart:hover {
  opacity: 0.6;
  color: inherit;
}
.c-header__hamburger svg,
.c-header__search-btn svg,
.c-header__account svg,
.c-header__cart svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.c-header__hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.c-header__hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.c-header__cart {
  position: relative;
}

.c-header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background: #000000;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  padding: 0 3px;
  transition: background 0.35s ease, color 0.35s ease;
}
.c-header--transparent:not(.is-scrolled) .c-header__cart-count {
  background: #ffffff;
  color: #000000;
}

@media (max-width: 767.98px) {
  .c-header__lang {
    display: none;
  }
}
.c-header__lang-code {
  font-size: 14px;
}
.c-header__lang svg {
  width: 10px;
}

.c-header__lang-source {
  position: fixed;
  left: -9999px;
  top: -9999px;
}

.c-header__lang-wrap {
  position: relative;
}

.c-header__lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: opacity 0.2s;
}
.c-header__lang-btn:hover {
  opacity: 0.6;
}
.c-header__lang-btn svg {
  width: 10px;
  height: 8px;
  stroke: currentColor;
  fill: none;
  display: block;
  transition: transform 0.2s;
}
.c-header__lang-btn[aria-expanded=true] svg {
  transform: rotate(180deg);
}

.c-header__lang-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 4px 0;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 52px;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.c-header__lang-option {
  padding: 7px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: #000000;
  text-align: center;
  transition: background 0.15s;
}
.c-header__lang-option:hover {
  background: rgba(0, 0, 0, 0.05);
}
.c-header__lang-option.is-active {
  background: rgba(0, 0, 0, 0.05);
}

.c-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.c-nav-overlay.is-active {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.c-nav-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: -1;
}

.c-nav-overlay__close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 575.98px) {
  .c-nav-overlay__close {
    top: 16px;
    right: 20px;
  }
}
.c-nav-overlay__close span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: currentColor;
  display: block;
}
.c-nav-overlay__close span:first-child {
  transform: rotate(45deg);
}
.c-nav-overlay__close span:last-child {
  transform: rotate(-45deg);
}
.c-nav-overlay__close:hover {
  opacity: 0.7;
}

.c-nav-overlay__content {
  text-align: center;
  padding: 20px;
}

.c-nav-overlay__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-nav-overlay__menu > li > a {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
  transition: opacity 0.2s;
}
.c-nav-overlay__menu > li > a:hover {
  opacity: 0.6;
  color: #ffffff;
}
.c-nav-overlay__menu .sub-menu {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-nav-overlay__menu .sub-menu li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.c-nav-overlay__menu .sub-menu li a:hover {
  opacity: 0.6;
  color: rgba(255, 255, 255, 0.7);
}

.c-nav-overlay__lang {
  display: none;
}
@media (max-width: 767.98px) {
  .c-nav-overlay__lang {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    color: #ffffff;
  }
  .c-nav-overlay__lang .c-header__lang-list {
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
  }
  .c-nav-overlay__lang .c-header__lang-option {
    color: #ffffff;
  }
  .c-nav-overlay__lang .c-header__lang-option:hover, .c-nav-overlay__lang .c-header__lang-option.is-active {
    background: rgba(255, 255, 255, 0.1);
  }
}

.c-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.c-search-overlay.is-active {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}

.c-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: -1;
}

.c-search-overlay__close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (max-width: 575.98px) {
  .c-search-overlay__close {
    top: 16px;
    right: 20px;
  }
}
.c-search-overlay__close svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.c-search-overlay__close:hover {
  opacity: 0.7;
}

.c-search-overlay__container {
  width: 100%;
  max-width: 700px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .c-search-overlay__container {
    padding: 0 24px;
  }
}

.c-search-overlay__form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  gap: 16px;
  transition: border-color 0.2s;
}
.c-search-overlay__form:focus-within {
  border-color: rgba(255, 255, 255, 0.8);
}

.c-search-overlay__submit {
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  padding: 0;
  flex-shrink: 0;
  line-height: 0;
}
.c-search-overlay__submit svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.c-search-overlay__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: clamp(1.2rem, 3vw, 2rem);
  padding: 16px 0;
  font-family: inherit;
}
.c-search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.c-header__cart-wrap {
  position: relative;
}
@media (max-width: 767.98px) {
  .c-header__cart-wrap {
    position: static;
  }
}

.c-mini-cart {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  max-width: 420px;
  width: 420px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: rgb(255, 255, 255) 0 0 0 0, rgba(0, 0, 0, 0.05) 0 0 0 1px, rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (max-width: 767.98px) {
  .c-mini-cart {
    right: 0;
    left: 0;
    width: auto;
    max-width: 90%;
    margin: 0 auto;
  }
}
.c-mini-cart.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.c-mini-cart__topbar {
  padding: 20px;
}
.c-mini-cart__title {
  font-size: 1.5625em;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.08em;
  margin: 0;
  color: #000000;
}
.c-mini-cart__content {
  max-height: 60vh;
  overflow-y: auto;
  padding: 0;
}
.c-mini-cart__content .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-mini-cart__content .mini_cart_item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.c-mini-cart__content .mini_cart_item img {
  border-radius: 4px;
  grid-row: 1/3;
  width: 60px;
  height: 60px;
  object-fit: cover;
  display: block;
}
.c-mini-cart__content .mini_cart_item a:not(.remove) {
  font-size: 0.78rem;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.3;
}
.c-mini-cart__content .mini_cart_item a:not(.remove):hover {
  text-decoration: underline;
}
.c-mini-cart__content .mini_cart_item .remove {
  grid-column: 3;
  grid-row: 1;
  font-size: 16px;
  line-height: 1;
  color: #4d4d4d;
  text-decoration: none;
}
.c-mini-cart__content .mini_cart_item .remove:hover {
  color: #000000;
}
.c-mini-cart__content .mini_cart_item .product-title {
  font-size: 16px !important;
  color: #000000;
}
.c-mini-cart__content .mini_cart_item .product-title .variation {
  font-size: 12px;
  color: #676767;
  margin: 8px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px;
}
.c-mini-cart__content .mini_cart_item .product-title .variation p {
  color: #000000;
}
.c-mini-cart__content .mini_cart_item .bde-mini-cart-quantity {
  justify-content: flex-end;
  grid-column: span 3;
}
.c-mini-cart__content .mini_cart_item .quantity {
  grid-column: 2;
  font-size: 0.75rem;
  color: #4d4d4d;
  display: none;
}
.c-mini-cart__content .mini_cart_item .amount {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}
.c-mini-cart__content .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px;
  font-size: 16px;
  font-weight: 400;
  color: #676767;
}
.c-mini-cart__content .woocommerce-mini-cart__total span {
  font-size: 16px;
  color: #000000;
}
.c-mini-cart__content .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px 20px;
}
.c-mini-cart__content .woocommerce-mini-cart__buttons:last-child {
  display: none;
}
.c-mini-cart__content .woocommerce-mini-cart__buttons .button {
  display: block;
  text-align: center;
  padding: 15px 30px;
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
.c-mini-cart__content .woocommerce-mini-cart__buttons .button:hover {
  opacity: 0.75;
}
.c-mini-cart__content .woocommerce-mini-cart__buttons .button.checkout.wc-forward {
  display: none;
}
.c-mini-cart__content .woocommerce-mini-cart__buttons .wc-forward:not(.checkout) {
  border: 1px solid #000000;
  color: #000000;
  background: #ffffff;
}
.c-mini-cart__content .woocommerce-mini-cart__buttons .checkout {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

body.nav-is-open,
body.search-is-open {
  overflow: hidden;
}

/*# sourceMappingURL=header.css.map */
