.catalog-products-page {
   padding: 28px 0 72px;
}

.catalog-products-page__breadcrumbs {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   align-items: center;
   margin-bottom: 18px;
   color: var(--gray);
   font-size: 14px;
}

.catalog-products-page__breadcrumbs a {
   color: var(--gray);
   text-decoration: none;
}

.catalog-products-page__breadcrumbs a:hover {
   color: var(--primary);
}

.catalog-products-page__header {
   margin-bottom: 28px;
}

.catalog-products-page__title {
   margin-bottom: 12px;
   color: var(--primary-dark);
}

.catalog-products-page__intro {
   max-width: 860px;
   color: #566555;
   line-height: 1.7;
}

.catalog-products-page__grid {
   margin-top: 8px;
}

.catalog-products-page__empty {
   padding: 28px;
   border-radius: 20px;
   background: #fafbf9;
   border: 1px dashed rgba(42, 109, 57, 0.18);
   color: var(--gray);
}

.product-card--catalog,
.product-card--category {
   position: relative;
}

.product-card--catalog .product-card__link,
.product-card--category .product-card__link {
   position: absolute;
   inset: 0;
   z-index: 1;
}

.product-card--catalog .product-image,
.product-card--catalog .product-content,
.product-card--category .product-content {
   pointer-events: none;
}

.product-card--catalog .product-actions,
.product-card--category .product-actions,
.product-card--catalog .product-actions *,
.product-card--category .product-actions * {
   pointer-events: auto;
}

.product-card--catalog,
.product-card--category {
   cursor: pointer;
}

.product-card--catalog .product-actions,
.product-card--category .product-actions {
   position: relative;
   z-index: 2;
}

.product-card--catalog .product-title a,
.product-card--category .product-title a {
   color: inherit;
   text-decoration: none;
}

.product-card--catalog .product-title a:hover,
.product-card--category .product-title a:hover {
   color: var(--accent-hover);
}

.product-image__placeholder {
   width: 100%;
   height: 100%;
   min-height: 180px;
   background: linear-gradient(135deg, #e8ede8, #d9e3da);
}

.product-card--category .product-content {
   min-height: 180px;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

@media (max-width: 768px) {
   .catalog-products-page {
      padding: 18px 0 56px;
   }
}
