.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
  transition: transform 0.3s ease;
  transform: translateY(100%);
}
.cookie-consent.visible {
  transform: translateY(0);
}
.cookie-consent__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-consent__text {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}
.cookie-consent__text a {
  color: inherit;
  text-decoration: underline;
}
.cookie-consent__text a:hover {
  text-decoration: none;
}
.cookie-consent__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-consent__button {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cookie-consent__button:hover {
  background-color: var(--primary-color);
  color: var(--text-contrast-color);
}
.cookie-consent__button_primary {
  background-color: var(--primary-color);
  color: var(--text-contrast-color);
  border-color: var(--primary-color);
}
.cookie-consent__button_primary:hover {
  background-color: var(--primary-dark-color);
  border-color: var(--primary-dark-color);
}
@media (max-width: 767px) {
  .cookie-consent__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-consent__buttons {
    align-self: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
