* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  body {
    min-height: 100vh;
    background-color: #d4e7fd;
  }
  .wrapper {
    position: fixed;
    bottom: 50px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 99999;
  }
  .wrapper.show {
    right: 20px;
  }
  .wrapper header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 15px;
    text-align: left;
  }
  .wrapper header i {
    color: #0b57d0;
    font-size: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    line-height: 1;
  }
  .wrapper header h2 {
    color: #0b57d0;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 32px;
    margin: 0;
    transform: translateY(-1px);
  }
  /* Cookie banner: boja ikone i naslova – plava kao ostalo */
  .cookie-icon-color {
    color: #0b57d0;
  }
  .cookie-title-color {
    color: #0b57d0;
  }
  .wrapper .data {
    margin-top: 16px;
  }
  .wrapper .data p {
    color: #333;
    font-size: 16px;
  }
  .data p a {
    color: #0b57d0;
    text-decoration: none;
  }
  .data p a:hover {
    text-decoration: underline;
  }
  .wrapper .buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #0b57d0;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
  }
  .buttons #acceptBtn:hover {
    background-color: #024ad8;
  }
  #declineBtn {
    border: 2px solid #0b57d0;
    background-color: #fff;
    color: #0b57d0;
  }
  #declineBtn:hover {
    background-color: #0b57d0;
    color: #fff;
  }
 .site-footer.background-color-base400 {
    margin-top: 0;
}

/* ===== STRANICA POLITIKA KOLAČIĆA – bijela pozadina i responzivnost ===== */
body.hp-landing,
body.hp-landing main,
body.hp-landing .hero,
body.hp-landing .container,
body.hp-landing .background-color-base200,
body.hp-landing .background-color-primary400,
body.hp-landing .card__body {
  background-color: #ffffff !important;
}

html body.hp-landing {
  background-color: #ffffff !important;
}

/* Responzivnost – politika kolačica */
@media (max-width: 768px) {
  body.hp-landing .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.hp-landing .hero__title {
    padding-top: 40px;
  }

  body.hp-landing main .container {
    padding-bottom: 40px;
  }

  body.hp-landing .hero__title h1 {
    font-size: 1.75rem !important;
    line-height: 1.3;
  }

  body.hp-landing h3.card__body {
    font-size: 1.25rem !important;
  }

  body.hp-landing h4.card__body {
    font-size: 1rem !important;
  }

  body.hp-landing .card__body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.hp-landing table th,
  body.hp-landing table td {
    padding: 10px 12px !important;
    font-size: 0.9rem;
  }
}

@media (max-width: 992px) {
  body.hp-landing .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  body.hp-landing table {
    font-size: 0.95rem;
  }
}
