.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: sans-serif;
  padding-top: 120px;
  padding-left: 10px;
}

.cookie-content {
  background: #fff;
  backdrop-filter: blur(18px) brightness(1.6);
  max-width: 260px;
  padding: 18px 22px;
  border-radius: 7px;
  box-shadow: 0 0 20px rgba(0,0,0,0.35);
}
.cookie-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.cookie-content p {
  font-size: 13px;
  line-height: 1.35;
  color: #222;
}

.cookie-actions {
  text-align: right;
  
}

.cookie-actions button {
background: #CF086A; 
  border: none;
  padding: 7px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
 color: #fff;
}

.cookie-actions button:hover {
background: linear-gradient(90deg, #E40469, #0870C2);
}


