/* B22G Cookie Consent Banner */
#b22g-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 32px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), opacity .4s;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
#b22g-consent.cb-show {
  transform: translateY(0);
  opacity: 1;
}
.cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px 32px;
  align-items: center;
}
.cb-title {
  font-size: 15px;
  font-weight: 700;
  color: #fafafa;
  margin-bottom: 6px;
}
.cb-desc {
  font-size: 13px;
  color: #8a8a8a;
  line-height: 1.5;
  margin: 0;
}
.cb-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cb-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #fafafa;
  cursor: pointer;
}
.cb-opt--disabled {
  opacity: .6;
  cursor: default;
}
.cb-opt input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e8491d;
  cursor: pointer;
  flex-shrink: 0;
}
.cb-opt--disabled input[type="checkbox"] {
  cursor: default;
}
.cb-opt-name {
  font-weight: 600;
  min-width: 90px;
}
.cb-opt-info {
  font-size: 11px;
  color: #8a8a8a;
}
.cb-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cb-btn {
  border: none;
  border-radius: 50px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
  font-family: inherit;
}
.cb-btn--accept {
  background: #e8491d;
  color: #0a0a0a;
}
.cb-btn--accept:hover {
  background: #fff;
}
.cb-btn--save {
  background: transparent;
  color: #fafafa;
  border: 1px solid rgba(255, 255, 255, .2);
}
.cb-btn--save:hover {
  border-color: #e8491d;
  color: #e8491d;
}
.cb-btn--reject {
  background: transparent;
  color: #8a8a8a;
  border: 1px solid rgba(255, 255, 255, .08);
}
.cb-btn--reject:hover {
  color: #fafafa;
  border-color: rgba(255, 255, 255, .2);
}
.cb-link {
  position: absolute;
  top: 12px;
  right: 32px;
  font-size: 11px;
  color: #555;
  text-decoration: underline;
  transition: color .2s;
}
.cb-link:hover {
  color: #e8491d;
}

/* Responsive */
@media (max-width: 900px) {
  .cb-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cb-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .cb-btn {
    padding: 10px 16px;
    font-size: 12px;
  }
  #b22g-consent {
    padding: 20px 20px;
  }
  .cb-link {
    position: static;
    display: block;
    margin-top: 4px;
  }
}
@media (max-width: 480px) {
  .cb-actions {
    flex-direction: column;
  }
}
