/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #20475d 0%, #163a4a 100%);
  color: white;
  padding: 16px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  animation: slideUp 0.4s ease-out;
}

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

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

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

.cookie-consent-text {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-consent-text i {
  font-size: 1.2rem;
  color: #ffc107;
  flex-shrink: 0;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent-actions .btn-link {
  text-decoration: underline;
  padding: 0;
  font-size: 0.9rem;
}

.cookie-consent-actions .btn-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.cookie-consent-actions .btn-primary {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #20475d;
  font-weight: 600;
  padding: 8px 20px;
  transition: all 0.3s;
}

.cookie-consent-actions .btn-primary:hover {
  background-color: #ffb300;
  border-color: #ffb300;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 14px 16px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .cookie-consent-text {
    min-width: auto;
    font-size: 0.85rem;
  }
  
  .cookie-consent-actions {
    justify-content: flex-end;
    width: 100%;
  }
  
  .cookie-consent-actions .btn {
    flex: 1;
  }
}

