/** Shopify CDN: Minification failed

Line 27:10 Unexpected "{"
Line 27:19 Expected ":"
Line 33:10 Unexpected "{"
Line 33:19 Expected ":"
Line 40:10 Unexpected "{"
Line 40:19 Expected ":"

**/
/* Layout Principal MFB - Tabbed Section v5 */
.tabbed-image-products__header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
  text-align: left;
}

.tabbed-image-products__heading {
  margin-top: 0;
  margin-bottom: 5px;
}

/* Tipografía de Títulos Controlada por Liquid (v5) */
#section-{{ section.id }} .tabbed-image-products__heading--lifestyle {
  font-size: var(--mfb-lifestyle-title-size) !important;
  font-weight: 700;
  line-height: 1.2;
}

#section-{{ section.id }} .tabbed-image-products__heading--collection {
  font-size: var(--mfb-collection-title-size) !important;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

#section-{{ section.id }} .tabbed-image-products__product-grid .product-title {
  font-size: var(--mfb-product-title-size) !important;
  font-weight: 500;
}

/* Estilizado de Pestañas (Tabs) */
.tabbed-image-products__tabs {
  display: flex;
  gap: 10px;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 5px;
}

.tabbed-image-products__tab {
  background-color: #f0f0f0;
  color: #000000;
  border: none;
  border-radius: 5px;
  padding: 6px 16px;
  font-family: inherit;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.tabbed-image-products__tab:hover {
  background-color: #e0e0e0;
}

.tabbed-image-products__tab--active {
  background-color: #000000;
  color: #ffffff;
}

/* Layout de la Grilla */
.tabbed-image-products__grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Columna de la Imagen */
.tabbed-image-products__col--image {
  flex: 1 1 35%;
  position: relative;
  display: flex; /* NUEVO: Flexbox para apilarverticalmente */
  flex-direction: column; /* NUEVO: Apilar imagen y texto Lifestyle */
}

/* Sticky wrapper para Desktop */
@media screen and (min-width: 769px) {
  .tabbed-image-products__sticky-wrapper {
    position: sticky;
    top: 30px; 
    display: flex;
    flex-direction: column;
  }
}

.tabbed-image-products__media {
  position: relative;
  overflow: hidden;
  border-radius: 10px; /* Redondeo Sutil MFB */
  width: 100%;
}

/* SOLUCIÓN AL GAP GIGANTE: La imagen ahora rellena el padding correctamente (v5) */
.tabbed-image-products__image {
  position: absolute; /* CRÍTICO PARA ELIMINAR EL ESPACIO EN BLANCO */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Columna de Productos */
.tabbed-image-products__col--products {
  flex: 1 1 65%;
  display: flex;
  flex-direction: column;
}

.tabbed-image-products__content--lifestyle {
  margin-top: 15px; 
}

.tabbed-image-products__text {
  margin-bottom: 15px;
}

/* Grilla de Productos Interna (3 columnas desktop) */
.tabbed-image-products__product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 15px;
  width: 100%;
}

/* Lógica de ocultar/mostrar */
.tabbed-image-products__product-grid--hidden {
  display: none !important;
}

.tabbed-image-products__product-grid--active {
  display: grid !important;
}

/* --- Adaptación para Celulares (Responsivo v5) --- */
@media screen and (max-width: 768px) {
  .tabbed-image-products__header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
  }

  .tabbed-image-products__tabs {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .tabbed-image-products__tab {
    font-size: 12px;
    padding: 6px 14px;
  }

  .tabbed-image-products__grid {
    flex-direction: column;
    gap: 15px;
  }

  .tabbed-image-products__col--image,
  .tabbed-image-products__col--products {
    flex: 1 1 100%;
    width: 100%;
  }

  .tabbed-image-products__sticky-wrapper {
    position: relative;
    top: 0;
  }

  .tabbed-image-products__media {
    padding-bottom: 0 !important;
    height: auto !important;
    max-height: 50vh;
  }
  
  .tabbed-image-products__image {
    position: relative !important;
    height: auto !important;
  }

  .tabbed-image-products__content--lifestyle {
    margin-top: 10px;
  }

  /* Mantener 2 columnas de productos en celular */
  .tabbed-image-products__product-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px;
  }
}