/* COOKIE BANNER */
.cookie-banner {
  position: fixed;        /* 🔥 KLÍČOVÉ */
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 600px;
  background: #1c2a25;
  color: #eaeaea;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  display: none;          /* zobrazí JS */
  z-index: 9999;          /* aby byl nad vším */
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-buttons button {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#accept-all { background: #4cd3a3; color: #000; }
#reject-all { background: #2a3d36; color: #fff; }
#open-settings { background: transparent; color: #4cd3a3; }

/* ===============================
   COOKIE MODAL FIX
=============================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.cookie-modal.active {
  display: flex;
}

.cookie-box {
  background: #1c2a25;
  color: #eaeaea;
  padding: 25px;
  border-radius: 12px;
  width: 320px;
}

/* NADPIS */
.cookie-box h3 {
  color: #4cd3a3;
  margin-bottom: 15px;
}

/* LABELY */
.cookie-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 17px;
  cursor: pointer;
  color: #eaeaea;
}

/* CHECKBOXY */
.cookie-box input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #4cd3a3;
  cursor: pointer;
}

/* TLAČÍTKO */
#save-settings {
  margin-top: 15px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #4cd3a3;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

#save-settings:hover {
  background: #6ef0c0;
}

/* DISABLED (nutné cookies) */
.cookie-box input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}