/**
 * Cookie Consent Banner Styles
 */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

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

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

.cookie-consent-text {
  flex: 1;
}

.cookie-consent-text p {
  margin: 0;
  color: #333;
  line-height: 1.5;
}

.cookie-consent-text p:first-child {
  margin-bottom: 0.5rem;
}

.cookie-consent-text strong {
  font-size: 1.1rem;
}

.cookie-consent-text a {
  color: #667eea;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #764ba2;
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.cookie-btn-decline {
  background: #f0f0f0;
  color: #666;
}

.cookie-btn-decline:hover {
  background: #e0e0e0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 1rem;
  }

  .cookie-consent-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-consent-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-consent-text p {
    font-size: 0.9rem;
  }
}

/* Cookie Settings Page Styles */
.cookie-settings-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
}

.cookie-settings-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-settings-card h2 {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  margin-bottom: 1rem;
}

.cookie-settings-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-settings-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-settings-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cookie-settings-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.cookie-settings-btn-secondary {
  background: #f0f0f0;
  color: #666;
}

.cookie-settings-btn-secondary:hover {
  background: #e0e0e0;
}

.cookie-status {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.cookie-status-accepted {
  background: #e8f5e9;
  color: #2e7d32;
}

.cookie-status-declined {
  background: #ffebee;
  color: #c62828;
}

.cookie-status-pending {
  background: #fff3e0;
  color: #ef6c00;
}

@media (max-width: 768px) {
  .cookie-settings-container {
    padding: 1rem;
  }

  .cookie-settings-card {
    padding: 1.5rem;
  }

  .cookie-settings-actions {
    flex-direction: column;
  }

  .cookie-settings-btn {
    width: 100%;
  }
}

