/* ============================================================================
   Xeno Executor — cookiebar.css
   Bottom-fixed cookie-consent notice ("плашка согласия"). Matches the LIGHT
   "official software" look: a white sheet surface, dark text, a purple accent
   button and the same tokens/radii/shadows as the rest of the theme. Its own
   class vocabulary (.xexcc*) so nothing here is shared with other sites.
   The bar renders visible server-side; cookiebar.js hides it for visitors who
   have already accepted. It sits at the very bottom on its own z-index above
   page content — there is no other bottom-fixed element to overlap.
   ========================================================================== */

.xexcc {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;                 /* above content; header is a separate top bar */
  background: var(--sheet);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 18px rgba(25,23,36,.10);
  color: var(--text);
}
.xexcc[hidden] { display: none; }

.xexcc__inner {
  display: flex;
  align-items: center;
  gap: 18px 24px;
  flex-wrap: wrap;
  padding: 16px 20px;
}

.xexcc__text {
  flex: 1 1 340px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dim);
}
.xexcc__mark { color: var(--brand); font-weight: 700; margin-right: 2px; }
.xexcc__link { color: var(--brand); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.xexcc__link:hover { color: var(--brand-hi); }

.xexcc__accept {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 26px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  background: var(--brand);
  color: var(--on-brand);
  font-family: var(--ff-text);
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: transform .12s, background .15s, box-shadow .15s;
}
.xexcc__accept:hover { transform: translateY(-1px); background: var(--brand-hi); box-shadow: var(--shadow-hi); }

@media (max-width: 560px) {
  .xexcc__inner { padding: 14px 16px; gap: 12px; }
  .xexcc__accept { width: 100%; }
}
