/* =============================================
   COOKIE CONSENT BANNER STYLES
   Revive Wellness - GDPR Compliant
   ============================================= */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border-top: 3px solid #b89f6a;
  padding: 0;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

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

.cookie-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
}

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

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.cookie-banner-text p {
  margin: 0;
  color: #e5e5e5;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #b89f6a;
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-banner-text a:hover {
  color: #d4c4a0;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner-buttons button {
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accept {
  background: #b89f6a;
  color: #000;
}

.btn-accept:hover {
  background: #d4c4a0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 159, 106, 0.4);
}

.btn-reject {
  background: transparent;
  color: #999;
  border: 2px solid #333;
}

.btn-reject:hover {
  border-color: #666;
  color: #ccc;
}

/* Mobile optimalizálás */
@media (max-width: 768px) {
  .cookie-banner-container {
    padding: 16px;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-banner-text {
    flex-direction: column;
    min-width: 100%;
  }

  .cookie-icon {
    font-size: 40px;
  }

  .cookie-banner-text p {
    font-size: 14px;
  }

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

  .cookie-banner-buttons button {
    width: 100%;
    padding: 14px 24px;
  }
}

/* Animációk */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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