.fccm-cookie-notice {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 99999;
  width: min(560px, calc(100vw - 28px));
  color: #2A1608;
  font-family: inherit;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.fccm-cookie-notice--hidden {
  opacity: 0;
  transform: translateY(16px);
}

.fccm-cookie-notice__inner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(150, 115, 89, 0.32);
  border-radius: 14px;
  background:
    radial-gradient(circle at 94% 14%, rgba(217, 93, 43, 0.12) 0, rgba(217, 93, 43, 0) 34%),
    radial-gradient(circle at 6% 95%, rgba(0, 84, 96, 0.10) 0, rgba(0, 84, 96, 0) 32%),
    rgba(251, 247, 239, 0.96);
  box-shadow: 0 18px 54px rgba(42, 22, 8, 0.16);
  backdrop-filter: blur(12px);
  padding: clamp(18px, 2.4vw, 24px);
}

.fccm-cookie-notice__inner::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -54px;
  top: -58px;
  border: 1px solid rgba(116, 31, 30, 0.13);
  border-radius: 999px;
  pointer-events: none;
}

.fccm-cookie-notice__inner::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 16px;
  width: 120px;
  height: 28px;
  background:
    linear-gradient(120deg, transparent 0 16%, rgba(101, 110, 85, 0.16) 16% 18%, transparent 18% 100%),
    linear-gradient(94deg, transparent 0 36%, rgba(101, 110, 85, 0.14) 36% 38%, transparent 38% 100%);
  opacity: 0.7;
  pointer-events: none;
}

.fccm-cookie-notice__text {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: #3A1D08;
}

.fccm-cookie-notice__actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.fccm-cookie-notice__link {
  color: #005460;
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 84, 96, 0.28);
  transition: color 0.18s ease, border-color 0.18s ease;
}

.fccm-cookie-notice__link:hover,
.fccm-cookie-notice__link:focus {
  color: #003d46;
  border-color: rgba(0, 84, 96, 0.62);
}

.fccm-cookie-notice__button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 7px;
  background: #D95D2B;
  color: #ffffff;
  padding: 11px 22px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(217, 93, 43, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.fccm-cookie-notice__button:hover,
.fccm-cookie-notice__button:focus {
  background: #c94e20;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(217, 93, 43, 0.34);
}

@media (max-width: 575.98px) {
  .fccm-cookie-notice {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .fccm-cookie-notice__inner {
    border-radius: 20px;
    padding: 16px;
  }

  .fccm-cookie-notice__text {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .fccm-cookie-notice__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fccm-cookie-notice__button {
    width: 100%;
    padding: 13px 20px;
  }

  .fccm-cookie-notice__link {
    text-align: center;
  }
}
