/* ============================================================
   SerpaHouses — Cookie banner
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(31, 29, 26, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #FBFAF7;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  line-height: 1.55;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.6, 0.2, 1);
  font-family: 'Manrope', system-ui, sans-serif;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-text {
  flex: 1;
  color: rgba(251, 250, 247, 0.85);
}

.cookie-text a {
  color: #E8B548;
  text-decoration: underline;
}

.cookie-actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-btn-accept {
  background: #E8B548;
  color: #1F1D1A;
}
.cookie-btn-accept:hover {
  background: #f0c25e;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(251, 250, 247, 0.85);
  border: 1px solid rgba(251, 250, 247, 0.3);
}
.cookie-btn-decline:hover {
  color: #fff;
  border-color: rgba(251, 250, 247, 0.6);
}

@media (max-width: 720px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px 18px 18px;
    gap: 14px;
  }
  .cookie-actions {
    justify-content: center;
  }
  .cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }
}
