/* AI Refine — compact GDPR / cookie consent bar */
.ar-cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  width: calc(100% - 32px);
  max-width: 920px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(14, 17, 50, 0.97), rgba(6, 8, 28, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  font-family: 'Montserrat', sans-serif;
  color: #F6F6F0;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s;
}

.ar-cookie-bar.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.ar-cookie-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ar-cookie-copy {
  flex: 1;
  min-width: 0;
}

.ar-cookie-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(246, 246, 240, 0.82);
}

.ar-cookie-copy a {
  color: #AFFF25;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ar-cookie-copy a:hover {
  color: #C8FF55;
}

.ar-cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ar-cookie-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

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

.ar-cookie-btn.primary {
  background: #AFFF25;
  color: #06081C;
}

.ar-cookie-btn.primary:hover {
  box-shadow: 0 10px 24px -10px rgba(175, 255, 37, 0.55);
}

.ar-cookie-btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #F6F6F0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.ar-cookie-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 720px) {
  .ar-cookie-bar {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 14px 14px 12px;
  }

  .ar-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .ar-cookie-actions {
    width: 100%;
  }

  .ar-cookie-btn {
    flex: 1;
    text-align: center;
    padding: 11px 12px;
  }
}
