/* Cookie consent banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  padding: 16px;
}

.cookie-consent__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-consent__text {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-consent__btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: background 0.15s, border-color 0.15s;
}

.cookie-consent__btn--reject {
  background: #fff;
  color: #555;
}

.cookie-consent__btn--reject:hover {
  background: #f5f5f5;
  border-color: #999;
}

.cookie-consent__btn--accept {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.cookie-consent__btn--accept:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

@media (max-width: 600px) {
  .cookie-consent__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent__actions {
    width: 100%;
    justify-content: center;
  }
}
