/** Shopify CDN: Minification failed

Line 291:13 Expected identifier but found whitespace
Line 291:15 Unexpected "{"
Line 291:24 Expected ":"
Line 291:50 Expected ":"

**/


/* CSS from section stylesheet tags */
.icon-bar__wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  padding: 24px 0;
}

.icon-bar__item {
  text-align: center;
  flex: 1;
}

.icon-bar__item img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}

.icon-bar__item h4 {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.icon-bar__item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 4px 0 0;
}

/* Mobile slider */
@media (max-width: 767px) {
  .icon-bar__wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 32px;
    padding: 16px 20px;
    
    /* NOVO: Esconder scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  
  /* NOVO: Esconder scrollbar no Chrome/Safari */
  .icon-bar__wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .icon-bar__item {
    scroll-snap-align: center;
    flex: 0 0 auto;
    width: 100px;
    /* NOVO: Efeitos visuais */
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.3s ease;
  }
  
  /* NOVO: Item ativo/central */
  .icon-bar__item.active {
    opacity: 1;
    transform: scale(1);
  }
  
  .icon-bar__item img {
    width: 28px;
    height: 28px;
    /* NOVO: Transição suave */
    transition: transform 0.3s ease;
  }
  
  /* NOVO: Destaque no item ativo */
  .icon-bar__item.active img {
    transform: scale(1.1);
  }
  
  .icon-bar__item h4 {
    font-size: 12px;
  }
  .icon-bar__item p {
    font-size: 10px;
  }
}
/* Remover linhas brancas finas */
.icon-bar {
  border: none !important;
  background-color: #0f0f0f;
}

/* NOVO: Gradientes nas bordas para indicar scroll */
@media (max-width: 767px) {
  .icon-bar {
    position: relative;
    overflow: hidden;
  }
  
  .icon-bar::before,
  .icon-bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .icon-bar::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
  }
  
  .icon-bar::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
  }
}

/* NOVO: Indicadores de progresso (opcional) */
.icon-bar__progress {
  display: none;
}

@media (max-width: 767px) {
  .icon-bar__progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 8px;
  }
  
  .icon-bar__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
  }
  
  .icon-bar__dot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
  }
}
.promo-duo {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
  }
  .promo-duo__block {
    flex: 1 1 50%;
    position: relative;
    overflow: hidden;
  }
  .promo-duo__block img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1; /* Quadrado no desktop */
  }
  .promo-duo__content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
  }
  .promo-duo__button {
    /* Fonte do tema */
    font-family: var(--font-body-family, inherit);
    font-size: var(--font-body-size, 1rem);
    font-weight: var(--font-body-weight, 400);
    
    background-color: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
  }
  /* Hover só underline */
  .promo-duo__button:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
  }
  .promo-duo__button:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
  }
  @media (max-width: 749px) {
    .promo-duo {
      flex-direction: column;
      gap: 1px;
    }
    .promo-duo__block {
      flex: 1 1 100%;
    }
    .promo-duo__block img {
      aspect-ratio: 3 / 4; /* Retrato no mobile */
    }
  }
:root {
  --yukio-header-height: 55px;
  --yukio-header-mobile-height: 50px;
  --yukio-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --yukio-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ==== HEADER BASE ==== */
.yukio-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: var(--yukio-transition);
  height: var(--yukio-header-height);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.yukio-header--transparent {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.yukio-header--scrolled {
  background: #fff !important;
  box-shadow: var(--yukio-shadow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.yukio-header--transparent:hover,
.yukio-header--hovered {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.yukio-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ==== LOGO ==== */
.yukio-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-right: 2.5rem;
}

.yukio-logo img {
  max-height: {{ section.settings.logo_height }}px;
  width: auto;
  object-fit: contain;
  transition: var(--yukio-transition);
}

.yukio-logo__text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: inherit;
}

/* Logo Colors */
.yukio-logo__light {
  display: none;
}

.yukio-logo__dark {
  display: block;
}

.yukio-header--transparent .yukio-logo__dark {
  display: none !important;
}

.yukio-header--transparent .yukio-logo__light {
  display: block !important;
}

.yukio-header--scrolled .yukio-logo__dark {
  display: block !important;
}

.yukio-header--scrolled .yukio-logo__light {
  display: none !important;
}

.yukio-header--transparent:hover .yukio-logo__dark,
.yukio-header--hovered .yukio-logo__dark {
  display: block !important;
}

.yukio-header--transparent:hover .yukio-logo__light,
.yukio-header--hovered .yukio-logo__light {
  display: none !important;
}

/* ==== NAVIGATION ==== */
.yukio-nav {
  flex: 1;
}

.yukio-nav__list {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.yukio-nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--yukio-transition);
  position: relative;
  padding: 0.5rem 0;
}

.yukio-nav__link:hover {
  opacity: 0.7;
}

.yukio-nav__link--sale {
  color: #ff0000 !important;
}

.yukio-nav__arrow {
  transition: var(--yukio-transition);
  margin-left: 0.1rem;
}

.yukio-nav__item.has-megamenu:hover .yukio-nav__arrow {
  transform: rotate(180deg);
}

/* ==== MEGAMENU ==== */
.yukio-megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1400px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--yukio-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: var(--yukio-transition);
  z-index: 999;
}

.yukio-nav__item.has-megamenu:hover .yukio-megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.yukio-megamenu__inner {
  padding: 2rem 1.5rem;
}

.yukio-megamenu__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 700px;
}

.yukio-megamenu__title {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.yukio-megamenu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.yukio-megamenu__list li {
  margin-bottom: 0.4rem;
}

.yukio-megamenu__link {
  font-size: 0.7rem;
  color: #333;
  text-decoration: none;
  transition: var(--yukio-transition);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.yukio-megamenu__link:hover {
  color: #000;
}

/* ==== UTILITIES ==== */
.yukio-utils,
.yukio-utils--mobile {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.yukio-utils--mobile {
  gap: 0.4rem;
}

.yukio-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--yukio-transition);
  position: relative;
}

.yukio-icon:hover {
  opacity: 0.7;
}

/* ==== SEARCH ==== */
.yukio-search {
  position: relative;
}

.yukio-search__form {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: var(--yukio-transition);
  margin-right: 0.5rem;
  white-space: nowrap;
}

.yukio-search.is-active .yukio-search__form {
  opacity: 1;
  visibility: visible;
}

.yukio-search__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid currentColor;
  padding: 0.2rem 0;
  font-size: 0.7rem;
  width: 120px;
  outline: none;
  color: inherit;
  transition: var(--yukio-transition);
}

.yukio-search__input::placeholder {
  color: currentColor;
  opacity: 0.6;
}

/* Mobile Search Overlay */
.yukio-mobile-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--yukio-transition);
}

.yukio-mobile-search.is-open {
  opacity: 1;
  visibility: visible;
}

.yukio-mobile-search__form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 25px;
  padding: 0.5rem 1rem;
  width: 90%;
  max-width: 400px;
}

.yukio-mobile-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.5rem;
  font-size: 1rem;
  outline: none;
}

.yukio-mobile-search__close {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 0.5rem;
  color: #666;
}

/* ==== CART COUNT ==== */
.yukio-cart__count {
  position: absolute;
  top: 3px;
  right: 3px;
  background: #000;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12px;
  transition: var(--yukio-transition);
}

.yukio-cart__count:empty,
.yukio-cart__count[data-count="0"] {
  display: none;
}

.yukio-header--transparent .yukio-cart__count {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

/* ==== HAMBURGER ==== */
.yukio-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--yukio-transition);
  padding: 0;
  z-index: 2100;
  position: relative;
  overflow: visible;
}

.yukio-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: all 0.3s ease;
}
  /* HAMBURGER PADRÃO: branco no header transparente */
.yukio-header--transparent .yukio-hamburger span {
  background-color: #fff;
}

/* HAMBURGER SCROLLED ou COM FUNDO: preto */
.yukio-header--scrolled .yukio-hamburger span,
.yukio-header--hovered .yukio-hamburger span,
.yukio-header:not(.yukio-header--transparent) .yukio-hamburger span {
  background-color: #000;
}

  /* Esconde o botão no desktop */
@media screen and (min-width: 1025px) {
  .yukio-hamburger {
    display: none !important;
  }
}

.yukio-hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.yukio-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.yukio-hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ==== MOBILE NAV IMPROVED ==== */
.yukio-mobile-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: 2000 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
}

.yukio-mobile-nav.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

.yukio-mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.yukio-mobile-nav__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  z-index: 2;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.yukio-mobile-nav.is-open .yukio-mobile-nav__content {
  transform: translateX(0) !important;
}

.yukio-mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.yukio-mobile-nav__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #111; /* mais elegante que #333 */
  padding: 8px; /* ou 12px se quiser mais área clicável */
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Mobile Menu Items */
.yukio-mobile__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}

.yukio-mobile__item {
  border-bottom: 1px solid #f8f8f8;
}

.yukio-mobile__link,
.yukio-mobile__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--yukio-transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.yukio-mobile__link--sale,
.yukio-mobile__toggle--sale {
  color: #ff0000;
}

.yukio-mobile__arrow {
  transition: var(--yukio-transition);
}

.yukio-mobile__item.is-open .yukio-mobile__arrow {
  transform: rotate(90deg);
}

.yukio-mobile__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.yukio-mobile__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.yukio-mobile__item.is-open > .yukio-mobile__submenu {
  max-height: 500px;
}

.yukio-mobile__sublink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem 0.6rem 1.8rem;
  color: #666;
  text-decoration: none;
  font-size: 0.7rem;
  transition: var(--yukio-transition);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

/* Level 3 indentation */
.yukio-mobile__submenu .yukio-mobile__submenu .yukio-mobile__sublink {
  padding-left: 2.5rem;
  color: #555;
  font-size: 0.65rem;
}

.yukio-mobile__sublink:hover {
  color: #000;
  background: rgba(0,0,0,0.02);
}

/* ==== CART DRAWER ==== */
.yukio-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: var(--yukio-transition);
}

.yukio-cart-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.yukio-cart-drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.yukio-cart-drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: var(--yukio-transition);
  display: flex;
  flex-direction: column;
}

.yukio-cart-drawer.is-open .yukio-cart-drawer__content {
  transform: translateX(0);
}

.yukio-cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.yukio-cart-drawer__title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0;
}

.yukio-cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: var(--yukio-transition);
}

.yukio-cart-drawer__close:hover {
  opacity: 0.7;
}

.yukio-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
  .yukio-header__inner {
    padding: 0 1.2rem;
  }
  
  .yukio-nav__list {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .yukio-header {
    height: var(--yukio-header-mobile-height);
  }
  
  .yukio-header__inner {
    padding: 0 0.8rem;
    position: relative;
    justify-content: normal;
  }
  
  .yukio-hamburger {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2100;
    width: 20px;
    height: 14px;
    display: flex !important;
  }
  
  .yukio-logo {
    margin-right: 0;
    flex: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .yukio-logo img {
    max-height: 24px;
  }
  
  .yukio-utils--mobile {
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    gap: 0.4rem;
  }
  
  .yukio-utils--mobile .yukio-icon {
    width: 28px;
    height: 28px;
  }
  
  .yukio-cart-drawer__content {
    width: 100%;
    max-width: 420px;
  }
}

/* ==== COLOR SCHEMES ==== */
.yukio-header--transparent {
  color: #fff;
}

.yukio-header--transparent .yukio-nav__link:not(.yukio-nav__link--sale) {
  color: #fff;
}

.yukio-header--transparent .yukio-icon {
  color: #fff;
}

.yukio-header--transparent .yukio-hamburger {
  color: #fff;
}

.yukio-header--scrolled,
.yukio-header:not(.yukio-header--transparent) {
  color: #000;
}

.yukio-header--scrolled .yukio-nav__link:not(.yukio-nav__link--sale),
.yukio-header:not(.yukio-header--transparent) .yukio-nav__link:not(.yukio-nav__link--sale) {
  color: #000;
}

.yukio-header--scrolled .yukio-icon,
.yukio-header:not(.yukio-header--transparent) .yukio-icon {
  color: #000;
}

.yukio-header--scrolled .yukio-hamburger,
.yukio-header:not(.yukio-header--transparent) .yukio-hamburger {
  color: #000;
}

/* Hover effects only for transparent header */
.yukio-header--transparent:hover,
.yukio-header--hovered {
  color: #000;
}

.yukio-header--transparent:hover .yukio-nav__link:not(.yukio-nav__link--sale),
.yukio-header--hovered .yukio-nav__link:not(.yukio-nav__link--sale) {
  color: #000;
}

.yukio-header--transparent:hover .yukio-icon,
.yukio-header--hovered .yukio-icon {
  color: #000;
}

.yukio-header--transparent:hover .yukio-hamburger,
.yukio-header--hovered .yukio-hamburger {
  color: #000;
}