.cookie-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  overflow: hidden;
}

.cookie-overlay-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cookie-overlay-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(60px) saturate(1.1);
  transform: scale(1.3);
}

.cookie-overlay-tint {
  position: absolute;
  inset: 0;
  background: rgba(249, 248, 246, 0.78);
}

.cookie-overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-overlay-inner {
  text-align: center;
  max-width: 380px;
}

.cookie-overlay-text {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 0 0 18px 0;
  line-height: 1.45;
}

.cookie-overlay-btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: #F47546;
  color: white;
  transition: all 0.2s ease;
}

.cookie-overlay-btn:hover {
  background: #E8610A;
  transform: translateY(-1px);
}
