.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 15px 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-notice.show {
  transform: translateY(0);
}

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

.cookie-btn {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cookie-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
