/* DESKTOP DEFAULT */

.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: flex-start !important;
}

.filter-sidebar {
  height: fit-content;
}

.filter-sidebar-wrapper {
  width: 240px;
  flex-shrink: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* =========================
   MOBILE
========================= */

.mobile-filter-btn {
  display: none;
}

.filter-overlay {
  display: none;
}

@media (max-width: 768px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  /* FILTER BUTTON */
  .mobile-filter-btn {
    display: flex !important;
    width: fit-content;
  }

  /* SIDEBAR */
  .filter-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #0d0909 !important;
    z-index: 9999;
    overflow-y: auto;
    transition: 0.3s;
    border-right: 1px solid #222;
    border-radius: 0 !important;
  }

  .filter-sidebar.active {
    left: 0;
  }

  /* OVERLAY */
  .filter-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
  }

  /* PRODUCT GRID */
  .product-grid {
    grid-template-columns: 1fr !important;
  }

  /* FEATURED CARD */
  .featured-card {
    grid-column: span 1 !important;
    grid-template-columns: 1fr !important;
  }

  .featured-card img {
    object-fit: contain !important;
  }

  /* IMAGE HEIGHT */
  .product-card div[style*="height: 340px"] {
    height: 260px !important;
  }

  .featured-card div[style*="height: 440px"] {
    height: 300px !important;
  }

  /* TITLE */
  h1 {
    font-size: 42px !important;
    line-height: 1.1;
  }

  h2 {
    font-size: 36px !important;
  }

  /* GEAR GUIDE */
  #gear-guide img {
    width: 100%;
    height: auto;
  }

  .catalog-layout {
    grid-template-columns: 1fr !important;
  }

  .catalog-products {
    width: 100%;
  }

  .product-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100%;
  }

  .product-card,
  .featured-card {
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
  }

  .product-card span[style*="position: absolute"] {
    font-size: 8px !important;
  }

  .product-card span[style*="top: 20px"] {
    top: 10px !important;
    left: 50px !important;
    font-size: 7px !important;
    line-height: 1 !important;
  }

  .product-card span[style*="bottom: 85px"] {
    bottom: 70px !important;
    right: 12px !important;
  }

  .product-card div[style*="height: 340px"] {
    height: 300px !important;
    padding-top: 20px;
    box-sizing: border-box;
  }

  .featured-card {
    width: 100% !important;
    max-width: 380px;
    margin: 0 auto !important;
  }
}

.catalog-content {
  width: 100%;
  min-width: 0;
}

.product-grid {
  width: 100%;
}

.catalog-section {
  overflow: visible;
}
