/*
Theme Name: Hellion Store
Theme URI: https://hellionstore.cl
Description: Theme a medida para Hellion Store (tienda de TCG), 100% código propio.
Author: Hellion Store
Version: 1.0.0
Text Domain: hellion-store
*/

/* =========================================================
   RESET BASICO
   ========================================================= */
*{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1c1f2a;
  background: #fff;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; }
ul{ list-style: none; margin: 0; padding: 0; }

/* =========================================================
   VARIABLES DE MARCA
   ========================================================= */
:root{
  --hs-azul: #2952e3;
  --hs-azul-oscuro: #1c3ab0;
  --hs-navy: #12172b;
  --hs-navy-2: #1b2340;
  --hs-naranja: #f5a623;
  --hs-texto: #1c1f2a;
  --hs-texto-suave: #6b7280;
  --hs-borde: #e5e7eb;
  --hs-fondo-gris: #f4f5f7;
}

/* =========================================================
   BARRA SUPERIOR DE ANUNCIOS
   ========================================================= */
.hs-topbar{
  background: var(--hs-navy);
  color: #fff;
  font-size: 13px;
  overflow: hidden;
}
.hs-topbar-track{
  display: flex;
  width: max-content;
  animation: hs-topbar-marquee 24s linear infinite;
}
.hs-topbar:hover .hs-topbar-track{
  animation-play-state: paused;
}
.hs-topbar .hs-topbar-inner{
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 8px 72px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hs-topbar span{
  opacity: 0.85;
}
.hs-topbar .hs-topbar-highlight{
  color: var(--hs-naranja);
  font-weight: 600;
  opacity: 1;
}

@keyframes hs-topbar-marquee{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce){
  .hs-topbar-track{
    animation: none;
  }
  .hs-topbar .hs-topbar-inner[aria-hidden="true"]{
    display: none;
  }
  .hs-topbar .hs-topbar-inner{
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    white-space: normal;
  }
}

/* =========================================================
   HEADER (100% propio, sin depender de ningún theme padre)
   ========================================================= */
.hs-header{
  border-bottom: 1px solid var(--hs-borde);
}
.hs-header-row{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 16px 20px;
}

/* Logo */
.hs-logo{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
  color: var(--hs-texto);
  text-decoration: none;
}
.hs-logo img,
.hs-logo img.custom-logo{
  height: 100px !important;
  width: auto !important;
  max-height: 100px !important;
  max-width: 320px;
  display: block;
  object-fit: contain;
}
.hs-logo a.custom-logo-link{
  display: flex;
  align-items: center;
}
.hs-logo-text{
  font-weight: 800;
  font-size: 22px;
  color: var(--hs-texto);
  text-decoration: none;
}
.hs-logo-icon{
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--hs-azul), var(--hs-naranja));
}

/* Buscador */
.hs-header-search{
  flex: 1 1 320px;
  max-width: 480px;
}
.hs-header-search form{ position: relative; }
.hs-header-search .hs-search-icon{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--hs-texto-suave);
  display: flex;
}
.hs-header-search input[type="search"]{
  width: 100%;
  padding: 10px 16px 10px 40px;
  border-radius: 8px;
  border: 1px solid var(--hs-borde);
  background: var(--hs-fondo-gris);
  font-size: 14px;
}

/* Iconos */
.hs-header-icons{
  flex: 0 0 auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.hs-header-icons a{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: var(--hs-texto);
  text-decoration: none;
}
.hs-cart-icon-wrap{ position: relative; display: inline-flex; }
.hs-header-icons .hs-cart-count{
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--hs-azul);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fila del menú, debajo del header */
.hs-nav-row{
  border-top: 1px solid var(--hs-borde);
}
.hs-nav-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}
.hs-menu{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hs-menu a{
  font-weight: 600;
  color: var(--hs-texto);
  text-decoration: none;
}
.hs-menu .current-menu-item > a{
  color: var(--hs-azul);
}
.hs-menu li:last-child > a{
  color: var(--hs-naranja);
}
.hs-menu-aviso{
  font-size: 13px;
  color: var(--hs-texto-suave);
  margin: 0;
}

/* =========================================================
   HERO
   ========================================================= */
.hs-hero{
  background: linear-gradient(135deg, var(--hs-navy) 0%, var(--hs-navy-2) 100%);
  color: #fff;
  padding: 64px 20px;
}
.hs-hero-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hs-hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  color: var(--hs-naranja);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hs-hero-badge::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hs-naranja);
}
.hs-hero h1{
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
}
.hs-hero p{
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 460px;
}
.hs-hero-buttons{
  display: flex;
  gap: 12px;
}
.hs-btn{
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: opacity .15s ease;
}
.hs-btn:hover{ opacity: .9; }
.hs-btn-primary{
  background: var(--hs-azul);
  color: #fff;
}
.hs-btn-secondary{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.hs-hero-image img{
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* =========================================================
   SECCIONES GENERALES
   ========================================================= */
.hs-section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 20px;
}
.hs-section h2{
  font-size: 26px;
  margin-bottom: 24px;
}
.hs-section-subtitle{
  color: var(--hs-texto-suave);
  margin-top: -14px;
  margin-bottom: 24px;
}

/* =========================================================
   GRILLA DE CATEGORIAS
   ========================================================= */
.hs-categorias-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hs-categoria-card{
  border: 1px solid var(--hs-borde);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--hs-texto);
  background: #fff;
  display: block;
}
.hs-categoria-card .hs-categoria-img{
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--hs-fondo-gris);
}
.hs-categoria-card.hs-categoria-color .hs-categoria-img{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hs-categoria-card.hs-categoria-color .hs-categoria-img svg,
.hs-categoria-card.hs-categoria-color .hs-categoria-img .hs-icon{
  width: 56px;
  height: 56px;
  opacity: .9;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 8px;
  transform: rotate(45deg);
}
.hs-categoria-card .hs-categoria-body{
  padding: 14px 16px;
}
.hs-categoria-card .hs-categoria-body strong{
  display: block;
  margin-bottom: 4px;
  color: var(--hs-texto);
}
.hs-categoria-card .hs-categoria-body span{
  font-size: 13px;
  color: var(--hs-azul);
}

/* Colores de fondo para las tarjetas "de color" (Colección / Preventa / Accesorios / Ofertas) */
.hs-bg-azul{ background: linear-gradient(135deg,#2952e3,#1c3ab0); }
.hs-bg-morado{ background: linear-gradient(135deg,#6d5bf6,#2952e3); }
.hs-bg-azulnoche{ background: linear-gradient(135deg,#1c3ab0,#0d1a4d); }
.hs-bg-gris{ background: linear-gradient(135deg,#4b5563,#1f2937); }
.hs-bg-naranja{ background: linear-gradient(135deg,#f5a623,#d97706); }

/* =========================================================
   PRODUCTOS (grilla de WooCommerce: shop, categorías, home)
   Se aplica a cualquier <ul class="products">, no solo al home.
   ========================================================= */
.woocommerce ul.products,
.hs-content-wrap ul.products,
.hs-section ul.products{
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 0 0 20px !important;
}
/* WooCommerce agrega ::before/::after a ul.products como clearfix para su
   layout antiguo con floats. Al usar CSS Grid esos pseudo-elementos pasan
   a ocupar una celda real de la grilla (se ven como una tarjeta en blanco),
   así que hay que quitarlos por completo. */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.hs-content-wrap ul.products::before,
.hs-content-wrap ul.products::after,
.hs-section ul.products::before,
.hs-section ul.products::after{
  content: none !important;
  display: none !important;
}
.woocommerce ul.products.columns-2{ grid-template-columns: repeat(2, 1fr) !important; }
.woocommerce ul.products.columns-3{ grid-template-columns: repeat(3, 1fr) !important; }
.woocommerce ul.products.columns-5{ grid-template-columns: repeat(5, 1fr) !important; }
.woocommerce ul.products.columns-6{ grid-template-columns: repeat(6, 1fr) !important; }

/* Secciones de la portada (Productos destacados, Cartas individuales):
   cuando hay menos productos que columnas, "auto-fit" colapsa las
   columnas vacías en vez de dejarlas en blanco, y los productos reales
   se estiran para ocupar el ancho completo de la fila. */
.hs-section ul.products.columns-4{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important; }
.hs-section ul.products.columns-5{ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important; }

.woocommerce ul.products li.product,
.hs-content-wrap ul.products li.product{
  border: 1px solid var(--hs-borde);
  border-radius: 12px;
  padding: 0 !important;
  overflow: hidden;
  background: #fff;
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
  position: relative;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products li.product img{
  border-radius: 0;
  margin-bottom: 0 !important;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  padding: 12px 14px 0;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}
.woocommerce ul.products li.product .price{
  padding: 2px 14px 0;
  font-size: 16px;
  display: block;
}
.woocommerce ul.products li.product del{
  color: var(--hs-texto-suave);
  font-size: 13px;
  margin-right: 6px;
  opacity: .7;
}
.woocommerce ul.products li.product ins{
  text-decoration: none;
}
.woocommerce ul.products li.product .button{
  margin: 12px 14px 14px;
  margin-top: auto;
  width: calc(100% - 28px);
  text-align: center;
  background: var(--hs-texto);
  color: #fff;
  border-radius: 8px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 13px;
  transition: opacity .15s ease;
}
.woocommerce ul.products li.product .button:hover{ opacity: .85; }
.woocommerce ul.products li.product .button.loading{ opacity: .6; }
.woocommerce ul.products li.product .added_to_cart{
  display: block;
  text-align: center;
  font-size: 12px;
  margin: 0 14px 12px;
}

/* Contenedor de la imagen: aquí van el badge y el corazón de favoritos */
.hs-product-media{
  position: relative;
}
.hs-product-media.hs-no-image img{
  opacity: 0;
}
.hs-product-media.hs-no-image{
  background: linear-gradient(135deg, var(--hs-navy) 0%, var(--hs-navy-2) 60%, var(--hs-azul-oscuro) 100%);
  aspect-ratio: 1 / 1;
}
.hs-product-media.hs-no-image::after{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40%;
  height: 40%;
  top: 30%;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 8px;
  transform: rotate(45deg);
}

/* Etiqueta de estado (NUEVO / OFERTA / PREVENTA / RAREZA) sobre la imagen */
.hs-badge-estado{
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  z-index: 2;
}
.hs-badge-nuevo{ background: var(--hs-azul); }
.hs-badge-oferta{ background: #a63a2b; }
.hs-badge-preventa{ background: var(--hs-azul-oscuro); }
.hs-badge-rareza{ background: #6b7280; }

/* Corazón de favoritos */
.hs-wishlist-btn{
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--hs-texto);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: transform .15s ease, color .15s ease;
}
.hs-wishlist-btn:hover{ transform: scale(1.08); }
.hs-wishlist-btn.is-active{
  color: #e11d48;
}
.hs-wishlist-btn.is-active svg{
  fill: #e11d48;
}

/* Ficha corta (set · idioma) */
.hs-product-eyebrow{
  margin: 12px 14px 0 !important;
  padding: 0 !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--hs-texto-suave);
  text-transform: uppercase;
}
.hs-product-eyebrow.hs-eyebrow-carta{
  text-transform: none;
  font-weight: 500;
  font-size: 12px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  padding-top: 2px;
}

/* Disponibilidad */
.hs-disponibilidad{
  margin: 4px 14px 0 !important;
  font-size: 12px;
  font-weight: 600;
}
.hs-disp-ok{ color: #16a34a; }
.hs-disp-bajo{ color: #d97706; }
.hs-disp-critico{ color: #dc2626; }
.hs-disp-agotado{ color: var(--hs-texto-suave); }
.hs-disp-preventa{ color: var(--hs-azul); }

/* Condición + fila de precio (tarjetas de "Cartas individuales") */
.hs-badge-condicion{
  margin: 10px 14px 0;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--hs-fondo-gris);
  color: var(--hs-texto);
  width: fit-content;
}
.hs-price-row{
  margin: 8px 14px 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.hs-price-row .price{
  padding: 0 !important;
}
.hs-price-row .hs-disponibilidad{
  margin: 0 !important;
  white-space: nowrap;
}

/* Página de favoritos */
.hs-page-title{
  font-size: 26px;
  margin: 0 0 8px;
}
.hs-wishlist-empty{
  color: var(--hs-texto-suave);
}

/* =========================================================
   CONTENIDO GENERAL (paginas de WooCommerce: tienda, producto,
   carrito, checkout) - wrapper propio, ancho consistente
   ========================================================= */
.hs-content-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.hs-footer{
  background: var(--hs-navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
  margin-top: 40px;
}
.hs-footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.hs-footer h4{
  color: #fff;
  font-size: 15px;
  margin: 0 0 14px;
}
.hs-footer p{
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
}
.hs-footer ul li{
  margin-bottom: 8px;
}
.hs-footer a{
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
}
.hs-footer a:hover{ color: #fff; }
.hs-footer-bottom{
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 24px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  align-items: center;
}
.hs-footer-legal{
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}
.hs-footer-legal a{
  font-size: 13px;
}

/* =========================================================
   CONTENIDO LARGO (Términos, Privacidad, Devolución, FAQ, etc.)
   ========================================================= */
.hs-entry-content{
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--hs-texto);
}
.hs-entry-content h2{
  font-size: 22px;
  margin: 40px 0 12px;
}
.hs-entry-content h2:first-child{
  margin-top: 0;
}
.hs-entry-content p{
  margin: 0 0 16px;
}
.hs-entry-content ul,
.hs-entry-content ol{
  margin: 0 0 16px;
  padding-left: 22px;
  list-style: revert;
}
.hs-entry-content li{
  margin-bottom: 8px;
}
.hs-entry-content a{
  color: var(--hs-azul);
  text-decoration: underline;
}

/* =========================================================
   PAGINAS GENERALES DE WOOCOMMERCE
   (producto individual, carrito, checkout, mi cuenta)
   ========================================================= */
.hs-page-title,
.hs-content-wrap .page-title,
.hs-content-wrap h1.entry-title{
  font-size: 28px;
  margin: 0 0 24px;
}

/* Botones y campos, en general */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce #place_order{
  background: var(--hs-azul);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity .15s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #place_order:hover{
  background: var(--hs-azul-oscuro);
  color: #fff;
  opacity: 1;
}
.woocommerce a.button.alt,
.woocommerce #place_order{
  background: var(--hs-navy);
}
.woocommerce a.button.alt:hover,
.woocommerce #place_order:hover{
  background: var(--hs-navy-2);
}

.woocommerce table.shop_table{
  border: 1px solid var(--hs-borde);
  border-radius: 12px;
  border-collapse: separate;
  overflow: hidden;
}
.woocommerce table.shop_table th{
  background: var(--hs-fondo-gris);
  font-weight: 700;
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td{
  border: none;
  border-bottom: 1px solid var(--hs-borde);
  padding: 14px;
}
.woocommerce-checkout #payment{
  border-radius: 12px;
  background: var(--hs-fondo-gris);
}
.woocommerce-checkout #payment ul.payment_methods{
  border-bottom: none;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select{
  border: 1px solid var(--hs-borde);
  border-radius: 8px;
  padding: 10px 12px;
}
.woocommerce-checkout-review-order-table,
.cart-collaterals .cart_totals{
  background: #fff;
}

/* Ficha de producto individual */
.woocommerce div.product .woocommerce-tabs ul.tabs li{
  border-radius: 8px 8px 0 0;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price{
  color: var(--hs-texto);
  font-size: 24px;
  font-weight: 700;
}
.woocommerce div.product form.cart .button{
  background: var(--hs-azul);
  color: #fff;
}

/* Mi cuenta */
.woocommerce-MyAccount-navigation ul{
  border: 1px solid var(--hs-borde);
  border-radius: 12px;
  overflow: hidden;
}
.woocommerce-MyAccount-navigation ul li{
  border-bottom: 1px solid var(--hs-borde);
}
.woocommerce-MyAccount-navigation ul li a{
  display: block;
  padding: 12px 16px;
}
.woocommerce-MyAccount-navigation ul li.is-active a{
  background: var(--hs-fondo-gris);
  color: var(--hs-azul);
  font-weight: 600;
}

/* =========================================================
   MENU MOVIL (hamburguesa)
   ========================================================= */
.hs-nav-toggle{
  display: none;
  border: 1px solid var(--hs-borde);
  background: #fff;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px){
  .hs-hero{ padding: 40px 20px; }
  .hs-hero-inner{ grid-template-columns: 1fr; }
  .hs-hero h1{ font-size: 30px; }
  .hs-categorias-grid{ grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products,
  .woocommerce ul.products.columns-2,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-5,
  .woocommerce ul.products.columns-6,
  .hs-content-wrap ul.products,
  .hs-section ul.products{ grid-template-columns: repeat(2, 1fr) !important; }
  .hs-footer-inner{ grid-template-columns: 1fr 1fr; }

  .hs-header-row{ padding: 12px 16px; }
  .hs-header-search{ order: 3; flex: 1 1 100%; max-width: none; }
  .hs-nav-toggle{ display: flex; order: 2; }
  .hs-header-icons{ order: 1; margin-left: 0; gap: 16px; }
  .hs-header-icons span{ display: none; }

  .hs-nav-row{ display: none; }
  .hs-nav-row.hs-nav-open{ display: block; }
  .hs-nav-inner{ padding: 12px 16px; }
  .hs-menu{ flex-direction: column; gap: 4px; }
  .hs-menu a{ display: block; padding: 10px 0; border-bottom: 1px solid var(--hs-borde); }
}

@media (max-width: 560px){
  .hs-categorias-grid{ grid-template-columns: 1fr 1fr; }
  .woocommerce ul.products,
  .woocommerce ul.products.columns-2,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-4,
  .woocommerce ul.products.columns-5,
  .woocommerce ul.products.columns-6,
  .hs-content-wrap ul.products,
  .hs-section ul.products{ grid-template-columns: repeat(2, 1fr) !important; }
  .hs-footer-inner{ grid-template-columns: 1fr; }
  .hs-hero h1{ font-size: 26px; }
}
