.cookie-consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background-color: var(--text);
  padding: 16px 20px;
  display: none;
}

.cookie-consent-bar.is-visible {
  display: block;
}

.cookie-consent-bar .cookie-consent-inner {
  max-width: 1322px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-consent-bar p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: var(--white-60);
}

.cookie-consent-bar a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-consent-bar .cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent-bar .cookie-consent-accept {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-consent-bar .cookie-consent-accept:hover {
  opacity: 0.9;
}

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

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

  .cookie-consent-bar .cookie-consent-accept {
    width: 100%;
  }
}
