/** Shopify CDN: Minification failed

Line 133:0 Unexpected "}"

**/
/* ============================================
   feten-custom.css
   Estilos personalizados Galerías Fetén
   No modificar archivos del tema directamente
   ============================================ */

/* ============================================
   1. CABECERA DE COLECCIÓN (Texto centrado)
   ============================================ */
.feten-brand-blog--simple {
  margin-bottom: 20px;
}

.feten-brand-blog__body {
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.feten-brand-blog__body--link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.feten-brand-blog__body--link:hover .feten-brand-blog__cta {
  background-color: #EC9E84;
  border-color: #EC9E84;
}

.feten-brand-blog__brand {
  font-size: 28px;
  color: #0E2E21;
  margin: 0;
  line-height: 1.2;
}

.feten-brand-blog__summary {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-secondary, #4a4a4a);
  margin: 0;
  max-width: min(1200px, 95%);
}

.feten-brand-blog__cta {
  font-size: 12px;
  color: #0E2E21;
  border: 1px solid #0E2E21;
  border-radius: 99px;
  padding: 6px 18px;
  display: inline-block;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* ============================================
   2. NAVEGACIÓN DE FILTROS (Pastillas)
   ============================================ */
.feten-nav-wrapper {
  padding: 0 15px;
  max-width: 100%;
  overflow-x: hidden;
}

.feten-nav-container {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  contain: layout;
}

.feten-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Pastillas — Opción D: subrayado */
.feten-pills-row a:not(.feten-back-link) {
  display: inline-block;
  padding: 6px 4px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  color: #0E2E21;
  background: transparent;
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, font-weight 0.2s ease;
}

.feten-pills-row a:not(.feten-back-link):hover,
.feten-pills-row a.active {
  border-bottom-color: #EC9E84;
  color: #0E2E21;
  font-weight: 600;
  background: transparent;
}

.feten-pills-row a:focus-visible {
  outline: 2px solid #EC9E84;
  outline-offset: 2px;
}

/* Pastillas secundarias */
.feten-row--secondary a:not(.feten-back-link) {
  font-size: 11px;
  padding: 4px 4px;
  opacity: 0.75;
}

/* Espacio reducido */
.feten-nav-container {
  margin: 0 0 8px;
}
}

/* Pastillas de submenú (más sutiles) */
.feten-row--secondary a:not(.feten-back-link) {
  font-size: 11px;
  padding: 5px 12px;
  opacity: 0.8;
  border-color: rgba(14, 46, 33, 0.3);
}

/* Enlace "← Todas las marcas" */
.feten-pills-row a.feten-back-link {
  font-size: 13px;
  padding: 5px 0;
  opacity: 0.7;
  font-weight: 500;
  text-decoration: none;
  color: #0E2E21;
  background: transparent;
}

.feten-pills-row a.feten-back-link:hover,
.feten-pills-row a.feten-back-link:focus-visible {
  color: #EC9E84;
  opacity: 1;
  outline: none;
}

/* ============================================
   3. ADAPTACIÓN A MÓVIL (Smartphones)
   ============================================ */
@media screen and (max-width: 767px) {
  /* Cabecera texto */
  .feten-brand-blog__brand { font-size: 24px; }
  .feten-brand-blog__summary { font-size: 15px; }

  /* Scroll horizontal pastillas */
  .feten-pills-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    scrollbar-width: none;
  }

  .feten-pills-row::-webkit-scrollbar {
    display: none;
  }
}