@font-face {
  font-family: "GarageGothicBold";
  src: url("/DigitUp/LaCaseraES/assets/fonts/GarageGothic-Bold.woff2") format("woff2"), url("/DigitUp/LaCaseraES/assets/fonts/GarageGothic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSansLight";
  src: url("/DigitUp/LaCaseraES/assets/fonts/OpenSans-Light.woff2") format("woff2"), url("/DigitUp/LaCaseraES/assets/fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Define the responsive grid mixin */
/* Center content with optional starting column */
/* ============================================
   Button Mixin
   Supports: variants, sizes, optional icon
=============================================== */
/* SIZE MIXIN (NO COLORS, NO VARIANT) */
/* VARIANT MIXIN (COLORS ONLY) */
/* OPTIONAL: BASE MIXIN */
.productCategory .grid {
  gap: 1.5rem;
}
.productCategory .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 12 columns - Default for desktop min-width 1200px */
}
.productCategory .grid {
  /* Mobile breakpoint (sm to lg): 8 columns $columns-mobile, 1fr*/
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .productCategory .grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
.productCategory .grid {
  /* Tablet breakpoint (lg to xl): 8 columns */
}
@media (min-width: 839.9px) {
  .productCategory .grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
.productCategory .grid {
  align-items: stretch;
}
.productCategory .grid article {
  grid-column: 1/span 4;
}
@media (min-width: 599.9px) and (max-width: 839.9px) {
  .productCategory .grid article {
    grid-column: span 4;
  }
}
@media (min-width: 839.9px) {
  .productCategory .grid article {
    grid-column: span 4;
  }
}
.productCategory .grid article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background: #eef3f9;
  padding: 1.25rem 1.25rem 0 1.25rem;
  height: 100%;
}
.productCategory .grid article img {
  max-height: 260px;
  object-fit: contain;
  margin-bottom: 1.5rem;
}
.productCategory .grid article .info h2 {
  padding-bottom: 1rem;
}
.productCategory .grid article .info .productMeta {
  padding-bottom: 1.25rem;
}
