/* aacc-banner.css — Cookie banner bar, DARK theme */

#aacc-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#aacc-bar.aacc-bar--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Top bar variant */
#aacc-bar.aacc-bar--top_bar {
  top: 0;
  bottom: auto;
  transform: translateY(-100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
#aacc-bar.aacc-bar--top_bar.aacc-bar--visible { transform: translateY(0); }

/* Box / floating modal variants */
#aacc-bar.aacc-bar--box,
#aacc-bar.aacc-bar--modal {
  left: auto;
  right: 16px;
  max-width: 400px;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}
#aacc-bar.aacc-bar--box { bottom: 16px; }
#aacc-bar.aacc-bar--modal { top: 50%; bottom: auto; transform: translateY(100%); }
#aacc-bar.aacc-bar--modal.aacc-bar--visible { transform: translateY(-50%); }

/* Content layout */
#aacc-bar .aacc-bar__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

#aacc-bar .aacc-bar__text {
  flex: 1 1 260px;
  font-size: 14px;
  line-height: 1.55;
  color: #ffffff;
}

#aacc-bar .aacc-bar__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

#aacc-bar .aacc-bar__links {
  width: 100%;
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  font-size: 12px;
}

#aacc-bar .aacc-bar__link-sep {
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
  flex-shrink: 0;
}
