/* Cookie Consent — quietroutineweft.com (тёмная тема) */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.hidden { display: none; }

.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 9, 0.8);
  backdrop-filter: blur(4px);
}

.cookie-modal-content {
  position: relative;
  background: #020617;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid #22C55E;
}

.cookie-modal-title {
  font-size: 24px;
  font-weight: bold;
  color: #E6EDF3;
  margin-bottom: 12px;
}

.cookie-modal-text {
  color: #E6EDF3;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cookie-category {
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  background: #010409;
}

.cookie-category-label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #E6EDF3;
  cursor: pointer;
}

.cookie-btn-primary { background: #22C55E; color: #020617; }
.cookie-btn-primary:hover { background: #16a34a; }
.cookie-btn-secondary { background: #60A5FA; color: #020617; }
.cookie-policy-link { color: #22C55E; }
