/* Cookie Banner - Site Style */
#cookie-banner {
  display: none !important;
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  right: 20px !important;
  max-width: 600px !important;
  background: #e6f0ff !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 20px rgba(3, 4, 156, 0.15) !important;
  padding: 20px 50px 20px 20px !important;
  z-index: 110 !important;
  animation: slideUp 0.3s ease !important;
  border: 1px solid rgba(3, 4, 156, 0.1) !important;
}

#cookie-banner.show {
  display: block !important;
}

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

.cookie-banner__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 5px;
  line-height: 1;
  transition: color 0.2s;
}

.cookie-banner__close:hover {
  color: #000;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-banner__text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.cookie-banner__accept-btn {
  padding: 10px 24px;
  background: #35b9a8;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-banner__accept-btn:hover {
  background: #2da593;
}

@media (max-width: 768px) {
  #cookie-banner {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px 40px 15px 15px;
  }

  .cookie-banner__content {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .cookie-banner__accept-btn {
    width: 100%;
  }
}
