.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.25);
}

.cookie-consent-panel {
  width: min(980px, 100%);
  background: #0b2a33;
  color: #f2f8f9;
  border: 1px solid #2f5661;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-consent-text a {
  color: #9fd69b;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-btn {
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
  cursor: pointer;
}

.cookie-btn-accept {
  background: #2d8a4b;
  color: #fff;
}

.cookie-btn-necessary {
  background: #dce8ec;
  color: #13313a;
}

.cookie-consent-toggle {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 9998;
  display: none;
  border: 1px solid #2f5661;
  border-radius: 999px;
  background: #0b2a33;
  color: #f2f8f9;
  font-size: 0.82rem;
  padding: 7px 12px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  opacity: 0.88;
}

.cookie-consent-toggle:hover {
  opacity: 1;
}

.cookie-consent-toggle.is-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px) {
  .cookie-consent-panel {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-btn {
    flex: 1;
  }

  .cookie-consent-toggle {
    left: 10px;
    bottom: 10px;
  }
}
