.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  color: #1f2933;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-consent__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #4b5563;
}

.cookie-consent__text strong {
  display: block;
  margin-bottom: 3px;
  color: #134e4a;
  font-size: 1rem;
}

.cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.cookie-consent__button {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid #0f766e;
  border-radius: 999px;
  background: #0f766e;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  background: #134e4a;
  border-color: #134e4a;
}

.cookie-consent__button--secondary {
  background: #ffffff;
  color: #0f766e;
}

.cookie-consent__button--secondary:hover,
.cookie-consent__button--secondary:focus-visible {
  background: #eef8f6;
  color: #134e4a;
}

@media (max-width: 680px) {
  .cookie-consent {
    right: 14px;
    bottom: 14px;
    left: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__button {
    flex: 1;
    padding-right: 12px;
    padding-left: 12px;
  }
}
