/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(97.86deg, #103552 0%, #1a5f6a 98.67%);
  padding: 24px 30px;
  z-index: 9999;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.hiding {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cookie-banner-text h4 {
  color: #ffffff;
  font-size: 18px;
  margin: 0 0 6px;
}

.cookie-banner-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn--accept {
  background-color: #e8685a;
  color: #ffffff;
}

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

.cookie-btn--decline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn--decline:hover {
  border-color: #ffffff;
}

/* Tablet */
@media (max-width: 1023px) {
  .cookie-banner-content {
    gap: 24px;
  }

  .cookie-banner-text p {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 20px;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    padding: 12px 20px;
  }
}
