#main-content {
  padding-top: 24px;
  padding-bottom: 80px;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}

.crumb-current {
  color: var(--text-dark);
  font-weight: 600;
}

/* Title & Desc */
.page-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.page-description {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.5;
  color: #3f3f3f;
  margin: 0 0 40px 0;
}

/* Filters */
.filters-section {
  margin-bottom: 40px;
}

.filters-title {
  font-size: 16px;
  font-weight: 600;
  color: #3f3f3f;
  margin: 0 0 12px 0;
}

.filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: #f0f0f0;
  border: 1px solid #e8e8e8;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  text-transform: uppercase;
}

.filter-chip.active {
  background-color: rgba(81, 89, 254, 0.1);
  border-color: rgba(81, 89, 254, 0.1);
  color: #5159fe;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
}

.product-card-apl-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-apl-link:hover .product-card-apl {
  box-shadow: 0px 4px 32px 0px rgba(81, 89, 254, 0.15);
  transform: translateY(-2px);
  transition: all 0.2s;
}

.product-card-apl {
  min-height: 400px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0px 4px 32px 0px rgba(0, 0, 0, 0.08);
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 16px;
  transition: all 0.2s;
  cursor: pointer;
}

.product-card-apl[style*="display: none"] {
  display: none !important;
}

.card-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.card-image img {
    max-height: 230px;
    width: auto;
  }

.card-content {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.card-header .subtitle {
  font-size: 12px;
  color: #5159fe;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}



.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  background-color: #f6f6f6;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  padding: 4px 6px;
  font-size: 12px;
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

/* Icons */
.icon-xs {
  width: 8px;
  height: 8px;
}
.icon-sm {
  width: 16px;
  height: 16px;
}
.icon-md {
  width: 20px;
  height: 20px;
}

.mob-padding {
    padding: 0 20px !important;
}