.home-product-card--parent,
.product-parent-card {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.home-product-card--parent:hover,
.product-parent-card:hover {
  color: inherit;
}

.parent-card-link-label {
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #f0effb;
  color: #4058e8;
  font-size: 12px;
  font-weight: 700;
}

.child-products-page {
  min-height: calc(100vh - 220px);
}

.child-products-page .store-container {
  width: min(calc(100% - 32px), 1400px);
}

.child-products-header {
  padding: 24px 0 12px;
}

.child-products-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 0;
  color: #77748a;
  font-size: 13px;
  line-height: 1.4;
}

.child-products-breadcrumb a {
  color: #4058e8;
  text-decoration: none;
}

.child-products-breadcrumb a:hover,
.child-products-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.system-message {
  margin-top: 14px;
  max-width: 980px;
  padding: 16px 20px;
  border: 1px solid #cfe3f3;
  border-left: 4px solid #36a8df;
  border-radius: 10px;
  background: #eef8ff;
  color: #5b6d7c;
}

.system-message h2 {
  margin: 0 0 8px;
  color: #217ca9;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .04em;
}

.system-message p {
  margin: 0;
  white-space: pre-line;
  color: #657786;
  font-size: 14px;
  line-height: 1.65;
}

.child-products-grid {
  grid-template-columns: repeat(4, minmax(220px, 270px));
  justify-content: start;
  gap: 16px;
}

.child-product-card {
  display: flex;
  height: 100%;
  max-width: 270px;
  flex-direction: column;
}

.child-product-card .product-card__body {
  flex: 1;
}

.child-product-card .btn-buy-now {
  margin-top: auto;
}

.child-product-card__image {
  position: relative;
}

.child-product-code {
  position: absolute;
  top: 9px;
  left: 9px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 8px;
  background: rgba(23, 20, 47, .78);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.child-products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
  color: #6d6a83;
  font-size: 13px;
}

.child-products-pagination a {
  color: #4058e8;
  font-weight: 700;
}

.child-products-pagination a:hover,
.child-products-pagination a:focus-visible {
  text-decoration: underline;
}

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

@media (max-width: 900px) {
  .child-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .child-product-card {
    max-width: none;
  }
}

@media (max-width: 576px) {
  .child-products-page {
    min-height: calc(100vh - 180px);
  }

  .child-products-page .store-container {
    width: min(calc(100% - 24px), 1400px);
  }

  .child-products-header {
    padding: 18px 0 10px;
  }

  .system-message {
    padding: 14px 15px;
  }

  .system-message p {
    font-size: 13px;
  }

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

  .child-product-card {
    max-width: none;
  }

  .child-product-code {
    top: 7px;
    left: 7px;
    min-height: 24px;
    padding-inline: 7px;
    font-size: 11px;
  }
}
