/* ==================================================
   WEB COOKIE NOTICE
   Compact bottom cookie notice for plizir / website19.
   HTML is rendered through Joomla module position: cookie-notice.
   ================================================== */

.web-cookie {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1055;
  padding: 8px 16px;
  background: rgba(19, 20, 31, 0.97);
  color: #ffffff;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.16);
}

.web-cookie[hidden] {
  display: none;
}

.web-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.web-cookie__text {
  flex: 1 1 auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

.web-cookie__text a {
  color: #5ea0ff;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 3px;
}

.web-cookie__text a:hover,
.web-cookie__text a:focus {
  color: #8fbdff;
  text-decoration: underline;
}

.web-cookie__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 30px;
  padding: 5px 12px;
  border: 0;
  border-radius: 2px;
  background: #ffffff;
  color: #111827;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.web-cookie__button:hover,
.web-cookie__button:focus {
  background: #eef3ff;
  color: #001b4c;
}

.web-cookie__button:focus-visible {
  outline: 2px solid rgba(94, 160, 255, 0.55);
  outline-offset: 2px;
}

@media (max-width: 767.98px) {
  .web-cookie {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 12.5px;
    line-height: 1.45;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.22);
  }

  .web-cookie__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
  }

  .web-cookie__button {
    min-width: 42px;
    min-height: 32px;
    padding: 6px 11px;
  }
}

@media (max-width: 390px) {
  .web-cookie__inner {
    grid-template-columns: 1fr;
  }

  .web-cookie__button {
    justify-self: end;
  }
}
