/** Shopify CDN: Minification failed

Line 382:0 Expected "}" to go with "{"

**/
.cs-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.cs-slideshow__viewport {
  position: relative;
  width: 100%;
  height: var(--cs-height-desktop, 60vh);
  min-height: 360px;
}

.cs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.cs-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.cs-slide__image,
.cs-slide__image--placeholder svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-slide__image--placeholder {
  background: #e7e5e0;
}

.cs-slide__overlay {
  position: absolute;
  inset: 0;
}

.cs-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  max-width: 640px;
  padding: 2.5rem 5%;
}

.cs-slide__content--left { align-items: flex-start; text-align: left; }
.cs-slide__content--center { align-items: center; text-align: center; margin: 0 auto; }
.cs-slide__content--right { align-items: flex-end; text-align: right; margin-left: auto; }

.cs-slide__subheading {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}

.cs-slide__heading {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
}

.cs-slide__button {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cs-slide__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.cs-slideshow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cs-slideshow__arrow:hover {
  background: #ffffff;
}

.cs-slideshow__arrow--prev { left: 16px; }
.cs-slideshow__arrow--next { right: 16px; }

.cs-slideshow__dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cs-slideshow__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cs-slideshow__dot.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

@media (max-width: 749px) {
  .cs-slideshow__viewport { height: var(--cs-height-mobile, 50vh); min-height: 320px; }
  .cs-slide__content { max-width: 100%; padding: 1.5rem 6%; }
  .cs-slideshow__arrow { width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .cs-slide { transition: none; }
}

/* ========================================
   DESKTOP: barra de pesquisa centralizada
   ======================================== */
:root {
  --input-search-max-width: 100%;
}

search-button.search-action--inline {
  flex: 3 !important;
  min-width: 0;
}

#header-component .header__columns {
  grid-template-columns: auto 1fr auto !important;
  grid-template-areas: 'left center right' !important;
}

.header__column--right {
  flex: unset !important;
  min-width: 0;
}

.search-bar-inline {
  width: 100% !important;
  max-width: 100% !important;
}

/* ========================================
   MOBILE: lupa no lugar da barra
   ======================================== */
@media screen and (max-width: 749px) {

  /* Restaura grid nativo do tema no mobile */
  #header-component .header__columns {
    grid-template-columns: var(--header-mobile-bookend) var(--header-mobile-bookend) 1fr
      var(--header-mobile-bookend) var(--header-mobile-bookend) !important;
    grid-template-areas: 'leftA leftB center rightA rightB' !important;
    padding-inline: 0 var(--padding-3xs) !important;
  }

  /* Esconde barra inline em todas as páginas */
  search-button.search-action--inline:not(.search-action--hidden-on-menu) {
    display: none !important;
  }

  /* Esconde o form dentro da lupa mobile */
  search-button.search-action--hidden-on-menu form.search-bar-inline,
  search-button.search-action--inline.search-action--hidden-on-menu form.search-bar-inline {
    display: none !important;
  }

  /* Lupa mobile — posicionada à direita da logo em todas as páginas */
  search-button.search-action--hidden-on-menu,
  search-button.search-action--inline.search-action--hidden-on-menu {
    display: flex !important;
    grid-area: rightA !important;
    width: 44px !important;
    height: 44px !important;
    min-width: unset !important;
    flex: unset !important;
    align-items: center !important;
    justify-content: center !important;
    position: static !important;
    align-self: center !important;
  }

  search-button.search-action--hidden-on-menu button,
  search-button.search-action--inline.search-action--hidden-on-menu button {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Logo centralizada */
  .header-logo {
    grid-area: center !important;
    justify-self: center;
  }

  /* Carrinho no canto direito */
  header-actions {
    grid-area: rightA !important;
  }

  /* Slideshow largura total */
  .slideshow-section {
    padding-inline: 0 !important;
    margin-inline: 0 !important;
  }

  slideshow-slide img,
  .slideshow__slide img,
  .slideshow__media img {
    object-fit: cover !important;
    object-position: 60% center !important;
    width: 100% !important;
    height: 100% !important;
  }
}

/* Imagens desktop/mobile */
.cs-slide__image--mobile {
  display: none;
}

@media screen and (max-width: 749px) {
  .cs-slide__image--desktop {
    display: none;
  }
  .cs-slide__image--mobile {
    display: block;
  }
  /* Se não tiver imagem mobile, mostra a desktop */
  .cs-slide:not(:has(.cs-slide__image--mobile)) .cs-slide__image--desktop {
    display: block;
  }
}

/* Ajusta imagem dos cards de produto */
.card__media img,
.product-card img,
.card-wrapper img {
  object-fit: contain !important;
  background-color: #ffffff;
}
/* Ajusta imagem dos cards no catálogo */
.product-media-container--image img,
.product-media-contain img,
.media-fit img {
  object-fit: contain !important;
  background-color: #ffffff !important;
}
#MainContent .product-media-container--image img,
#MainContent .product-media__image {
  object-fit: contain !important;
  background-color: #ffffff !important;
}

/* Telefone no header */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-foreground);
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
}

.header-phone svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.header-phone span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-phone small {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

@media screen and (max-width: 749px) {
  .header-phone {
    display: none;
  }
}
@media screen and (min-width: 750px) {
  #header-component .search-bar-inline,
  #header-component search-button.search-action--inline {
    background-color: #ffffff !important;
    border-radius: 999px !important;
  }

  #header-component .search-bar-inline input,
  #header-component .search-bar-inline .field__input,
  #header-component search-button .field__input {
    background-color: #ffffff !important;
    color: #111111 !important;
  }

  #header-component .search-bar-inline .field {
    background-color: #ffffff !important;
    border-radius: 999px !important;
  }
@media screen and (min-width: 750px) {
  search-button.search-action--inline {
    background-color: #ffffff !important;
    border-radius: 999px !important;
    overflow: hidden !important;
  }
  
  search-button.search-action--inline form,
  search-button.search-action--inline .search-bar-inline {
    background-color: #ffffff !important;
    border-radius: 999px !important;
  }
}

@media screen and (min-width: 750px) {
  search-button.search-action--inline:not(.search-action--hidden-on-menu) form {
    background-color: #ffffff !important;
    border-radius: 999px !important;
  }

  search-button.search-action--inline:not(.search-action--hidden-on-menu) input {
    background-color: transparent !important;
    color: #111111 !important;
  }

  search-button.search-action--inline:not(.search-action--hidden-on-menu) input::placeholder {
    color: #888888 !important;
  }
}

