.longwang-cookie-consent {
  position: fixed;
  right: 88px;
  bottom: 20px;
  z-index: 1110;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(780px, calc(100vw - 112px));
  max-width: 780px;
  padding: 16px 16px 16px 18px;
  border: 1px solid rgba(189, 141, 75, 0.34);
  border-radius: 14px;
  background: rgba(255, 246, 233, 0.96);
  box-shadow: 0 18px 42px rgba(36, 24, 12, 0.18);
  color: #363636;
  font-family: "Long Wang SVN-Gilroy", "SVN-Gilroy", sans-serif;
  backdrop-filter: blur(10px);
}

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

.longwang-cookie-consent__title {
  margin: 0 0 4px;
  color: #005841;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.longwang-cookie-consent__message {
  margin: 0;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.longwang-cookie-consent__message a {
  color: #005841;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.longwang-cookie-consent__message a:hover {
  color: #bd8d4b;
}

.longwang-cookie-consent__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.longwang-cookie-consent__accept,
.longwang-cookie-consent__close {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.longwang-cookie-consent__accept {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #00694d 0%, #123f34 100%);
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0, 88, 65, 0.22);
}

.longwang-cookie-consent__close {
  position: absolute;
  top: -10px;
  right: -10px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9999px;
  background: #dc2626;
  color: #ffffff;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(127, 29, 29, 0.22);
}

.longwang-cookie-consent__close span {
  display: none;
}

.longwang-cookie-consent__close::before,
.longwang-cookie-consent__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform-origin: center;
}

.longwang-cookie-consent__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.longwang-cookie-consent__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.longwang-cookie-consent__accept:hover,
.longwang-cookie-consent__close:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.longwang-cookie-consent__accept:active,
.longwang-cookie-consent__close:active {
  transform: translateY(0) scale(0.97);
}

.longwang-cookie-consent__accept:focus-visible,
.longwang-cookie-consent__close:focus-visible {
  outline: 2px solid #bd8d4b;
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .longwang-cookie-consent {
    right: 12px;
    bottom: 14px;
    left: 12px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px;
  }

  .longwang-cookie-consent__actions {
    justify-content: space-between;
  }

  .longwang-cookie-consent__accept {
    flex: 1 1 auto;
  }
}
