.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
  padding: 16px 20px;
}

.cookie-consent-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-content p {
  margin: 0;
  font-size: 14px;
  color: #333;
  flex: 1;
  min-width: 220px;
}

.cookie-consent-content a {
  color: #667eea;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent-btn {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
}

.cookie-consent-btn-secondary {
  background: #fff;
  border-color: #ccc;
  color: #333;
}

.cookie-consent-btn-primary {
  background: #667eea;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-actions {
    justify-content: stretch;
  }
  .cookie-consent-btn {
    flex: 1;
  }
}

.cookie-consent-banner {
  display: none;
}

.cookie-consent-banner.visible {
  display: block;
}

.cookie-consent-link-btn {
  background: none;
  border: none;
  color: #667eea;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
}