/** Shopify CDN: Minification failed

Line 37:19 Expected identifier but found whitespace
Line 37:21 Unexpected "{"
Line 37:30 Expected ":"
Line 46:6 Expected identifier but found whitespace
Line 46:8 Unexpected "{"
Line 46:17 Expected ":"
Line 46:40 Expected ":"

**/


/* CSS from section stylesheet tags */
.ab-info img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}
.engoc-btn-default {
  background-color: #000!important;
  color: #fff!important;
  border-radius: 4px!important;
  transition: background-color .3s ease;
}
.engoc-btn-default:hover {
  background-color: #c00!important;
  color: #000!important;
}
/* Category Nav Section Styles */
.category-nav {
  position: sticky;
  top: 60px;
  z-index: 9999;
  background-color: {{ section.settings.background_color }};
  padding: 16px 0 8px;
  overflow: visible;
}

/* Container for items with configurable gap */
.category-nav__list {
  display: flex;
  justify-content: center;
  gap: {{ section.settings.item_gap }}px;
  list-style: none;
  margin: 0;
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iOS */
}

.category-nav__item {
  flex: 0 0 auto;
}

/* Link layout: icon and text side by side */
.category-nav__item-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px; /* space between icon and label */
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Icon styling: size, shape, and border */
.category-nav__item-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin: 0; /* remove default margins */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Label styling: font and size */
.category-nav__item-link span {
  font-family: 'Inter', sans-serif;
  font-weight: 700; /* bold */
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* Hover effect: scale icon and change its border color */
.category-nav__item-link:hover .category-nav__item-icon {
  transform: scale(1);
  border-color: #000;
}
/* Hover effect: change label color */
.category-nav__item-link:hover span {
  color: #000;
}

/* Optional: custom scrollbar styling */
.category-nav__list::-webkit-scrollbar {
  height: 6px;
}
.category-nav__list::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.3);
  border-radius: 3px;
}
.category-nav__list::-webkit-scrollbar-track {
  background: transparent;
}
/* Wrapper general */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Cada ítem */
.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

/* Pregunta */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: #D9B504;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

/* Estado activo */
.faq-question.active {
  color: #000;
}

/* Icono */
.engoc-accordion-arrow {
  width: 28px;
  height: 28px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #D9B504;
  transition: transform 0.3s ease;
}

/* Respuesta oculta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 16px;
  color: #333;
  padding: 0 15px;
}

/* Cuando está activa */
.faq-answer.open {
  max-height: 500px;
  padding: 10px 15px;
}
.ab-info img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}
.engoc-btn-default {
  background-color: #000!important;
  color: #fff!important;
  border-radius: 4px!important;
  transition: background-color .3s ease;
}
.engoc-btn-default:hover {
  background-color: #c00!important;
  color: #000!important;
}
[data-section-id="{{ section.id }}"] .js-slideshow-v1-slide {
    height: 40vh;            /* o height: 400px; */
    max-height: 200px;       /* opcional, para no crecer demasiado */
    overflow: hidden;
  }

  [data-section-id="{{ section.id }}"] .js-slideshow-v1-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }