/* ============================================================
   SUBCATEGORY GRID – FINAL
   dekoracnykamen.sk
============================================================ */

/* === RESET SHOPTETU === */
.category-top ul.subcategories.with-image,
.category-top ul.subcategories.with-image li,
.category-top ul.subcategories.with-image li a {
  float: none !important;
  max-width: none !important;
  width: auto;
}

/* === GRID KONTAJNER === */
.category-top ul.subcategories.with-image {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  padding: 32px 24px;
  margin: 40px auto 30px;
  max-width: 1200px;
  background: #f7efe3;
  border-radius: 18px;
  box-sizing: border-box;
}

/* === GRID ITEM === */
.category-top ul.subcategories.with-image > li {
  display: block !important;
  padding: 0 !important;
}

/* === KARTA === */
.category-top ul.subcategories.with-image > li > a {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  width: 100% !important;
  min-height: 185px;
  padding: 14px 10px;

  background: #fffdf9;
  border-radius: 16px;
  border: 1px solid rgba(206,186,162,0.25);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);

  text-align: center;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* === HOVER (PC) === */
@media (hover:hover) {
  .category-top ul.subcategories.with-image > li > a:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.16);
  }
}

/* === HORNÝ PÁSIK === */
.category-top ul.subcategories.with-image > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cfa57a, #9ba97c);
  border-radius: 16px 16px 0 0;
}

/* === KRUH S OBRÁZKOM === */
.category-top ul.subcategories.with-image span.image {
  width: 80px;
  height: 80px;
  margin: 12px auto 10px;

  border-radius: 50%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.category-top ul.subcategories.with-image span.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform .25s ease;
}

/* zoom len na PC */
@media (hover:hover) {
  .category-top ul.subcategories.with-image > li > a:hover span.image img {
    transform: scale(1.25);
  }
}

/* === TEXT === */
.category-top ul.subcategories.with-image span.text {
  display: block;
  width: 100%;
  padding: 0 6px;

  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: #2f2c29;

  text-align: center;
  white-space: normal;
  word-break: normal;
}

/* === TABLET === */
@media (max-width: 1024px) {
  .category-top ul.subcategories.with-image {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === MOBIL === */
@media (max-width: 768px) {
  .category-top ul.subcategories.with-image {
    grid-template-columns: repeat(3, 1fr);
    padding: 16px 10px;
    gap: 12px;
  }

  .category-top ul.subcategories.with-image > li > a {
    min-height: 130px;
    padding: 10px 6px;
  }

  .category-top ul.subcategories.with-image span.image {
    width: 56px;
    height: 56px;
    margin: 8px auto 6px;
  }

  .category-top ul.subcategories.with-image span.text {
    font-size: 11.5px;
    line-height: 1.2;
    padding: 0 4px;
  }
}
