/** Shopify CDN: Minification failed

Line 589:0 Unexpected "}"
Line 895:4 Expected ":"
Line 930:8 Expected ":"
Line 931:4 Expected ":"

**/

/* === ESTILOS PRINCIPALES === */
.filter{
  display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    /* margin-left: 36px; */
}
.brand-search {
    font-family: 'Crimson Pro' !important;
    font-weight:400;
}
.select-wrapper{
    visibility:hidden;
}
.brands-views-container {
  margin-top: 20px;
  position: relative;
  min-height: 400px;
}

#brandsGrid,
#brandsList {
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 100%;
}

#brandsGrid.fade-out,
#brandsList.fade-out {
  opacity: 0;
}

#brandsGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

#brandsList {
  display: none;
  position: relative;
}

#brandsList.fade-in {
  display: block;
}

/* === ESTILOS DE LA VISTA DE LISTA === */
.list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 0;
}

.list-column {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.list-column h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}

.brand-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-list-items li a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding: 3px 0px;
  border-radius: 4px;
  transition: all 0.15s;
  font-family: 'Crimson Pro' !important;
}

.no-results {
  padding: 40px;
  text-align: center;
  color: #666;
  display: none;
}

.pagination-wrapper {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination-btn,
.page-btn {
  padding: 8px 16px;
  border: 2px solid #b5aa79;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}



.brand-card .brand-image-container {
  width: 100%;
  padding-top: 100%; /* Esto hace que sea cuadrado (1:1) */
  position: relative;
  overflow: hidden;
  background: #f5f5f5; /* Fondo neutro si no hay imagen */
}

.brand-card .brand-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recorta la imagen manteniendo el centro */
  object-position: center;
  transition: transform 0.3s ease;
}

/* Opcional: efecto hover */
.brand-card:hover .brand-image-container img {
  transform: scale(1.05);
}

.view-btn-list {
  width: 65%;
  height: 50px;
  border: 2px solid #b5aa7914;
  border-radius: 8px;
  background: #f8f8f8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-around;
  transition: all 0.2s;
  box-sizing: border-box;
  font-family: 'Crimson Pro';
    font-size: 18px;
    /* font-weight:600; */
   
}

/* .view-btn-list:hover{
  background:#b5aa79;
  color:#fff;
} */

 .view-btn-list:hover,
.view-btn-list.active {
  background:#b5aa79;
  color:#fff;
  font-weight:400;
}

.custom-select .placeholder {
  color: #999;
    /* font-style: italic; */
    pointer-events: none;
    /* margin: auto; */
    /* font-size: 14px; */
    padding: 0px !important;
}

.label_name{
  text-align:center;
}


 .pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    padding: 20px 0;
     flex-wrap: wrap;
  }

  .pagination-info {
    font-size: 14px;
    color: #666;
    margin: 0 15px;
  }

  .pagination-btn {
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .pagination-btn:hover:not(:disabled) {
    background: #333;
    transform: translateY(-2px);
  }

  .pagination-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
  }

  .pagination-pages {
    display: flex;
    gap: 5px;
     flex-wrap: wrap;
  }

  .page-btn {
    padding: 8px 12px;
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 40px;
  }

  .page-btn:hover:not(.active) {
    background: #e0e0e0;
  }

  .page-btn.ellipsis {
    cursor: default;
    border: none;
    background: transparent;
  }

  .page-btn.ellipsis:hover {
    background: transparent;
  }

  .view-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
  }
  /* .view-btn.active {
    background-color: #000;
    color: white;
  } */






  /* Estilos para la paginación */
  .pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0;
    padding: 20px 0;
  }

  .pagination-info {
    font-size: 14px;
    color: #666;
    margin: 0 15px;
  }

  .pagination-btn:hover:not(:disabled) {
    background: #333;
    transform: translateY(-2px);
  }

  .pagination-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
  }

  /* .pagination-pages {
    display: flex;
    gap: 5px;
  } */

  .page-btn {
    padding: 8px 12px;
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 40px;
  }

  .page-btn:hover:not(.active) {
    background: #e0e0e0;
  }

  .page-btn.active {
    background: #b5aa79;
    color: #fff;
    border-color: #b5aa79;
  }

  .page-btn.ellipsis {
    cursor: default;
    border: none;
    background: transparent;
  }

  .page-btn.ellipsis:hover {
    background: transparent;
  }

  .items-per-page {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
  }

  .items-per-page select {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
  }

  /* Opcional: estilo para depuración (puedes eliminarlo después) */
  .debug-handles {
    font-size: 10px;
    color: #888;
    margin-top: 4px;
    text-align: center;
  }
/*pagination*/
.pagination-container {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.pagination-info {
  text-align: center;
  margin-bottom: 20px;
  color: #666;
  font-size: 14px;
}

.pagination-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
  background: #f5f5f5;
  border-color: #999;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.page-numbers {
  display: flex;
  gap: 6px;
}

.page-number {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  background: white;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.page-number:hover {
  background: #f5f5f5;
  border-color: #999;
}

.page-number.active {
  background: #333;
  color: white;
  border-color: #333;
}

.page-number.ellipsis {
  border: none;
  cursor: default;
  pointer-events: none;
}

/* Opcional: resaltar botón de vista activo */
.view-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}
/*pagination*/
/* Por defecto (4 columnas) */
.brands-grid.cols-4 .brand-name {
  font-size: 14px;
}

/* 5 columnas */
.brands-grid.cols-5 .brand-name {
  font-size: 13px;
}

/* 6 columnas → texto más pequeño para caber */
.brands-grid.cols-6 .brand-name {
  font-size: 12px;
}

.view-selector {
 display: flex;
    gap: 5px;
    align-items: center;
    /* margin-bottom: 20px; */
    /* padding: 8px 12px; */
    /* background: #f8f8f8; */
    border-radius: 8px;
   
    /* margin: 0px 8px; */
}

.view-btn {
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #f8f8f8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.view-btn:hover {
  background: #f0f0f0;
  border-color: #ddd;
}

.view-btn.active {
  border-color: #aba06e;
  background: #fff;
  box-shadow: 0 0 0 2px #e0e0e0;
}

.view-btn svg {
  width: 20px;
  height: 20px;
}

/* Estilos específicos para cada vista */
.view-btn-grid-large svg rect {
  fill: #999;
}
.view-btn-grid-small svg rect {
  fill: #555;
}
.view-btn-list-vertical svg rect {
  fill: #999;
}
.view-btn-list-horizontal svg rect {
  fill: #999;
}

/* Para tablet/mobile: reducir tamaño */
@media (max-width: 768px) {
  .view-selector {
    gap: 8px;
    padding: 6px 8px;
  }
  .view-btn {
    width: 36px;
    height: 36px;
  }
}
/******************************************/
.option{
  display: flex;
    gap: 5px;
    /* width: 322px; */
}
.buttom-filter{
  /* background:#000; */
}
.brand-button {
     width: 224px;
    height: 51px;
    text-align: center;
    border-radius: 8px;
    background: #B5AA79;
    color: white;
    font-size: 18px;
    font-weight: 800;
    align-content: center;
    text-transform: uppercase
}
.header-catalog{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: end;

}
.custom-select {
     position: relative;
    border: 2px solid #b5aa79;
    border-radius: 30px;
    min-height: 40px;
    padding: 8px 22px;
    cursor: pointer;
    background: white;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
}


.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  opacity: 0.7; 
}

.tag {
    background: #e0e0e0;
    padding: 0px 7px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
}

.tag .remove {
  cursor: pointer;
  font-weight: bold;
  color: #666;
}

.options-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #ccc;
  border-top: none;
  background: white;
  max-height: 350px;
  overflow-y: auto;
  z-index: 10;
  margin-top: 10px !important;
  border-radius: 0px 0px 12px 12px;
}

.custom-select.active .options-dropdown {
  display: block;
}

.option-item {
  padding: 8px 12px;
  cursor: pointer;
}

.option-item:hover {
  background: #f0f0f0;
}

.option-item.selected {
  background: #d0e7ff;
}
/************************************************/


/* brands-filter.css */
.filter{
  display: flex;
    flex-direction: row;
    width: 100%;
    gap: 214px;
    align-items: end;
    justify-content: space-between;
    /* margin-left: 36px; */
}


.brands-section {
  width: 100%;
  padding:20px;
  background-color: #ffffff;
  height:100% !important;
}

.brands-container {
 height:100% !important;
  margin: 0 auto;
    max-width: 1200px;
    margin-bottom:70px;
}

.brands-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* Filtros */
.brands-filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  /* margin-bottom: 60px; */
}

.filter-selects {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.select-wrapper {
  position: relative;
  width:82%
}

.brand-select {
  min-width: 220px;
  height: 50px;
  padding: 0 40px 0 20px;
  border: 2px solid #D4AF37;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
  transition: all 0.3s ease;
}

.brand-select:focus {
  border-color: #B8941F;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.brand-select:hover {
  border-color: #B8941F;
}

.select-wrapper::after {
  content: '▼';
  position: absolute;
  right: 14px;
  top: 56%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #b5aa79;
  font-size: 12px;
}

/* Search */
.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.brand-search {
  width: 100%;
  height: 50px;
  padding: 0 60px 0 20px;
  border: 2px solid #b5aa79;
  border-radius: 25px;
  font-size: 18px;
  color: #000;
  background-color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.brand-search::placeholder {
  color: #999;
}

.brand-search:focus {
  border-color: #b5aa79;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: #b5aa79;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background-color: #b5aa79;
  transform: translateY(-50%) scale(1.05);
}

/* Alfabeto Section */
.brands-alphabet-section {
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.alphabet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 15px;
  max-width: 894px;
  margin: 0px auto;
}

.alphabet-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #b5aa79;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alphabet-btn:hover {
  background-color: #b5aa79;
  color: #fff;
  transform: scale(1.1);
}

.alphabet-btn.active {
  background-color: #b5aa79;
  color: #fff;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Featured Brands */
.featured-brands-section {
  /* margin-top: 20px; */
}
/* Base grid */
.brands-grid {
  /* display: flex; */
  /* flex-wrap: wrap; */
  display: grid !important;
    grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
  justify-content: flex-start;
}

.brands-grid--grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.brands-grid--grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brands-grid--grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.brand-card {
      /* min-height: 120px; */
    width: 100%;
    /* padding: 30px; */
    /* border: 2px solid #b5aa79; */
    /* border-radius: 8px; */
    position:relative;
    background-color: #fff;
     display: flex; 
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s; 
    text-align:center;
ease;
}

.brand-card:hover {
  background-color:#b5aa79;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.brand-card:hover .brand-name {
  color: #fff;
}

.brand-name {
    position: absolute; 
    /* background: #000; */
    /* font-size: 22px; */
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
    transition: color .3s; 
    padding: 2px 8px;
    /* border-radius: 4px; */
    width:100%;
    bottom: 0px;
    /* background:#00000080; */
    min-width: -webkit-fill-available;
    
    /* padding-top: 30px !important; */
    height: 30%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(to top, #00000080, #00000000);
    font size de: 32px;
ease;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-results p {
  font-size: 18px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .brands-title {
    font-size: 32px;
  }
  
  .filter-selects {
    flex-direction: column;
    width: 100%;
  }
  
  .brand-select {
    width: 100%;
  }
  
  .alphabet-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
  }
  
  .alphabet-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .brands-section {
    padding: 10px 15px;
  }
  
  .brands-title {
    font-size: 28px;
  }
  
  .alphabet-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .alphabet-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  #brandsGrid{
    grid-template-columns: repeat(2, 1fr)!important;
    
  }
  .filter {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px; 
    align-items: center;
    justify-content: space-between;
    /* margin-left: 36px; */
}
.select-wrapper {
    position: relative;
    width: 100%;
    
}
.custom-select {
    position: relative;
    border: 2px solid #b5aa79;
    border-radius: 30px;
    min-height: 40px;
    padding: 0 22px;
    cursor: pointer;
    background: white;
    height: 40px;
}
.placeholder{
  font-size: 14px;
    padding: 6px;
}
.brand-search {
    width: 100%;
    height: 40px;
    padding: 0 60px 0 20px;
    border: 2px solid #b5aa79;
    border-radius: 25px;
    font-size: 14px;
    color: #000;
    background-color: #fff;
    outline: none;
    transition: all 0.3s 
ease;
}
.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background-color: #b5aa79;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s 
ease;
}
.btn-col-5{
  display:none!important;
}
.btn-col-6{
  display:none!important;
}
.view-btn-list{
  width:100%;
          height: 40px;
}
}

/* Mejoras para selects múltiples */
.brand-select[multiple] {
  height: auto;
  min-height: 50px;
  max-height: 150px;
  padding: 10px 20px;
  overflow-y: auto;
}

.brand-select[multiple] option {
  padding: 8px;
  border-radius: 4px;
  margin: 2px 0;
}

.brand-select[multiple] option:checked {
  background-color: #D4AF37;
  color: #fff;
}

/* Scrollbar personalizado para selects */
.brand-select[multiple]::-webkit-scrollbar {
  width: 8px;
}

.brand-select[multiple]::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.brand-select[multiple]::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 4px;
}

.brand-select[multiple]::-webkit-scrollbar-thumb:hover {
  background: #B8941F;
}


.brand-order-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  font-size: 18px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  pointer-events: none;
}

.brand-order-badge i {
  color: #b5aa79;
  font-size: 13px;
}

/* Tablets medianas (iPad, iPad Air) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .filter {
    display: flex;
    flex-direction: column;
    width: 100%;
     gap: 0 !important; 
    align-items: center;
    justify-content: space-between;
    /* margin-left: 36px; */
}
.select-wrapper {
    display: none;
}
.view-selector {
        margin-top: 12px;
    }
}

/* Tablets grandes (iPad Pro 11") */
@media screen and (min-width: 1025px) and (max-width: 1112px) {
  /* Ajustes específicos */
}