/* Cookie Consent Banner Styles */
#cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 900px;
  width: calc(100% - 40px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  padding: 24px 28px;
  opacity: 1;
  transition: opacity 0.3s ease;
  border: 2px solid #e5e7eb;
}

.cookie-consent-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.cookie-consent-text strong {
  font-size: 1.2rem;
  color: #111827;
  display: block;
  margin-bottom: 8px;
}

.cookie-consent-text p {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #10b981;
  text-decoration: underline;
  font-weight: 600;
}

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

.cookie-consent-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  white-space: nowrap;
}

.cookie-agree {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

.cookie-agree:hover {
  background: #059669;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cookie-disagree {
  background: #ffffff;
  color: #6b7280;
  border-color: #d1d5db;
}

.cookie-disagree:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #374151;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #cookie-consent-banner {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 20px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .cookie-consent-text strong {
    font-size: 1.1rem;
  }
  
  .cookie-consent-text p {
    font-size: 0.9rem;
  }
  
  .cookie-consent-buttons {
    flex-direction: row;
    min-width: auto;
  }
  
  .cookie-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cookie-consent-buttons {
    flex-direction: column;
  }
}
