/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 226:0 Unexpected "<"

**/
<style>
/* --- Wrapper to constrain everything --- */
.catalog-page-wrapper {
  max-width: 1200px;   /* constrain width */
  margin: 0 auto;      /* center wrapper */
  padding: 20px 16px;  /* spacing from edges */
  box-sizing: border-box;
}

/* --- Page Title --- */
.catalog-page-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: #222;
  margin-top: 40px;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.catalog-subtitle {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  margin-top: -20px;
  margin-bottom: 00px;
}

.catalog-page-inner {
  max-width: 1200px;    /* constrain width */
  margin: 0 auto;       /* center container */
  padding: 0 16px;      /* spacing from viewport edges */
  box-sizing: border-box;
}

.catalog-page-inner h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
  text-align: left; /* or center */
}
/* --- Catalog container remains centered inside wrapper --- */
#catalog-container {
  width: 100%;  /* full width of wrapper */
}
/* --- General Page Styling --- */
#catalog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #000; /* black text */
}

/* --- Catalog Section Wrapper --- */
.catalog-section {
  max-width: 1200px;       /* constrain width */
  margin: 0 auto 40px;     /* center section horizontally */
  padding: 0 16px;         /* responsive padding */
  box-sizing: border-box;
  text-align: left;         /* headings + filters align inside container */
}

/* --- Section Heading --- */
.catalog-section h2 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
  display: block;
  }

/* Optional: center the heading instead of left */
.catalog-section.centered h2 {
  text-align: center;
}

/* --- Filter Container --- */
.filter-container {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start; /* change to center if you want centered filters */
}

.filter-container label {
  font-weight: 500;
  margin-right: 8px;
}

.filter-container select {
  padding: 6px 12px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 180px;
}

.filter-container select:hover {
  border-color: #888;
}

.filter-container select:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

/* --- Catalog Grid (max 5 columns, constrained card width) --- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 20px;
  justify-content: start; /* left-align cards instead of stretching */
  max-width: 1200px;     /* constrain the entire grid */
  margin: 0 auto;
}

/* --- Product Card --- */
.catalog-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.catalog-card img {
  width: 100%;           /* fill card width */
  height: 160px;         /* fixed height for uniform cards */
  object-fit: contain;   /* ensures full image is visible without cropping */
  background-color: #fff; /* white background; change to transparent if you prefer */
  display: block;
  border-bottom: 1px solid #e0e0e0; /* optional: subtle separation from card content */
}

.card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.catalog-section h2 {
  color: #008000;       /* green to match theme */
  font-size: 1.8rem;    /* keep current size */
  font-weight: 600;     /* semi-bold */
  margin-bottom: 16px;
  text-transform: capitalize;
  border-bottom: 1px solid #e0e0e0; /* optional underline for separation */
  padding-bottom: 8px;
}
.catalog-card h3 {
  color: #000;         /* black text */
  font-weight: 500;    /* semi-bold */
  font-size: 1rem;     /* adjust size if needed */
  margin: 8px 0 4px;   /* spacing above/below */
}

.card-content h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
  font-weight: 600;
}

.card-content p {
  font-size: 0.9rem;
  margin: 0 0 12px;
  color: #333;
}

.card-content button {
  margin-top: auto;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.card-content button:hover {
  background-color: #333;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  .catalog-card img {
    height: 140px;
  }
}
</style>