.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-navy, #313030);
  color: #ffffff;
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  font-family: var(--font-body, 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  border-top: 3px solid var(--primary, #4648d4);
}

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

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

.cookie-consent-text p {
  margin: 0 0 6px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #c8d0db;
}

.cookie-consent-text p:last-child {
  margin-bottom: 0;
}

.cookie-consent-text a {
  color: var(--color-teal-light, #c0c1ff);
  text-decoration: underline;
  transition: color 0.2s;
}

.cookie-consent-text a:hover {
  color: var(--inverse-primary, #c0c1ff);
}

.cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 28px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
  font-family: inherit;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn:active {
  transform: translateY(0);
}

.cookie-btn-accept {
  background-color: var(--color-teal, #4648d4);
  color: white;
  box-shadow: 0 2px 8px rgba(70, 72, 212, 0.3);
}

.cookie-btn-accept:hover {
  background-color: var(--primary-container, #6063ee);
  box-shadow: 0 4px 12px rgba(70, 72, 212, 0.4);
}

.cookie-btn-decline {
  background-color: transparent;
  color: #a0a8b4;
  border: 1px solid #4a5568;
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #718096;
  color: #c8d0db;
}

.cookie-consent-banner.hidden {
  display: none;
}

/* Settings panel (if expanded) */
.cookie-settings-panel {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid #2d3748;
}

.cookie-settings-panel label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #c8d0db;
  cursor: pointer;
}

.cookie-settings-panel input[type="checkbox"] {
  accent-color: var(--color-teal, #4648d4);
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 16px;
  }

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

  .cookie-consent-text {
    min-width: unset;
  }

  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    max-width: 160px;
  }

  .cookie-settings-panel label {
    justify-content: center;
  }
}
