/* Cookie Consent Banner Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #ecf0f1;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
  animation: slideUp 0.5s ease-out;
}
.cookie-consent-banner.show {
  display: block;
}
.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.cookie-consent-text {
  flex: 1;
  min-width: 300px;
  font-size: 14px;
  line-height: 1.6;
}
.cookie-consent-text a {
  color: #3498db;
  text-decoration: underline;
}
.cookie-consent-text a:hover {
  color: #5dade2;
}
.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.cookie-btn-accept {
  background: #27ae60;
  color: #fff;
}
.cookie-btn-accept:hover {
  background: #229954;
}
.cookie-btn-decline {
  background: #e74c3c;
  color: #fff;
}
.cookie-btn-decline:hover {
  background: #c0392b;
}
.cookie-btn-settings {
  background: transparent;
  color: #ecf0f1;
  border: 1px solid #ecf0f1;
}
.cookie-btn-settings:hover {
  background: rgba(255,255,255,0.1);
}
/* Responsive Design */
@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 15px;
  }
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-text {
    min-width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}
@-moz-keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@-o-keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
