.template6-products-page {
  background:
    radial-gradient(circle at top left, rgba(31, 79, 147, 0.1), transparent 28%),
    linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
    margin-top: 50px;
}

.template6-products-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;  
}

.template6-products-hero {
  padding: 76px 0 38px;
}

.template6-products-hero__copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.template6-products-hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(1.5rem, 4vw, 3.15rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #1f4f93;
}

.template6-products-hero p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #4c5f79;
}

.template6-products-listing {
  padding: 18px 0 88px;
}

.template6-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.template6-product-card {
  min-width: 0;
}

.template6-product-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(57, 80, 117, 0.12);
  text-decoration: none;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.template6-product-card__link:hover,
.template6-product-card__link:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(32, 55, 91, 0.16);
}

.template6-product-card__link:focus-visible {
  outline: 3px solid rgba(31, 79, 147, 0.35);
  outline-offset: 4px;
}

.template6-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #d90e12 0%, #b90b0f 100%);
}

.template6-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.template6-product-card__body {
  display: flex;
  min-height: 198px;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 22px 26px;
  text-align: center;
}

.template6-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.template6-product-card__meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 79, 147, 0.08);
  color: #1f4f93;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.template6-product-card__body h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.32;
  text-transform: uppercase;
  color: #4b5f7a;
}

.template6-product-card__body p {
  margin: 14px 0 0;
  color: #61718a;
  font-size: 0.94rem;
  line-height: 1.65;
}

.template6-product-card__cta {
  margin-top: 18px;
  color: #c41317;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.template6-products-pagination {
  margin-top: 44px;
}

.template6-products-pagination .pagination {
  gap: 8px;
  flex-wrap: wrap;
}

.template6-products-pagination .page-link {
  min-width: 46px;
  padding: 0.68rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(31, 79, 147, 0.14);
  background: #ffffff;
  color: #1f4f93;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(57, 80, 117, 0.08);
}

.template6-products-pagination .page-link:hover,
.template6-products-pagination .page-link:focus {
  color: #173f78;
  background: #f1f5fb;
  border-color: rgba(31, 79, 147, 0.22);
}

.template6-products-pagination .page-item.active .page-link {
  background: #1f4f93;
  border-color: #1f4f93;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(31, 79, 147, 0.22);
}

.template6-products-pagination .page-item.disabled .page-link {
  background: #f8fafc;
  color: #9aa7b7;
  border-color: rgba(154, 167, 183, 0.2);
  box-shadow: none;
}

.template6-products-empty {
  padding: 42px 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(57, 80, 117, 0.1);
  text-align: center;
}

.template6-products-empty h2 {
  margin: 0 0 10px;
  color: #1f4f93;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.template6-products-empty p {
  margin: 0;
  color: #5d6f88;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .template6-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .template6-products-shell {
    width: min(100% - 32px, 1180px);
  }

  .template6-products-hero {
    padding-top: 52px;
  }

  .template6-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .template6-products-pagination {
    margin-top: 36px;
  }
}

@media (max-width: 560px) {
  .template6-products-grid {
    grid-template-columns: 1fr;
  }

  .template6-products-pagination .pagination {
    gap: 6px;
  }

  .template6-products-pagination .page-link {
    min-width: 42px;
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
  }

  .template6-product-card__body {
    min-height: auto;
  }
}
