html, body {
  height: 100%;
  margin: 0;
}

body {
 display: grid;
 grid-template-rows: auto 1fr auto;
 /* header, main, footer */
  min-height: 100vh;
}

.card-hover {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  transform: scale(1);
}

.card-hover:hover {
  transform: scale(1.05);
}

.prodajni-program-grid {
  margin-bottom: 30px;
}

.prodajni-program-card-col {
  margin-top: 15px;
  text-align: center;
}

.prodajni-program-card__link {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.prodajni-program-card__image {
  width: auto;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: center bottom;
}

.prodajni-program-card__title {
  margin-top: 10px;
  min-height: 44px;
}

@media (max-width: 767px) {
  .prodajni-program-card__link {
    min-height: 280px;
  }

  .prodajni-program-card__image {
    max-height: 260px;
  }

  .prodajni-program-card__title {
    min-height: 0;
  }
}

.product-card__actions .btn {
    color: #FFF;
    font-size: 12px;
    padding: 5px 10px;
}

.header-top.colored a {
    color:  var(--nav-link-dropdown-color);
}

.btn-default, .update-config-btn {
    background: var(--brand-primary-color);
    color: #FFF; 
}

#cart-badge {color: #FFF;}