/* --- SPOLEČNÉ NASTAVENÍ (PC i Mobil) --- */
.homepage-products-heading-20, 
.homepage-products-heading-5,
.homepage-products-heading-17 {
  position: relative !important;
  display: block !important;
  text-align: center !important;
  z-index: 1;
}

.homepage-products-heading-20::after,
.homepage-products-heading-5::after,
.homepage-products-heading-17::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  
  /* Velikost na PC */
  width: 160px; 
  height: 160px;
  /* Pozice na PC */
  left: calc(50% + 30px); 
}

/* --- 1. OBRÁZEK: KOLEKCE PRO NI (ID 20) --- */
.homepage-products-heading-20::after {
  background-image: url('https://www.vyryjto.cz/user/documents/upload/pro ni kolekce_1.png') !important;
}

/* --- 2. OBRÁZEK: NEJOBLÍBENĚJŠÍ (ID 5) --- */
.homepage-products-heading-5::after {
  background-image: url('https://www.vyryjto.cz/user/documents/upload/nejoblibenejši.png') !important;
}

/* --- 3. OBRÁZEK: KOLEKCE PRO NĚJ (ID 17) --- */
.homepage-products-heading-17::after {
  background-image: url('https://www.vyryjto.cz/user/documents/upload/pro nej kolekce.png') !important;
}

/* --- NASTAVENÍ PRO MOBILY --- */
@media (max-width: 768px) {
  .homepage-products-heading-20,
  .homepage-products-heading-5,
  .homepage-products-heading-17 {
    transform: translateX(-30px) !important;
  }

  .homepage-products-heading-20::after,
  .homepage-products-heading-5::after,
  .homepage-products-heading-17::after {
    width: 120px; 
    height: 120px;
    left: calc(50% + 60px);
  }
}