/* ===========================================
   mindful health — cookie-consent.css
   =========================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: rgba(255,255,255,0.85);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.55;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  color: rgba(255,255,255,0.72);
}

.cb-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

#cb-policy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0.1rem;
  transition: color 0.2s;
  white-space: nowrap;
}

#cb-policy:hover {
  color: rgba(255,255,255,0.75);
}

.cb-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.cb-btn-primary {
  background: #fff;
  color: #1a1a1a;
  font-weight: 500;
}

.cb-btn-primary:hover {
  background: #f0ede6;
}

.cb-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
}

.cb-btn-outline:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.45);
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cb-actions {
    width: 100%;
    justify-content: flex-end;
  }
}
