/*! AdobeHub Cookie Consent Banner styles */
.ahcc-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  max-width: 340px;
  width: calc(100vw - 40px);
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 18px 18px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  z-index: 2147483646;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 280ms ease, transform 280ms ease;
  box-sizing: border-box;
}

.ahcc-banner.ahcc-rtl {
  right: auto;
  left: 20px;
  direction: rtl;
  text-align: right;
}

.ahcc-banner.ahcc-visible {
  opacity: 1;
  transform: translateY(0);
}

.ahcc-banner.ahcc-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.ahcc-text {
  margin: 0 0 14px;
  color: #2a2a2a;
}

.ahcc-link {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ahcc-link:hover {
  color: #000;
}

.ahcc-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.ahcc-banner.ahcc-rtl .ahcc-actions {
  justify-content: flex-start;
}

.ahcc-btn {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 9px 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  line-height: 1.2;
}

.ahcc-btn-primary {
  background: #111111;
  color: #ffffff;
}

.ahcc-btn-primary:hover {
  background: #000000;
}

.ahcc-btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.18);
}

.ahcc-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.28);
}

.ahcc-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.ahcc-settings {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2147483645;
  padding: 0;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.ahcc-settings.ahcc-rtl {
  right: auto;
  left: 20px;
}

.ahcc-settings:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.ahcc-settings:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .ahcc-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    width: auto;
  }
  .ahcc-banner.ahcc-rtl {
    left: 12px;
    right: 12px;
  }
  .ahcc-settings {
    right: 12px;
    left: auto;
    bottom: 12px;
  }
  .ahcc-settings.ahcc-rtl {
    right: auto;
    left: 12px;
  }
}

@media (prefers-color-scheme: dark) {
  .ahcc-banner {
    background: #1a1a1a;
    color: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.1);
  }
  .ahcc-text { color: #e8e8e8; }
  .ahcc-link { color: #ffffff; }
  .ahcc-btn-primary { background: #ffffff; color: #111111; }
  .ahcc-btn-primary:hover { background: #f0f0f0; }
  .ahcc-btn-secondary {
    color: #f0f0f0;
    border-color: rgba(255, 255, 255, 0.25);
  }
  .ahcc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .ahcc-settings {
    background: #1a1a1a;
    color: #f5f5f5;
    border-color: rgba(255, 255, 255, 0.15);
  }
}
