/* ===============================
   COOKIE / PRIVACY BAR – PERUMIL
   =============================== */

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000000;
  color: #ffffff;
  padding: 10px 16px;
  border-top: 3px solid #c60000; /* Perumil crvena */
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.cookie-content p {
  margin: 0;
  line-height: 1.4;
}

.cookie-link {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
}

.cookie-buttons button {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

/* Dugme: Prihvatam */
.cookie-buttons .accept {
  background: #c60000;
  color: #ffffff;
}

/* Dugme: Odbijam */
.cookie-buttons .reject {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

/* Hover efekti */
.cookie-buttons .accept:hover {
  background: #a80000;
}

.cookie-buttons .reject:hover {
  background: #333333;
}

/* Mobilna optimizacija */
@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}