/* =========================================================
   PAYLANCE — Cookie Consent Banner
   ========================================================= */
#plCookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 24px rgba(0,0,0,.10);
  padding: 16px 24px;
  font-family: inherit;
}

.pl-cc__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pl-cc__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: #374151;
  min-width: 240px;
}

.pl-cc__link {
  color: #2563eb;
  text-decoration: underline;
}

.pl-cc__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.pl-cc__btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.pl-cc__btn--primary {
  background: #111827;
  color: #fff;
}
.pl-cc__btn--primary:hover { background: #374151; }

.pl-cc__btn--secondary {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.pl-cc__btn--secondary:hover { background: #e5e7eb; }

@media (max-width: 600px) {
  .pl-cc__inner  { flex-direction: column; align-items: stretch; }
  .pl-cc__actions { flex-direction: column; }
  .pl-cc__btn { width: 100%; text-align: center; }
}
