/**
 * Cookie Consent Banner Styles
 * Matches Nexa Therapy & Wellness brand
 */

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A3329;
  color: #DCCFB8;
  padding: 1.5rem 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-family: 'Raleway', sans-serif;
}

.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-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  color: #DCCFB8;
}

.cookie-consent-description {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cookie-consent-link {
  color: #D6C8B0;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.cookie-consent-link:hover,
.cookie-consent-link:focus {
  opacity: 0.8;
}

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

.cookie-btn {
  padding: 0.75rem 2rem;
  border: 1px solid #DCCFB8;
  background: transparent;
  color: #DCCFB8;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.cookie-btn-accept {
  background-color: #DCCFB8;
  color: #1A3329;
  border-color: #DCCFB8;
}

.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background-color: #D6C8B0;
  border-color: #D6C8B0;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(220, 207, 184, 0.3);
}

.cookie-btn-decline:hover,
.cookie-btn-decline:focus {
  background-color: rgba(220, 207, 184, 0.1);
  transform: translateY(-1px);
}

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

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

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

  .cookie-btn {
    width: 100%;
    padding: 1rem;
  }

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

  .cookie-consent-description {
    font-size: 0.85rem;
  }
}

/* Accessibility - Focus states */
.cookie-btn:focus {
  outline: 2px solid #DCCFB8;
  outline-offset: 2px;
}

.cookie-consent-link:focus {
  outline: 2px solid #DCCFB8;
  outline-offset: 2px;
  border-radius: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  #cookie-consent-banner {
    border-top: 3px solid #DCCFB8;
  }

  .cookie-btn {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  #cookie-consent-banner,
  .cookie-btn {
    transition: none;
  }
}
