.back-button {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 35px;
  height: 25px;
  background-color: rgb(253, 232, 211);
  border: none;
  cursor: pointer;
}

/* KATALOG */
.kontejner-katalog {
  margin: 60px 0;
  padding: 20px 0 40px 0;
  background-color: rgb(212 163 115);
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

/* NASLOV I SORT */
.naslov-sort {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 600px;
  padding: 15px 0px 30px 0;
}

.sort select {
  width: 140px;
  height: 36px;
  font-size: 17px;
}

/* KRAJ NASLOVA I SORTA */

.kontejner-katalog-artikli {
  display: grid;
  grid-template-columns: repeat(4, 300px);
  column-gap: 10px;
  row-gap: 30px;
  margin-bottom: 30px;
  padding: 5px;
}

.katalog-artikl {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background-color: rgb(253, 232, 211);
}

.katalog-artikl .slika {
  width: 100%;
  height: 225px;
  border-bottom: 2px solid black;
}

.katalog-artikl .slika img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.katalog-artikl .artikl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100px;
}

.artikl .naziv {
  font-weight: bold;
  padding-bottom: 12px;
}

@media (width < 1250px) {
  .naslov-sort {
    gap: 80px;
  }

  .kontejner-katalog-artikli {
    grid-template-columns: repeat(2, 250px);
    row-gap: 10px;
  }
}

@media (width < 620px) {
  .naslov-sort {
    flex-direction: column;
    gap: 20px;
  }

  .kontejner-katalog-artikli {
    grid-template-columns: repeat(1, 250px);
  }
}

@media (width < 400px) {
  .naslov h4{
    text-align: center;
  }
}

/* BUTTON LOAD */
.button-load {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.button-load .load-more {
  border: none;
  cursor: pointer;
  padding: 15px 20px;
  font-family: system-ui'Open sans';
  font-size: 19px;
  margin-top: 10px;
  border-radius: 20px;
  width: 180px;
  background-color: rgb(253, 232, 211);
}

.button-load .load-more:active {
  background-color: rgba(253, 232, 211, 0.7);
}

/* KRAJ BUTTONA LOAD */

/* KRAJ KATALOGA */