/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.cookie-modal.visible {
  transform: translateY(0);
}

.cookie-modal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-logo-img {
  width: 150px;
  height: 50px;
}

.cookie-text {
  flex: 1;
  font-size: 1rem;
  margin: 0 10px;
  color: #ddd;
}

.cookie-text a {
  color: #ffcc00;
  text-decoration: underline;
}

.cookie-btn {
  padding: 10px 20px;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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