.kibu-consent-panel {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 20px;
  color: #142b43;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(24, 95, 165, 0.2);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(13, 46, 77, 0.2);
  font-family: inherit;
}

.kibu-consent-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.kibu-consent-copy p {
  max-width: 610px;
  margin: 0;
  color: #536b83;
  font-size: 13px;
  line-height: 1.5;
}

.kibu-consent-copy a {
  color: #185fa5;
  font-weight: 700;
}

.kibu-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.kibu-consent-actions button,
.kibu-consent-settings {
  min-height: 40px;
  padding: 9px 14px;
  color: #185fa5;
  background: #fff;
  border: 1px solid rgba(24, 95, 165, 0.3);
  border-radius: 10px;
  font: 700 12px/1.2 inherit;
  cursor: pointer;
}

.kibu-consent-actions button.primary {
  color: #fff;
  background: #185fa5;
  border-color: #185fa5;
}

.kibu-consent-actions button:hover,
.kibu-consent-settings:hover {
  transform: translateY(-1px);
}

.kibu-consent-actions button:focus-visible,
.kibu-consent-settings:focus-visible {
  outline: 3px solid rgba(24, 95, 165, 0.25);
  outline-offset: 2px;
}

.kibu-consent-settings {
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  left: 10px;
  min-height: 32px;
  padding: 6px 9px;
  opacity: 0.72;
  font-size: 10px;
}

@media (max-width: 680px) {
  .kibu-consent-panel {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .kibu-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kibu-consent-actions button,
  .kibu-consent-settings {
    transition: none;
  }
}
