/** Shopify CDN: Minification failed

Line 143:0 Unexpected "{"
Line 143:1 Expected identifier but found "%"
Line 161:0 Unexpected "{"
Line 161:1 Expected identifier but found "%"

**/

/* New Header */

:root {
  --header-announcement-bg-color: #000000;
  --header-announcement-text-color: #ffffff;
  --header-menu-bg-color: #000000;
  --header-menu-text-color: #ffffff;
  --header-menu-icons-color: #999999;
  --header-menu-icons-color-mobile: #999999;
}

/* Header Group */

header i {
  /*color: var(--header-menu-icons-color);*/
}

.header_group {
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
    transition: top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}

.header_group.onscreen {
  top: 95px;
  @media screen and (min-width: 1300px) {
    top: 45px;

  }
}

/* Removida a regra display:none para que o header_group inteiro não desapareça */

/* .header_group.offscreen {

     display: none;

} */
.header-mobile__logo__image {
  opacity: 1;
  filter: blur(0);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* quando offscreen, esmaece e blura */
.header_group.offscreen .header-mobile__logo__image {
  opacity: 0;
  filter: blur(4px);
  pointer-events: none; /* opcional: evita cliques no logo “invisível” */
}


/* Transição suave com blur nos elementos desejados */

.header-desktop__logo__container,
.header-desktop__nav__container {
  transition: opacity 1s ease, filter 1s ease;
}
.header_group.offscreen .header-desktop__logo__container,
.header_group.offscreen .header-desktop__nav__container {
  /*opacity: 0;*/
  /*filter: blur(4px);*/
}
/* Announcement Bar */
.announcement-bar {
  width: 100%;
  background: var(--header-announcement-bg-color);
  color: var(--header-announcement-text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  padding: 10px 13px;
}

.announcement-bar.hide {
  display: none !important;
}

.announcement-bar__container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-bar__container p {
  margin: 0;
  font-size: .8125rem;
  font-weight: 400;
}

.announcement-bar__text {
  margin: 0 10px;

}

/* Mobile */
.header-mobile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: none;
  position: relative;
}

.header-mobile__header-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.header-mobile__logo__container {
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
      position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

{% if template.name == 'product' or template.name == 'product.faetton-kids' %}
@media only screen and (max-width: 1024px) {
  .header-mobile {
    display: flex;
    top: 0px;
  }

  /* aplica especificamente quando o body tem classe de template product ou product-faetton-kids */
  body.product .header-mobile,
  body.product-faetton-kids .header-mobile {
    top: 37px;
  }

  body.product .onscreen .header-mobile,
  body.product-faetton-kids .onscreen .header-mobile {
    top: 0px;
  }
}
{% endif %}


.header-mobile__logo__image {
  width: 220px;
}

.header-mobile__nav__toggle__container {
  display: flex;
  justify-content: right;
  align-items: center;
  background: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
  margin-left: -5px;
}

/* INÍCIO - Condicional para header nos templates product / product.faetton-kids em telas até 1300px */
@media screen and (max-width: 1300px) {
  /* cobre body.product, body.template-product, qualquer data-template que comece com "product" (ex: product.faetton-kids),
     e também formas possíveis como product-faetton-kids / template-product-faetton-kids */
  body.product .header-mobile__nav__toggle__container,
  body.template-product .header-mobile__nav__toggle__container,
  body[data-template^="product"] .header-mobile__nav__toggle__container,
  body.product-faetton-kids .header-mobile__nav__toggle__container,
  body.template-product-faetton-kids .header-mobile__nav__toggle__container {
    padding: 10px 52px 10px 19px;
  }

  body.product .header-desktop__nav__list__item a,
  body.template-product .header-desktop__nav__list__item a,
  body[data-template^="product"] .header-desktop__nav__list__item a,
  body.product-faetton-kids .header-desktop__nav__list__item a,
  body.template-product-faetton-kids .header-desktop__nav__list__item a {
    position: relative;
    left: -38px;
  }
}
/* FIM - Condicional para header nos templates product / product.faetton-kids em telas até 1300px */

.header-mobile__nav__cart {
  background: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.header-mobile__nav__toggle__container i, .header-mobile__nav__cart i {
  font-size: 20px;
}

.header-mobile__nav__menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 99999;
}

.header-mobile__nav__menu.show {
  display: block;
}

.header-mobile__nav__close__container {
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: var(--header-menu-text-color);
  position: fixed;
  top: 20px;
  right: 20px;
}

.header-mobile__nav__menu__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
}

.header-mobile__nav__menu__list__item {
  list-style: none;
  margin-bottom: 20px;
}

.header-mobile__nav__menu__list__item a {
  color: var(--header-menu-text-color);
  text-decoration: none;
  font-weight: 900;
}

.header-mobile__header-bottom {
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-mobile__searchbar__container {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-mobile__searchbar__input {
  width: 100% !important;
  height: 40px !important;
  border-radius: 10px !important;
  border: 1px solid var(--header-menu-bg-color) !important;
  padding: 0 10px !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
}

/* Desktop */
.header-desktop {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-desktop__header-left {
   width: calc(50% - 125px);
  height: 50px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px;
}

.header-desktop__header-center {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-desktop__header-right {
  width: calc(50% - 125px);
  height: 50px;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 20px;
}

.header-desktop__logo__container {
  width: 220px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-desktop__logo__image {
  width: 140px;
  min-height: 50px;
}

.header-desktop__searchbar__container {
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-desktop__searchbar__input {
  width: 250px !important;
  height: 40px !important;
  border-radius: 10px !important;
  border: 1px solid var(--header-menu-bg-color) !important;
  padding: 0 10px !important;
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900 !important;
  margin: 0 !important;
}

.header-desktop__nav__container {
  background: var(--header-menu-bg-color);
  height: 50px;
  display: flow;
  justify-content: space-between;
  align-items: center;
  border-radius: 25px;
  padding-left: 30px;
  padding-right: 30px;
  border: 1px solid #ccc;
}

.header-desktop__nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 90%;
  gap: 10px;
}

.header-desktop__nav__list__item {
  list-style: none;
  padding: 10px 5px;
  margin: 0;
}
.header-desktop__nav__list__item_account {
  list-style: none;
  padding: 10px 5px;
  margin: 0;
}
.header-desktop__nav__list__item a {
  color: var(--header-menu-text-color) !important;
  text-decoration: none;
  font-weight: 900;
}
.header-desktop__nav__list__item.dropdown-nav {
  position: relative;
}
.header-desktop__nav__dropdown {
  display: none;
  position: absolute;
  background-color: #ffffff;
  color: #000;
  width: 100%;
  min-height: 150px;
  min-width: 200px;
  top: 49px;
  left: 0;
  padding: 20px;
  z-index: -1;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.header-desktop__nav__dropdown.active {
  display: block;
  z-index: 9;
}
.header-desktop__nav__dropdown ul {
  margin: 0;
  padding-left: 0;
}

/* .dropdown-nav:hover .header-desktop__nav__dropdown, .header-desktop__nav__dropdown:hover {
  display: block;
} */

.header-desktop__nav__dropdown li {
  list-style: none;
  margin-bottom: 10px;
}
.header-desktop__nav__dropdown a {
  color: #000;
  text-decoration: none;
  font-weight: 900;
}

#shopify-section-header > section > header.header-desktop > div.header-desktop__header-right > div.header-desktop__nav__container.header-desktop__nav__icons > ul > li:nth-child(3) > a > span {
  position: absolute;
  top: -5px;
  left: 18px;
  font-size: 12px;
  letter-spacing: -1px;
  background: white;
  border:1px solid #555;
  color:#555;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-spacer {
  min-height: 140px;
}

/* Responsive */

/* Desktop */
@media screen and (min-width: 1100px) {
  .header-mobile {
    display: none;
  }

  .header-desktop {
    display: flex;
  }

  .header-spacer {
    /* margin-bottom: 20px;*/
  }
}

/* Mobile */
@media screen and (max-width: 1300px) {
  .header-mobile {
    display: flex;
  }
  .cat-settings {

  }
  .header-desktop,.index .header-mobile {
    display: none;
  }
  .index .header-desktop {
    display: flex !important;
  }
  #pagecontent {
    display: none !important;
  }

  .announcement-bar__container p {
    text-align: center;
  }
  

  header i {
    color: var(--header-menu-icons-color-mobile)!important;
  }
}
 /* POPUP – Somente Desktop */
@media (min-width: 1025px) {
  .colecoes-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
  }

  .colecoes-popup.show {
    display: flex;
  }

  .colecoes-popup__content {
    background: #fff;
    width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0,0,0,0.25);
    animation: fadeIn 0.25s ease-out;
  }

  .colecoes-popup__close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    color: black;
    border: none;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
  }

  .colecoes-popup__title {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
  }

  .colecoes-popup__list li {
    margin-bottom: 12px;
  }

  .colecoes-popup__list a {
    font-size: 18px;
    text-decoration: none;
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

