.gp-products-hub {
  --gp-hub-bg: #08090d;
  --gp-hub-surface: linear-gradient(145deg, rgba(18, 18, 24, 0.92), rgba(10, 10, 14, 0.84));
  --gp-hub-card: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  --gp-hub-card-soft: rgba(255, 255, 255, 0.06);
  --gp-hub-border: rgba(255, 255, 255, 0.12);
  --gp-hub-border-strong: rgba(255, 49, 78, 0.72);
  --gp-hub-text: #f3f5fb;
  --gp-hub-soft: #b6bcc8;
  --gp-hub-muted: #8d95a5;
  --gp-hub-accent: #ff374d;
  --gp-hub-accent-2: #ff7b89;
  --gp-hub-blue: #00a7eb;
  width: min(1280px, calc(100% - 28px));
  margin: 24px auto 44px;
  color: var(--gp-hub-text);
  font-family: 'Barlow', sans-serif;
}

.gp-products-hub *,
.gp-products-hub *::before,
.gp-products-hub *::after {
  box-sizing: border-box;
}

.gp-products-hub__hero,
.gp-products-hub__section {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--gp-hub-border);
  border-top: 2px solid var(--gp-hub-border-strong);
  border-bottom: 2px solid var(--gp-hub-border-strong);
  background: var(--gp-hub-surface);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gp-products-hub__hero {
  padding: clamp(18px, 3vw, 34px);
  margin-bottom: 18px;
}

.gp-products-hub__hero::before,
.gp-products-hub__section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 70% at 0% 0%, rgba(255, 64, 90, 0.18), rgba(255, 64, 90, 0) 56%),
    radial-gradient(90% 80% at 100% 18%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 64%);
}

.gp-products-hub__kicker {
  position: relative;
  margin: 0 0 8px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd4da;
  font-weight: 800;
}

.gp-products-hub__title {
  position: relative;
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.45rem);
  line-height: 1.08;
  color: #fff;
}

.gp-products-hub__subtitle {
  position: relative;
  margin: 10px 0 0;
  max-width: 78ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gp-hub-soft);
}

.gp-products-hub__stats {
  position: relative;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gp-products-hub__stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  padding: 12px 14px;
}

.gp-products-hub__stat span {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 4px;
}

.gp-products-hub__stat strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.2;
  color: #fff;
}

.gp-products-hub__section {
  padding: clamp(16px, 2.4vw, 28px);
  margin-top: 18px;
}

.gp-products-hub__filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.gp-products-hub__search {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gp-products-hub__search span,
.gp-products-hub__group legend,
.gp-products-hub__control span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f1d6db;
}

.gp-products-hub__search input[type="search"],
.gp-products-hub__control select {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(11, 11, 16, 0.92), rgba(18, 18, 24, 0.82));
  color: #fff;
  padding: 12px 14px;
  font-size: 0.98rem;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
}

.gp-products-hub__search input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.gp-products-hub__search input[type="search"]:focus,
.gp-products-hub__control select:focus {
  border-color: rgba(0, 167, 235, 0.75);
  box-shadow: 0 0 0 3px rgba(0, 167, 235, 0.18);
}

.gp-products-hub__filters-advanced {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.gp-products-hub__panel {
  position: relative;
  overflow: visible;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.gp-products-hub__panel--publisher {
  z-index: 2;
}

.gp-products-hub__panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.gp-products-hub__panel summary::-webkit-details-marker {
  display: none;
}

.gp-products-hub__panel summary span {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.gp-products-hub__panel summary small {
  color: var(--gp-hub-muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gp-products-hub__panel summary::after {
  content: "▾";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  transition: transform .18s ease, background .18s ease;
}

.gp-products-hub__panel[open] summary::after {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.1);
}

.gp-products-hub__panel-body {
  padding: 0 16px 16px;
}

.gp-products-hub__panel-help {
  margin: 10px 0 0;
  color: var(--gp-hub-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.gp-products-hub__group-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.gp-products-hub__panel-empty {
  display: block;
  padding: 12px 0 8px;
  color: var(--gp-hub-muted);
  font-size: 0.92rem;
}

.gp-products-hub__chips--scroll {
  max-height: 208px;
  overflow: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.06);
}

.gp-products-hub__chips--scroll::-webkit-scrollbar,
.gp-products-hub__publisher-dropdown::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.gp-products-hub__chips--scroll::-webkit-scrollbar-track,
.gp-products-hub__publisher-dropdown::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.gp-products-hub__chips--scroll::-webkit-scrollbar-thumb,
.gp-products-hub__publisher-dropdown::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 65, 88, 0.88), rgba(179, 17, 32, 0.88));
  border: 2px solid rgba(0, 0, 0, 0.16);
}

.gp-products-hub__period-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gp-products-hub__period-column {
  min-width: 0;
}

.gp-products-hub__publisher-field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-products-hub__publisher-combobox {
  display: flex;
  align-items: stretch;
  gap: 10px;
  position: relative;
}

.gp-products-hub__publisher-input {
  flex: 1 1 auto;
  width: auto;
}

.gp-products-hub__publisher-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.05));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, border-color .2s ease, filter .2s ease;
}

.gp-products-hub__publisher-clear:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  filter: brightness(1.04);
}

.gp-products-hub__publisher-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  max-height: 270px;
  overflow: auto;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(13, 13, 19, 0.98), rgba(18, 18, 24, 0.96));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gp-products-hub__publisher-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gp-products-hub__publisher-empty {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gp-hub-muted);
  font-size: 0.92rem;
}

.gp-products-hub__publisher-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .12s ease, border-color .2s ease, background .2s ease, filter .2s ease;
}

.gp-products-hub__publisher-result:hover,
.gp-products-hub__publisher-result.is-active {
  transform: translateY(-1px);
  border-color: rgba(0, 167, 235, 0.42);
  background: linear-gradient(145deg, rgba(255, 65, 88, 0.18), rgba(0, 167, 235, 0.12));
  filter: brightness(1.05);
}

.gp-products-hub__publisher-result-label {
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.3;
}

.gp-products-hub__publisher-result-count {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gp-products-hub__filters-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gp-products-hub__filters-row--controls {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.gp-products-hub__group {
  margin: 0;
  padding: 0;
  border: 0;
}

.gp-products-hub__group--wide {
  grid-column: 1 / -1;
}

.gp-products-hub__chips,
.gp-products-hub__active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gp-products-hub__chip-toggle {
  position: relative;
  display: inline-flex;
}

.gp-products-hub__chip-toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.gp-products-hub__chip-toggle-label,
.gp-products-hub__active-filter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  color: #fff;
  padding: 8px 14px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
  transition: transform .12s ease, border-color .2s ease, background .2s ease, filter .2s ease;
}

.gp-products-hub__chip-toggle-label:hover,
.gp-products-hub__active-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  filter: brightness(1.03);
}

.gp-products-hub__chip-toggle.is-checked .gp-products-hub__chip-toggle-label {
  background: linear-gradient(145deg, rgba(255, 65, 88, 0.95), rgba(179, 17, 32, 0.92));
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: 0 12px 26px rgba(178, 17, 32, 0.28);
}

.gp-products-hub__chip-icon,
.gp-products-hub__active-filter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1;
}

.gp-products-hub__chip-icon--image img,
.gp-products-hub__active-filter-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.gp-products-hub__group legend {
  margin: 0 0 10px;
  padding: 0;
}

.gp-products-hub__control {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gp-products-hub__control-label {
  min-height: 16px;
}

.gp-products-hub__control--actions {
  justify-content: end;
}

.gp-products-hub__submit,
.gp-products-hub__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  transition: transform .12s ease, filter .2s ease, box-shadow .2s ease;
}

.gp-products-hub__submit {
  border: 0;
  color: #fff;
  background: linear-gradient(145deg, #ff4860, #d1001f);
  box-shadow: 0 14px 28px rgba(209, 0, 31, 0.32);
  cursor: pointer;
}

.gp-products-hub__submit:hover,
.gp-products-hub__reset:hover {
  transform: translateY(-1px);
}

.gp-products-hub__reset {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.gp-products-hub__active-filters {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 12px;
}

.gp-products-hub__active-filters-label {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gp-products-hub__active-filter {
  border-radius: 12px;
  padding: 8px 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.gp-products-hub__active-filter span:last-child {
  white-space: nowrap;
}

.gp-products-hub__result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.gp-products-hub__count {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gp-hub-soft);
}

.gp-products-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gp-products-hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  border: 1px solid var(--gp-hub-border);
  border-top: 2px solid var(--gp-hub-border-strong);
  border-bottom: 2px solid var(--gp-hub-border-strong);
  background:
    radial-gradient(110% 90% at 0% 0%, rgba(255, 64, 90, 0.20), rgba(255, 64, 90, 0) 55%),
    radial-gradient(110% 90% at 100% 10%, rgba(0, 167, 235, 0.12), rgba(0, 167, 235, 0) 52%),
    linear-gradient(180deg, rgba(18, 18, 24, 0.94), rgba(10, 10, 14, 0.88));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.44);
  overflow: hidden;
}

.gp-products-hub-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 2 / 3;
  margin: 18px auto 0;
  padding: 0 18px;
  text-decoration: none;
  flex: 0 0 auto;
}

.gp-products-hub-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
}

.gp-products-hub-card__media-empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: var(--gp-hub-soft);
  background: rgba(255, 255, 255, 0.04);
}

.gp-products-hub-card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 18px 18px;
  text-align: center;
}

.gp-products-hub-card__flags {
  width: 100%;
}

.gp-products-hub-card .gp-product-flag-wrap {
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.gp-products-hub-card .gp-product-flag {
  padding: 7px 12px;
  border-radius: 999px;
}

.gp-products-hub-card .gp-product-flag__label {
  font-size: 0.74rem;
}

.gp-products-hub-card__title {
  margin: 0;
  width: 100%;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.24;
  font-weight: 800;
  color: #fff;
}

.gp-products-hub-card__title a {
  color: inherit;
  text-decoration: none;
}

.gp-products-hub-card__title a:hover {
  color: #fff;
}

.gp-products-hub-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  color: var(--gp-hub-soft);
  font-size: 0.95rem;
  line-height: 1.35;
}

.gp-products-hub-card__meta-chip,
.gp-products-hub-card__platforms-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f6d5db;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gp-products-hub-card__platforms {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.gp-products-hub-card__platform-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.gp-products-hub-card .gp-platform-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.gp-products-hub-card .gp-platform-icon {
  min-width: 44px;
  min-height: 44px;
  padding: 7px 12px;
  border-radius: 999px;
}

.gp-products-hub-card__cta {
  width: 100%;
}

.gp-products-hub-card .gp-game-page-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 14px 0 18px;
  text-align: center;
}

.gp-products-hub-card .gp-game-page-link__label {
  display: none;
}

.gp-products-hub-card .gp-page-button {
  width: fit-content;
  align-self: center;
}

.gp-products-hub__empty {
  margin: 0;
  padding: 22px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gp-hub-soft);
  text-align: center;
}

.gp-products-hub__pagination {
  margin-top: 18px;
}

.gp-products-hub__pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.gp-products-hub__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.gp-products-hub__pagination .page-numbers::before,
.gp-products-hub__pagination .page-numbers::after,
.gp-products-hub__pagination li::before,
.gp-products-hub__pagination li::after {
  content: none !important;
  display: none !important;
}

.gp-products-hub__pagination .page-numbers.current {
  background: linear-gradient(145deg, rgba(255, 65, 88, 0.96), rgba(179, 17, 32, 0.94));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 22px rgba(179, 17, 32, 0.26);
}

.gp-products-hub__pagination .page-numbers.dots {
  display: none;
}

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

  .gp-products-hub__filters-row--controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .gp-products-hub {
    width: min(100% - 18px, 1280px);
    margin: 18px auto 34px;
  }

  .gp-products-hub__hero,
  .gp-products-hub__section {
    border-radius: 22px;
  }

  .gp-products-hub__hero {
    padding: 18px 16px;
  }

  .gp-products-hub__section {
    padding: 16px;
  }

  .gp-products-hub__stats,
  .gp-products-hub__filters-row,
  .gp-products-hub__grid {
    grid-template-columns: 1fr;
  }

  .gp-products-hub__period-columns {
    grid-template-columns: 1fr;
  }

  .gp-products-hub__publisher-combobox {
    flex-direction: column;
  }

  .gp-products-hub__publisher-clear {
    width: 100%;
  }

  .gp-products-hub__publisher-dropdown {
    position: static;
    margin-top: 8px;
    max-height: 220px;
  }

  .gp-products-hub__title {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .gp-products-hub-card__media {
    max-width: 280px;
    padding-inline: 12px;
  }

  .gp-products-hub-card__media img,
  .gp-products-hub-card__media-empty {
    border-radius: 16px;
  }

  .gp-products-hub-card__body {
    padding: 14px 14px 16px;
  }

  .gp-products-hub-card__title {
    font-size: 1.02rem;
  }

  .gp-products-hub__submit,
  .gp-products-hub__reset,
  .gp-products-hub__search input[type="search"],
  .gp-products-hub__control select {
    min-height: 46px;
  }

  .gp-products-hub__panel summary {
    padding: 13px 14px;
  }

  .gp-products-hub__panel-body {
    padding: 0 14px 14px;
  }
}
