/* ============================================
   COOKIE ALERT - FIX
   ============================================ */

.cookiealert-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  color: #fff;
  padding: 15px 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.3);
}

.cookiealert-wrapper.show {
  display: block;
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookiealert-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookiealert-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.cookiealert-btn {
  background: linear-gradient(135deg, #FF6600, #FF9933);
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookiealert-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

@media (max-width: 768px) {
  .cookiealert-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookiealert-btn {
    width: 100%;
  }
}
