/* ----------------------------------------------
  🍪 Cookie Popup – SPINS LL22
---------------------------------------------- */

/* 1️⃣ Glavni kontejner */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 12px;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  font-family: 'DM Sans', sans-serif;

  /* 🎯 Animacija (z visibility) */
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
}

/* 2️⃣ Vsebina popup-a */
.cookie-popup-content {
  text-align: left;
  font-size: 14px;
  color: #333333;
}

.cookie-popup-content p {
  margin: 0 0 10px 0;
  line-height: 1.5;
}

/* 3️⃣ Povezava do politike piškotkov */
.cookie-popup-content a {
  color: #0056d2; /* LL22: primary-blue */
  text-decoration: underline;
  font-weight: 500;
}

/* 4️⃣ Gumb "Sprejmi piškotke" */
.cookie-popup button {
  padding: 10px 20px;
  background-color: #0056d2; /* LL22: primary-blue */
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-popup button:hover {
  background-color: #003e9f; /* Temnejši hover */
}

/* 5️⃣ Animacijski razredi */
.cookie-popup.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.cookie-popup.hide {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition-delay: 0s;
}
