/* GDPR/CCPA Compliant Cookie Consent Banner */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: block;
  font-family: Arial, sans-serif;
  border-top: 3px solid #3498db;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #ecf0f1;
}

.cookie-banner-text p {
  margin: 0 0 10px 0;
  color: #bdc3c7;
}

.cookie-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
}

.cookie-policy-links a {
  color: #3498db;
  text-decoration: none;
  font-size: 12px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.cookie-policy-links a:hover {
  border-bottom-color: #3498db;
}

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: #27ae60;
  color: white;
}

.cookie-btn-accept:hover {
  background: #229954;
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background: #e74c3c;
  color: white;
}

.cookie-btn-reject:hover {
  background: #c0392b;
  transform: translateY(-1px);
}

.cookie-btn-close {
  background: #95a5a6;
  color: white;
}

.cookie-btn-close:hover {
  background: #7f8c8d;
  transform: translateY(-1px);
}

.ccpa-opt-out {
  font-size: 12px;
  margin-top: 5px;
}

.ccpa-opt-out a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 600;
}

.ccpa-opt-out a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 15px;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-text {
    min-width: auto;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
  
  .cookie-policy-links {
    justify-content: center;
  }
}

/* Hidden state */
#cookie-consent-banner.hidden {
  display: none;
}

/* Legacy popup - keep hidden */
#privacy-popup {
  display: none !important;
}