/* Cookie Consent Banner Styles */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 15px 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  backdrop-filter: blur(10px);
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

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

.cookie-consent-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-consent-text i {
  font-size: 24px;
  color: #18d26e;
  flex-shrink: 0;
}

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

.cookie-consent-buttons .btn {
  white-space: nowrap;
  font-size: 13px;
  padding: 6px 12px;
}

.cookie-consent-buttons .btn-link {
  color: #18d26e;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 0;
}

.cookie-consent-buttons .btn-link:hover {
  color: #14b35a;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-consent-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cookie-consent-text {
    flex-direction: column;
    gap: 8px;
  }

  .cookie-consent-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    padding: 12px 0;
  }

  .cookie-consent-content {
    padding: 0 15px;
  }

  .cookie-consent-text {
    font-size: 13px;
  }

  .cookie-consent-buttons .btn {
    font-size: 12px;
    padding: 5px 10px;
  }
}