/** Shopify CDN: Minification failed

Line 61:8 Expected identifier but found whitespace
Line 61:10 Unexpected "{"
Line 61:19 Expected ":"
Line 216:8 Expected identifier but found whitespace
Line 216:10 Unexpected "{"
Line 216:19 Expected ":"

**/
@media screen and (max-width:769px){
  .jv-category-wrapper{
    margin-bottom:0rem;
  }
  .jv-creators-section{
    margin-bottom:1rem;
  }
}

@media screen and (min-width: 750px) {
  .jv-carousel-creators {
    width: var(--section-width-desktop);
    padding-top: var(--padding-top-desktop);
    padding-bottom: var(--padding-bottom-desktop);
  }
}

.jv-carousel-creators {
  width: var(--section-width-mobile);
  max-width: 100%;
  margin: 0 auto;
}

/* Wrapper das Abas */
.jv-category-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

/* Abas de Categoria */
.jv-category-tabs {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.jv-category-tabs::-webkit-scrollbar {
  display: none;
}

.jv-tab-button {
  font-family: 'Inter';
  padding: 0;
  border: none;
  background: none;
  color: {{ section.settings.text_color }};
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  opacity: 0.6;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.jv-tab-button:hover,
.jv-tab-button.active {
  opacity: 1;
}

.jv-tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--tab-underline-color);
}

.jv-section-nav {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

.jv-section-prev,
.jv-section-next {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #784AFB;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.jv-section-prev:hover,
.jv-section-next:hover {
  background: rgba(147, 51, 234, 0.8);
}

/* Barra de Scroll Indicator (Mobile) */
.jv-scroll-indicator-wrapper {
  display: none;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 8px;
  border-radius: 2px;
  overflow: hidden;
}

.jv-scroll-indicator-bar {
  height: 100%;
  background: var(--tab-underline-color);
  width: 30%;
  transition: transform 0.2s ease;
  border-radius: 2px;
}

/* Carrossel de Criadores */
.jv-creators-section {
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.jv-creators-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: 1rem;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  /* Otimizações de performance */
  will-change: scroll-position;
  transform: translateZ(0);
}

.jv-creators-carousel::-webkit-scrollbar {
  display: none;
}

.jv-creator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  /* Otimizações de performance */
  contain: layout style paint;
  transform: translateZ(0);
}

.jv-creator-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid var(--creator-border-inactive);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  padding: 2px;
}

.jv-creator-item[data-active="true"] .jv-creator-avatar {
  border-color: var(--creator-border-active);
  box-shadow: 0 0 15px rgba(147, 51, 234, 0.4);
}

.jv-creator-image-container {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.jv-creator-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jv-creator-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(147, 51, 234, 1), rgba(124, 58, 237, 1));
  border-radius: 50%;
}

.jv-creator-name {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  color: {{ section.settings.text_color }};
}

/* Setas de Navegação do Carrossel de Criadores - DESKTOP APENAS */
.jv-creator-nav {
  display: none;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: #784AFB;
  color: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.jv-creator-nav:active {
  transform: scale(0.95);
}

.jv-creator-nav-left {
  margin-right: -8px;
}

.jv-creator-nav-right {
  margin-left: -8px;
}

/* Carrosseis de coleções */
.jv-collection-carousel {
  transition: opacity 0.3s ease;
}

.jv-collection-carousel[style*="display: none"] {
  display: none !important;
}

/* Botão de ação */
.jv-action-button {
  margin-top: 2rem;
}

.jv-button {
  display: inline-block;
  padding: 14px 20px;
  background: #784afb;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.jv-button:hover {
  background: #6741d5;
}

/* MOBILE STYLES */
@media screen and (max-width: 749px) {
  .jv-category-tabs {
    gap: 1rem;
  }

  .jv-tab-button {
    font-size: 1rem;
  }

  /* Ocultar setas do desktop no mobile */
  .jv-section-nav {
    display: none;
  }

  /* Mostrar barra de scroll indicator */
  .jv-scroll-indicator-wrapper {
    display: block;
  }

  /* OCULTAR setas de navegação dos criadores no mobile */
  .jv-creator-nav {
    display: none !important;
  }

  /* Carrossel de criadores com largura total e peek effect */
  .jv-creators-section {
    width: 104%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    gap: 0;
  }

  .jv-creators-carousel {
    width: 100%;
    padding-left: 0px;
    padding-right: 16px;
    gap: 1rem;
  }

  .jv-creator-avatar {
    width: 60px;
    height: 60px;
  }

  .jv-creator-name {
    font-size: 0.75rem;
  }

  .jv-creator-item {
    min-width: 70px;
  }
  
  /* Otimizações adicionais para mobile */
  .jv-creators-carousel {
    scroll-snap-type: x proximity;
  }
  
  .jv-creator-item {
    scroll-snap-align: start;
  }
}

/* DESKTOP - Mostrar setas apenas no desktop se necessário */
@media screen and (min-width: 750px) {
  /* Se quiser manter setas no desktop, descomente abaixo */
  /* .jv-creator-nav {
    display: flex;
  } */
}