.cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: #ffffff;
  color: #163300;
  font-family: "Segoe UI", Arial, sans-serif;
  padding: 18px 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.5s ease forwards;
  max-width: 640px;
  width: 90%;
  z-index: 9999;
}

.cookie-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  background: #2385d9;
  color: #ffffff;
}

.cookie-btn:hover {
  background: #1e6fb4;
  transform: translateY(-2px);
}

@keyframes slideUp {
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .cookie-bar {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 16px 18px;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .cookie-btn {
    width: 100%;
    padding: 10px;
    font-size: 16px;
  }
}
