.qunelle-cookie {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 99999;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  font-family: "TildaSans", Arial, sans-serif;
}

.qunelle-cookie.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.qunelle-cookie__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(17, 25, 22, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 52px rgba(20, 47, 31, .16);
  backdrop-filter: blur(10px);
}

.qunelle-cookie__text {
  margin: 0;
  color: rgba(17, 25, 22, .82);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.qunelle-cookie__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 7px;
}

.qunelle-cookie__links a,
.qunelle-cookie__links a:visited {
  color: #2d9828 !important;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qunelle-cookie__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 46px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #39ad31, #248f1f);
  color: #fff !important;
  font: 900 15px/1 "TildaSans", Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(34, 145, 29, .2);
}

@media (max-width: 640px) {
  .qunelle-cookie {
    bottom: calc(82px + env(safe-area-inset-bottom, 0px));
    width: calc(100% - 24px);
  }

  .qunelle-cookie__inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
    border-radius: 18px;
  }

  .qunelle-cookie__text {
    font-size: 13px;
  }

  .qunelle-cookie__button {
    width: 100%;
    min-height: 44px;
  }
}
