/* ── HERO PRODUCTOS ── */
.hero-productos {
  background: #ffffff;
  padding: 100px 80px 40px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-productos-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-productos-fotos {
  display: flex;
  justify-content: center;
}

.hero-productos-circle {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: #d9ecf7;
}

.hero-productos-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-productos-content {
  width: 100%;
}

.hero-productos-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.label-line-prod {
  width: 36px;
  height: 2px;
  background: var(--teal);
  display: inline-block;
}

.hero-productos-title {
  font-size: 48px;
  font-weight: 900;
  color: #1a1f3d;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-productos-title span { color: var(--teal); }

.hero-productos-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-productos-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.check-item-prod {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1f3d;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.check-icon-prod {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon-prod svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

.hero-productos-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.stat-num-prod {
  font-size: 36px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label-prod {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  margin-top: 4px;
}

.hero-productos-btn {
  background: var(--teal-dark);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.hero-productos-btn:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52,174,214,0.3);
}

@media(max-width:900px) {
  .hero-productos {
    min-height: auto;
    flex-direction: column;
    padding: 110px 24px 40px;
  }
  .hero-productos-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .hero-productos-fotos {
    width: 100%;
    min-height: 0;
    margin-top: 10px;
  }
  .hero-productos-circle {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-productos-content {
    padding-left: 0;
    padding-top: 0;
  }
  .hero-productos-label {
    justify-content: center;
  }
  .hero-productos-title {
    font-size: clamp(28px, 8vw, 40px);
    text-align: center;
  }
  .hero-productos-text {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-productos-checks {
    grid-template-columns: 1fr;
  }
  .hero-productos-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}

@media(max-width: 480px) {
  .hero-productos {
    padding: 100px 20px 30px;
  }
  .hero-productos-circle {
    max-width: 220px;
  }
  .hero-productos-title {
    font-size: 26px;
  }
  .hero-productos-text {
    font-size: 14px;
  }
}
/* ── GRID PRODUCTOS ── */
.productos-section { 
  background: #FFFFFF; 
  padding: 100px 30px; 
}

.cards-grid {
  max-width: 1100px; 
  margin: 0 auto;
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
}

/* Rediseño de Tarjetas: Slide-Up Glass Reveal (Reemplazo de Flip Card tradicional) */
.flip-card { 
  height: 380px; 
  perspective: 1000px; 
  cursor: pointer; 
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 58, 98, 0.06);
  border: 1px solid rgba(11, 58, 98, 0.05);
  background: var(--white);
  transition: var(--transition-smooth);
}
.flip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11, 58, 98, 0.15);
  border-color: rgba(52, 174, 214, 0.25);
}

.flip-inner { 
  width: 100%; 
  height: 100%; 
  position: relative; 
  /* Desactivar rotaciones pesadas */
  transform-style: flat; 
  transition: var(--transition-smooth); 
}
.flip-card:hover .flip-inner {
  transform: none; /* Evita que gire 3D */
}

/* Frontal: Imagen de Fondo Completa */
.flip-front { 
  position: absolute; 
  inset: 0; 
  width: 100%;
  height: 100%;
  z-index: 1; 
  border-radius: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.flip-front img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  transition: var(--transition-smooth);
}
.flip-card:hover .flip-front img {
  transform: scale(1.12);
  filter: blur(4px) brightness(0.65);
}

/* Trasera: Panel de Vidrio Esmerilado que desliza hacia arriba */
.flip-back { 
  position: absolute; 
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(11, 58, 98, 0.88); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(100%); /* Oculto inicialmente abajo */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between; 
  padding: 32px 24px; 
  text-align: left; 
  border-radius: 0;
}
.flip-card:hover .flip-back { 
  transform: translateY(0); /* Desliza arriba al hacer hover */
}

.back-title { 
  font-size: 16px; 
  font-weight: 900; 
  color: var(--white); 
  letter-spacing: 1.5px; 
  margin-bottom: 18px; 
  text-transform: uppercase;
  border-left: 3px solid var(--light-blue);
  padding-left: 10px;
}
.back-items { 
  list-style: none; 
  flex: 1; 
  display: flex;
  flex-direction: column;
  gap: 8px; 
  overflow-y: auto; 
  padding-right: 4px;
}
/* Scrollbar interno del panel */
.back-items::-webkit-scrollbar {
  width: 4px;
}
.back-items::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.back-items li { 
  font-size: 14px; 
  color: rgba(255, 255, 255, 0.85); 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  line-height: 1.4; 
  font-weight: 700;
}
.back-items li::before { 
  content: ''; 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: var(--gold); 
  flex-shrink: 0; 
}

.back-btn { 
  margin-top: 18px; 
  background: linear-gradient(135deg, var(--light-blue) 0%, #289bc0 100%); 
  color: var(--white); 
  border: none; 
  border-radius: 10px; 
  padding: 12px 18px; 
  font-size: 13px; 
  font-weight: 800; 
  font-family: 'Nunito', sans-serif; 
  cursor: pointer; 
  width: 100%; 
  text-align: center;
  transition: var(--transition-smooth); 
  box-shadow: 0 4px 15px rgba(52, 174, 214, 0.3);
}
.back-btn:hover { 
  background: linear-gradient(135deg, var(--gold) 0%, #e0981b 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(249, 178, 51, 0.35);
  transform: translateY(-2px);
}

/* ── MODAL MODERNIZADO ── */
.modal-overlay { 
  display: none; 
  position: fixed; 
  inset: 0; 
  background: rgba(6, 21, 36, 0.8); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000; 
  align-items: center; 
  justify-content: center; 
  padding: 20px; 
}
.modal-overlay.active { 
  display: flex; 
}
.modal-box { 
  background: var(--white); 
  border-radius: 28px; 
  max-width: 580px; 
  width: 100%; 
  overflow: hidden; 
  box-shadow: 0 30px 80px rgba(6, 21, 36, 0.3); 
  border: 1px solid rgba(11, 58, 98, 0.08);
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header { 
  background: linear-gradient(135deg, var(--dark-blue) 0%, #061524 100%); 
  padding: 30px 36px; 
  display: flex; 
  align-items: center; 
  gap: 18px; 
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.05);
}
.modal-header-icon { 
  width: 54px; 
  height: 54px; 
  border-radius: 50%; 
  background: rgba(255, 255, 255, 0.08); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-header-icon svg { 
  width: 26px; 
  height: 26px; 
  stroke: var(--gold); 
  stroke-width: 2; 
  fill: none; 
}
.modal-header-label { 
  font-size: 11px; 
  color: rgba(255, 255, 255, 0.5); 
  font-weight: 800; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  margin-bottom: 4px;
}
.modal-header-title { 
  font-size: 22px; 
  font-weight: 900; 
  color: var(--white); 
  line-height: 1.2; 
}
.modal-close { 
  margin-left: auto; 
  background: rgba(255, 255, 255, 0.08); 
  border: none; 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  transition: var(--transition-smooth); 
}
.modal-close:hover { 
  background: var(--light-blue); 
}
.modal-close svg { 
  width: 18px; 
  height: 18px; 
  stroke: var(--white); 
  stroke-width: 3; 
  fill: none; 
}

.modal-img { 
  width: 100%; 
  height: 170px; 
  background: var(--bg-light); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border-bottom: 1.5px solid #e8eff3; 
}
.modal-img span { 
  font-size: 14px; 
  color: var(--text-muted); 
  font-weight: 700; 
  font-style: italic; 
}

.modal-body { 
  padding: 30px 36px; 
}
.modal-body-title { 
  font-size: 13px; 
  font-weight: 900; 
  color: var(--gold); 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  margin-bottom: 18px; 
}
.modal-items { 
  list-style: none; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 12px; 
}
.modal-items li { 
  font-size: 14px; 
  color: var(--text-muted); 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  line-height: 1.5; 
  font-weight: 700;
}
.modal-items li::before { 
  content: ''; 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: var(--light-blue); 
  flex-shrink: 0; 
}

.modal-cta { 
  margin-top: 26px; 
  padding-top: 24px; 
  border-top: 1.5px solid #e8eff3; 
  display: flex; 
  gap: 14px; 
}
.modal-btn-primary { 
  flex: 1; 
  background: var(--gold); 
  color: var(--white); 
  border: none; 
  border-radius: 12px; 
  padding: 14px; 
  font-size: 14px; 
  font-weight: 800; 
  font-family: 'Nunito', sans-serif; 
  cursor: pointer; 
  transition: var(--transition-smooth); 
  box-shadow: 0 4px 15px rgba(249, 178, 51, 0.25);
}
.modal-btn-primary:hover { 
  background: #e0981b; 
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 178, 51, 0.35);
}
.modal-btn-secondary { 
  flex: 1; 
  background: transparent; 
  color: var(--dark-blue); 
  border: 2px solid var(--dark-blue); 
  border-radius: 12px; 
  padding: 12px; 
  font-size: 14px; 
  font-weight: 800; 
  font-family: 'Nunito', sans-serif; 
  cursor: pointer; 
  transition: var(--transition-smooth); 
}
.modal-btn-secondary:hover { 
  background: var(--dark-blue); 
  color: var(--white); 
}

/* ── RESPONSIVIDAD ── */
@media(max-width: 900px) {
  .hero-inner {
    padding: 120px 24px 70px;
  }
  .hero-title {
    font-size: clamp(34px, 7vw, 54px);
  }
  .productos-section {
    padding: 70px 24px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .flip-card {
    height: 350px;
  }
}

@media(max-width: 580px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 380px;
    margin: 0 auto;
  }
  .flip-card {
    height: 360px;
  }
  .modal-box {
    border-radius: 20px;
  }
  .modal-header {
    padding: 24px;
  }
  .modal-body {
    padding: 24px;
  }
  .modal-items {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.prod-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(11,58,98,0.07);
  border: 1px solid rgba(11,58,98,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  padding-top: 20px;
  min-height: 280px;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(11,58,98,0.13);
}

.prod-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 17px;
}

.prod-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #0b3a62;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.3;
  margin-bottom: 12px;
}

.prod-card-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  flex: 1;
}

.prod-card-btn {
  display: inline-block;
  color: #34aed6;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.2s;
}

.prod-card-btn:hover {
  color: #0b3a62;
}

.section-label {
  color: #34AED6;   
}

.section-label::before, 
.section-label::after {
  background: #34aed6 !important;
}

@keyframes iconPulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 178, 51, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(249, 178, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 178, 51, 0); }
}

.prod-card-icon {
  border-radius: 16px;
  animation: iconPulse 2.5s ease-in-out infinite;
}

.prod-card-link,
.prod-card-link:hover,
.prod-card-link:focus,
.prod-card-link:visited {
  display: block;
  text-decoration: none;
  color: inherit;
}

.prod-card-link * {
  text-decoration: none;
}

.prod-card-link .prod-card-title {
  color: #0b3a62;
}

.prod-card-link .prod-card-text {
  color: #6b7280;
}

/* ════════════════════════════════════════════
   PÁGINA: categoria-productos.html
   ════════════════════════════════════════════ */

.categoria-page {
  background: var(--bg-light, #f4f6f8);
  padding-top: 110px;
  min-height: 100vh;
}

/* ── LINK DISCRETO "VOLVER A PRODUCTOS" ── */
.categoria-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.2s ease, gap 0.2s ease;
  margin: 24px 0 0 30px;
}

.categoria-back:hover {
  color: #34aed6;
  gap: 10px;
}

/* ── HERO / TÍTULO "PORTAFOLIO" CENTRADO ── */
.categoria-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 30px 10px;
  text-align: center;
}

.categoria-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 36px;
  font-weight: 900;
  color: #0b3a62;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 8px 0 12px;
}

.categoria-title-line {
  width: 64px;
  height: 2px;
  background: #1a1f3d;
  display: inline-block;
}

.categoria-sub {
  font-size: 15px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── CONTENIDO: FILTROS + GRID ── */
.categoria-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 30px 100px;
}

/* ── FILA DE FILTROS CIRCULARES ── */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 56px;
}

.filters-swipe-hint {
  display: none;
}

.category-filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: transform 0.2s ease;
  width: 90px;
  padding: 0;
}

.category-filter-btn:hover {
  transform: translateY(-3px);
}

.category-filter-btn:focus-visible .category-filter-icon {
  outline: 2px solid #34aed6;
  outline-offset: 3px;
}

.category-filter-icon {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  background: #0b3a62;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  box-shadow: 0 6px 16px rgba(11,58,98,0.15);
  flex-shrink: 0;
}

.category-filter-icon img {
  width: 68%;
  height: 68%;
  object-fit: contain;
  display: block;
}

.category-filter-label {
  font-size: 13px;
  font-weight: 700;
  color: #0b3a62;
  text-align: center;
  width: 120px;
  line-height: 1.3;
}

.category-filter-btn.active .category-filter-icon {
  background: #cfeefb;
}

/* ── GRID DE TARJETAS DE PRODUCTO (estilo wireframe) ── */
.category-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-product-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  text-decoration: none;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(11,58,98,0.07);
  border: 1px solid rgba(11,58,98,0.06);
}

.category-product-card:hover,
.category-product-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11,58,98,0.16);
}

.category-product-card:focus-visible {
  outline: 2px solid #0b3a62;
  outline-offset: 3px;
}

.category-product-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f4f6f8 0%, #eceff2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}

.category-product-photo img {
  width: 96%;
  height: 96%;
  object-fit: contain;
}

.category-product-name {
  font-size: 16px;
  font-weight: 800;
  color: #0b3a62;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 6px;
}

.category-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 800;
  color: #34aed6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: gap 0.2s ease, color 0.2s ease;
}

.category-product-card:hover .category-product-cta {
  gap: 8px;
  color: #0b3a62;
}

/* ── ESTADO "PRÓXIMAMENTE" PARA CATEGORÍAS SIN FOTOS ── */
.category-coming-soon {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 70px 30px;
  background: #fff;
  border-radius: 22px;
  border: 1.5px dashed rgba(11,58,98,0.18);
}

.category-coming-soon-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #cfeefb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-coming-soon-icon svg {
  width: 26px;
  height: 26px;
  stroke: #0b3a62;
  stroke-width: 1.8;
  fill: none;
}

.category-coming-soon-title {
  font-size: 18px;
  font-weight: 800;
  color: #0b3a62;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.category-coming-soon-text {
  font-size: 14px;
  color: #6b7280;
  max-width: 360px;
  line-height: 1.6;
}

/* ── RESPONSIVE: categoria-productos.html ── */
@media(max-width: 900px) {
  .categoria-page {
    padding-top: 90px;
  }
  .categoria-back {
    margin: 18px 0 0 24px;
  }
  .categoria-hero {
    padding: 16px 24px 0;
  }
  .categoria-title {
    font-size: 26px;
    gap: 14px;
  }
  .categoria-title-line {
    width: 32px;
  }
  .category-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 22px;
    padding-bottom: 6px;
    margin-bottom: 10px;
  }
  .filters-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6b8494;
    font-size: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 30px;
  }
  .category-filter-btn {
    flex-shrink: 0;
    width: 100px;
  }
  .category-filter-label {
    width: 100px;
    font-size: 11px;
    white-space: normal;
  }
  .categoria-content {
    padding: 30px 24px 70px;
  }
  .category-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media(max-width: 580px) {
  .category-products-grid {
    grid-template-columns: 1fr;
  }
  .category-filter-btn {
    width: 90px;
  }
  .category-filter-icon {
    width: 72px;
    height: 72px;
  }
  .category-filter-icon img {
    width: 68%;
    height: 68%;
  }
  .category-filter-label {
    width: 90px;
    font-size: 10.5px;
  }
}