.cc-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 9998;
  pointer-events: none;
  display: none;
}
.cc-banner.is-visible{ display:block; }

.cc-banner__inner{
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  pointer-events: all;
}

.cc-banner__text{
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cc-banner__link{
  color: #2a67d6;
  text-decoration: underline;
  white-space: nowrap;
}
.cc-banner__link:hover{ text-decoration: none; }

.cc-banner__actions{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
}

.cc-banner__btn{
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  background: var(--cc-btn-bg, #21A038);
  transition: transform .08s ease, filter .15s ease, opacity .15s ease;
}
.cc-banner__btn:hover{ filter: brightness(0.92); }
.cc-banner__btn:active{ transform: translateY(1px); }

@media (max-width: 768px){
  .cc-banner{ bottom: 10px; padding: 0 10px; }
  .cc-banner__inner{
    padding: 14px 14px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .cc-banner__actions{ justify-content: flex-end; }
}
