
/* KEY FACTS (Novasol-style) */
.facts-bar{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin: 10px 0 4px;
  text-align: center;
}

.fact{
  position: relative;
  padding: 10px 8px;
}

.fact .ico{
  width: 32px; height: 32px;
  display:block; margin:0 auto 6px;
  color: #42A5F5; /* tvoja pastelno plava */
}

.fact .k{
  display:block;
  font-weight: 800;
  line-height: 1.2;
}

.fact .sub{
  display:block;
  color:#5d6b75;
  font-size:.9rem;
  margin-top:2px;
}

/* vertikalne linije samo na širim ekranima */
@media (min-width: 720px){
  .facts-bar{ gap: 0; }
  .fact + .fact::before{
    content:"";
    position:absolute;
    left:0; top:10px; bottom:10px;
    width:1px; background: var(--border);
  }
}

/* RATING / STARS */
.rating-bar{
  margin-top: 8px;
  display:flex; align-items:left; justify-content:left;
  gap:.5rem; flex-wrap: wrap;
}

.stars{ display:flex; gap:4px; align-items:center; }
.star{ width:18px; height:18px; }
.star.fill path { fill: #FFD700; }
.star.empty{ color:#E0E0E0; }

.rating-text{ font-weight:700; color:#4a6372; }

.icon-bedroom { color:#42A5F5; width:42px; height:42px; }
.icon-bathroom{
  color:#42A5F5;   /* tvoja pastelno plava */
  width:42px; height:42px;
  display:inline-block;
}

.icon-pool{
  color:#42A5F5;   /* tvoja pastelno plava */
  /*width:42px; height:42px;*/
  /*display:inline-block;*/
}
.icon-apartments{
  color:#42A5F5;   /* pastelno plava */
  width:42px; height:42px;
  display:inline-block;
}
/*amenities*/
.material-symbols-outlined.amenity-icon {
  font-variation-settings:
    'FILL' 0,    /* 0 = outline, 1 = filled */
    'wght' 400,  /* težina linije */
    'GRAD' 0,
    'opsz' 24;   /* optička veličina */
  font-size: 22px;
  color: #42A5F5;  /* pastelno plava */
  vertical-align: middle;
  margin-right: 8px;
}
.amenity {
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin-bottom:6px;
}
