.wixe-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(820px, calc(100vw - 24px));
  border: 1px solid rgba(138, 180, 247, 0.36);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(7, 15, 35, 0.97), rgba(5, 12, 28, 0.98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  padding: 12px;
  z-index: 2500;
  color: #ecf4ff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

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

.wixe-cookie-content {
  display: grid;
  gap: 10px;
}

.wixe-cookie-text {
  margin: 0;
  font: 600 13px/1.45 "Manrope", "Segoe UI", Arial, sans-serif;
  color: #d3e2f8;
}

.wixe-cookie-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.wixe-cookie-btn {
  border-radius: 10px;
  border: 1px solid rgba(146, 183, 243, 0.4);
  background: rgba(13, 26, 51, 0.82);
  color: #eaf2ff;
  padding: 8px 12px;
  font: 700 13px/1.1 "Manrope", "Segoe UI", Arial, sans-serif;
  cursor: pointer;
}

.wixe-cookie-btn.accept {
  border-color: rgba(123, 186, 255, 0.55);
  background: linear-gradient(135deg, rgba(47, 118, 225, 0.92), rgba(37, 99, 235, 0.9));
  color: #f8fbff;
}

.wixe-cookie-link {
  color: #9bc8ff;
  text-decoration: none;
  font: 700 12px/1.1 "Manrope", "Segoe UI", Arial, sans-serif;
  padding: 7px 0;
}

.wixe-cookie-link:hover {
  color: #c8e2ff;
  text-decoration: underline;
}

.wixe-cookie-manage {
  position: fixed;
  left: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  border-radius: 999px;
  border: 1px solid rgba(137, 176, 241, 0.44);
  background: linear-gradient(145deg, rgba(11, 22, 44, 0.94), rgba(8, 16, 34, 0.96));
  color: #e5f1ff;
  padding: 8px 12px;
  font: 700 12px/1.1 "Manrope", "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  z-index: 2450;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}

@media (hover: hover) and (pointer: fine) {
  .wixe-cookie-manage:hover {
    filter: brightness(1.06);
    border-color: rgba(164, 201, 255, 0.55);
  }
}

@media (max-width: 560px) {
  .wixe-cookie-banner {
    width: calc(100vw - 16px);
    border-radius: 12px;
    padding: 10px;
  }

  .wixe-cookie-text {
    font-size: 12px;
    line-height: 1.38;
  }

  .wixe-cookie-btn {
    flex: 1 1 auto;
    min-width: 120px;
    justify-content: center;
    display: inline-flex;
  }

  .wixe-cookie-link {
    width: 100%;
    text-align: center;
  }

  .wixe-cookie-manage {
    left: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    padding: 7px 10px;
    font-size: 11px;
  }
}
