/* Annoying pink homepage enhancement - archive + pinned cards + nav icons */
:root {
  --annoy-soft-pink: #f8b9d6;
  --annoy-soft-pink-2: #ffe4f1;
  --annoy-soft-blue: #dbeafe;
  --annoy-soft-blue-2: #eef7ff;
  --annoy-soft-sky: #bae6fd;
  --annoy-soft-text: #4b4652;
  --annoy-soft-muted: #766b78;
  --annoy-soft-deep: #a34272;
}

body:has(.home-page-content) {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 228, 241, .52), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(219, 234, 254, .66), transparent 30%),
    radial-gradient(circle at 58% 88%, rgba(186, 230, 253, .34), transparent 32%),
    linear-gradient(135deg, #fff 0%, #fff8fc 38%, #fff2f8 62%, #f4fbff 100%) !important;
}

@media (min-width: 769px) {
  body:has(.home-page-content) .post-home-top-container,
  body:has(.home-page-content) [class*="homeTopContainer"],
  body:has(.home-page-content) [class*="HomeTop"] {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  body:has(.home-page-content) .content-inner {
    margin-top: 10px !important;
  }

  body:has(.home-page-content) #frontend-main,
  body:has(.home-page-content) .home-page-content {
    padding-top: 0 !important;
  }

  body:has(.home-page-content) [class*="headerWrapper"],
  body:has(.home-page-content) header {
    background: rgba(255, 247, 251, .74) !important;
    border-bottom: 1px solid rgba(248, 185, 214, .28) !important;
    backdrop-filter: blur(18px) saturate(155%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(155%) !important;
  }

  .annoy-home-showcase {
    display: grid;
    gap: 14px;
    width: 100%;
    margin: 0 0 14px;
  }

  .annoy-home-notice {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 18px;
    color: #6f4b60;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.72;
    background:
      linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,244,250,.64) 52%, rgba(238,247,255,.72)),
      radial-gradient(circle at 92% 22%, rgba(186,230,253,.45), transparent 28%);
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: 0 14px 32px rgba(148, 163, 184, .11), 0 8px 20px rgba(190, 95, 143, .08), inset 0 1px 0 rgba(255,255,255,.86);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .annoy-home-notice::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 5px;
    box-shadow: inset 0 -5px 0 rgba(255,255,255,.45);
    opacity: .82;
    flex: 0 0 auto;
  }

  .annoy-home-notice b,
  .annoy-home-notice strong {
    color: #a34272;
    font-weight: 950;
  }

  .annoy-home-notice a {
    color: #2563eb;
    font-weight: 900;
    text-decoration: none;
  }

  .annoy-home-mainrow {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 12px;
    min-height: 166px;
    align-items: stretch;
  }

  .annoy-feature-stage {
    position: relative;
    min-width: 0;
  }

  .annoy-feature-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(238px, calc((100% - 12px) / 2));
    gap: 12px;
    height: 166px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    padding: 0 4px 10px 0;
    scrollbar-width: none;
  }

  .annoy-feature-slider::-webkit-scrollbar {
    display: none;
  }

  .annoy-feature-slider::after {
    content: "";
    width: 1px;
  }

  .annoy-feature-card {
    scroll-snap-align: start;
  }

  .annoy-feature-nav {
    position: absolute;
    z-index: 8;
    top: 50%;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 244, 250, .72)),
      radial-gradient(circle at 35% 22%, rgba(219, 234, 254, .58), transparent 42%);
    color: #9f426f;
    font-size: 21px;
    font-weight: 950;
    line-height: 1;
    box-shadow:
      0 10px 24px rgba(190, 95, 143, .12),
      0 6px 16px rgba(96, 165, 250, .10),
      inset 0 1px 0 rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    transform: translateY(-50%);
    cursor: pointer;
    opacity: .92;
    transition: transform .18s ease, opacity .18s ease, color .18s ease, box-shadow .18s ease;
  }

  .annoy-feature-nav:hover {
    opacity: 1;
    color: #2563eb;
    transform: translateY(-50%) scale(1.06);
    box-shadow:
      0 14px 28px rgba(190, 95, 143, .15),
      0 8px 20px rgba(96, 165, 250, .15),
      inset 0 1px 0 rgba(255, 255, 255, .9);
  }

  .annoy-feature-prev {
    left: 10px;
  }

  .annoy-feature-next {
    right: 10px;
  }

  .annoy-archive-card,
  .annoy-feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 166px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .66);
    box-shadow: 0 14px 34px rgba(190, 95, 143, .10), 0 8px 22px rgba(96, 165, 250, .08), inset 0 1px 0 rgba(255,255,255,.78);
    backdrop-filter: blur(20px) saturate(155%);
    -webkit-backdrop-filter: blur(20px) saturate(155%);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .annoy-archive-card:hover,
  .annoy-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(248,185,214,.76);
    box-shadow: 0 20px 42px rgba(190,95,143,.13), 0 10px 28px rgba(96,165,250,.12), inset 0 1px 0 rgba(255,255,255,.84);
  }

  .annoy-archive-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 24px 26px;
    color: #fff;
    background:
      radial-gradient(circle at 82% 30%, rgba(255,255,255,.26), transparent 30%),
      radial-gradient(circle at 76% 78%, rgba(186,230,253,.50), transparent 34%),
      linear-gradient(135deg, rgba(166,87,128,.84), rgba(248,185,214,.74) 54%, rgba(219,234,254,.64));
  }

  .annoy-archive-card::after {
    content: "</>";
    position: absolute;
    right: 18px;
    top: 22px;
    color: rgba(255,255,255,.18);
    font-size: 44px;
    font-weight: 950;
    transform: rotate(-12deg);
  }

  .annoy-archive-card strong {
    display: block;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 950;
  }

  .annoy-archive-card span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 13px 0 0;
    border-radius: 99px;
    background: rgba(255,255,255,.82);
  }

  .annoy-archive-card b {
    display: block;
    margin-top: 34px;
    font-size: 25px;
    line-height: 1;
    font-weight: 950;
  }

  .annoy-feature-card {
    display: grid;
    grid-template-rows: 98px 68px;
    color: #3f3a45;
    background: rgba(255, 250, 253, .72);
  }

  .annoy-feature-cover {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(circle at 26% 20%, rgba(255,255,255,.45), transparent 26%),
      linear-gradient(135deg, rgba(248,185,214,.62), rgba(255,244,250,.76) 45%, rgba(219,234,254,.70));
  }

  .annoy-feature-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(.96) brightness(1.02);
  }

  .annoy-feature-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,244,250,.18));
  }

  .annoy-feature-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    height: 26px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 244, 250, .86);
    border: 1px solid rgba(248,185,214,.62);
    color: #a34272;
    font-size: 12px;
    font-weight: 950;
    box-shadow: 0 8px 18px rgba(148,163,184,.12);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
  }

  .annoy-feature-title {
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: #3f3a45;
    background: linear-gradient(135deg, rgba(255, 250, 253, .90), rgba(244,251,255,.82));
    font-size: 17px;
    font-weight: 950;
    line-height: 1.35;
  }

  body:has(.home-page-content) [class*="categoryBarContainer"] {
    margin-top: 0 !important;
  }

  body:has(.home-page-content) [class*="categoryBar"] {
    min-height: 52px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(255,247,251,.68) 55%, rgba(238,247,255,.70)) !important;
    border: 1px solid rgba(255,255,255,.70) !important;
    color: var(--annoy-soft-text) !important;
    box-shadow: 0 12px 28px rgba(190,95,143,.10), inset 0 1px 0 rgba(255,255,255,.78) !important;
    backdrop-filter: blur(18px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
  }

  body:has(.home-page-content) [class*="catalogList"] a,
  body:has(.home-page-content) [class*="catalogBar"] a,
  body:has(.home-page-content) [class*="catalogListItem"] {
    color: #4b4652 !important;
    font-weight: 850 !important;
  }

  body:has(.home-page-content) [class*="catalogListItem"][class*="select"] {
    color: #a34272 !important;
    background: rgba(255, 228, 241, .78) !important;
    border-radius: 999px !important;
  }
}

@media (max-width: 768px) {
  .annoy-home-showcase { display: none !important; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .annoy-home-mainrow {
    grid-template-columns: 156px minmax(0, 1fr);
  }

  .annoy-feature-slider {
    grid-auto-columns: minmax(220px, 72%);
  }
}

/* 导航栏安全恢复：只修一级菜单，不强制展开二级菜单 */
body header,
body nav,
body [class*="frontendHeader"],
body [class*="headerWrapper"],
body [class*="headerContent"],
body [class*="mainNav"],
body [class*="menusItems"] {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

body header,
body [class*="frontendHeader"],
body [class*="headerWrapper"] {
  position: relative !important;
  z-index: 2147483000 !important;
}

body [class*="mainNav"],
body [class*="menusItems"] {
  display: flex !important;
  align-items: center !important;
  height: 60px !important;
  top: 0 !important;
  transform: none !important;
  z-index: 2147483001 !important;
  overflow: visible !important;
}

body [class*="menusItem"]:not([class*="menusItemChild"]) {
  display: flex !important;
  align-items: center !important;
  height: 60px !important;
  top: 0 !important;
  transform: none !important;
  overflow: visible !important;
}

body [class*="menuTitle"] {
  color: #4b4652 !important;
  font-weight: 850 !important;
  line-height: 1 !important;
}

body [class*="menusItem"]:not([class*="menusItemChild"]):hover [class*="menuTitle"] {
  color: #a34272 !important;
}

body [class*="menusItemChild"] {
  z-index: 2147483002 !important;
}

/* 导航栏一级菜单垂直居中：不影响二级下拉 */
body [class*="Header-module"][class*="mainNav"],
body [class*="Header-module"][class*="menusItems"] {
  height: 60px !important;
  align-items: stretch !important;
  overflow: visible !important;
}

body [class*="Header-module"][class*="menusItem"]:not([class*="menusItemChild"]) {
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

body [class*="Header-module"][class*="menuTitle"] {
  height: 60px !important;
  min-height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 0 !important;
  margin: 0 !important;
  padding: 0 14px !important;
  line-height: 1 !important;
  color: #4b4652 !important;
  font-weight: 850 !important;
}

body [class*="Header-module"][class*="menusItemChild"] {
  top: 60px !important;
  z-index: 2147483002 !important;
}

/* 导航栏一级菜单最终对齐：只移动顶层文字，不影响二级菜单 */
body [class*="Header-module"][class*="menuTitle"] {
  transform: translateY(33px) !important;
}

body [class*="Header-module"][class*="menusItemChild"] {
  transform: none !important;
  top: 60px !important;
  z-index: 2147483002 !important;
}

/* 导航栏间距优化：缩小一级菜单之间的大空白 */
body [class*="Header-module"][class*="mainNav"] {
  justify-content: flex-start !important;
  gap: 18px !important;
}

body [class*="Header-module"][class*="menusItems"] {
  justify-content: flex-start !important;
  gap: 18px !important;
  width: auto !important;
  max-width: none !important;
}

body [class*="Header-module"][class*="menusItem"]:not([class*="menusItemChild"]) {
  width: auto !important;
  min-width: auto !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

body [class*="Header-module"][class*="menuTitle"] {
  width: auto !important;
  min-width: 58px !important;
  max-width: none !important;
  padding: 0 12px !important;
}

body [class*="Header-module"][class*="menusItemChild"] {
  min-width: 220px !important;
}

/* 导航栏按钮缩小：每个一级按钮更紧凑 */
body [class*="Header-module"][class*="mainNav"] {
  justify-content: flex-start !important;
  gap: 10px !important;
}

body [class*="Header-module"][class*="menusItems"] {
  gap: 10px !important;
}

body [class*="Header-module"][class*="menusItem"]:not([class*="menusItemChild"]) {
  width: auto !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
}

body [class*="Header-module"][class*="menuTitle"] {
  width: auto !important;
  min-width: 44px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 8px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  border-radius: 999px !important;
}

body [class*="Header-module"][class*="menusItemChild"] {
  min-width: 190px !important;
}

/* NAV_DROPDOWN_FINAL_20260708 */
@media (min-width: 769px) {
  html body header[class*="Header-module__85i50G__frontendHeader"],
  html body header[class*="Header-module__85i50G__frontendHeader"] [class*="Header-module__85i50G__headerWrapper"],
  html body header[class*="Header-module__85i50G__frontendHeader"] [class*="Header-module__85i50G__headerContent"],
  html body header[class*="Header-module__85i50G__frontendHeader"] nav[class*="Header-module__85i50G__mainNav"],
  html body header[class*="Header-module__85i50G__frontendHeader"] [class*="Header-module__85i50G__menusItems"],
  html body header[class*="Header-module__85i50G__frontendHeader"] [class*="Header-module__85i50G__menusItem"] {
    overflow: visible !important;
  }

  html body header[class*="Header-module__85i50G__frontendHeader"] {
    z-index: 99999 !important;
  }

  html body header[class*="Header-module__85i50G__frontendHeader"] nav[class*="Header-module__85i50G__mainNav"] {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 0 !important;
    width: auto !important;
    height: 60px !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto !important;
  }

  html body header[class*="Header-module__85i50G__frontendHeader"] nav[class*="Header-module__85i50G__mainNav"] > [class*="Header-module__85i50G__menusItems"] {
    width: auto !important;
    height: 60px !important;
    gap: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  html body header[class*="Header-module__85i50G__frontendHeader"] nav[class*="Header-module__85i50G__mainNav"] > [class*="Header-module__85i50G__menusItems"] > [class*="Header-module__85i50G__menusItem"]:not([class*="menusItemChild"]) {
    position: relative !important;
    width: auto !important;
    min-width: 64px !important;
    height: 60px !important;
    flex: 0 0 auto !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
  }

  html body header[class*="Header-module__85i50G__frontendHeader"] nav[class*="Header-module__85i50G__mainNav"] > [class*="Header-module__85i50G__menusItems"] > [class*="Header-module__85i50G__menusItem"]:not([class*="menusItemChild"]) > [class*="Header-module__85i50G__menuTitle"] {
    position: relative !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    width: auto !important;
    min-width: 56px !important;
    height: 36px !important;
    padding: 0 10px !important;
    border-radius: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    white-space: nowrap !important;
    pointer-events: auto !important;
    font-size: 14px !important;
    line-height: 36px !important;
  }

  html body header[class*="Header-module__85i50G__frontendHeader"] nav[class*="Header-module__85i50G__mainNav"] > [class*="Header-module__85i50G__menusItems"] > [class*="Header-module__85i50G__menusItem"]:not([class*="menusItemChild"]) > [class*="Header-module__85i50G__menusItemChild"] {
    display: block !important;
    position: absolute !important;
    top: 54px !important;
    left: 50% !important;
    width: max-content !important;
    min-width: 160px !important;
    max-width: min(420px, calc(100vw - 32px)) !important;
    margin: 0 !important;
    padding-top: 10px !important;
    z-index: 100000 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    filter: none !important;
    transform: translateX(-50%) translateY(8px) scale(.98) !important;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease !important;
  }

  html body header[class*="Header-module__85i50G__frontendHeader"] nav[class*="Header-module__85i50G__mainNav"] > [class*="Header-module__85i50G__menusItems"] > [class*="Header-module__85i50G__menusItem"]:not([class*="menusItemChild"]):hover > [class*="Header-module__85i50G__menusItemChild"],
  html body header[class*="Header-module__85i50G__frontendHeader"] nav[class*="Header-module__85i50G__mainNav"] > [class*="Header-module__85i50G__menusItems"] > [class*="Header-module__85i50G__menusItem"]:not([class*="menusItemChild"]):focus-within > [class*="Header-module__85i50G__menusItemChild"],
  html body header[class*="Header-module__85i50G__frontendHeader"] nav[class*="Header-module__85i50G__mainNav"] > [class*="Header-module__85i50G__menusItems"] > [class*="Header-module__85i50G__menusItem"].annoy-nav-open > [class*="Header-module__85i50G__menusItemChild"] {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

  html body header[class*="Header-module__85i50G__frontendHeader"] [class*="Header-module__85i50G__menusItemChild"]::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
    background: transparent;
  }

  html body header[class*="Header-module__85i50G__frontendHeader"] [class*="Header-module__85i50G__menusItemChild"] a,
  html body header[class*="Header-module__85i50G__frontendHeader"] [class*="Header-module__85i50G__menusItemChild"] button,
  html body header[class*="Header-module__85i50G__frontendHeader"] [class*="Header-module__85i50G__menusItemChild"] [role="menuitem"] {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 2 !important;
  }
}
/* ===== ANNOY FOOTER SOCIAL MODULE START ===== */
:root {
  --annoy-footer-pink: #f8b9d6;
  --annoy-footer-pink-soft: #ffe8f3;
  --annoy-footer-blue: #dbeafe;
  --annoy-footer-text: #5f5260;
  --annoy-footer-strong: #9f426f;
}

/* 隐藏主题原始页脚，防止和自定义页脚重叠 */
body:has(.annoy-footer-widget) > footer:not(.annoy-footer-widget),
body:has(.annoy-footer-widget) footer[class*="Footer"]:not(.annoy-footer-widget),
body:has(.annoy-footer-widget) footer[class*="footer"]:not(.annoy-footer-widget),
body:has(.annoy-footer-widget) [class*="Footer-module"]:not(.annoy-footer-widget),
body:has(.annoy-footer-widget) [id="footer"]:not(.annoy-footer-widget),
body:has(.annoy-footer-widget) [class*="footerWrap"],
body:has(.annoy-footer-widget) [class*="footer-wrap"],
body:has(.annoy-footer-widget) [class*="footerContent"],
body:has(.annoy-footer-widget) [class*="footer-content"] {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.annoy-footer-widget,
.annoy-footer-widget * {
  box-sizing: border-box;
}

.annoy-footer-widget {
  position: relative;
  z-index: 2;
  width: min(100% - 24px, 1180px);
  margin: 36px auto 24px;
  padding: 32px 22px 28px;
  text-align: center;
  color: var(--annoy-footer-text);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .58), rgba(255, 244, 250, .35)),
    radial-gradient(circle at 20% 0%, rgba(248, 185, 214, .32), transparent 36%),
    radial-gradient(circle at 80% 100%, rgba(219, 234, 254, .36), transparent 38%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow:
    0 24px 70px rgba(190, 95, 143, .12),
    0 12px 36px rgba(96, 165, 250, .1),
    inset 0 1px 0 rgba(255, 255, 255, .78);
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
}

.annoy-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.annoy-footer-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #8f4268;
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(255, 232, 243, .66)),
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .86), transparent 40%);
  border: 1px solid rgba(255, 255, 255, .82);
  box-shadow:
    0 12px 26px rgba(190, 95, 143, .13),
    0 6px 18px rgba(96, 165, 250, .09),
    inset 0 1px 0 rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}

.annoy-footer-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.annoy-footer-icon:hover {
  transform: translateY(-5px);
  color: #2563eb;
  border-color: rgba(147, 197, 253, .62);
  box-shadow:
    0 18px 34px rgba(190, 95, 143, .16),
    0 10px 24px rgba(96, 165, 250, .18),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.annoy-footer-avatar {
  width: 82px;
  height: 82px;
  display: block;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(248, 185, 214, .82), rgba(219, 234, 254, .72));
  box-shadow:
    0 16px 34px rgba(190, 95, 143, .16),
    0 8px 22px rgba(96, 165, 250, .14);
  text-decoration: none;
  transition: transform .22s ease, filter .22s ease;
}

.annoy-footer-avatar:hover {
  transform: translateY(-5px) scale(1.03);
  filter: brightness(1.04);
}

.annoy-footer-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  border: 3px solid rgba(255, 255, 255, .9);
  background: #fff;
}

.annoy-footer-copy {
  display: grid;
  gap: 10px;
  margin: 0 auto 22px;
  color: rgba(95, 82, 96, .88);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.6;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72);
}

.annoy-footer-copy strong {
  color: var(--annoy-footer-strong);
  font-weight: 950;
}

.annoy-footer-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.annoy-footer-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow:
    0 8px 18px rgba(148, 163, 184, .12),
    inset 0 1px 0 rgba(255, 255, 255, .24);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.annoy-footer-badge:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow:
    0 12px 26px rgba(190, 95, 143, .15),
    0 8px 18px rgba(96, 165, 250, .13);
}

.annoy-footer-badge span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.annoy-footer-badge .badge-name {
  gap: 5px;
  background: rgba(63, 58, 69, .88);
}

.annoy-footer-badge .badge-value {
  color: #594457;
  background: rgba(255, 232, 243, .86);
}

.annoy-footer-badge.blue .badge-value {
  color: #1d4ed8;
  background: rgba(219, 234, 254, .9);
}

.annoy-footer-badge.green .badge-value {
  color: #15803d;
  background: rgba(220, 252, 231, .9);
}

.annoy-footer-badge.purple .badge-value {
  color: #6d28d9;
  background: rgba(237, 233, 254, .9);
}

.annoy-footer-badge.red .badge-value {
  color: #be123c;
  background: rgba(255, 228, 230, .92);
}

@media (max-width: 720px) {
  .annoy-footer-widget {
    width: min(100% - 16px, 680px);
    margin: 28px auto 18px;
    padding: 26px 14px 22px;
    border-radius: 26px;
  }

  .annoy-footer-socials {
    gap: 12px;
  }

  .annoy-footer-icon {
    width: 48px;
    height: 48px;
  }

  .annoy-footer-icon svg {
    width: 22px;
    height: 22px;
  }

  .annoy-footer-avatar {
    order: -1;
    width: 76px;
    height: 76px;
    margin: 0 100%;
  }

  .annoy-footer-copy {
    font-size: 13px;
  }
}
/* ===== ANNOY FOOTER SOCIAL MODULE END ===== */


/* SIDEBAR_MODULE_OVERLAP_FIX_20260708 */
.annoy-side-custom {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  overflow: visible !important;
}

.annoy-side-custom .annoyx-card,
.annoy-side-custom .annoyx-module {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  clear: both !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.annoy-side-custom .annoyx-title,
.annoy-side-custom .annoyx-tags {
  position: relative !important;
  z-index: 2 !important;
}

.annoy-side-custom .annoyx-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 9px !important;
  align-items: center !important;
}

.annoy-side-custom .annoyx-tag {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  min-height: 32px !important;
  white-space: nowrap !important;
}
