#cflo-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(11, 13, 23, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: Outfit, sans-serif;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cflo-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cflo-consent-text strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.cflo-consent-text p {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.cflo-consent-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cflo-consent-categories {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cflo-consent-category {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.cflo-cat-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cflo-cat-name {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
}

.cflo-cat-desc {
  color: #64748b;
  font-size: 11px;
}

.cflo-consent-category input {
  display: none;
}

.cflo-toggle {
  width: 40px;
  height: 22px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  position: relative;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.cflo-toggle::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #94a3b8;
  transition: all 0.2s ease;
}

.cflo-consent-category input:checked + .cflo-toggle {
  background: linear-gradient(135deg, #0FBBFF, #B22DFF);
}

.cflo-consent-category input:checked + .cflo-toggle::after {
  left: 21px;
  background: #ffffff;
}

.cflo-toggle-locked {
  opacity: 0.6;
  cursor: not-allowed;
}

.cflo-consent-category:has(input:disabled) {
  cursor: default;
}

.cflo-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cflo-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-family: Outfit, sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cflo-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

.cflo-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.cflo-btn-primary {
  background: linear-gradient(56.96deg, #0FBBFF 4.88%, #386DFF 30.24%, #B22DFF 53.1%, #FF258E 79.17%);
  border: none;
  color: #ffffff;
  font-weight: 600;
}

.cflo-btn-primary:hover {
  opacity: 0.9;
}

@media screen and (max-width: 680px) {
  .cflo-consent-inner {
    padding: 20px 16px;
  }

  .cflo-consent-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .cflo-consent-categories {
    flex-direction: column;
    gap: 14px;
  }

  .cflo-consent-buttons {
    flex-direction: column;
  }

  .cflo-btn {
    width: 100%;
    text-align: center;
  }
}
