.monadja-cookie {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  color: #263238;
  background: #f5f7fc;
  box-shadow: 0 -8px 24px rgba(34, 60, 80, 0.16);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.monadja-cookie[hidden] {
  display: none !important;
}

.monadja-cookie.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.monadja-cookie__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding: 24px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.monadja-cookie__text {
  max-width: 980px;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.monadja-cookie__text a {
  color: #e55570;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.monadja-cookie__text a:hover {
  color: #2f3f96;
}

.monadja-cookie__button {
  flex: 0 0 auto;
  min-width: 180px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #2f3f96;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.monadja-cookie__button:hover,
.monadja-cookie__button:focus {
  background: #e55570;
  box-shadow: 0 6px 16px rgba(229, 85, 112, 0.24);
  outline: none;
}

.monadja-cookie__button:focus-visible {
  outline: 2px solid #2f3f96;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .monadja-cookie__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 20px 15px;
  }

  .monadja-cookie__button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .monadja-cookie__inner {
    padding: 16px 15px;
  }

  .monadja-cookie__text,
  .monadja-cookie__text a {
    font-size: 13px;
    line-height: 1.45;
  }
}
