.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  background: #1f2937;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.25);
}

.cookie-consent-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-consent-message {
  min-width: 0;
}

.cookie-consent-title {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.cookie-consent-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-consent-text a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.cookie-consent-floating-settings {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 1070;
  border: 1px solid #1f2937;
  background: #ffffff;
  color: #1f2937;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

.cookie-consent-floating-settings:hover,
.cookie-consent-floating-settings:focus {
  background: #f3f4f6;
}

.cookie-settings-link {
  border: 0;
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .cookie-consent-content {
    padding: 12px 14px 14px;
  }

  .cookie-consent-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (min-width: 768px) {
  .cookie-consent-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
  }

  .cookie-consent-actions {
    justify-content: flex-end;
    margin-top: 0;
    flex-wrap: nowrap;
  }

  .cookie-consent-actions .btn {
    white-space: nowrap;
  }
}
