/* =========================================================
   COOKIE BANNER – Tisza Garden Park
   ========================================================= */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e2e2e2;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  z-index: 9999;
  font-family: "Playfair Display", serif;
  display: none;
}

.cookie-consent-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-consent-text h2 {
  font-size: 20px;
  margin: 0 0 6px;
  font-weight: 600;
  color: #2a2a2a;
}

.cookie-consent-text p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.4;
}

.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

/* ===== Gombok ===== */
.cookie-btn {
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 15px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: #111827;
  color: white;
}

.cookie-btn-primary:hover {
  background: #0d141f;
}

.cookie-btn-secondary {
  background: #f2f2f2;
  border-color: #d6d6d6;
}

.cookie-btn-secondary:hover {
  background: #e9e9e9;
}

.cookie-btn-outline {
  background: transparent;
  border: 1px solid #111827;
  color: #195c4c;
}

.cookie-btn-outline:hover {
  background: #111827;
  color: white;
}

/* =========================================================
   MODAL
   ========================================================= */

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  background: #fff;
  width: 95%;
  max-width: 560px;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 4px 26px rgba(0, 0, 0, 0.2);
}

.cookie-modal h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.cookie-modal-section {
  margin-top: 26px;
}

.cookie-modal-section h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.cookie-modal-desc {
  margin: 0 0 10px;
  color: #555;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f7f7;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 15px;
}

.cookie-toggle-row input[type="checkbox"] {
  transform: scale(1.2);
}

.cookie-modal-actions {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet és mobil */
@media (max-width: 900px) {
  .cookie-consent-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
  }
}

/* Mobil */
@media (max-width: 480px) {
  .cookie-consent-text h2 {
    font-size: 18px;
  }
  .cookie-consent-text p {
    font-size: 14px;
  }
}
