/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(10px);
  color: #fff;
  z-index: 10000;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideUpConsent 0.4s ease-out;
}

@keyframes slideUpConsent {
  from { 
    transform: translateY(100%); 
    opacity: 0; 
  }
  to { 
    transform: translateY(0); 
    opacity: 1; 
  }
}

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

.consent-text {
  flex: 1;
  min-width: 300px;
}

.consent-text h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Lato', sans-serif;
}

.consent-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.consent-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: 'Lato', sans-serif;
  white-space: nowrap;
}

.consent-btn-accept {
  background: #22c55e;
  color: #fff;
}

.consent-btn-accept:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

.consent-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.consent-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.consent-btn-learn {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  text-decoration: underline;
  padding: 10px 16px;
}

.consent-btn-learn:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  #cookie-consent-banner {
    padding: 20px 16px;
  }
  
  .consent-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .consent-text {
    text-align: center;
    min-width: auto;
  }
  
  .consent-buttons {
    justify-content: center;
  }
  
  .consent-btn {
    flex: 1;
    min-width: 100px;
  }
}

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