/* PlasticWargaming Category Cards v6.8
   - /warhammer/ = LOGO HOME MODE
   - ostatní kategorie = HI-RES HYBRID MODE z v6.3
*/

:root {
  --pw-cat-card-width: 190px;
  --pw-cat-card-height: 110px;
  --pw-cat-media-height: 72px;
  --pw-cat-gap: 8px;
}

/* =========================================================
   SPOLEČNÝ GRID
   ========================================================= */

body.pw-category-cards-enabled .subcategories {
  display: grid !important;
  /* Počet sloupců určuje skutečná šířka obsahu, ne šířka okna. */
  grid-template-columns: repeat(auto-fit, var(--pw-cat-card-width)) !important;
  justify-content: start !important;
  align-items: start !important;
  gap: var(--pw-cat-gap) !important;
  width: 100% !important;
  margin: 0 0 26px !important;
}

body.pw-category-cards-enabled .subcategories > * {
  width: 190px !important;
  max-width: 190px !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

body.pw-category-cards-enabled .subcategories a.pw-category-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  width: 190px !important;
  min-width: 190px !important;
  max-width: 190px !important;
  height: 110px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #202733 !important;
  text-decoration: none !important;
  background: #fff !important;
  border: 1px solid #e5e9ef !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 8px rgba(18,26,40,.045) !important;
  transform: translateZ(0);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

body.pw-category-cards-enabled .subcategories a.pw-category-card:hover,
body.pw-category-cards-enabled .subcategories a.pw-category-card:focus-visible {
  color: #202733 !important;
  text-decoration: none !important;
  border-color: #d0d6de !important;
  box-shadow: 0 7px 18px rgba(18,26,40,.08) !important;
  transform: translateY(-2px);
  outline: none;
}

/* =========================================================
   VÝCHOZÍ REŽIM PRO VŠECHNY OSTATNÍ KATEGORIE
   ========================================================= */

body.pw-category-cards-enabled .pw-category-card__media {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 72px !important;
  width: 100% !important;
  height: 72px !important;
  min-height: 72px !important;
  max-height: 72px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  background: #fff;
}

body.pw-category-cards-enabled .pw-category-card__image {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: transparent !important;
  border: 0 !important;
  transform: scale(1.001);
  transition:
    transform .22s ease,
    filter .22s ease;
}

/* pokud JS vyhodnotí obrázek jako logo / ikonu */
body.pw-category-cards-enabled .pw-category-card--contain .pw-category-card__media {
  padding: 7px 12px !important;
  background: #fff;
}

body.pw-category-cards-enabled .pw-category-card--contain .pw-category-card__image {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

body.pw-category-cards-enabled .pw-category-card:hover:not(.pw-category-card--contain) .pw-category-card__image,
body.pw-category-cards-enabled .pw-category-card:focus-visible:not(.pw-category-card--contain) .pw-category-card__image {
  transform: scale(1.025);
  filter: saturate(.99) contrast(1.01);
}

/* =========================================================
   SPECIÁLNÍ REŽIM JEN PRO /warhammer/
   - všechna loga menší
   - žádné ořezávání
   - více bílého prostoru
   ========================================================= */

body.pw-category-cards-warhammer-home .pw-category-card__media {
  padding: 10px 18px 8px !important;
  background: #fff !important;
}

body.pw-category-cards-warhammer-home .pw-category-card__image {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 168px !important;
  max-height: 56px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  filter: none !important;
}

body.pw-category-cards-warhammer-home .pw-category-card:hover .pw-category-card__image,
body.pw-category-cards-warhammer-home .pw-category-card:focus-visible .pw-category-card__image {
  transform: scale(1.018) !important;
}

/* Web Exclusive a podobné vyšší/čtvercové ikony */
body.pw-category-cards-warhammer-home .pw-category-card__image.pw-category-card__image--portrait {
  max-width: 88px !important;
  max-height: 56px !important;
}

/* =========================================================
   FALLBACK
   ========================================================= */

body.pw-category-cards-enabled .pw-category-card--no-image .pw-category-card__media {
  background:
    radial-gradient(circle at 85% 15%, rgba(255,122,24,.10), transparent 34%),
    linear-gradient(135deg, #f7f8fa, #eef1f5);
}

/* =========================================================
   TEXTOVÝ PRUH
   ========================================================= */

body.pw-category-cards-enabled .pw-category-card__content {
  position: relative;
  display: flex !important;
  align-items: center !important;
  flex: 0 0 38px !important;
  width: 100% !important;
  height: 38px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 7px 30px 7px 11px !important;
  background: #fff !important;
  border-top: 1px solid #edf0f3;
  text-align: left;
  pointer-events: none;
}

body.pw-category-cards-enabled .pw-category-card__title {
  display: -webkit-box !important;
  overflow: hidden !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #1f2630 !important;
  font-size: 13.5px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.pw-category-cards-enabled .pw-category-card__content::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 10px;
  color: #9aa3ae;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-52%);
  transition: color .18s ease, transform .18s ease;
}

body.pw-category-cards-enabled .pw-category-card:hover .pw-category-card__content::after,
body.pw-category-cards-enabled .pw-category-card:focus-visible .pw-category-card__content::after {
  color: #ff7a18;
  transform: translate(1px,-52%);
}

body.pw-category-cards-enabled .subcategories a.pw-category-card:focus-visible {
  border-color: rgba(255,122,24,.55) !important;
  box-shadow: 0 0 0 2px rgba(255,122,24,.12) !important;
}

/* =========================================================
   MOBIL – pevný rozměr karty 190 × 110 px
   ========================================================= */

@media (max-width: 520px) {
  body.pw-category-cards-enabled .subcategories {
    justify-content: center !important;
    gap: 9px !important;
  }

  body.pw-category-cards-enabled .subcategories > *,
  body.pw-category-cards-enabled .subcategories a.pw-category-card {
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
  }

  body.pw-category-cards-enabled .subcategories a.pw-category-card {
    height: 118px !important;
    border-radius: 9px !important;
  }

  body.pw-category-cards-enabled .pw-category-card__media {
    flex-basis: 80px !important;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
  }

  body.pw-category-cards-enabled .pw-category-card__content {
    flex-basis: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    padding: 6px 28px 6px 10px !important;
  }

  body.pw-category-cards-enabled .pw-category-card__title {
    font-size: 13px !important;
  }

  body.pw-category-cards-warhammer-home .pw-category-card__image {
    max-width: 158px !important;
    max-height: 60px !important;
  }

  body.pw-category-cards-warhammer-home .pw-category-card__image.pw-category-card__image--portrait {
    max-width: 72px !important;
    max-height: 60px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.pw-category-cards-enabled .subcategories a.pw-category-card,
  body.pw-category-cards-enabled .pw-category-card__image,
  body.pw-category-cards-enabled .pw-category-card__content::after {
    transition: none !important;
  }
}
