body {
    background: #fff;
    --homepage-surface-bg: linear-gradient(135deg, rgba(248,250,255,.98) 0%, rgba(245,244,255,.94) 48%, #fff 100%);
}

body:has(.home-shell) {
    background: var(--homepage-surface-bg);
}

.header {
    transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}

.header.height {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.header.height::after {
    opacity: 0;
}

.header.height .header-foot {
    background: rgba(255,255,255,.42);
    border-bottom-color: rgba(255,255,255,.18);
    box-shadow: 0 14px 34px rgba(31, 42, 78, .10);
    backdrop-filter: blur(22px) saturate(135%);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.header.height .header-foot::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,.22)),
        radial-gradient(circle at top left, rgba(84,78,233,.12), transparent 30%);
    pointer-events: none;
}

.header.height .header-foot .navbar {
    position: relative;
    z-index: 1;
}

.header .header-top,
.header .header-top .wrap,
.header .header-top .grid-x {
    height: 32px;
}

.header.height .header-top {
    margin-top: -32px;
    opacity: 0;
}

.header .header-foot .navbar {
    min-height: 70px;
}

.header .header-foot > .wrap {
    width: calc(100% - 96px);
    max-width: 1440px;
}

.header .header-top > .wrap {
    width: calc(100% - 96px);
    max-width: 1440px;
}

.header.height .header-foot .navbar {
    min-height: 70px;
}

.header.height .header-foot .nav-info .nav-link-item {
    padding-top: 25px;
    padding-bottom: 25px;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu {
    flex: 1 1 auto;
    margin-left: 0;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.header-auth-area {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.site-notice-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    height: 32px;
    min-height: 32px;
    color: #fff;
}

.site-notice-bar__label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
}

.site-notice-bar__body {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    height: 22px;
    padding-left: 8px;
}

.site-notice-bar__lang {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-width: 64px;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    color: rgba(255,255,255,.92);
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
}

.site-notice-bar__lang em {
    font-style: normal;
    opacity: .55;
}

.site-notice-bar__lang-option {
    cursor: pointer;
    opacity: .72;
    transition: opacity .2s ease, color .2s ease;
}

.site-notice-bar__lang-option.is-active {
    color: #fff;
    opacity: 1;
}

.site-notice-bar__lang:hover {
    color: #fff;
    background: rgba(255,255,255,.16);
}

.site-notice-bar__track {
    display: flex;
    flex-direction: column;
    width: 100%;
    animation: noticeTickerY 12s ease-in-out infinite;
    will-change: transform;
}

.site-notice-bar:hover .site-notice-bar__track {
    animation-play-state: paused;
}

.site-notice-bar__item {
    display: flex;
    align-items: center;
    height: 22px;
}

.site-notice-bar__link {
    display: inline-flex;
    align-items: center;
    width: 100%;
    color: rgba(255,255,255,.92);
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-notice-bar__link::before {
    content: '';
    width: 4px;
    height: 4px;
    margin-right: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #50EAF9 0%, #544EE9 100%);
    box-shadow: 0 0 12px rgba(80,234,249,.45);
}

.site-notice-bar__link:hover {
    color: #fff;
    text-decoration: underline;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    min-width: 320px;
    min-height: 44px;
    padding: 6px 8px 6px 14px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(84,78,233,.12);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(84,78,233,.08);
}

.header-search i {
    color: #544EE9;
}

.header-search input {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    font-size: 14px;
    font-family: AliRegular;
}

.header-search button {
    border: none;
    background: #544EE9;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    border-radius: 999px;
    padding: 10px 16px;
}

.header-search-suggest {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    right: 0;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid rgba(84,78,233,.10);
    background: rgba(255,255,255,.98);
    box-shadow: 0 22px 50px rgba(21,30,54,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 25;
}

.header-search-suggest.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-suggest__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px 8px;
}

.header-search-suggest__history {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 4px 10px 10px;
}

.header-search-suggest__headline {
    color: #6f7485;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.header-search-suggest__clear {
    border: none;
    background: transparent;
    color: #544EE9;
    font-size: 12px;
    font-weight: 700;
}

.header-search .header-search-suggest__item--history {
    background: #ffffff;
    color: #2c3250;
    box-shadow: none;
}

.header-search-suggest__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 14px;
}

.header-search-suggest__item + .header-search-suggest__item {
    margin-top: 4px;
}

.header-search-suggest__history .header-search-suggest__item + .header-search-suggest__item {
    margin-top: 0;
}

.header-search-suggest__item--history {
    position: relative;
    width: auto;
    min-height: 38px;
    padding: 0 18px;
    border: none;
    border-radius: 999px;
    background: #ffffff;
    text-align: left;
    border: 1px solid rgba(84,78,233,.10);
    overflow: hidden;
    transition: color .32s ease, border-color .32s ease, transform .22s ease;
}

.header-search-suggest__item--history::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #544EE9;
    transition: width .32s ease;
    z-index: 0;
}

.header-search-suggest__item--history .header-search-suggest__title {
    position: relative;
    z-index: 1;
    color: #2c3250;
    font-size: 14px;
    font-weight: 600;
}

.header-search-suggest__item--history:hover,
.header-search-suggest__item--history.is-active {
    border-color: #544EE9;
    transform: translateY(-1px);
}

.header-search .header-search-suggest__item--history:hover,
.header-search .header-search-suggest__item--history.is-active {
    color: #fff;
}

.header-search-suggest__item--history:hover .header-search-suggest__title,
.header-search-suggest__item--history.is-active .header-search-suggest__title {
    color: #fff;
}

.header-search-suggest__item--history:hover::after,
.header-search-suggest__item--history.is-active::after {
    width: 100%;
}

.header-search-suggest__item:hover,
.header-search-suggest__item.is-active {
    background: rgba(84,78,233,.08);
}

.header-search-suggest__main {
    min-width: 0;
}

.header-search-suggest__title {
    display: block;
    color: #101622;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.header-search-suggest__type {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(84,78,233,.10);
    color: #544EE9;
    font-size: 12px;
    font-weight: 700;
}

.header-member {
    flex: 0 0 auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border-radius: 999px;
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.header-member:hover {
    transform: translateY(-1px);
}

.header-member--guest {
    padding: 0 12px;
    background: linear-gradient(135deg, #12b7d6 0%, #544EE9 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(84,78,233,.18);
    min-height: 40px;
    font-size: 13px;
}

.header-member--guest i {
    font-size: 14px;
}

.header-member--logged {
    position: static;
    background: transparent;
    border-radius: 20px;
}

.header-member__trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 3px 9px 3px 3px;
    border: 1px solid rgba(84,78,233,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 10px 26px rgba(84,78,233,.08);
    color: #1b2030;
    cursor: default;
}

.header-member__caret {
    font-size: 12px;
    color: #777d90;
}

.header-member__menu {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    min-width: 132px;
    padding: 10px 8px;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(84,78,233,.10);
    box-shadow: 0 20px 44px rgba(21,30,54,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    overflow: hidden;
}

.header-member:hover .header-member__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-member__menu a + a {
    margin-top: 4px;
}

.header-member__menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #1b2030;
    font-size: 14px;
    line-height: 1.35;
    transition: color .25s ease, background-color .25s ease;
}

.header-member__menu a:hover {
    color: #544EE9;
    background: rgba(84,78,233,.08);
}

.header-member__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #544EE9 0%, #50EAF9 100%);
    box-shadow: 0 10px 20px rgba(84,78,233,.18);
}

.header-member__avatar i {
    font-size: 14px;
}

.header-member__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.header-member__name {
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
}

.header .header-foot .nav-info {
    position: static;
}

.header .header-foot .nav-info .nav-item--product {
    position: static;
}

.header .header-foot .nav-info .nav-item--product > .nav-link-item {
    position: relative;
    z-index: 3;
}

.product-mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 1px);
    width: min(1560px, calc(100vw - 32px));
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 14px);
    transition: opacity .26s ease, transform .26s ease, visibility .26s ease;
    z-index: 20;
}

.product-mega-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 15px;
}

.header .header-foot .nav-info .nav-item--product:hover > .product-mega-menu,
.header .header-foot .nav-info .nav-item--product:focus-within > .product-mega-menu,
.header .header-foot .nav-info .nav-item--product.is-open > .product-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.product-mega-menu__inner {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(84,78,233,.10);
    border-radius: 0 0 28px 28px;
    box-shadow: 0 28px 54px rgba(18, 24, 48, .16);
    overflow: hidden;
}

.product-mega-menu__tabs {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 34px;
    background: #ffffff;
    border-bottom: 1px solid rgba(84,78,233,.08);
    overflow-x: auto;
    scrollbar-width: none;
}

.product-mega-menu__tabs::-webkit-scrollbar {
    display: none;
}

.product-mega-menu__tab {
    position: relative;
    flex: 0 0 auto;
    padding: 22px 20px 21px;
    color: #1d1d1f;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 14px 14px 0 0;
    transition: color .2s ease, background-color .2s ease;
}

.product-mega-menu__tab::after {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #544EE9 0%, #50EAF9 100%);
    opacity: 0;
    transform: scaleX(.4);
    transform-origin: center;
    box-shadow: 0 0 12px rgba(84,78,233,.28);
    transition: opacity .22s ease, transform .22s ease;
}

.product-mega-menu__tab:hover,
.product-mega-menu__tab.is-active {
    color: #0f1730;
    background: linear-gradient(180deg, rgba(84,78,233,.06) 0%, rgba(80,234,249,.03) 100%);
}

.product-mega-menu__tab:hover::after,
.product-mega-menu__tab.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.product-mega-menu__body {
    padding: 30px 34px 34px;
    background: #ffffff;
}

.product-mega-menu__panel {
    display: none;
}

.product-mega-menu__panel.is-active {
    display: block;
    animation: megaPanelFade .28s ease both;
}

.product-mega-menu__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 304px;
    gap: 40px;
    align-items: start;
}

.product-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 24px;
}

.product-mega-menu__column {
    min-width: 0;
    padding-left: 18px;
    padding-top: 6px;
    padding-bottom: 6px;
    border-left: 1px solid rgba(84,78,233,.10);
    border-radius: 14px;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.product-mega-menu__column:hover {
    background: #f8faff;
    box-shadow: inset 0 0 0 1px rgba(84,78,233,.07);
    transform: translateY(-1px);
}

.product-mega-menu__group {
    display: inline-block;
    margin-bottom: 14px;
    color: #3f79b8;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.product-mega-menu__group:hover {
    color: #544EE9;
}

.product-mega-menu__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-mega-menu__link {
    color: #111827;
    font-size: 14px;
    line-height: 1.55;
}

.product-mega-menu__link:hover {
    color: #544EE9;
}

.product-mega-menu__promo {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 6px;
    animation: megaPromoFade .34s ease both;
}

.product-mega-menu__promo-media {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    /* original: linear-gradient(135deg, rgba(80,234,249,.22) 0%, rgba(84,78,233,.12) 100%) */
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.85), 0 24px 46px rgba(84,78,233,.10);
    aspect-ratio: 1 / 0.9;
}

.product-mega-menu__promo-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .42s ease, opacity .28s ease;
}

.product-mega-menu__panel.is-active .product-mega-menu__promo-media img {
    transform: none;
}

.product-mega-menu__promo-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 2px;
}

.product-mega-menu__promo-copy strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #544ee9;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.product-mega-menu__promo-copy strong::before {
    content: '';
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.product-mega-menu__promo-copy span {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
}

@keyframes megaPanelFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes megaPromoFade {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.site-login-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
}

.site-login-modal.is-open {
    display: block;
}

.site-login-modal__mask {
    position: absolute;
    inset: 0;
    background: rgba(10, 18, 52, .42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.site-login-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(94vw, 860px);
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(84,78,233,.10);
    box-shadow: 0 28px 70px rgba(18, 26, 59, .20);
    transform: translate(-50%, -50%);
}

.site-login-modal__layout {
    display: grid;
    grid-template-columns: minmax(320px, 1.22fr) minmax(0, 1fr);
    gap: 26px;
    align-items: stretch;
}

.site-login-modal__main {
    min-width: 0;
    position: relative;
    z-index: 3;
}

.site-login-hero {
    position: relative;
    min-height: 492px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 34%),
        radial-gradient(circle at 30% 26%, rgba(255,255,255,.72), rgba(255,255,255,0) 34%),
        linear-gradient(180deg, #eef3ff 0%, #dfe8ff 48%, #edf7ff 100%);
    border: 1px solid rgba(84,78,233,.08);
}

.site-login-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(120,146,214,.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(120,146,214,.05) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 72%);
    pointer-events: none;
}

.site-login-hero__copy {
    position: absolute;
    left: 26px;
    top: 28px;
    z-index: 2;
    max-width: 220px;
}

.site-login-hero__copy strong {
    display: block;
    margin-bottom: 8px;
    color: #2a3d72;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
}

.site-login-hero__copy span {
    display: block;
    color: #607295;
    font-size: 13px;
    line-height: 1.7;
}

.site-login-hero::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 10px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(164,188,236,.32) 0%, rgba(164,188,236,.12) 100%);
    filter: blur(1px);
}

.site-login-hero__glow,
.site-login-hero__bubble {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.site-login-hero__glow--one {
    width: 180px;
    height: 180px;
    top: 24px;
    left: -32px;
    background: radial-gradient(circle, rgba(80,151,255,.28) 0%, rgba(80,151,255,0) 72%);
    animation: siteLoginGlowFloat 7s ease-in-out infinite;
}

.site-login-hero__glow--two {
    width: 160px;
    height: 160px;
    right: -18px;
    bottom: 48px;
    background: radial-gradient(circle, rgba(18,183,214,.24) 0%, rgba(18,183,214,0) 72%);
    animation: siteLoginGlowFloat 8.4s ease-in-out infinite reverse;
}

.site-login-hero__bubble {
    background: rgba(255,255,255,.46);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.site-login-hero__bubble--one {
    width: 30px;
    height: 30px;
    top: 86px;
    right: 28px;
    animation: siteLoginBubbleRise 6s ease-in-out infinite;
}

.site-login-hero__bubble--two {
    width: 18px;
    height: 18px;
    top: 144px;
    right: 64px;
    animation: siteLoginBubbleRise 5s ease-in-out infinite 1s;
}

.site-login-mascots {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    height: 270px;
}

.site-login-mascots::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    height: 86px;
    border-radius: 999px 999px 22px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(160,187,235,.32) 100%);
}

.site-login-mascots::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 22px;
    height: 38px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.34) 0%, rgba(182,203,241,.30) 100%);
    opacity: .8;
}

.site-login-mascot {
    position: absolute;
    bottom: 0;
    width: 98px;
    height: 170px;
    transform-origin: center bottom;
    animation: siteLoginMascotBob 4.2s ease-in-out infinite;
    animation-play-state: running;
    will-change: transform;
    backface-visibility: hidden;
}

.site-login-mascot--one {
    left: 6px;
    transform: translateX(0) rotate(-6deg);
}

.site-login-mascot--two {
    left: 116px;
    animation-delay: .8s;
    transform: translateX(0) translateY(4px);
}

.site-login-mascot--three {
    left: 232px;
    animation-delay: 1.6s;
    transform: translateX(0) rotate(6deg);
}

.site-login-mascot__shadow {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 18px;
    border-radius: 999px;
    background: rgba(88,112,163,.18);
    filter: blur(4px);
    animation: siteLoginShadowPulse 4.8s ease-in-out infinite;
}

.site-login-mascot__body {
    position: absolute;
    left: 13px;
    top: 10px;
    width: 72px;
    height: 144px;
    border-radius: 36px 36px 28px 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 36%, #8ea8ff 36%, #6e7cf4 100%);
    box-shadow: 0 14px 28px rgba(96,110,181,.18);
}

.site-login-mascot__body::before,
.site-login-mascot__body::after {
    content: "";
    position: absolute;
    top: 46px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255,173,188,.52);
    filter: blur(.2px);
}

.site-login-mascot__body::before {
    left: 12px;
}

.site-login-mascot__body::after {
    right: 12px;
}

.site-login-mascot--one .site-login-mascot__body::after,
.site-login-mascot--one .site-login-mascot__body::before {
    top: 48px;
}

.site-login-mascot--two .site-login-mascot__body {
    left: 9px;
    top: 18px;
    width: 80px;
    height: 128px;
    border-radius: 44px 44px 30px 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 36%, #7ad8f4 36%, #3aa7e2 100%);
}

.site-login-mascot--two .site-login-mascot__body::before,
.site-login-mascot--two .site-login-mascot__body::after {
    top: 50px;
}

.site-login-mascot--three .site-login-mascot__body {
    left: 17px;
    top: 26px;
    width: 62px;
    height: 118px;
    border-radius: 30px 30px 24px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbff 36%, #b79cff 36%, #7e63eb 100%);
}

.site-login-mascot--three .site-login-mascot__body::before,
.site-login-mascot--three .site-login-mascot__body::after {
    top: 44px;
    width: 9px;
    height: 9px;
}

.site-login-mascot__eye {
    position: absolute;
    top: 54px;
    width: 10px;
    height: 12px;
    border-radius: 999px;
    background: #25314f;
    transform-origin: center;
    animation: siteLoginBlink 5.4s infinite;
}

.site-login-mascot__eye--left {
    left: 33px;
}

.site-login-mascot__eye--right {
    right: 33px;
}

.site-login-mascot--two .site-login-mascot__eye {
    top: 58px;
}

.site-login-mascot--two .site-login-mascot__eye--left {
    left: 31px;
}

.site-login-mascot--two .site-login-mascot__eye--right {
    right: 31px;
}

.site-login-mascot--three .site-login-mascot__eye {
    top: 64px;
    width: 8px;
    height: 10px;
}

.site-login-mascot--three .site-login-mascot__eye--left {
    left: 37px;
}

.site-login-mascot--three .site-login-mascot__eye--right {
    right: 37px;
}

.site-login-mascot--one .site-login-mascot__eye--left,
.site-login-mascot--one .site-login-mascot__eye--right {
    animation-name: siteLoginBlink, siteLoginLookAround;
    animation-duration: 4.6s, 6.8s;
    animation-timing-function: ease, ease-in-out;
    animation-iteration-count: infinite, infinite;
}

.site-login-mascot--one .site-login-mascot__eye {
    animation-duration: 4.6s;
}

.site-login-mascot--two .site-login-mascot__eye {
    animation-name: siteLoginBlink, siteLoginLookAroundCenter;
    animation-duration: 5.8s, 5.6s;
    animation-timing-function: ease, ease-in-out;
    animation-iteration-count: infinite, infinite;
}

.site-login-mascot--three .site-login-mascot__eye {
    animation-name: siteLoginBlink, siteLoginLookAround;
    animation-duration: 4.9s, 7.2s;
    animation-timing-function: ease, ease-in-out;
    animation-iteration-count: infinite, infinite;
}

.site-login-mascot__body {
    overflow: visible;
}

.site-login-mascot::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 78px;
    width: 18px;
    height: 8px;
    border-bottom: 3px solid rgba(37,49,79,.8);
    border-radius: 0 0 18px 18px;
    opacity: .92;
}

.site-login-mascot::after {
    content: "";
    position: absolute;
    left: 39px;
    top: 16px;
    width: 22px;
    height: 12px;
    border-radius: 999px 999px 6px 6px;
    background: rgba(255,255,255,.7);
    box-shadow: 0 2px 6px rgba(126,143,190,.12);
}

.site-login-mascot--two::before {
    left: 41px;
    top: 82px;
    width: 20px;
    border-bottom-width: 2px;
    transform: rotate(-4deg);
}

.site-login-mascot--two::after {
    left: 36px;
    top: 12px;
    width: 30px;
    height: 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.62);
}

.site-login-mascot--three::before {
    left: 42px;
    top: 86px;
    width: 12px;
    height: 6px;
    border-bottom-width: 2px;
    border-radius: 0 0 12px 12px;
    transform: scaleX(.9);
}

.site-login-mascot--three::after {
    left: 40px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,.7);
}

.site-login-mascot__arm {
    position: absolute;
    top: 90px;
    width: 20px;
    height: 68px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #dbe5ff 34%, #8da5ff 34%, #7884f0 100%);
    transform-origin: top center;
    transition: transform .3s ease, top .3s ease;
    box-shadow: 0 8px 14px rgba(80,96,164,.12);
}

.site-login-mascot--two .site-login-mascot__arm {
    top: 88px;
    width: 21px;
    height: 60px;
    background: linear-gradient(180deg, #ffffff 0%, #e0f8ff 34%, #75d7f2 34%, #3aa7e2 100%);
}

.site-login-mascot--three .site-login-mascot__arm {
    top: 96px;
    width: 16px;
    height: 52px;
    background: linear-gradient(180deg, #ffffff 0%, #efe9ff 34%, #b99fff 34%, #7e63eb 100%);
}

.site-login-mascot__arm--left {
    left: 0;
    transform: rotate(16deg);
}

.site-login-mascot__arm--right {
    right: 0;
    transform: rotate(-16deg);
}

.site-login-mascot--one .site-login-mascot__arm--left {
    transform: rotate(20deg);
    animation: siteLoginWaveLeft 2.1s ease-in-out infinite;
}

.site-login-mascot--one .site-login-mascot__arm--right {
    transform: rotate(-10deg);
    animation: siteLoginArmRestRight 3.3s ease-in-out infinite;
}

.site-login-mascot--two .site-login-mascot__arm--left {
    transform: rotate(8deg);
    animation: siteLoginArmBounce 2.4s ease-in-out infinite .15s;
}

.site-login-mascot--two .site-login-mascot__arm--right {
    transform: rotate(-24deg);
    animation: siteLoginArmBounceRight 2.4s ease-in-out infinite .15s;
}

.site-login-mascot--three .site-login-mascot__arm--left {
    transform: rotate(24deg);
    animation: siteLoginWaveSmall 2.6s ease-in-out infinite .8s;
}

.site-login-mascot--three .site-login-mascot__arm--right {
    transform: rotate(-18deg);
    animation: siteLoginWaveRight 2.3s ease-in-out infinite .5s;
}

.site-login-mascot--two {
    animation-name: siteLoginMascotBobCenter;
}

.site-login-mascot--three {
    animation-name: siteLoginMascotBobRight;
}

.site-login-mascot--one .site-login-mascot__shadow {
    left: 18px;
    right: 18px;
}

.site-login-mascot--two .site-login-mascot__shadow {
    left: 12px;
    right: 12px;
}

.site-login-mascot--three .site-login-mascot__shadow {
    left: 20px;
    right: 20px;
}

.site-login-mascots.is-covering .site-login-mascot__eye {
    animation: none;
    transform: scaleY(.18);
}

.site-login-mascots.is-covering .site-login-mascot,
.site-login-mascots.is-covering .site-login-mascot__shadow {
    animation: none;
}

.site-login-mascots.is-covering .site-login-mascot__arm--left {
    top: 42px;
    transform: translateX(24px) rotate(-48deg);
    animation: none;
}

.site-login-mascots.is-covering .site-login-mascot__arm--right {
    top: 42px;
    transform: translateX(-24px) rotate(48deg);
    animation: none;
}

.site-login-mascots.is-covering .site-login-mascot::before {
    opacity: .24;
}

.site-login-mascots.is-covering .site-login-mascot::after {
    opacity: .45;
}

.site-login-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    color: #6f7485;
    background: rgba(84,78,233,.08);
    font-size: 22px;
    line-height: 1;
}

.site-login-modal__head {
    margin-bottom: 20px;
}

.site-login-modal__eyebrow {
    margin-bottom: 8px;
    color: #544EE9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
}

.site-login-modal__head h3 {
    margin-bottom: 8px;
    color: #161922;
    font-size: 28px;
    line-height: 1.2;
}

.site-login-modal__head p {
    color: #6f7485;
    font-size: 14px;
    line-height: 1.7;
}

.site-login-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 4;
}

.site-login-switch {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(84,78,233,.06);
}

.site-login-switch__item {
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #5c6680;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.site-login-switch__item.is-active {
    color: #20263d;
    background: #fff;
    box-shadow: 0 8px 18px rgba(84,78,233,.08);
}

.site-login-pane {
    display: none;
    flex-direction: column;
    gap: 14px;
}

.site-login-pane.is-active {
    display: flex;
}

.site-login-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-login-form__field span {
    color: #2a3042;
    font-size: 13px;
    font-weight: 600;
}

.site-login-form__field input {
    height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(84,78,233,.12);
    border-radius: 14px;
    background: #fff;
    font-size: 14px;
}

.site-login-form__field input:focus {
    border-color: rgba(84,78,233,.34);
    box-shadow: 0 0 0 4px rgba(84,78,233,.08);
}

.site-login-form__inline {
    display: grid;
    grid-template-columns: 1fr 126px;
    gap: 10px;
    position: relative;
    z-index: 5;
}

.site-login-form__code-btn {
    height: 46px;
    border: 1px solid rgba(84,78,233,.14);
    border-radius: 14px;
    background: #f7f8ff;
    color: #544EE9;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    z-index: 6;
    pointer-events: auto;
}

.site-login-form__code-btn[disabled] {
    color: #8d95ad;
    background: #f1f3fa;
}

.site-login-form__field--turnstile {
    gap: 8px;
}

.site-login-turnstile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 8px 10px;
    border-radius: 16px;
    border: 1px solid rgba(84,78,233,.10);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 8px 18px rgba(84,78,233,.06);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.site-login-turnstile > div {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.site-login-turnstile iframe {
    max-width: 100%;
    border-radius: 12px;
}

.site-login-form__field--turnstile:focus-within .site-login-turnstile {
    border-color: rgba(84,78,233,.22);
    box-shadow: 0 0 0 4px rgba(84,78,233,.06), 0 10px 22px rgba(84,78,233,.08);
}

.site-login-turnstile__tip {
    min-height: 0;
    color: #7282a2;
    font-size: 12px;
    line-height: 1.45;
    padding-left: 2px;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity .2s ease, transform .2s ease, color .2s ease;
}

.site-login-turnstile__tip:not(:empty) {
    min-height: 18px;
    opacity: 1;
    transform: translateY(0);
}

.site-login-turnstile__tip[data-state="loading"] {
    color: #6277aa;
}

.site-login-turnstile__tip[data-state="error"] {
    color: #cc5757;
}

.site-login-turnstile__tip[data-state="success"] {
    color: #2f8f56;
}

.site-login-turnstile--missing {
    justify-content: flex-start;
    color: #c14a4a;
    font-size: 13px;
    font-weight: 600;
    background: #fff7f7;
    border-color: rgba(227,113,113,.25);
    box-shadow: none;
}

.site-login-form__hint {
    color: #6c7590;
    font-size: 12px;
    line-height: 1.6;
    transition: color .2s ease;
}

.site-login-form__hint[data-state="success"] {
    color: #2f8f56;
}

.site-login-form__hint[data-state="error"] {
    color: #c14a4a;
}

.site-login-wechat {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-login-wechat__qr {
    min-height: 288px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(84,78,233,.10);
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    box-shadow: 0 14px 30px rgba(84,78,233,.07);
}

.site-login-wechat__qr iframe {
    max-width: 100%;
}

.site-login-wechat__desc {
    margin: 0;
    color: #6c7590;
    font-size: 13px;
    line-height: 1.65;
}

.site-login-wechat__loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    color: #6c7590;
    font-size: 14px;
}

.site-login-form__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: -2px;
}

.site-login-form__remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4f566b;
    font-size: 13px;
}

.site-login-form__remember input {
    width: 14px;
    height: 14px;
    accent-color: #544EE9;
}

.site-login-form__forgot {
    color: #544EE9;
    font-size: 13px;
    font-weight: 600;
}

.site-login-form__forgot:hover {
    text-decoration: underline;
}

.site-login-form__submit {
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    background: linear-gradient(135deg, #12b7d6 0%, #544EE9 100%);
    box-shadow: 0 16px 34px rgba(84,78,233,.20);
    position: relative;
    z-index: 6;
    pointer-events: auto;
}

@keyframes siteLoginBlink {
    0%, 44%, 48%, 100% { transform: scaleY(1); }
    46% { transform: scaleY(.14); }
}

@keyframes siteLoginLookAround {
    0%, 100% { margin-left: 0; margin-right: 0; }
    20% { margin-left: -1px; margin-right: 1px; }
    45% { margin-left: 2px; margin-right: -2px; }
    70% { margin-left: 0; margin-right: 0; }
}

@keyframes siteLoginLookAroundCenter {
    0%, 100% { margin-left: 0; margin-right: 0; }
    30% { margin-left: 1px; margin-right: -1px; }
    60% { margin-left: -2px; margin-right: 2px; }
    80% { margin-left: 1px; margin-right: -1px; }
}

@keyframes siteLoginMascotBob {
    0% { transform: translate3d(0, 0, 0) rotate(-8deg) scale(1); }
    10% { transform: translate3d(12px, -6px, 0) rotate(-5deg) scale(1.02); }
    22% { transform: translate3d(34px, -22px, 0) rotate(0deg) scale(1.04); }
    34% { transform: translate3d(58px, -10px, 0) rotate(4deg) scale(1); }
    48% { transform: translate3d(66px, -20px, 0) rotate(7deg) scale(1.03); }
    60% { transform: translate3d(40px, -4px, 0) rotate(0deg) scale(1); }
    76% { transform: translate3d(14px, -14px, 0) rotate(-6deg) scale(1.02); }
    100% { transform: translate3d(0, 0, 0) rotate(-8deg) scale(1); }
}

@keyframes siteLoginMascotBobCenter {
    0% { transform: translate3d(0, 6px, 0) rotate(0deg) scale(1); }
    12% { transform: translate3d(-18px, 0, 0) rotate(-4deg) scale(1); }
    24% { transform: translate3d(-42px, -16px, 0) rotate(-8deg) scale(1.03); }
    36% { transform: translate3d(-20px, -3px, 0) rotate(-2deg) scale(1); }
    50% { transform: translate3d(10px, -20px, 0) rotate(5deg) scale(1.04); }
    64% { transform: translate3d(34px, -7px, 0) rotate(8deg) scale(1); }
    78% { transform: translate3d(18px, -18px, 0) rotate(3deg) scale(1.02); }
    100% { transform: translate3d(0, 6px, 0) rotate(0deg) scale(1); }
}

@keyframes siteLoginMascotBobRight {
    0% { transform: translate3d(0, 0, 0) rotate(8deg) scale(1); }
    14% { transform: translate3d(-14px, -5px, 0) rotate(6deg) scale(1.01); }
    28% { transform: translate3d(-38px, -20px, 0) rotate(1deg) scale(1.04); }
    42% { transform: translate3d(-62px, -8px, 0) rotate(-3deg) scale(1); }
    56% { transform: translate3d(-70px, -18px, 0) rotate(-7deg) scale(1.03); }
    72% { transform: translate3d(-36px, -4px, 0) rotate(0deg) scale(1); }
    86% { transform: translate3d(-12px, -14px, 0) rotate(6deg) scale(1.02); }
    100% { transform: translate3d(0, 0, 0) rotate(8deg) scale(1); }
}

@keyframes siteLoginWaveLeft {
    0%, 100% { transform: rotate(16deg); }
    12% { transform: rotate(66deg); }
    24% { transform: rotate(10deg); }
    36% { transform: rotate(70deg); }
    48% { transform: rotate(14deg); }
    60% { transform: rotate(62deg); }
    72% { transform: rotate(8deg); }
    84% { transform: rotate(54deg); }
}

@keyframes siteLoginArmRestRight {
    0%, 100% { transform: rotate(-12deg); }
    50% { transform: rotate(6deg); }
}

@keyframes siteLoginArmBounce {
    0%, 100% { transform: rotate(8deg); }
    20% { transform: rotate(36deg); }
    40% { transform: rotate(10deg); }
    60% { transform: rotate(30deg); }
    80% { transform: rotate(6deg); }
}

@keyframes siteLoginArmBounceRight {
    0%, 100% { transform: rotate(-24deg); }
    20% { transform: rotate(6deg); }
    40% { transform: rotate(-14deg); }
    60% { transform: rotate(10deg); }
    80% { transform: rotate(-8deg); }
}

@keyframes siteLoginWaveSmall {
    0%, 100% { transform: rotate(22deg); }
    24% { transform: rotate(52deg); }
    48% { transform: rotate(14deg); }
    72% { transform: rotate(44deg); }
    88% { transform: rotate(20deg); }
}

@keyframes siteLoginWaveRight {
    0%, 100% { transform: rotate(-18deg); }
    16% { transform: rotate(-54deg); }
    32% { transform: rotate(-6deg); }
    48% { transform: rotate(-50deg); }
    64% { transform: rotate(-10deg); }
    80% { transform: rotate(-40deg); }
}

@keyframes siteLoginShadowPulse {
    0%, 100% { transform: scaleX(1); opacity: .9; }
    50% { transform: scaleX(.84); opacity: .56; }
}

@keyframes siteLoginGlowFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: .92; }
    50% { transform: translateY(-10px) scale(1.05); opacity: 1; }
}

@keyframes siteLoginBubbleRise {
    0%, 100% { transform: translateY(0); opacity: .5; }
    50% { transform: translateY(-12px); opacity: .92; }
}

@media (max-width: 768px) {
    .site-login-modal__dialog {
        width: min(94vw, 460px);
        padding: 22px 18px;
    }

    .site-login-modal__layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .site-login-hero {
        min-height: 154px;
    }

    .site-login-hero__copy {
        left: 18px;
        top: 16px;
        max-width: 180px;
    }

    .site-login-hero__copy strong {
        font-size: 18px;
    }

    .site-login-hero__copy span {
        font-size: 12px;
        line-height: 1.5;
    }

    .site-login-mascots {
        left: 50%;
        width: 210px;
        right: auto;
        transform: translateX(-50%) scale(.82);
        transform-origin: bottom center;
        bottom: 10px;
    }

    .site-login-modal__head {
        margin-bottom: 16px;
    }
}

.index_banner {
    position: relative;
    overflow: hidden;
    margin-top: -14px;
    margin-bottom: 0;
}

.index_banner .swiper-container {
    position: relative;
    height: clamp(320px, 30vw, 560px);
}

.index_banner .swiper-wrapper,
.index_banner .swiper-slide,
.index_banner .swiper-slide > a {
    height: 100%;
}

.index_banner .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_banner .swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 24px !important;
    top: auto !important;
    width: auto;
    height: auto;
    padding: 8px 12px;
    display: flex;
    gap: 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.30);
    border: 1px solid rgba(255,255,255,.58);
    box-shadow: 0 18px 40px rgba(84,78,233,.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(-50%);
}

.index_banner .swiper-pagination .swiper-pagination-bullet {
    position: relative;
    width: 72px;
    height: 5px;
    margin: 0 !important;
    overflow: hidden;
    opacity: 1;
    border-radius: 999px;
    background: rgba(84,78,233,.18);
    border: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}

.index_banner .swiper-pagination .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #544EE9 0%, #50EAF9 100%);
    opacity: 0;
}

.index_banner .swiper-pagination .swiper-pagination-bullet-active {
    background: rgba(84,78,233,.12);
}

.index_banner .swiper-pagination .swiper-pagination-bullet-active::after {
    opacity: 1;
    animation: fillProgressBar 5s linear forwards;
}

.index_pro_type {
    padding: 36px 0 78px;
}

.header_line {
    height: 92px;
}

.header.height ~ .header_line {
    height: 60px;
}

.header_line + .banner {
    margin-top: -1px;
}

.header_line + .banner .p img {
    display: block;
}

.header .header-top {
    background: linear-gradient(90deg, #0a0a5e 0%, #121d78 100%);
    height: 32px;
}

.header .header-top .grid-x {
    align-items: center;
    min-height: 32px;
    height: 32px;
}

.header .header-top .header-top-info,
.header .header-top .header-top-info ul,
.header .header-top .header-top-info ul li,
.header .header-top .header-top-info ul li::after {
    display: none;
}

.header .header-foot .navbar .logo {
    margin-right: 20px;
    width: 154px;
}

.header .header-foot .nav-info .nav-link-item {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 19px;
    font-weight: 400;
}

.header .header-foot .nav-info .nav-link-item i.iconfont-xia {
    display: none !important;
    margin-left: 4px;
    font-size: 12px;
    color: #6c7389;
}

.header .header-foot .nav-info .sub-menu {
    left: 0;
    top: calc(100% + 2px);
    min-width: 188px;
    padding: 10px 8px;
    border-radius: 18px;
    border: 1px solid rgba(84,78,233,.10);
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 44px rgba(21,30,54,.12);
    transform: translateY(12px);
    overflow: hidden;
}

.header .header-foot .nav-info li:hover > .sub-menu {
    border-radius: 18px;
    transform: translateY(0);
}

.header .header-foot .nav-info .sub-menu--item + .sub-menu--item {
    margin-top: 4px;
}

.header .header-foot .nav-info .sub-menu--item > a {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.35;
    border-radius: 12px;
}

.header .header-foot .nav-info .sub-menu--item > a::after {
    border-radius: 12px;
}

@keyframes noticeTickerY {
    0%, 22% {
        transform: translateY(0);
    }
    28%, 50% {
        transform: translateY(-22px);
    }
    56%, 78% {
        transform: translateY(-44px);
    }
    84%, 100% {
        transform: translateY(-66px);
    }
}

.catalog-home-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 28px;
}

.search-page {
    padding-top: 48px;
    padding-bottom: 72px;
}

.search-page__hero {
    padding: 38px 40px;
    border-radius: 30px;
    border: 1px solid rgba(84,78,233,.08);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.52), transparent 30%),
        linear-gradient(160deg, rgba(84,78,233,.95), rgba(50,49,130,.92));
    color: #fff;
    box-shadow: 0 24px 56px rgba(84,78,233,.18);
}

.search-page__eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

.search-page__hero h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1.15;
    color: #fff;
}

.search-page__desc {
    margin: 14px 0 0;
    max-width: 620px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
    line-height: 1.9;
}

.search-page__form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
}

.search-page__form input {
    flex: 1 1 auto;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 15px;
}

.search-page__form input::placeholder {
    color: rgba(255,255,255,.68);
}

.search-page__form button {
    min-width: 112px;
    min-height: 52px;
    border: none;
    border-radius: 999px;
    background: #fff;
    color: #544EE9;
    font-size: 15px;
    font-weight: 700;
}

.search-page__body {
    margin-top: 30px;
}

.search-page__meta {
    margin-bottom: 18px;
    color: #6f7485;
    font-size: 14px;
}

.search-page__meta strong {
    color: #1d1d1f;
}

.search-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.search-page__item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(84,78,233,.08);
    background: rgba(255,255,255,.88);
    box-shadow: 0 18px 42px rgba(84,78,233,.08);
}

.search-page__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 46px rgba(84,78,233,.12);
}

.search-page__item-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(84,78,233,.08);
    color: #544EE9;
    font-size: 12px;
    font-weight: 700;
}

.search-page__item h3 {
    margin: 0;
    color: #111827;
    font-size: 20px;
    line-height: 1.45;
}

.search-page__item p {
    margin: 10px 0 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

.search-page__item-action {
    flex: 0 0 auto;
    color: #544EE9;
    font-size: 14px;
    font-weight: 700;
}

.search-page__empty {
    padding: 56px 24px;
    border-radius: 28px;
    border: 1px dashed rgba(84,78,233,.18);
    background: rgba(255,255,255,.76);
    text-align: center;
}

.search-page__empty h3 {
    margin: 0;
    color: #1d1d1f;
    font-size: 24px;
}

.search-page__empty p {
    margin: 12px 0 0;
    color: #6f7485;
    font-size: 14px;
}

.right_nav {
    right: 18px;
    bottom: 32px;
    position: fixed;
    z-index: 8;
}

.right_nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.right_nav ul li {
    width: 62px;
    height: 62px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(84,78,233,.10);
    box-shadow: 0 12px 28px rgba(21,30,54,.12);
    overflow: visible;
}

.right_nav ul li:hover {
    background: rgba(255,255,255,.98);
}

.right_nav ul li .iconBox {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: visible;
}

.right_nav ul li i {
    color: #6a6a6a;
    font-size: 30px;
    line-height: 1;
}

.right_nav ul li h4 {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    margin: 0;
    padding: 0 14px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(84,78,233,.10);
    box-shadow: 0 16px 34px rgba(21,30,54,.14);
    color: #2d344e;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    pointer-events: none;
    z-index: 2;
}

.right_nav ul li h4::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left-color: rgba(255,255,255,.98);
}

.right_nav ul li:hover h4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.right_nav ul li .right_nav_num {
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    line-height: 18px;
    font-size: 11px;
    font-weight: 700;
    background: #e53935;
    border: 2px solid #fff;
    top: -2px;
    right: -1px;
    z-index: 3;
}

.right_nav .right_navul2 {
    opacity: 1 !important;
    margin-top: 10px;
}

.catalog-home-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #161922;
    margin-bottom: 0;
}

.catalog-home-title p {
    max-width: 680px;
    color: #6f7485;
    font-size: 15px;
    line-height: 1.9;
    font-family: AliRegular;
}

.catalog-home-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    background: #544EE9;
    color: #fff;
    box-shadow: 0 16px 32px rgba(84,78,233,.18);
}

.catalog-home-shell {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    align-items: stretch;
}

.catalog-home-feature__inner {
    height: 100%;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.52), transparent 30%),
        linear-gradient(160deg, rgba(84,78,233,.95), rgba(50,49,130,.92));
    color: #fff;
    box-shadow: 0 24px 60px rgba(84,78,233,.22);
}

.catalog-home-feature__inner--visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
}

.catalog-home-feature__top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.catalog-home-feature__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .14em;
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    opacity: 1;
}

.catalog-home-feature__inner h3 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.catalog-home-feature__inner p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,.82);
    font-family: AliRegular;
}

.catalog-home-feature__stats {
    display: flex;
    gap: 12px;
    margin: 22px 0;
}

.catalog-home-stat {
    flex: 1 1 0;
    padding: 14px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.16);
}

.catalog-home-stat strong {
    display: block;
    font-size: 26px;
    line-height: 1;
}

.catalog-home-stat span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255,255,255,.8);
}

.catalog-home-character {
    position: relative;
    min-height: 432px;
    border-radius: 24px;
    overflow: hidden;
    padding: 8px 10px 68px;
    background:
        radial-gradient(circle at 50% 14%, rgba(255,255,255,.34), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(131,164,255,.20), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
}

.catalog-home-character::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0)),
        linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.catalog-home-character::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 20px;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.38), transparent 82%);
    pointer-events: none;
    opacity: .28;
}

.catalog-home-character__glow {
    position: absolute;
    left: 50%;
    bottom: 62px;
    width: 252px;
    height: 252px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,209,255,.32), rgba(124,209,255,0));
    transform: translateX(-50%);
    filter: blur(20px);
    opacity: .72;
    animation: catalogHomeGlowPulse 5.4s ease-in-out infinite;
}

.catalog-home-character__ring {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.16);
    transform: translateX(-50%);
    box-shadow:
        0 0 0 12px rgba(255,255,255,.03),
        0 0 32px rgba(135,164,255,.12);
    animation: catalogHomeRingPulse 5.4s ease-in-out infinite;
}

.catalog-home-character__hero {
    position: relative;
    z-index: 2;
    margin: -6px auto 0;
    width: min(100%, 306px);
    filter: drop-shadow(0 24px 36px rgba(15,21,80,.22));
    animation: catalogHomeFloat 5.4s ease-in-out infinite;
}

.catalog-home-character__hero img {
    display: block;
    width: 100%;
    height: auto;
}

.catalog-home-character__stage {
    position: absolute;
    left: 50%;
    bottom: 44px;
    z-index: 1;
    width: 196px;
    height: 24px;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, rgba(255,255,255,.38), rgba(255,255,255,0) 70%),
        linear-gradient(90deg, rgba(129,140,248,.28), rgba(249,115,22,.14), rgba(129,140,248,.28));
    transform: translateX(-50%);
    filter: blur(.4px);
    box-shadow: 0 14px 24px rgba(24,27,77,.16);
    animation: catalogHomeStageGlow 5.4s ease-in-out infinite;
}

.catalog-home-character__meta {
    position: absolute;
    left: 50%;
    bottom: 6px;
    z-index: 3;
    min-width: 132px;
    padding: 11px 20px 12px;
    border-radius: 999px;
    background: rgba(35,34,103,.54);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.08),
        0 12px 24px rgba(18,18,58,.16);
    transform: translateX(-50%);
    text-align: center;
    backdrop-filter: blur(14px);
}

.catalog-home-character__meta strong {
    display: block;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: .04em;
}

@keyframes catalogHomeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@keyframes catalogHomeGlowPulse {
    0%, 100% {
        opacity: .72;
        transform: translateX(-50%) scale(.96);
    }
    50% {
        opacity: .96;
        transform: translateX(-50%) scale(1.04);
    }
}

@keyframes catalogHomeRingPulse {
    0%, 100% {
        opacity: .62;
        transform: translateX(-50%) scale(.985);
    }
    50% {
        opacity: .9;
        transform: translateX(-50%) scale(1.015);
    }
}

@keyframes catalogHomeStageGlow {
    0%, 100% {
        opacity: .72;
        transform: translateX(-50%) scaleX(.98);
    }
    50% {
        opacity: .95;
        transform: translateX(-50%) scaleX(1.03);
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-home-character__glow,
    .catalog-home-character__ring,
    .catalog-home-character__hero,
    .catalog-home-character__stage {
        animation: none;
    }
}

.catalog-home-feature__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 46px;
    padding: 0 20px;
    margin-top: auto;
    border-radius: 999px;
    background: #fff;
    color: #544EE9;
    font-weight: 600;
}

.catalog-home-grid-wrap {
    padding: 18px;
    border-radius: 28px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 22px 50px rgba(84,78,233,.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.index_pro_type .bd ul.catalog-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.index_pro_type .bd ul.catalog-home-grid li {
    width: auto;
    padding: 0;
}

.index_pro_type .bd ul.catalog-home-grid li a {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,247,255,.92));
    border: 1px solid rgba(84,78,233,.08);
    box-shadow: none;
    text-align: left;
}

.index_pro_type .bd ul.catalog-home-grid li a:hover {
    border-color: rgba(84,78,233,.24);
    box-shadow: 0 16px 36px rgba(84,78,233,.12);
    transform: translateY(-4px);
}

.catalog-home-grid__media {
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f6ff;
}

.catalog-home-grid__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index_pro_type .bd ul.catalog-home-grid li a h3 {
    padding: 0;
    font-size: 19px;
    line-height: 1.4;
    text-align: left;
}

.catalog-home-grid__body {
    min-width: 0;
}

.catalog-home-grid__body span {
    color: #544EE9;
    font-size: 13px;
    line-height: 1.4;
}

.product-hub {
    padding-bottom: 84px;
}

.product-hub__hero {
    padding: 34px 0 30px;
    background:
        radial-gradient(circle at top left, rgba(84,78,233,.14), transparent 30%),
        linear-gradient(180deg, #fbfcff 0%, #f4f7ff 100%);
}

.product-hub__hero--inner {
    padding-bottom: 22px;
}

.product-hub__breadcrumb {
    padding-top: 0;
    margin-bottom: 22px;
}

.product-hub__hero-shell,
.product-hub__inner-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 360px;
    gap: 24px;
    align-items: stretch;
}

.product-hub__hero-copy,
.product-hub__inner-main {
    padding: 34px 36px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.5), transparent 28%),
        linear-gradient(145deg, rgba(84,78,233,.98), rgba(49,53,133,.94));
    color: #fff;
    box-shadow: 0 28px 70px rgba(84,78,233,.18);
}

.product-hub__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .18em;
    color: rgba(255,255,255,.82);
}

.product-hub__hero-copy h1,
.product-hub__inner-main h1 {
    margin-bottom: 14px;
    font-size: 44px;
    line-height: 1.12;
    color: #fff;
}

.product-hub__hero-copy p,
.product-hub__inner-main p {
    max-width: 760px;
    color: rgba(255,255,255,.84);
    font-size: 15px;
    line-height: 1.9;
    font-family: AliRegular;
}

.product-hub__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.product-hub__primary,
.product-hub__secondary,
.product-hub-empty__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease, color .24s ease;
}

.product-hub__primary {
    background: #fff;
    color: #544EE9;
    box-shadow: 0 16px 34px rgba(255,255,255,.16);
}

.product-hub__secondary,
.product-hub-empty__actions a:last-child {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
}

.product-hub__primary:hover,
.product-hub__secondary:hover,
.product-hub-empty__actions a:hover {
    transform: translateY(-2px);
}

.product-hub__hero-metrics,
.product-hub__inner-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.product-hub__metric,
.product-hub__inner-stat {
    min-width: 128px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
}

.product-hub__metric strong,
.product-hub__inner-stat strong {
    display: block;
    font-size: 26px;
    line-height: 1.1;
    color: #fff;
}

.product-hub__metric span,
.product-hub__inner-stat span {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,.8);
}

.product-hub__hero-panel,
.product-hub__inner-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-hub__hero-card,
.product-hub__hero-note,
.product-hub__inner-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 22px 48px rgba(30, 39, 70, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.product-hub__hero-card h2,
.product-hub__hero-note strong,
.product-hub__inner-copy strong {
    color: #171b29;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.product-hub__journey {
    margin-top: 18px;
    padding-left: 18px;
}

.product-hub__journey li {
    margin-bottom: 12px;
    color: #4e5568;
    font-size: 14px;
    line-height: 1.8;
}

.product-hub__hero-note p,
.product-hub__inner-copy p {
    margin-top: 10px;
    color: #677085;
    font-size: 14px;
    line-height: 1.8;
    font-family: AliRegular;
}

.product-hub__quicklinks,
.product-hub__sibling-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.product-hub__quicklink,
.product-hub__sibling-tab {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    min-width: 126px;
    padding: 14px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(84,78,233,.08);
    box-shadow: 0 16px 30px rgba(84,78,233,.08);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.product-hub__quicklink:hover,
.product-hub__sibling-tab:hover,
.product-hub__sibling-tab.is-active {
    transform: translateY(-2px);
    border-color: rgba(84,78,233,.22);
    box-shadow: 0 18px 34px rgba(84,78,233,.12);
}

.product-hub__quicklink-name {
    color: #121829;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.product-hub__quicklink-meta,
.product-hub__sibling-tab {
    color: #6f7485;
    font-size: 12px;
    line-height: 1.5;
}

.product-hub__sibling-tab {
    justify-content: center;
    min-height: 48px;
    font-size: 14px;
    font-weight: 600;
    color: #404761;
}

.product-hub__sibling-tab.is-active {
    background: linear-gradient(180deg, rgba(84,78,233,.12), rgba(84,78,233,.06));
    color: #544EE9;
}

.product-hub__sections {
    padding-top: 34px;
}

.product-hub-section + .product-hub-section {
    margin-top: 28px;
}

.product-hub-section {
    padding: 32px;
    border-radius: 32px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 26px 60px rgba(84,78,233,.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.product-hub-section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 24px;
}

.product-hub-section__label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(84,78,233,.08);
    color: #544EE9;
    font-size: 12px;
    font-weight: 700;
}

.product-hub-section__title h2 {
    margin: 12px 0 8px;
    color: #181d2a;
    font-size: 34px;
    line-height: 1.15;
}

.product-hub-section__title p {
    max-width: 720px;
    color: #6f7485;
    font-size: 14px;
    line-height: 1.9;
    font-family: AliRegular;
}

.product-hub-section__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 158px;
    height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: #544EE9;
    color: #fff;
    box-shadow: 0 16px 30px rgba(84,78,233,.18);
}

.product-hub-section__grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 18px;
}

.product-hub-overview-card,
.product-hub-card,
.product-hub__inner-card {
    overflow: hidden;
}

.product-hub-overview-card {
    display: flex;
    flex-direction: column;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
    border: 1px solid rgba(84,78,233,.08);
    box-shadow: 0 16px 32px rgba(84,78,233,.08);
    min-height: 100%;
}

.product-hub-overview-card__media {
    aspect-ratio: 1 / .88;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(84,78,233,.12), rgba(80,234,249,.18));
}

.product-hub-overview-card__media img,
.product-hub-card__media img,
.product-hub__inner-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hub-overview-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px;
}

.product-hub-overview-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(84,78,233,.08);
    color: #544EE9;
    font-size: 12px;
    font-weight: 700;
}

.product-hub-overview-card__body h3 {
    margin: 14px 0 10px;
    color: #171b29;
    font-size: 28px;
    line-height: 1.15;
}

.product-hub-overview-card__body p {
    color: #697287;
    font-size: 14px;
    line-height: 1.85;
    font-family: AliRegular;
}

.product-hub-overview-card__meta {
    margin-top: auto;
    padding-top: 22px;
}

.product-hub-overview-card__meta strong {
    display: block;
    color: #544EE9;
    font-size: 28px;
    line-height: 1;
}

.product-hub-overview-card__meta span {
    display: block;
    margin-top: 6px;
    color: #6f7485;
    font-size: 12px;
}

.product-hub-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product-hub-card-grid--full {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-hub-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,255,.94));
    border: 1px solid rgba(84,78,233,.08);
    box-shadow: 0 14px 32px rgba(84,78,233,.08);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.product-hub-card:hover,
.product-hub-overview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(84,78,233,.22);
    box-shadow: 0 22px 44px rgba(84,78,233,.14);
}

.product-hub-card__media,
.product-hub__inner-media {
    aspect-ratio: 1 / .72;
    overflow: hidden;
    background: #f3f5ff;
}

.product-hub-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 18px 18px 20px;
}

.product-hub-card__body h3 {
    margin-bottom: 8px;
    color: #181d2a;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.product-hub-card__body p {
    color: #6c7387;
    font-size: 13px;
    line-height: 1.8;
    font-family: AliRegular;
}

.product-hub-card__body span {
    margin-top: auto;
    padding-top: 14px;
    color: #544EE9;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.product-hub__inner-card {
    padding: 18px;
}

.product-hub__inner-media {
    border-radius: 22px;
}

.product-hub__inner-copy {
    padding: 4px 6px 2px;
}

.product-hub-empty {
    padding: 36px 0 10px;
}

.product-hub-empty__card {
    max-width: 620px;
    margin: 0 auto;
    padding: 34px;
    border-radius: 28px;
    text-align: center;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(84,78,233,.08);
    box-shadow: 0 20px 40px rgba(84,78,233,.10);
}

.product-hub-empty__card h3 {
    color: #191d2d;
    font-size: 24px;
    line-height: 1.3;
}

.product-hub-empty__card p {
    margin-top: 10px;
    color: #6f7485;
    font-size: 14px;
    line-height: 1.9;
    font-family: AliRegular;
}

.product-hub-empty__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.product-hub {
    padding: 28px 0 84px;
}

.product-hub__breadcrumb {
    margin-bottom: 18px;
}

.product-hub-banner,
.product-hub-subhead {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 18px;
}

.product-hub-banner__main,
.product-hub-subhead__main,
.product-hub-banner__aside,
.product-hub-subhead__aside,
.product-hub-panel,
.product-hub-empty__card {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 24px 56px rgba(84,78,233,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.product-hub-banner__main,
.product-hub-subhead__main {
    padding: 34px 36px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(84,78,233,.08), transparent 26%),
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,248,255,.92));
}

.product-hub-banner__eyebrow,
.product-hub-panel__label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(84,78,233,.08);
    color: #544EE9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.product-hub-banner__main h1,
.product-hub-subhead__main h1 {
    margin: 16px 0 12px;
    color: #171b29;
    font-size: 42px;
    line-height: 1.14;
}

.product-hub-banner__main p,
.product-hub-subhead__main p,
.product-hub-panel__head p,
.product-hub-panel__content p,
.product-hub-empty__card p {
    color: #697287;
    font-size: 14px;
    line-height: 1.9;
    font-family: AliRegular;
}

.product-hub-banner__actions,
.product-hub-subhead__actions,
.product-hub-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.product-hub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 154px;
    height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}

.product-hub-btn:hover {
    transform: translateY(-2px);
}

.product-hub-btn--primary {
    background: #544EE9;
    color: #fff;
    box-shadow: 0 16px 30px rgba(84,78,233,.18);
}

.product-hub-btn--secondary {
    background: rgba(84,78,233,.08);
    color: #544EE9;
    border: 1px solid rgba(84,78,233,.14);
}

.product-hub-btn--ghost {
    background: #fff;
    color: #30364b;
    border: 1px solid rgba(48,54,75,.12);
}

.product-hub-banner__aside,
.product-hub-subhead__aside {
    padding: 18px;
    border-radius: 28px;
}

.product-hub-note {
    padding: 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(84,78,233,.07), rgba(80,234,249,.04));
}

.product-hub-note strong,
.product-hub-panel__head h2,
.product-hub-panel__content h2,
.product-hub-empty__card h3 {
    color: #171b29;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.product-hub-note ol {
    margin-top: 14px;
    padding-left: 18px;
}

.product-hub-note li {
    margin-bottom: 10px;
    color: #4d556a;
    font-size: 14px;
    line-height: 1.8;
}

.product-hub-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.product-hub-summary__item,
.product-hub-subhead__stats {
    padding: 16px 14px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(84,78,233,.08);
}

.product-hub-summary__item strong,
.product-hub-subhead__stats strong,
.product-hub-panel__meta strong {
    display: block;
    color: #544EE9;
    font-size: 28px;
    line-height: 1;
}

.product-hub-summary__item span,
.product-hub-subhead__stats span,
.product-hub-panel__meta span {
    display: block;
    margin-top: 7px;
    color: #6f7485;
    font-size: 12px;
    line-height: 1.5;
}

.product-hub-nav,
.product-hub-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.product-hub-nav__item,
.product-hub-switcher__item {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    min-width: 128px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(84,78,233,.08);
    box-shadow: 0 14px 28px rgba(84,78,233,.06);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product-hub-nav__item:hover,
.product-hub-switcher__item:hover,
.product-hub-switcher__item.is-active {
    transform: translateY(-2px);
    border-color: rgba(84,78,233,.18);
    box-shadow: 0 18px 34px rgba(84,78,233,.10);
}

.product-hub-nav__title {
    color: #161b28;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.product-hub-nav__meta,
.product-hub-switcher__item {
    color: #6f7485;
    font-size: 12px;
    line-height: 1.5;
}

.product-hub--landing .product-hub-nav {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
    padding: 6px 2px 2px;
    overflow: visible;
}

.product-hub--landing .product-hub-nav__item {
    flex: 0 0 auto;
    min-width: 132px;
    min-height: 58px;
    padding: 0 20px;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(84,78,233,.10);
    box-shadow: 0 14px 28px rgba(84,78,233,.06);
}

.product-hub--landing .product-hub-nav__title {
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
}

.product-hub--landing .product-hub-tile__media img {
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
}

.product-hub--landing .product-hub-panel__grid {
    align-items: stretch;
}

.product-hub--landing .product-hub-tile {
    min-height: 100%;
}

.product-hub--landing .product-hub-tile__media {
    aspect-ratio: 1 / .46;
}

.product-hub--landing .product-hub-panel__media {
    aspect-ratio: 1 / .56;
}

.product-hub--landing .product-hub-panel__media img {
    object-fit: cover;
    object-position: center center;
}

.product-hub-switcher__item {
    justify-content: center;
    min-height: 48px;
    font-size: 14px;
    font-weight: 600;
    color: #404761;
}

.product-hub-switcher__item.is-active {
    color: #544EE9;
    background: linear-gradient(180deg, rgba(84,78,233,.12), rgba(84,78,233,.04));
}

.product-hub__sections {
    padding-top: 8px;
}

.product-hub-panel + .product-hub-panel {
    margin-top: 24px;
}

.product-hub-panel {
    padding: 22px;
    border-radius: 28px;
}

.product-hub-panel__intro {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.product-hub-panel__media,
.product-hub-subhead__media,
.product-hub-tile__media {
    overflow: hidden;
    border-radius: 22px;
    /* original: linear-gradient(135deg, rgba(84,78,233,.08), rgba(80,234,249,.16)) */
    background: transparent;
    padding: 0;
}

.product-hub-panel__media {
    aspect-ratio: 1 / .88;
}

.product-hub-subhead__media {
    aspect-ratio: 1 / .74;
    margin-bottom: 12px;
}

.product-hub-panel__media img,
.product-hub-subhead__media img,
.product-hub-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-hub-panel__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 6px 6px 2px;
}

.product-hub-panel__content h2 {
    margin: 14px 0 10px;
    font-size: 34px;
}

.product-hub-panel__meta {
    margin: 18px 0 20px;
}

.product-hub-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.product-hub-panel__head h2 {
    margin-top: 14px;
}

.product-hub-panel__head p {
    max-width: 420px;
}

.product-hub-panel__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product-hub-panel__grid--full {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-hub-level {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
    margin-bottom: 18px;
}

.product-hub-level__main,
.product-hub-level__aside,
.product-hub-steps,
.product-hub-switcher-shell {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 24px 56px rgba(84,78,233,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.product-hub-level__main {
    padding: 34px 36px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(84,78,233,.08), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,248,255,.92));
}

.product-hub-level__eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-hub-level__tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(20, 183, 214, .10);
    color: #1698b4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.product-hub-level__main h1 {
    margin: 16px 0 12px;
    color: #171b29;
    font-size: 42px;
    line-height: 1.14;
}

.product-hub-level__main p,
.product-hub-steps__head p,
.product-hub-switcher-shell__head p,
.product-hub-panel__head--level p {
    color: #697287;
    font-size: 14px;
    line-height: 1.9;
    font-family: AliRegular;
}

.product-hub-level__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.product-hub-level__aside {
    padding: 18px;
    border-radius: 28px;
}

.product-hub-level__media {
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(84,78,233,.08), rgba(80,234,249,.16));
    aspect-ratio: 1 / .78;
    margin-bottom: 12px;
    padding: 0;
}

.product-hub-level__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-hub-level__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.product-hub-level__stat {
    padding: 16px 14px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(84,78,233,.08);
}

.product-hub-level__stat strong {
    display: block;
    color: #544EE9;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.product-hub-level__stat span {
    display: block;
    margin-top: 6px;
    color: #6f7485;
    font-size: 12px;
    line-height: 1.5;
}

.product-hub-steps,
.product-hub-switcher-shell {
    padding: 22px;
    border-radius: 24px;
    margin-bottom: 18px;
}

.product-hub-steps__head,
.product-hub-switcher-shell__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.product-hub-steps__head p,
.product-hub-switcher-shell__head p {
    max-width: 420px;
}

.product-hub-steps__track {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-hub-steps__item {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(84,78,233,.10);
    color: #3d455f;
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.product-hub-steps__item:hover {
    transform: translateY(-1px);
    color: #544EE9;
    border-color: rgba(84,78,233,.16);
    box-shadow: 0 14px 28px rgba(84,78,233,.08);
}

.product-hub-steps__item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #98a0b6;
    font-size: 12px;
}

.product-hub-steps__item.is-current {
    color: #544EE9;
    background: linear-gradient(180deg, rgba(84,78,233,.12), rgba(84,78,233,.04));
    border-color: rgba(84,78,233,.16);
}

.product-hub-switcher--unified {
    margin-bottom: 0;
}

.wrap--full {
    width: 100%;
    max-width: none;
    padding: 0;
}

.product-hub-detail-layout {
    display: grid;
    grid-template-columns: 272px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.product-hub-detail-layout--wide {
    grid-template-columns: minmax(0, 1fr);
}

.product-hub-detail-layout__aside {
    position: sticky;
    top: 110px;
}

.product-hub-detail-layout__main .product-hub__sections {
    padding-top: 0;
}

.product-hub-switcher-shell--sidebar {
    padding: 20px;
    margin-bottom: 0;
    border-radius: 28px;
}

.product-hub-switcher--sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-hub-switcher--sidebar .product-hub-switcher__item {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    min-height: 62px;
    padding: 14px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(197,213,238,.88);
    color: #2b3650;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    box-shadow: 0 10px 24px rgba(31,51,89,.04);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.product-hub-switcher--sidebar .product-hub-switcher__item::after {
    display: none;
}

.product-hub-switcher--sidebar .product-hub-switcher__item::before {
    display: none;
}

.product-hub-switcher--sidebar .product-hub-switcher__item.is-active,
.product-hub-switcher--sidebar .product-hub-switcher__item:hover {
    color: #224fb8;
    background: linear-gradient(135deg, rgba(231,241,255,.98) 0%, rgba(245,250,255,.98) 100%);
    border-color: #96b7ff;
    box-shadow: 0 14px 30px rgba(41,88,215,.12), inset 0 0 0 1px rgba(41,88,215,.08);
}

.product-hub-panel--level {
    padding: 24px;
    min-height: 100%;
}

.product-hub-panel__head--level {
    align-items: flex-end;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(84,78,233,.08);
}

.product-hub-panel__head--level h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #171b29;
}

.product-hub-tile__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0;
    min-height: 0;
}

.product-hub-tile__badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(84,78,233,.08);
    color: #544EE9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
}

.product-hub-tile__count {
    color: #7a8196;
    font-size: 12px;
    line-height: 1.5;
}

.product-hub--landing .product-hub-tile__meta {
    display: none;
}

.product-hub--landing .product-hub-panel__content .product-hub-chip-row {
    margin-top: 14px;
}

.product-hub-tile {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    /* original: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,255,.94)) */
    background: #fff;
    border: 1px solid rgba(84,78,233,.08);
    box-shadow: 0 14px 30px rgba(84,78,233,.07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-hub-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(84,78,233,.18);
    box-shadow: 0 22px 42px rgba(84,78,233,.12);
}

.product-hub-tile__media {
    aspect-ratio: 1 / .72;
}

.product-hub-tile__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 16px 16px 18px;
}

.product-hub-tile__body h3 {
    color: #181d2a;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-hub-tile__body p {
    color: #6d7488;
    font-size: 13px;
    line-height: 1.8;
    font-family: AliRegular;
}

.product-hub-tile__body span {
    margin-top: auto;
    padding-top: 14px;
    color: #544EE9;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.product-hub-tile--product-card {
    text-decoration: none;
}

.product-hub-tile__media--product-card {
    min-height: 220px;
    padding: 24px;
    aspect-ratio: auto;
}

.product-hub-tile__body--product-card {
    align-items: center;
    justify-content: center;
    padding: 20px 24px 26px;
    text-align: center;
}

.product-hub-tile__body--product-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
}

.product-hub-empty {
    min-height: 420px;
}

.product-hub-empty__card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1280px) {
    .product-hub-detail-layout {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .product-hub-panel__grid,
    .product-hub-panel__grid--full,
    .product-hub-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-hub-tile__media--product-card {
        min-height: 200px;
        padding: 20px;
    }

    .product-hub-tile__body--product-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 960px) {
    .product-hub-detail-layout,
    .product-hub-detail-layout--wide {
        grid-template-columns: 1fr;
    }

    .product-hub-detail-layout__aside {
        position: static;
    }

    .product-hub-switcher--sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .product-hub-switcher--sidebar .product-hub-switcher__item {
        width: auto;
        min-height: 54px;
        padding: 12px 18px;
        font-size: 16px;
    }

    .product-hub--landing .product-hub-side-nav__item {
        min-height: 54px;
        padding: 12px 18px;
        font-size: 16px;
    }

    .product-hub-tile__media--product-card {
        min-height: 180px;
    }

    .product-hub-tile__body--product-card {
        padding: 18px 20px 22px;
    }

    .product-hub-tile__body--product-card h3 {
        font-size: 18px;
    }

    .product-hub {
        padding: 22px 0 64px;
    }

    .product-hub-level,
    .product-hub-banner,
    .product-hub-subhead,
    .product-hub-panel__intro {
        grid-template-columns: 1fr;
    }

    .product-hub-banner__main,
    .product-hub-subhead__main,
    .product-hub-level__main,
    .product-hub-banner__aside,
    .product-hub-subhead__aside,
    .product-hub-level__aside,
    .product-hub-steps,
    .product-hub-switcher-shell,
    .product-hub-panel,
    .product-hub-empty__card {
        padding: 22px;
        border-radius: 22px;
    }

    .product-hub-level__main h1,
    .product-hub-banner__main h1,
    .product-hub-subhead__main h1 {
        font-size: 34px;
    }

    .product-hub-panel__content h2 {
        font-size: 30px;
    }

    .product-hub-panel__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-hub-steps__head,
    .product-hub-switcher-shell__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-hub-panel__grid,
    .product-hub-panel__grid--full,
    .product-hub-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-hub-level__main h1,
    .product-hub-banner__main h1,
    .product-hub-subhead__main h1 {
        font-size: 28px;
    }

    .product-hub-level__actions,
    .product-hub-banner__actions,
    .product-hub-subhead__actions,
    .product-hub-empty__actions,
    .product-hub-nav,
    .product-hub-switcher,
    .product-hub-steps__track {
        flex-direction: column;
    }

    .product-hub-panel__grid,
    .product-hub-panel__grid--full,
    .product-hub-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1280px) {
    .product-hub__hero-shell,
    .product-hub__inner-shell {
        grid-template-columns: minmax(0, 1fr) 320px;
    }

    .product-hub-section__grid {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .product-hub-card-grid,
    .product-hub-card-grid--full {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .product-hub__hero-shell,
    .product-hub__inner-shell,
    .product-hub-section__grid {
        grid-template-columns: 1fr;
    }

    .product-hub__hero-copy,
    .product-hub__inner-main,
    .product-hub-section,
    .product-hub-empty__card {
        padding: 24px;
        border-radius: 24px;
    }

    .product-hub__hero-copy h1,
    .product-hub__inner-main h1 {
        font-size: 34px;
    }

    .product-hub-section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-hub-card-grid,
    .product-hub-card-grid--full {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-hub {
        padding-bottom: 52px;
    }

    .product-hub__hero {
        padding: 22px 0 18px;
    }

    .product-hub__hero-copy,
    .product-hub__inner-main,
    .product-hub-section,
    .product-hub-empty__card,
    .product-hub__hero-card,
    .product-hub__hero-note,
    .product-hub__inner-card {
        padding: 20px;
        border-radius: 20px;
    }

    .product-hub__hero-copy h1,
    .product-hub__inner-main h1 {
        font-size: 28px;
    }

    .product-hub-section__title h2 {
        font-size: 28px;
    }

    .product-hub__quicklinks,
    .product-hub__sibling-tabs,
    .product-hub__hero-actions,
    .product-hub__hero-metrics,
    .product-hub__inner-stats,
    .product-hub-empty__actions {
        flex-direction: column;
    }

    .product-hub-card-grid,
    .product-hub-card-grid--full {
        grid-template-columns: 1fr;
    }
}

.index_hd .name h2 {
    color: #191d2d;
}

.index_hd .name h3 {
    color: #544EE9;
    letter-spacing: .12em;
}

.index_new_products .bd .swiper-slide,
.index_case .bd .item,
.index_news .bd .left .item {
    border-radius: 18px;
    border: 1px solid rgba(84,78,233,.08);
    box-shadow: 0 18px 40px rgba(84,78,233,.08);
}

.index_news .bd .right .item {
    padding: 10px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(84,78,233,.08);
}

@media (max-width: 1280px) {
    .header .header-foot > .wrap {
        width: calc(100% - 48px);
    }

    .header-search {
        min-width: 260px;
    }

    .product-mega-menu__content {
        grid-template-columns: minmax(0, 1fr) 252px;
        gap: 26px;
    }

    .product-mega-menu__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .catalog-home-shell {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 960px) {
    .header .header-foot > .wrap {
        width: calc(100% - 28px);
    }

    .site-notice-bar {
        gap: 10px;
        min-height: 36px;
    }

    .site-notice-bar__lang {
        min-width: 58px;
        padding: 0 8px;
    }

    .site-notice-bar__label {
        padding: 0 10px;
        font-size: 12px;
    }

    .navbar {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .menu {
        order: 3;
        flex: 1 0 100%;
    }

    .header .header-foot .nav-info .nav-item--product {
        position: relative;
    }

    .product-mega-menu {
        position: static;
        width: 100%;
        padding-top: 14px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
    }

    .header .header-foot .nav-info .nav-item--product:hover > .product-mega-menu,
    .header .header-foot .nav-info .nav-item--product:focus-within > .product-mega-menu,
    .header .header-foot .nav-info .nav-item--product.is-open > .product-mega-menu {
        display: block;
    }

    .product-mega-menu__content {
        grid-template-columns: 1fr;
    }

    .product-mega-menu__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .header-tools {
        width: 100%;
        justify-content: space-between;
    }

    .header-search {
        min-width: 0;
        flex: 1 1 auto;
    }

    .header-member {
        min-height: 44px;
    }

    .catalog-home-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-home-shell {
        grid-template-columns: 1fr;
    }

    .catalog-home-character {
        min-height: 398px;
    }

    .index_pro_type .bd ul.catalog-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-notice-bar {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 8px 0;
    }

    .site-notice-bar__track {
        animation-duration: 12s;
    }

    .site-notice-bar__lang {
        align-self: flex-end;
    }

    .site-notice-bar__body,
    .site-notice-bar__link {
        width: 100%;
    }

    .product-mega-menu__tabs {
        padding: 0 16px;
    }

    .product-mega-menu__body {
        padding: 18px 16px 20px;
    }

    .product-mega-menu__grid {
        grid-template-columns: 1fr;
    }

    .index_banner .swiper-pagination {
        bottom: 16px !important;
        padding: 7px 10px;
        gap: 8px;
    }

    .index_banner .swiper-pagination .swiper-pagination-bullet {
        width: 48px;
        height: 4px;
    }

    .catalog-home-title h2 {
        font-size: 34px;
    }

    .catalog-home-feature__inner {
        padding: 22px;
    }

    .catalog-home-character {
        min-height: 372px;
        padding: 8px 8px 62px;
    }

    .catalog-home-character__ring {
        width: 266px;
        height: 266px;
        top: 18px;
    }

    .catalog-home-character__hero {
        width: min(100%, 254px);
        margin-top: -4px;
    }

    .catalog-home-character__stage {
        width: 162px;
        bottom: 38px;
    }

    .catalog-home-character__meta {
        min-width: 120px;
        padding: 10px 18px 11px;
        bottom: 4px;
    }

    .catalog-home-character__meta strong {
        font-size: 17px;
    }

    .catalog-home-feature__btn {
        width: 100%;
    }

    .index_pro_type .bd ul.catalog-home-grid {
        grid-template-columns: 1fr;
    }

    .header-tools {
        width: 100%;
    }

    .header-member__name {
        max-width: 64px;
    }

    .header-member__menu {
        right: auto;
        left: 0;
    }

    .site-login-form__meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-login-modal__dialog {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .site-login-modal__head h3 {
        font-size: 24px;
    }

    .site-login-form__row {
        grid-template-columns: 1fr 100px;
    }

    .site-login-form__code {
        width: 100px;
    }
}

/* Product center unified experience */
.product-hub-btn {
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-hub-btn--primary {
    background: linear-gradient(135deg, rgba(84,78,233,.94), rgba(80,234,249,.82));
    border-color: rgba(255,255,255,.28);
    box-shadow: 0 18px 34px rgba(84,78,233,.18);
}

.product-hub-btn--secondary,
.product-hub-btn--ghost {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.product-hub-btn--secondary {
    background: rgba(255,255,255,.52);
}

.product-hub-btn--ghost {
    background: rgba(255,255,255,.74);
}

.product-hub-btn--glass {
    min-width: 0;
    height: 42px;
    padding: 0 18px;
    background: rgba(255,255,255,.54);
    color: #3a4260;
    border-color: rgba(84,78,233,.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.68), 0 14px 28px rgba(84,78,233,.08);
    backdrop-filter: blur(16px) saturate(130%);
    -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.product-hub-btn--glass:hover {
    color: #544EE9;
    border-color: rgba(84,78,233,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 18px 34px rgba(84,78,233,.12);
}

.product-hub-chip-row,
.product-hub-parameter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
}

.product-hub-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(84,78,233,.10);
    color: #47506b;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.product-hub-chip--parameter {
    background: rgba(84,78,233,.08);
    color: #544EE9;
}

.product-hub-level--product {
    align-items: stretch;
}

.product-hub-level__media--product {
    aspect-ratio: 1 / .48;
}

.product-hub-panel__media {
    aspect-ratio: 1 / .52;
}

.product-hub-tile__media {
    aspect-ratio: 1 / .42;
}

.product-detail-curves__media {
    aspect-ratio: 1 / .46;
    padding: 0;
    background: linear-gradient(135deg, rgba(84,78,233,.08), rgba(80,234,249,.16));
}

.product-detail-series__media {
    aspect-ratio: 1 / .44;
}

.product-hub-panel--zone {
    position: relative;
    overflow: hidden;
}

.product-hub-panel--zone:target {
    background: rgba(255,255,255,.88);
    border-color: rgba(255,255,255,.92);
    box-shadow: 0 24px 56px rgba(84,78,233,.08);
    animation: none;
}

.product-hub-panel--zone:target::before,
.product-hub-panel--zone:target .product-hub-panel__content::after {
    opacity: 1;
}

.product-hub-panel--zone::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(84,78,233,.12) 0%, rgba(84,78,233,0) 70%);
    pointer-events: none;
}

.product-hub-panel--zone:nth-of-type(even)::before {
    left: -80px;
    right: auto;
    background: radial-gradient(circle, rgba(80,234,249,.16) 0%, rgba(80,234,249,0) 70%);
}

.product-hub-panel--zone .product-hub-panel__content::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(84,78,233,.10), rgba(80,234,249,.04));
    filter: blur(2px);
    opacity: .8;
    pointer-events: none;
}

.product-hub-switcher--unified .product-hub-switcher__item {
    position: relative;
    overflow: hidden;
}

.product-hub-switcher--unified .product-hub-switcher__item::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #544EE9 0%, #50EAF9 100%);
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .22s ease, transform .22s ease;
}

.product-hub-switcher--unified .product-hub-switcher__item.is-active::after,
.product-hub-switcher--unified .product-hub-switcher__item:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.product-detail-shell,
.product-detail-series {
    margin-top: 18px;
}

.product-detail-shell__nav,
.product-detail-card,
.product-detail-series__group,
.product-detail-series {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 24px 56px rgba(84,78,233,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.product-detail-shell__nav {
    padding: 22px;
    border-radius: 24px;
}

.product-detail-shell__anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.product-detail-shell__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.product-purchase-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
}

.product-purchase-hero__summary {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 16px;
    flex: 1 1 auto;
}

.product-purchase-hero__price,
.product-purchase-hero__meta {
    padding: 20px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,255,.94));
    border: 1px solid rgba(84,78,233,.08);
    box-shadow: 0 16px 36px rgba(84,78,233,.08);
}

.product-purchase-hero__label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(84,78,233,.08);
    color: #544EE9;
    font-size: 12px;
    font-weight: 700;
}

.product-purchase-hero__price strong {
    display: block;
    margin-top: 12px;
    color: #1b2030;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
}

.product-purchase-hero__price em {
    display: block;
    margin-top: 10px;
    color: #6e768c;
    font-size: 14px;
    line-height: 1.7;
    font-style: normal;
}

.product-purchase-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-purchase-hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 6px 8px;
}

.product-purchase-hero__meta-item span {
    color: #81879a;
    font-size: 12px;
    line-height: 1.4;
}

.product-purchase-hero__meta-item strong {
    color: #1e2434;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.product-purchase-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    flex: 0 0 auto;
}

.product-detail-card--purchase .product-detail-card__head {
    margin-bottom: 18px;
}

.product-purchase-table {
    overflow-x: auto;
}

.product-purchase-table table {
    width: 100%;
    min-width: 920px;
    border-collapse: separate;
    border-spacing: 0;
}

.product-purchase-table thead th {
    padding: 16px 14px;
    background: rgba(84,78,233,.06);
    color: #2f3650;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    border-bottom: 1px solid rgba(84,78,233,.10);
}

.product-purchase-table thead th:first-child {
    border-top-left-radius: 18px;
}

.product-purchase-table thead th:last-child {
    border-top-right-radius: 18px;
}

.product-purchase-table tbody td {
    padding: 16px 14px;
    background: rgba(255,255,255,.78);
    color: #3c445c;
    font-size: 14px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(84,78,233,.08);
    vertical-align: middle;
}

.product-purchase-table__name {
    color: #1c2232;
    font-weight: 600;
}

.product-purchase-table__price {
    color: #544EE9;
    font-weight: 700;
    white-space: nowrap;
}

.product-purchase-table__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-purchase-table__empty {
    text-align: center;
    color: #707890;
}

.product-stock-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.product-stock-badge.is-in-stock {
    background: rgba(84,78,233,.10);
    color: #544EE9;
}

.product-stock-badge.is-empty {
    background: rgba(255,145,77,.12);
    color: #d06b1d;
}

.cart-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.cart-shell__main,
.cart-shell__aside {
    min-width: 0;
}

.cart-shell__hero,
.cart-summary-card,
.cart-card,
.cart-empty__card {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 24px 56px rgba(84,78,233,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cart-shell__hero {
    padding: 28px 30px;
    border-radius: 28px;
}

.cart-shell__hero h1 {
    margin-top: 14px;
    color: #171b29;
    font-size: 38px;
    line-height: 1.16;
}

.cart-shell__actions,
.cart-summary-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.cart-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border-radius: 26px;
}

.cart-card__media {
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(84,78,233,.08), rgba(80,234,249,.14));
    min-height: 180px;
}

.cart-card__media a,
.cart-card__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.cart-card__media img {
    object-fit: contain;
    object-position: center;
}

.cart-card__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.cart-card__head h3 {
    color: #171d2c;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
}

.cart-card__head h3 a {
    color: inherit;
}

.cart-card__head p {
    margin-top: 8px;
    color: #6e768c;
    font-size: 14px;
    line-height: 1.7;
    font-family: AliRegular;
}

.cart-card__remove {
    color: #8a92a6;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

.cart-card__remove:hover {
    color: #544EE9;
}

.cart-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cart-card__chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(84,78,233,.08);
    color: #544EE9;
    font-size: 12px;
    font-weight: 700;
}

.cart-card__chip.is-in-stock {
    background: rgba(84,78,233,.10);
    color: #544EE9;
}

.cart-card__chip.is-empty {
    background: rgba(255,145,77,.12);
    color: #d06b1d;
}

.cart-card__footer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: auto;
}

.cart-card__price-group,
.cart-card__quantity-group,
.cart-card__amount-group {
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,247,255,.92));
    border: 1px solid rgba(84,78,233,.08);
}

.cart-card__label {
    display: block;
    color: #80879a;
    font-size: 12px;
    line-height: 1.4;
}

.cart-card__footer strong {
    display: block;
    margin-top: 8px;
    color: #1f2535;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.cart-summary-card {
    position: sticky;
    top: 110px;
    padding: 26px;
    border-radius: 28px;
}

.cart-summary-card h2 {
    margin-top: 12px;
    color: #171b29;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.cart-summary-card__stats {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.cart-summary-card__stat {
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,255,.94));
    border: 1px solid rgba(84,78,233,.08);
}

.cart-summary-card__stat span {
    display: block;
    color: #7e8699;
    font-size: 13px;
    line-height: 1.5;
}

.cart-summary-card__stat strong {
    display: block;
    margin-top: 8px;
    color: #544EE9;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.cart-summary-card__tips {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(84,78,233,.05);
    border: 1px solid rgba(84,78,233,.08);
}

.cart-summary-card__tips p {
    color: #6d7488;
    font-size: 13px;
    line-height: 1.8;
    font-family: AliRegular;
}

.cart-summary-card__tips p + p {
    margin-top: 6px;
}

.cart-empty {
    margin-top: 18px;
}

.cart-empty__card {
    padding: 42px 36px;
    border-radius: 28px;
    text-align: center;
}

.cart-empty__card h3 {
    margin-top: 16px;
    color: #171b29;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.cart-empty__card p {
    max-width: 520px;
    margin: 14px auto 0;
    color: #6e768c;
    font-size: 14px;
    line-height: 1.9;
    font-family: AliRegular;
}

.cart-empty__actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.product-detail-card {
    padding: 24px;
    border-radius: 24px;
}

.product-detail-card__head,
.product-detail-series__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.product-detail-card__head h2,
.product-detail-series__head h2,
.product-detail-series__copy h3 {
    color: #171b29;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.product-detail-card__body,
.product-detail-card__body p,
.product-detail-faq__item p,
.product-detail-series__copy li,
.product-detail-series__head p {
    color: #697287;
    font-size: 14px;
    line-height: 1.9;
    font-family: AliRegular;
}

.product-detail-curves {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.product-detail-curves__item,
.product-detail-faq__item {
    border-radius: 20px;
    border: 1px solid rgba(84,78,233,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,255,.94));
    overflow: hidden;
}

.product-detail-curves__media img,
.product-detail-series__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-detail-curves__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
}

.product-detail-curves__body h3,
.product-detail-faq__item h3 {
    color: #1f2434;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.product-detail-faq {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.product-detail-faq__item {
    padding: 20px;
}

.product-detail-series {
    padding: 24px;
    border-radius: 28px;
}

.product-detail-series__group + .product-detail-series__group {
    margin-top: 18px;
}

.product-detail-series__group {
    padding: 22px;
    border-radius: 24px;
}

.product-detail-series__intro {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.product-detail-series__media {
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(84,78,233,.08), rgba(80,234,249,.16));
    padding: 0;
}

.product-detail-series__copy ul {
    margin-top: 12px;
    padding-left: 18px;
}

.product-detail-series__copy li + li {
    margin-top: 6px;
}

.product-detail-series__table {
    overflow-x: auto;
}

.product-detail-series__table table {
    width: 100%;
    min-width: 960px;
    border-collapse: separate;
    border-spacing: 0;
}

.product-detail-series__table thead th {
    padding: 14px 12px;
    background: rgba(84,78,233,.06);
    color: #303752;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    border-bottom: 1px solid rgba(84,78,233,.10);
}

.product-detail-series__table tbody td {
    padding: 14px 12px;
    color: #3c445c;
    font-size: 13px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(84,78,233,.08);
    background: rgba(255,255,255,.76);
}

.product-detail-series__table .target-fix,
.product-detail-series__table .preview,
.product-detail-series__table .share,
.product-detail-series__table .check,
.product-detail-series__table .cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(84,78,233,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.76), 0 10px 22px rgba(84,78,233,.06);
}

.product-detail-series__table .num-input-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-detail-series__table .num-input {
    width: 52px;
    height: 40px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(84,78,233,.10);
    background: rgba(255,255,255,.7);
    text-align: center;
}

.product-detail-series__table .add-subtract {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-detail-series__table .add-subtract span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 18px;
    border-radius: 999px;
    background: rgba(84,78,233,.08);
    color: #544EE9;
    font-size: 12px;
    line-height: 1;
}

@media (max-width: 960px) {
    .cart-shell {
        grid-template-columns: 1fr;
    }

    .cart-summary-card {
        position: static;
    }

    .cart-card {
        grid-template-columns: 1fr;
    }

    .cart-card__footer {
        grid-template-columns: 1fr;
    }

    .cart-shell__hero h1 {
        font-size: 32px;
    }

    .product-purchase-hero,
    .product-purchase-hero__summary {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .product-purchase-hero__meta {
        grid-template-columns: 1fr;
    }

    .product-purchase-hero__actions {
        justify-content: flex-start;
    }

    .product-detail-card__head,
    .product-detail-series__head,
    .product-detail-series__intro {
        flex-direction: column;
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .product-detail-curves {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-detail-shell__anchors {
        flex-direction: column;
    }

    .product-detail-curves,
    .product-detail-faq {
        grid-template-columns: 1fr;
    }
}

/* Product center landing sidebar layout */
.product-hub--landing .product-hub-catalog {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.product-hub--landing .product-hub-catalog__sidebar {
    position: sticky;
    top: 118px;
}

.product-hub--landing .product-hub-catalog__sidebar-inner {
    padding: 20px;
    border-radius: 28px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 24px 56px rgba(84,78,233,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.product-hub--landing .product-hub-side-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
}

.product-hub--landing .product-hub-side-nav__item {
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    min-height: 62px;
    padding: 14px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(197,213,238,.88);
    color: #2b3650;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    box-shadow: 0 10px 24px rgba(31,51,89,.04);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
}

.product-hub--landing .product-hub-side-nav__item::before {
    display: none;
}

.product-hub--landing .product-hub-side-nav__item:hover,
.product-hub--landing .product-hub-side-nav__item:focus,
.product-hub--landing .product-hub-side-nav__item.is-active {
    color: #224fb8;
    transform: translateX(2px);
    border-color: #96b7ff;
    box-shadow: 0 14px 30px rgba(41,88,215,.12), inset 0 0 0 1px rgba(41,88,215,.08);
    background: linear-gradient(135deg, rgba(231,241,255,.98) 0%, rgba(245,250,255,.98) 100%);
}

.product-hub--landing .product-hub-catalog__main {
    min-width: 0;
}

.product-hub--landing .product-hub-panel {
    margin-top: 0;
}

.product-hub--landing .product-hub-panel + .product-hub-panel {
    margin-top: 22px;
}

.product-hub--landing .product-hub-panel__intro {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.product-hub--landing .product-hub-panel__content {
    padding: 0;
}

.product-hub--landing .product-hub-panel__content h2 {
    margin: 8px 0 10px;
    font-size: 30px;
}

.product-hub--landing .product-hub-panel__content .product-hub-chip-row {
    margin: 0 0 18px;
}

.product-hub--landing .product-hub-panel__grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.product-hub--landing .product-hub-tile--compact {
    border-radius: 20px;
}

.product-hub--landing .product-hub-tile--compact .product-hub-tile__media {
    aspect-ratio: 1 / .5;
}

.product-hub--landing .product-hub-tile--compact .product-hub-tile__body {
    padding: 14px 14px 16px;
}

.product-hub--landing .product-hub-tile--compact .product-hub-tile__body h3 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
}

.product-hub--landing .product-hub-tile--compact .product-hub-tile__body span {
    padding-top: 10px;
    font-size: 12px;
}

@media (max-width: 1280px) {
    .product-hub--landing .product-hub-catalog {
        grid-template-columns: 196px minmax(0, 1fr);
        gap: 18px;
    }
}

@media (max-width: 960px) {
    .product-hub--landing .product-hub-catalog {
        grid-template-columns: 1fr;
    }

    .product-hub--landing .product-hub-catalog__sidebar {
        position: static;
    }

    .product-hub--landing .product-hub-side-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-hub--landing .product-hub-panel__intro {
        grid-template-columns: 1fr;
    }

    .product-hub--landing .product-hub-panel__grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-hub--landing .product-hub-side-nav {
        grid-template-columns: 1fr;
    }

    .product-hub--landing .product-hub-panel__grid--compact {
        grid-template-columns: 1fr;
    }
}

.points-mall-page {
    padding: 26px 0 60px;
}

.points-mall-breadcrumb {
    margin-bottom: 18px;
}

.points-mall-anchorbar {
    position: sticky;
    top: 92px;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(197,213,238,.88);
    box-shadow: 0 10px 28px rgba(31,51,89,.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.points-mall-anchorbar a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: #2b3650;
    font-size: 13px;
    font-weight: 700;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.points-mall-anchorbar a:hover,
.points-mall-anchorbar a:focus {
    color: #0f1730;
    background: rgba(84,78,233,.08);
    box-shadow: inset 0 0 0 1px rgba(84,78,233,.08);
}

.points-mall-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(84,78,233,.1);
    color: #544ee9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.points-mall-hero,
.points-mall-feature,
.points-mall-benefit-card,
.points-mall-overview__card,
.points-mall-category-card,
.points-mall-spotlight-card,
.points-mall-product-card {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(219,226,238,.92);
    box-shadow: 0 18px 42px rgba(29,43,73,.08);
}

.points-mall-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) 360px;
    gap: 22px;
    padding: 34px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(202,138,4,.18), transparent 24%),
        radial-gradient(circle at bottom left, rgba(84,78,233,.16), transparent 28%),
        linear-gradient(135deg, #101828 0%, #1f2937 58%, #2f3547 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.points-mall-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,138,4,.18), rgba(202,138,4,0));
    pointer-events: none;
}

.points-mall-hero__copy h1 {
    margin: 18px 0 16px;
    color: #fff;
    font-size: 46px;
    line-height: 1.12;
}

.points-mall-hero__copy p {
    max-width: 780px;
    color: rgba(255,255,255,.8);
    font-size: 15px;
    line-height: 1.9;
}

.points-mall-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.points-mall-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.points-mall-hero__trust span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 600;
}

.points-mall-hero__actions .product-hub-btn {
    border-color: rgba(255,255,255,.22);
    color: #fff;
}

.points-mall-hero__actions .product-hub-btn:hover {
    color: #fff;
}

.points-mall-hero__actions .product-hub-btn--primary {
    border-color: transparent;
}

.points-mall-hero__panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.points-mall-balance,
.points-mall-balance__meta .points-mall-mini-stat,
.points-mall-progress-card {
    border-radius: 26px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.points-mall-balance {
    padding: 26px;
}

.points-mall-balance__label {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 13px;
}

.points-mall-balance strong {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;
}

.points-mall-balance p {
    margin-top: 12px;
    color: rgba(255,255,255,.76);
    font-size: 14px;
    line-height: 1.8;
}

.points-mall-balance__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.points-mall-mini-stat {
    padding: 18px 20px;
}

.points-mall-mini-stat span {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 12px;
}

.points-mall-mini-stat strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 28px;
    line-height: 1.2;
}

.points-mall-progress-card {
    padding: 18px 20px 20px;
}

.points-mall-progress-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.points-mall-progress-card__head span,
.points-mall-progress-card p {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.7;
}

.points-mall-progress-card__head strong {
    color: #fbbf24;
    font-size: 13px;
    font-weight: 700;
}

.points-mall-progress-card__bar {
    height: 8px;
    margin: 14px 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}

.points-mall-progress-card__bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f59e0b 0%, #fcd34d 100%);
}

.points-mall-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.points-mall-overview__card {
    padding: 24px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.points-mall-overview__card::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -24px;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(84,78,233,.09), rgba(202,138,4,.08));
    transform: rotate(18deg);
}

.points-mall-overview__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(84,78,233,.07);
    color: #6d5efc;
    font-size: 12px;
    font-weight: 700;
}

.points-mall-overview__card h3 {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    color: #171b29;
    font-size: 22px;
    line-height: 1.35;
}

.points-mall-overview__card p {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    color: #697287;
    font-size: 14px;
    line-height: 1.85;
    font-family: AliRegular;
}

.points-mall-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    gap: 26px;
    align-items: center;
    margin-top: 22px;
    padding: 28px;
    border-radius: 32px;
}

.points-mall-feature__content h2,
.points-mall-section__head h2 {
    margin-top: 14px;
    color: #171b29;
    font-size: 34px;
    line-height: 1.18;
}

.points-mall-feature__content p,
.points-mall-section__head p,
.points-mall-benefit-card p,
.points-mall-spotlight-card__body p,
.points-mall-product-card__body p {
    color: #697287;
    font-size: 14px;
    line-height: 1.9;
    font-family: AliRegular;
}

.points-mall-feature__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.points-mall-feature__stats div {
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,255,.94));
    border: 1px solid rgba(84,78,233,.08);
}

.points-mall-feature__stats span,
.points-mall-product-card__footer span {
    display: block;
    color: #80879a;
    font-size: 12px;
}

.points-mall-feature__stats strong,
.points-mall-product-card__footer strong {
    display: block;
    margin-top: 8px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.2;
}

.points-mall-feature__media {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(202,138,4,.14), transparent 26%),
        linear-gradient(135deg, rgba(84,78,233,.08), rgba(80,234,249,.12));
    min-height: 320px;
}

.points-mall-feature__floating {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(219,226,238,.92);
    box-shadow: 0 10px 24px rgba(29,43,73,.08);
}

.points-mall-feature__floating span {
    color: #8a4b00;
    font-size: 12px;
    font-weight: 700;
}

.points-mall-feature__floating strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
}

.points-mall-feature__notes {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.points-mall-feature__notes li {
    position: relative;
    padding-left: 18px;
    color: #697287;
    font-size: 13px;
    line-height: 1.8;
    font-family: AliRegular;
}

.points-mall-feature__notes li + li {
    margin-top: 6px;
}

.points-mall-feature__notes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ca8a04 0%, #544ee9 100%);
}

.points-mall-feature__media img,
.points-mall-category-card__media img,
.points-mall-spotlight-card img,
.points-mall-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.points-mall-benefits,
.points-mall-category-grid,
.points-mall-spotlight-grid,
.points-mall-product-grid {
    display: grid;
    gap: 18px;
}

.points-mall-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.points-mall-benefit-card {
    padding: 24px;
    border-radius: 28px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    cursor: default;
}

.points-mall-benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(190,199,219,.94);
    box-shadow: 0 22px 46px rgba(29,43,73,.11);
}

.points-mall-benefit-card__label {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(84,78,233,.08);
    color: #544ee9;
    font-size: 12px;
    font-weight: 700;
}

.points-mall-benefit-card h3,
.points-mall-category-card__top h3,
.points-mall-spotlight-card__body h3,
.points-mall-product-card__body h3 {
    margin-top: 14px;
    color: #171b29;
    font-size: 24px;
    line-height: 1.3;
}

.points-mall-section {
    margin-top: 28px;
}

.points-mall-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.points-mall-section__head p {
    max-width: 520px;
}

.points-mall-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.points-mall-category-card,
.points-mall-spotlight-card {
    overflow: hidden;
    border-radius: 28px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    cursor: pointer;
}

.points-mall-category-card:hover,
.points-mall-spotlight-card:hover,
.points-mall-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(29,43,73,.12);
    border-color: rgba(190,199,219,.96);
}

.points-mall-category-card__media {
    height: 180px;
    overflow: hidden;
}

.points-mall-category-card__body {
    padding: 18px 20px 22px;
}

.points-mall-category-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.points-mall-category-card__top span,
.points-mall-price-row span,
.points-mall-product-card__meta span {
    color: #778095;
    font-size: 12px;
}

.points-mall-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.points-mall-chip-row span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(84,78,233,.07);
    color: #40517d;
    font-size: 12px;
    font-weight: 600;
}

.points-mall-category-card__link {
    margin-top: 16px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
}

.points-mall-spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.points-mall-spotlight-card {
    position: relative;
}

.points-mall-spotlight-card img {
    display: block;
    height: 260px;
}

.points-mall-spotlight-card__badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17,26,60,.76);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.points-mall-spotlight-card__body {
    padding: 20px 20px 22px;
}

.points-mall-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
}

.points-mall-price-row strong {
    color: #0f172a;
    font-size: 24px;
    line-height: 1.2;
}

.points-mall-spotlight-card__cta {
    margin-top: 14px;
    color: #6d5efc;
    font-size: 13px;
    font-weight: 700;
}

.points-mall-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.points-mall-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.points-mall-product-card__media {
    display: block;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(84,78,233,.08), rgba(80,234,249,.16));
}

.points-mall-product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 20px;
}

.points-mall-product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.points-mall-product-card__status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(219,226,238,.92);
}

.points-mall-product-card__status span {
    color: #778095;
    font-size: 12px;
    line-height: 1.5;
}

.points-mall-product-card__body h3 a {
    color: inherit;
}

.points-mall-product-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
}

@media (max-width: 1280px) {
    .points-mall-overview,
    .points-mall-category-grid,
    .points-mall-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .points-mall-anchorbar {
        display: flex;
        width: 100%;
        overflow-x: auto;
    }

    .points-mall-hero,
    .points-mall-feature,
    .points-mall-benefits,
    .points-mall-overview,
    .points-mall-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .points-mall-feature__stats {
        grid-template-columns: 1fr;
    }

    .points-mall-section__head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .points-mall-page {
        padding-top: 20px;
    }

    .points-mall-anchorbar {
        top: 84px;
    }

    .points-mall-hero,
    .points-mall-feature,
    .points-mall-benefit-card,
    .points-mall-overview__card,
    .points-mall-product-card__body {
        padding: 20px;
    }

    .points-mall-hero__copy h1 {
        font-size: 34px;
    }

    .points-mall-feature__content h2,
    .points-mall-section__head h2 {
        font-size: 28px;
    }

    .points-mall-balance__meta,
    .points-mall-category-grid,
    .points-mall-product-grid {
        grid-template-columns: 1fr;
    }

    .points-mall-product-card__footer,
    .points-mall-product-card__status {
        flex-direction: column;
        align-items: flex-start;
    }
}

body.splash-active {
    overflow: hidden;
}

.splash-seen .home-splash {
    display: none !important;
}

.splash-seen .home-shell {
    opacity: 1;
    transform: none;
}

.home-shell {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}

.home-shell.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-splash {
    position: fixed;
    inset: 0;
    z-index: 2000;
    overflow: hidden;
    background: linear-gradient(135deg, #f7f9ff 0%, #eef3fb 55%, #f8fbff 100%);
    transition: transform .72s cubic-bezier(.65, 0, .35, 1), opacity .72s ease;
}

.home-splash.is-leaving {
    opacity: 0;
    transform: translateY(-100%);
}

.home-splash__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-splash__blob,
.home-splash__pattern {
    position: absolute;
}

.home-splash__blob {
    border-radius: 50%;
    filter: blur(110px);
    opacity: .18;
    animation: homeSplashBlob 18s infinite alternate ease-in-out;
}

.home-splash__blob--one {
    left: -14vw;
    top: -18vh;
    width: 42vw;
    height: 42vw;
    background: rgba(84, 78, 233, .85);
}

.home-splash__blob--two {
    right: -10vw;
    bottom: -20vh;
    width: 46vw;
    height: 46vw;
    background: rgba(80, 234, 249, .7);
    animation-delay: -6s;
}

.home-splash__blob--three {
    right: 18vw;
    top: 24vh;
    width: 22vw;
    height: 22vw;
    background: rgba(117, 94, 252, .45);
    animation-delay: -10s;
}

.home-splash__pattern {
    fill: none;
    stroke: rgba(84, 78, 233, .16);
    stroke-width: .8;
}

.home-splash__pattern--left {
    left: -6rem;
    top: 18%;
    width: 28rem;
    height: 28rem;
}

.home-splash__pattern--right {
    right: -3rem;
    bottom: 14%;
    width: 22rem;
    height: 22rem;
}

.home-splash__topbar,
.home-splash__content {
    position: relative;
    z-index: 1;
}

.home-splash__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 34px 48px 0;
}

.home-splash__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #22304f;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
}

.home-splash__brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.home-splash__skip {
    min-width: 88px;
    height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(84, 78, 233, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    color: #5b6290;
    font-size: 14px;
    font-weight: 700;
    transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}

.home-splash__skip:hover {
    color: #2a3270;
    border-color: rgba(84, 78, 233, .34);
    background: rgba(255, 255, 255, .94);
    transform: translateY(-1px);
}

.home-splash__content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 82px);
    min-height: calc(100dvh - 82px);
    padding: 40px 24px 64px;
}

.home-splash__card {
    position: relative;
    width: min(980px, calc(100vw - 48px));
    padding: 72px 84px;
    border-radius: 36px;
    background: rgba(255, 255, 255, .28);
    border: 1px solid rgba(255, 255, 255, .62);
    box-shadow: 0 28px 70px rgba(28, 46, 100, .12);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    text-align: center;
}

.home-splash__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    border-top: 1px solid rgba(255, 255, 255, .92);
    border-left: 1px solid rgba(255, 255, 255, .62);
}

.home-splash__badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(84, 78, 233, .08);
    border: 1px solid rgba(84, 78, 233, .14);
    color: #544ee9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
}

.home-splash__card h1 {
    margin: 28px 0 20px;
    color: #1b2439;
    font-size: 52px;
    line-height: 1.35;
    letter-spacing: .06em;
}

.home-splash__card h1 span {
    color: #544ee9;
}

.home-splash__card p {
    max-width: 640px;
    margin: 0 auto;
    color: #65718b;
    font-size: 16px;
    line-height: 1.9;
}

.home-splash__progress {
    width: min(320px, 100%);
    margin: 36px auto 0;
}

.home-splash__progress-track {
    position: relative;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(84, 78, 233, .1);
}

.home-splash__progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(90deg, #544ee9 0%, #50eaf9 100%);
    animation: homeSplashProgress 2.2s cubic-bezier(.65, 0, .35, 1) forwards;
}

.index_news .index_hd .name h2 {
    position: relative;
}

.index_news .index_hd .name h2::after {
    content: "NEWS & EVENTS";
    display: block;
    margin-top: 4px;
    color: #97a2bf;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .18em;
}

.index_news .index_hd .more {
    width: auto;
    min-width: 150px;
    height: 46px;
    border: 1px solid rgba(84, 78, 233, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
}

.index_news .index_hd .more a {
    gap: 10px;
    padding: 0 24px;
    color: #544ee9;
    line-height: 44px;
    font-weight: 700;
}

.index_news .index_hd .more a::after {
    content: "→";
    font-size: 16px;
}

.index_news .bd.news-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 34px 0 10px;
}

.index_news .bd.news-feature-grid .news-feature-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid rgba(84, 78, 233, .18);
    border-radius: 24px;
    background: #f7f9ff;
    box-shadow: 0 18px 42px rgba(32, 44, 88, .08);
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.index_news .bd.news-feature-grid .news-feature-card--large {
    grid-column: span 2;
    min-height: 360px;
}

.index_news .bd.news-feature-grid .news-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(84, 78, 233, .34);
    box-shadow: 0 24px 58px rgba(32, 44, 88, .14);
}

.index_news .bd.news-feature-grid .news-feature-card a,
.index_news .bd.news-feature-grid .news-feature-card .pic,
.index_news .bd.news-feature-grid .news-feature-card .pic img {
    display: block;
    width: 100%;
    height: 100%;
}

.index_news .bd.news-feature-grid .news-feature-card a {
    position: relative;
    min-height: inherit;
}

.index_news .bd.news-feature-grid .news-feature-card .pic {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
}

.index_news .bd.news-feature-grid .news-feature-card .pic img {
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .42s ease;
}

.index_news .bd.news-feature-grid .news-feature-card:hover .pic img {
    transform: scale(1.06);
}

.index_news .bd.news-feature-grid .news-feature-card a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 16, 40, .06) 0%, rgba(8, 16, 40, .18) 34%, rgba(8, 16, 40, .78) 100%);
}

.index_news .bd.news-feature-grid .news-feature-card .txt {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 28px 30px;
    color: #fff;
}

.index_news .bd.news-feature-grid .news-feature-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: #544ee9;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}

.index_news .bd.news-feature-grid .news-feature-card h3 {
    display: -webkit-box;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .22);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index_news .bd.news-feature-grid .news-feature-card--large h3 {
    max-width: 680px;
    font-size: 34px;
    line-height: 1.35;
}

.index_news .bd.news-feature-grid .news-feature-card p {
    display: -webkit-box;
    max-width: 620px;
    margin: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 1.8;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index_news .bd.news-feature-grid .news-feature-card time {
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .index_news .bd.news-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .index_news .bd.news-feature-grid .news-feature-card--large {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .index_news .bd.news-feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .index_news .bd.news-feature-grid .news-feature-card,
    .index_news .bd.news-feature-grid .news-feature-card--large {
        grid-column: auto;
        min-height: 280px;
    }

    .index_news .bd.news-feature-grid .news-feature-card .txt {
        padding: 24px 22px;
    }

    .index_news .bd.news-feature-grid .news-feature-card--large h3,
    .index_news .bd.news-feature-grid .news-feature-card h3 {
        font-size: 24px;
    }
}

.home-splash__progress-text {
    display: block;
    margin-top: 16px;
    color: #7c829d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
}

@keyframes homeSplashBlob {
    from {
        transform: translate3d(0, 0, 0) scale(1);
    }
    to {
        transform: translate3d(42px, 36px, 0) scale(1.08);
    }
}

@keyframes homeSplashProgress {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@media (max-width: 960px) {
    .home-splash__topbar {
        padding: 24px 20px 0;
    }

    .home-splash__brand span {
        font-size: 15px;
    }

    .home-splash__brand img {
        width: 40px;
        height: 40px;
    }

    .home-splash__card {
        width: calc(100vw - 32px);
        padding: 54px 28px;
        border-radius: 28px;
    }

    .home-splash__card h1 {
        font-size: 34px;
        line-height: 1.5;
    }

    .home-splash__card p {
        font-size: 14px;
    }

    .home-splash__pattern--left,
    .home-splash__pattern--right {
        opacity: .55;
    }
}

@media (max-width: 640px) {
    .home-splash__content {
        padding: 24px 12px 42px;
    }

    .home-splash__card {
        padding: 40px 18px;
    }

    .home-splash__badge,
    .home-splash__progress-text {
        letter-spacing: .12em;
    }

    .home-splash__card h1 {
        margin-top: 22px;
        font-size: 26px;
    }

    .home-splash__skip {
        min-width: 74px;
        padding: 0 14px;
        font-size: 13px;
    }
}
.home-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.home-preview-modal.is-open {
    display: block;
}

.home-preview-modal__mask {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 44, 0.68);
    backdrop-filter: blur(6px);
}

.home-preview-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    grid-template-columns: minmax(280px, 46%) minmax(320px, 54%);
    width: min(980px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(10, 26, 59, 0.28);
    transform: translate(-50%, -50%);
}

.home-preview-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 33, 63, 0.08);
    color: #10213f;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.home-preview-modal__media {
    min-height: 320px;
    background: linear-gradient(135deg, #0d2348 0%, #2b61f0 100%);
}

.home-preview-modal__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.home-preview-modal__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 48px 44px;
    overflow: auto;
}

.home-preview-modal__eyebrow {
    color: #2b61f0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-preview-modal__content h3 {
    margin: 0;
    color: #10213f;
    font-size: 32px;
    line-height: 1.3;
}

.home-preview-modal__meta {
    color: #6b7c93;
    font-size: 14px;
}

.home-preview-modal__summary {
    margin: 0;
    color: #44556f;
    font-size: 15px;
    line-height: 1.9;
}

.home-preview-modal__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.home-preview-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 46px;
    padding: 0 22px;
    border: 1px solid #cfd9ea;
    border-radius: 999px;
    color: #10213f;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
}

.home-preview-modal__btn--primary {
    border-color: #2b61f0;
    background: #2b61f0;
    color: #fff;
    box-shadow: 0 16px 30px rgba(43, 97, 240, 0.22);
}

.home-preview-modal__btn.is-hidden {
    display: none;
}

body.home-preview-open {
    overflow: hidden;
}

.header .header-foot .nav-info .nav-link-item .i {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

.header .header-foot .nav-info .nav-link-item .i img {
    position: absolute;
    inset: 0;
    display: block !important;
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 1;
    transform: translateZ(0);
    transition: opacity .16s ease;
}

.header .header-foot .nav-info .nav-link-item .i img:last-child {
    opacity: 0;
}

.header .header-foot .nav-info .nav-link-item:hover .i img:first-child,
.header .header-foot .nav-info .nav-item.is-active .nav-link-item .i img:first-child {
    opacity: 0;
}

.header .header-foot .nav-info .nav-link-item:hover .i img:last-child,
.header .header-foot .nav-info .nav-item.is-active .nav-link-item .i img:last-child {
    opacity: 1;
}

@media (max-width: 900px) {
    .home-preview-modal__dialog {
        grid-template-columns: 1fr;
        width: min(680px, calc(100vw - 24px));
        max-height: calc(100vh - 24px);
    }

    .home-preview-modal__media,
    .home-preview-modal__media img {
        min-height: 220px;
    }

    .home-preview-modal__content {
        padding: 28px 22px 24px;
    }

    .home-preview-modal__content h3 {
        font-size: 26px;
    }
}

/* 2026-04-27 homepage product center refresh */
.index_pro_type {
    padding: 72px 0 86px;
    background: var(--homepage-surface-bg);
}

.index_pro_type .wrap {
    max-width: 1720px;
    width: calc(100% - 96px);
}

.catalog-home-shell {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 42px;
    align-items: stretch;
}

.catalog-home-feature__inner {
    min-height: 800px;
    height: 100%;
    padding: 26px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255,255,255,.54), rgba(255,255,255,.24)), linear-gradient(145deg, rgba(128,118,255,.34), rgba(107,95,255,.12));
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 26px 76px rgba(92,101,196,.15);
    color: #111936;
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
}

.catalog-home-feature__inner--visual {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.catalog-home-feature__top {
    position: relative;
    z-index: 3;
    margin-bottom: 28px;
}

.catalog-home-feature__eyebrow {
    min-height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    background: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.74);
    color: #6558ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

.catalog-home-feature__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 2px;
    background: #6558ff;
    transform: rotate(45deg);
}

.catalog-home-character {
    flex: 1 1 auto;
    min-height: 0;
    margin: 0;
    padding: 0 28px 154px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.18));
    border: 1px solid rgba(255,255,255,.72);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.catalog-home-character::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.55);
    top: 118px;
    left: 50%;
    transform: translateX(-50%);
    opacity: .65;
    background: transparent;
    box-shadow: none;
}

.catalog-home-character::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,.42);
    background: transparent;
    pointer-events: none;
    opacity: 1;
    mask-image: none;
}

.catalog-home-character__glow {
    left: 50%;
    bottom: 116px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(125,116,255,.22), rgba(125,116,255,0) 68%);
    filter: blur(20px);
}

.catalog-home-character__ring {
    top: 116px;
    width: 330px;
    height: 330px;
    border-color: rgba(255,255,255,.55);
    box-shadow: none;
}

.catalog-home-character__hero {
    position: relative;
    z-index: 2;
    width: 245px;
    max-width: 100%;
    margin: 12px auto 0;
    filter: drop-shadow(0 24px 34px rgba(84,91,190,.24));
}

.catalog-home-character__hero img {
    width: 100%;
    height: 340px;
    object-fit: contain;
}

.catalog-home-character__stage {
    bottom: 90px;
    width: 220px;
    height: 24px;
    background: rgba(255,255,255,.22);
    box-shadow: 0 14px 24px rgba(84,91,190,.10);
}

.catalog-home-character__meta {
    bottom: 64px;
    min-width: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: #6558ff;
    backdrop-filter: none;
}

.catalog-home-character__meta strong {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.12;
}

.catalog-home-character__desc {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    width: 100%;
    transform: translateX(-50%);
    color: #828ab0;
    font-size: 16px;
    line-height: 1.7;
}

.catalog-home-character__tooltip {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 116px;
    width: calc(100% - 70px);
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.92);
    box-shadow: 0 16px 40px rgba(91,99,188,.18);
    color: #4e56a8;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(14px);
    transition: opacity .28s ease, transform .28s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.catalog-home-character:hover .catalog-home-character__tooltip,
.catalog-home-character:focus-within .catalog-home-character__tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.catalog-home-character:hover .catalog-home-character__hero {
    animation: none;
    transform: translateY(-8px) scale(1.03);
}

.catalog-home-feature__btn {
    width: 100%;
    height: 58px;
    min-width: 0;
    margin-top: 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6257ff, #8b7cff);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(91,83,255,.28);
}

.catalog-home-feature__btn::after {
    content: "\2192";
    margin-left: 14px;
}

.catalog-home-grid-wrap {
    min-height: 800px;
    padding: 44px;
    border-radius: 36px;
    background: rgba(255,255,255,.66);
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: 0 26px 76px rgba(92,101,196,.15);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
}

.catalog-home-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 34px;
}

.catalog-home-panel-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.catalog-home-panel-line {
    width: 5px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #7468ff, #a79dff);
    box-shadow: 0 0 18px rgba(101,88,255,.36);
}

.catalog-home-panel-title h2 {
    margin: 0;
    color: #111936;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
}

.index_pro_type .bd ul.catalog-home-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.index_pro_type .bd ul.catalog-home-grid li {
    width: auto;
    padding: 0;
}

.index_pro_type .bd ul.catalog-home-grid li a {
    min-height: 244px;
    height: 100%;
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
    border: 1px solid rgba(122,132,255,.18);
    box-shadow: 0 14px 36px rgba(92,103,196,.10);
    text-align: left;
}

.index_pro_type .bd ul.catalog-home-grid li a:hover {
    border-color: rgba(101,88,255,.34);
    box-shadow: 0 22px 54px rgba(91,99,188,.16);
    transform: translateY(-4px);
}

.catalog-home-grid__media {
    width: 100%;
    flex: 1 1 auto;
    display: grid;
    place-items: center;
    min-height: 168px;
    height: auto;
    min-width: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    text-align: center;
}

.catalog-home-grid__media img {
    width: 100%;
    height: 168px;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(80,87,160,.10));
}

.catalog-home-grid__body {
    position: static;
    z-index: 1;
    flex: 0 0 auto;
    min-width: 0;
    margin-top: auto;
    padding-bottom: 0;
}

.index_pro_type .bd ul.catalog-home-grid li a h3 {
    margin: 0;
    padding: 0;
    color: #111936;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
}

.catalog-home-grid__body span {
    display: none;
}

.catalog-home-grid__body span::after {
    content: "  \2192";
}

@media (max-width: 1480px) {
    .index_pro_type .wrap {
        width: calc(100% - 56px);
    }

    .catalog-home-shell {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 28px;
    }

    .index_pro_type .bd ul.catalog-home-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .catalog-home-shell {
        grid-template-columns: 1fr;
    }

    .catalog-home-feature__inner,
    .catalog-home-grid-wrap {
        min-height: 0;
    }

    .catalog-home-character {
        min-height: 520px;
    }

    .index_pro_type .bd ul.catalog-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .index_pro_type {
        padding: 42px 0 56px;
    }

    .index_pro_type .wrap {
        width: calc(100% - 32px);
    }

    .catalog-home-feature__inner,
    .catalog-home-grid-wrap {
        padding: 22px;
        border-radius: 28px;
    }

    .catalog-home-panel-title h2 {
        font-size: 28px;
    }

    .index_pro_type .bd ul.catalog-home-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026-04-27 homepage lower sections refresh */
.index_new_products,
.index_case,
.index_news,
.service-commitment {
    background: var(--homepage-surface-bg);
}

.index_new_products .wrap,
.index_case .wrap,
.index_news .wrap {
    max-width: 1720px;
    width: calc(100% - 96px);
}

.index_new_products .index_hd,
.index_case .index_hd,
.index_news .index_hd {
    align-items: flex-start;
    padding-top: 0;
    margin-bottom: 34px;
}

.index_new_products .index_hd .name,
.index_case .index_hd .name,
.index_news .index_hd .name {
    position: relative;
    padding-left: 23px;
}

.index_new_products .index_hd .name::before,
.index_case .index_hd .name::before,
.index_news .index_hd .name::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 5px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #7468ff, #a79dff);
    box-shadow: 0 0 18px rgba(101,88,255,.36);
}

.index_new_products .index_hd .name h2,
.index_case .index_hd .name h2,
.index_news .index_hd .name h2 {
    margin: 0;
    color: #111936;
    font-size: 32px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: 0;
}

.index_case .index_hd .more,
.index_news .index_hd .more {
    width: auto;
    height: 46px;
    margin-top: 0;
    padding: 0 26px;
    border-radius: 999px;
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(119,108,255,.25);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.index_case .index_hd .more a,
.index_news .index_hd .more a {
    height: 44px;
    line-height: 44px;
    color: #6558ff;
    font-size: 15px;
    font-weight: 600;
}

.index_case .index_hd .more a::after,
.index_news .index_hd .more a::after {
    content: "\2192";
    margin-left: 12px;
}

.index_new_products {
    padding: 0 0 86px;
}

.index_new_products .wrap {
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
    border-radius: 36px;
    background: radial-gradient(circle at 48% 50%, rgba(143,132,255,.15), transparent 30%), linear-gradient(135deg, rgba(255,255,255,.60), rgba(246,247,255,.72));
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 26px 76px rgba(92,101,196,.15);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.index_new_products .wrap::before {
    content: "";
    position: absolute;
    width: 1200px;
    height: 520px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.65);
    opacity: .7;
    pointer-events: none;
}

.index_new_products .index_hd {
    position: relative;
    z-index: 2;
    width: calc(100% - 96px);
    margin: 0 auto 36px;
}

.index_new_products .index_hd .more {
    width: auto;
    height: 46px;
    margin-top: 0;
    padding: 0 26px;
    border-radius: 999px;
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(119,108,255,.25);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.index_new_products .index_hd .more a {
    height: 44px;
    line-height: 44px;
    color: #6558ff;
    font-size: 15px;
    font-weight: 600;
}

.index_new_products .index_hd .more a::after {
    content: "\2192";
    margin-left: 12px;
}

.index_new_products .bd {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0 48px 26px;
    overflow: hidden;
}

.index_new_products .bd .swiper-container {
    width: 100%;
    padding: 10px 0 48px;
    overflow: visible;
}

.index_new_products .bd .swiper-wrapper {
    align-items: flex-end;
}

.index_new_products .bd .swiper-slide {
    width: 270px !important;
    flex: 0 0 270px;
    min-height: 390px;
    padding: 26px 24px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
    border: 1px solid rgba(122,132,255,.18);
    box-shadow: 0 14px 36px rgba(92,103,196,.10);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: flex-basis .35s ease, width .35s ease, min-height .35s ease, transform .35s ease, box-shadow .35s ease;
}

.index_new_products .bd .swiper-slide.swiper-slide-active {
    width: 360px !important;
    flex-basis: 360px;
    min-height: 430px;
    transform: translateY(-18px);
    background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.62)), radial-gradient(circle at 50% 20%, rgba(255,213,190,.32), transparent 45%);
    box-shadow: 0 28px 70px rgba(136,111,255,.20);
}

.index_new_products .bd .swiper-slide .pic {
    margin: 18px 0 24px;
    padding: 0;
}

.index_new_products .bd .swiper-slide .pic img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 24px 24px rgba(70,79,150,.12));
}

.index_new_products .bd .swiper-slide.swiper-slide-active .pic img {
    height: 190px;
}

.index_new_products .bd .swiper-slide .label {
    width: auto;
    margin: 0;
    background: transparent;
}

.index_new_products .bd .swiper-slide .label span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(106,97,255,.10);
    color: #6558ff;
    font-size: 13px;
    font-weight: 700;
}

.index_new_products .bd .swiper-slide.swiper-slide-active .label span {
    color: #eb8654;
    background: rgba(255,149,96,.12);
    border-color: rgba(255,149,96,.18);
}

.index_new_products .bd .swiper-slide .txt {
    padding: 0;
}

.index_new_products .bd .swiper-slide .txt::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: rgba(101,88,255,.42);
}

.home-new-card-link {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-start;
}

.home-new-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 22px auto 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: #6558ff;
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 14px 28px rgba(87,94,188,.14);
    cursor: pointer;
    transition: transform .22s ease, color .22s ease, box-shadow .22s ease;
}

.home-new-cart-btn:hover {
    transform: translateY(-2px);
    color: #4f46e5;
    box-shadow: 0 18px 32px rgba(87,94,188,.18);
}

.home-new-cart-btn.is-disabled {
    opacity: .42;
    cursor: not-allowed;
}

.home-new-cart-btn.is-added {
    color: #22c55e;
    transform: scale(1.08);
}

.index_new_products .bd .swiper-slide .txt h3 {
    margin: 0;
    color: #111936;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.index_new_products .bd .swiper-slide.swiper-slide-active .txt h3 {
    font-size: 25px;
}

.index_new_products .bd .swiper-slide .txt p {
    margin-top: 10px;
    color: #7f89a8;
    font-size: 14px;
    line-height: 1.6;
}

.index_new_products .swiper-pagination {
    bottom: 0 !important;
}

/* 2026-04-27 product assistant vertical balance */
.catalog-home-feature__inner {
    min-height: 720px;
}

.catalog-home-character {
    min-height: 590px;
    padding-bottom: 136px;
}

.catalog-home-character::before,
.catalog-home-character__ring {
    top: 132px;
    width: 300px;
    height: 300px;
}

.catalog-home-character__hero {
    width: 232px;
    margin-top: 26px;
}

.catalog-home-character__hero img {
    height: 300px;
}

.catalog-home-character__stage {
    bottom: 112px;
    width: 190px;
    height: 20px;
}

.catalog-home-character__meta {
    bottom: 62px;
}

.catalog-home-character__desc {
    bottom: 26px;
}

.catalog-home-feature__btn {
    margin-top: 18px;
}

.index_new_products .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(101,88,255,.14);
}

.index_new_products .swiper-pagination-bullet-active {
    width: 18px;
    border-radius: 999px;
    background: #6558ff;
    box-shadow: 0 0 18px rgba(101,88,255,.45);
}

.index_case {
    padding: 0 0 86px;
}

.index_case .wrap,
.index_news .wrap {
    padding: 42px;
    border-radius: 36px;
    background: rgba(255,255,255,.66);
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: 0 26px 76px rgba(92,101,196,.15);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
}

.index_case .bd {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 0;
    padding-bottom: 0;
}

.index_case .bd .item {
    min-width: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(122,132,255,.18);
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
    box-shadow: 0 14px 36px rgba(92,103,196,.10);
}

.index_case .bd .item.home-case-feature {
    grid-column: 1 / -1;
}

.index_case .bd .item a {
    display: block;
    height: 100%;
}

.index_case .bd .item.home-case-feature a {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 420px;
}

.index_case .bd .item.home-case-feature .pic {
    order: 2;
}

.index_case .bd .item.home-case-feature .txt {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 46px 48px;
    background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.74) 70%, rgba(255,255,255,.04) 100%);
}

.index_case .bd .item.home-case-feature .btn {
    display: none;
}

.index_case .bd .item a .pic,
.index_case .bd .item a .pic img,
.index_case .bd .adimg {
    width: 100%;
    height: 180px;
    border-radius: 0;
    object-fit: cover;
}

.index_case .bd .item.home-case-feature a .pic,
.index_case .bd .item.home-case-feature a .pic img {
    height: 100%;
    min-height: 420px;
}

.index_case .bd .item a .txt {
    padding: 20px 22px 22px;
}

.home-section-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    height: 30px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(106,97,255,.10);
    color: #6558ff;
    font-size: 13px;
    font-weight: 700;
}

.index_case .bd .item a .txt h3 {
    height: auto;
    margin: 0 0 10px;
    color: #111936;
    font-size: 21px;
    line-height: 1.42;
    font-weight: 700;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index_case .bd .item.home-case-feature a .txt h3 {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 1.28;
}

.index_case .bd .item.home-case-feature a .txt h3::after {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    margin: 16px 0 26px;
    border-radius: 999px;
    background: #6558ff;
}

.index_case .bd .item a .txt p {
    min-height: 0;
    margin: 0;
    color: #7f89a8;
    font-size: 15px;
    line-height: 1.78;
    -webkit-line-clamp: 3;
}

.index_case .bd .item.home-case-feature a .txt p {
    font-size: 16px;
    line-height: 1.85;
    -webkit-line-clamp: 5;
}

.index_case .bd .item a .btn {
    padding: 0 22px 22px;
}

.index_case .bd .item a .btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    overflow: hidden;
    color: transparent;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    box-shadow: 0 10px 24px rgba(87,94,188,.14);
}

.index_case .bd .item a .btn span::before {
    content: "\2192";
    color: #6558ff;
    font-size: 20px;
}

.index_news {
    padding: 0 0 86px;
}

.index_news .bd {
    display: grid;
    grid-template-columns: 1.16fr .84fr;
    gap: 28px;
    margin: 0;
}

.index_news .bd .left {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 28px;
}

.index_news .bd .left .item,
.index_news .bd .right .item {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(122,132,255,.18);
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.56));
    box-shadow: 0 14px 36px rgba(92,103,196,.10);
}

.index_news .bd .left .item:first-child a {
    display: grid;
    grid-template-rows: 320px 1fr;
    min-height: 560px;
}

.index_news .bd .left .item:not(:first-child) a {
    display: flex;
    flex-direction: column;
    min-height: 560px;
}

.index_news .bd .left .item .pic,
.index_news .bd .left .item .pic img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    border-radius: 0;
    object-fit: cover;
}

.index_news .bd .left .item:not(:first-child) .pic,
.index_news .bd .left .item:not(:first-child) .pic img {
    min-height: 220px;
    height: 220px;
}

.index_news .bd .left .item .txt,
.index_news .bd .right .item .txt {
    padding: 24px 26px 28px;
}

.index_news .bd .left .item .txt h3,
.index_news .bd .right .item a .txt h3 {
    margin: 0 0 12px;
    color: #111936;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    -webkit-line-clamp: 2;
}

.index_news .bd .left .item .txt p {
    color: #7f89a8;
    font-size: 15px;
    line-height: 1.8;
    -webkit-line-clamp: 3;
}

.index_news .bd .right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.index_news .bd .right .item {
    padding: 0;
}

.index_news .bd .right .item a {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    min-height: 120px;
    padding: 16px;
}

.index_news .bd .right .item a .pic,
.index_news .bd .right .item a .pic img {
    width: 140px;
    height: 96px;
    border-radius: 18px;
    object-fit: cover;
}

.index_news .bd .right .item a .txt {
    padding: 0;
}

.index_news .bd .right .item a .txt p {
    order: 2;
    margin-top: 12px;
    color: #8d95b1;
    font-size: 15px;
    line-height: 1.4;
}

.index_news .bd .right .item a .txt h3 {
    font-size: 17px;
    line-height: 1.48;
}

.service-commitment {
    padding: 34px 0 42px;
}

.service-commitment .wrap {
    max-width: 1540px;
    width: calc(100% - 160px);
    padding: 30px 54px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.46));
    border: 1px solid rgba(255,255,255,.85);
    box-shadow: 0 18px 50px rgba(94,104,190,.10);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.service-commitment ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0;
}

.service-commitment li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-commitment li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 14px;
    width: 1px;
    height: 70px;
    background: linear-gradient(180deg, transparent, rgba(115,124,200,.22), transparent);
}

.service-commitment .pic {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.95), rgba(255,255,255,.28)), rgba(255,255,255,.42);
    border: 1px solid rgba(255,255,255,.86);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 14px 24px rgba(91,99,188,.10);
}

.service-commitment .pic img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.service-commitment .txt {
    color: #111936;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
}

.footer {
    padding: 0 0 6px;
    background: var(--homepage-surface-bg);
    border-top: 0;
}

.footer .wrap {
    max-width: 1680px;
    width: calc(100% - 96px);
}

.footer .footer_infos {
    padding: 0;
}

.footer_infos ul.grid-x {
    display: grid;
    grid-template-columns: 333px 1.1fr .82fr .82fr .82fr .9fr;
    gap: 34px;
    padding-bottom: 14px;
    border-bottom: 0;
    align-items: stretch;
}

.footer_infos ul.grid-x > li {
    width: auto;
    min-width: 0;
    padding: 16px 20px;
    border-left: 1px solid rgba(107,119,185,.12);
    margin: 0;
}

.footer_infos ul.grid-x > li.footer-contact-card {
    padding-left: 20px;
}

.footer_infos ul.grid-x > li.footer-contact-card p {
    margin-left: 0;
    padding-left: 0;
    text-indent: 0;
    text-align: left;
}

.footer .footer_infos .erweima {
    margin-left: 0;
}

/* 2026-04-27 final alignment pass */
.index_new_products .bd .swiper-slide {
    min-height: 300px;
    padding: 24px 24px 26px;
}

.index_new_products .bd .swiper-slide.swiper-slide-active {
    min-height: 360px;
}

.index_new_products .bd .swiper-slide .pic {
    margin: 12px 0 18px;
}

.index_new_products .bd .swiper-slide .pic img {
    height: 130px;
}

.index_new_products .bd .swiper-slide.swiper-slide-active .pic img {
    height: 160px;
}

.index_new_products .bd .swiper-slide .txt h3 {
    font-size: 20px;
    line-height: 1.28;
}

.index_new_products .bd .swiper-slide.swiper-slide-active .txt h3 {
    font-size: 24px;
}

.home-new-cart-btn {
    width: 46px;
    height: 46px;
    margin-top: 16px;
    font-size: 25px;
}

.footer .footer_infos li.footer-contact-card p,
.footer .footer_infos li.footer-contact-card p a {
    display: block;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

/* 2026-04-27 compact new products section */
.index_new_products {
    padding-bottom: 56px;
}

.index_new_products .wrap {
    padding-top: 36px;
    padding-bottom: 38px;
}

.index_new_products .index_hd {
    margin-bottom: 18px;
}

.index_new_products .bd {
    padding-top: 0;
    padding-bottom: 10px;
}

.index_new_products .bd .swiper-container {
    padding-top: 0;
    padding-bottom: 30px;
}

.index_new_products .bd .swiper-slide {
    min-height: 260px;
    padding: 18px 20px 20px;
}

.index_new_products .bd .swiper-slide.swiper-slide-active {
    min-height: 310px;
}

.index_new_products .bd .swiper-slide .pic {
    margin: 8px 0 12px;
}

.index_new_products .bd .swiper-slide .pic img {
    height: 104px;
}

.index_new_products .bd .swiper-slide.swiper-slide-active .pic img {
    height: 128px;
}

.index_new_products .bd .swiper-slide .txt h3 {
    font-size: 18px;
}

.index_new_products .bd .swiper-slide.swiper-slide-active .txt h3 {
    font-size: 21px;
}

.index_new_products .bd .swiper-slide .txt p {
    margin-top: 6px;
}

.index_new_products .bd .swiper-slide .txt::after {
    margin-top: 10px;
}

.home-new-cart-btn {
    width: 40px;
    height: 40px;
    margin-top: 12px;
    font-size: 23px;
}

/* 2026-04-27 force sane new product card height */
.index_new_products .bd .swiper-wrapper {
    align-items: center;
}

.index_new_products .bd .swiper-slide {
    height: 360px !important;
    min-height: 0 !important;
    max-height: 360px;
    box-sizing: border-box;
}

.index_new_products .bd .swiper-slide.swiper-slide-active {
    height: 430px !important;
    min-height: 0 !important;
    max-height: 430px;
}

.index_new_products .bd .swiper-slide .home-new-card-link {
    height: auto;
    flex: 0 0 auto;
}

.index_new_products .bd .swiper-slide .pic img {
    height: 118px !important;
}

.index_new_products .bd .swiper-slide.swiper-slide-active .pic img {
    height: 150px !important;
}

.index_new_products .bd .swiper-slide .label {
    margin-top: auto;
}

/* 2026-04-27 remove excess whitespace around new products carousel */
.index_new_products .wrap {
    padding-top: 32px;
    padding-bottom: 28px;
}

.index_new_products .index_hd {
    margin-bottom: 10px;
}

.index_new_products .bd {
    height: 440px;
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}

.index_new_products .bd .swiper-container {
    height: 430px !important;
    min-height: 0;
    padding: 0 !important;
}

.index_new_products .bd .swiper-wrapper {
    height: 430px !important;
    align-items: flex-start;
    padding-top: 18px;
    box-sizing: border-box;
}

.index_new_products .bd .swiper-slide {
    height: 320px !important;
    max-height: 320px;
    margin-top: 36px;
}

.index_new_products .bd .swiper-slide.swiper-slide-active {
    height: 390px !important;
    max-height: 390px;
    margin-top: 0;
    border-color: rgba(101,88,255,.72);
    box-shadow:
        inset 0 0 0 1px rgba(101,88,255,.72),
        0 28px 70px rgba(136,111,255,.20);
}

.index_new_products .swiper-pagination {
    bottom: 0 !important;
}

.footer_infos ul.grid-x > li.footer-brand-card {
    display: flex;
    flex-direction: column;
    padding: 20px 26px;
    border-left: 0;
    border-radius: 28px;
    background: rgba(255,255,255,.56);
    border: 1px solid rgba(255,255,255,.82);
    box-shadow: 0 14px 36px rgba(92,103,196,.10);
    min-height: 220px;
}

.footer-brand-logo img {
    display: block;
    max-width: 150px;
    max-height: 56px;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand-card p {
    margin: 0 0 24px;
    color: #6f7898;
    font-size: 15px;
    line-height: 1.75;
}

.footer-brand-more {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    height: 44px;
    margin-top: auto;
    padding: 0 22px;
    border-radius: 999px;
    color: #6558ff;
    border: 1px solid rgba(119,108,255,.22);
    background: rgba(255,255,255,.72);
    font-size: 15px;
    font-weight: 700;
}

.footer-brand-more::after {
    content: "\2192";
    margin-left: 14px;
}

.footer_infos h2 {
    margin: 0 0 18px;
    color: #111936;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.footer_infos h2::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: #6558ff;
}

.footer_infos p,
.footer_infos p a,
.footer .copyright,
.footer .copyright p {
    color: #6f7898;
    font-size: 15px;
    line-height: 1.7;
}

.footer .footer_infos li h2 {
    color: #111936;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.footer .footer_infos li p,
.footer .footer_infos li p a,
.footer .footer_infos li a,
.footer .footer_infos .erweima .txt,
.footer .footer_infos .erweima .txt p {
    color: #6f7898;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.footer .footer_infos li.footer-brand-card p {
    color: #6f7898;
}

.footer .footer_infos li.footer-brand-card .footer-brand-more {
    color: #6558ff;
    font-size: 15px;
    font-weight: 700;
}

.footer .footer_infos li a:hover,
.footer .footer_infos li p a:hover,
.footer .footer_infos li.footer-brand-card .footer-brand-more:hover {
    color: #6558ff;
    text-decoration: none;
}

.footer .copyright,
.footer .copyright p,
.footer .copyright a,
.footer .copyright div {
    color: #7c86a6;
    font-size: 14px;
    line-height: 1.25;
}

.footer_infos p {
    margin: 0 0 12px;
}

.footer_infos p span,
.footer_infos p em {
    display: none;
}

.footer_infos .erweima {
    text-align: left;
}

.footer_infos .erweima img {
    width: 116px;
    height: 116px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.76);
    object-fit: contain;
}

.footer_infos .erweima .txt {
    margin-top: 12px;
}

.footer .copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 4px 0 0;
    white-space: nowrap;
}

.footer .copyright p {
    margin: 0;
}

/* 2026-04-28 homepage hover stability */
.home-shell .index_pro_type .bd ul.catalog-home-grid li a,
.home-shell .index_case .bd .item,
.home-shell .index_news .bd .left .item,
.home-shell .index_news .bd .right .item {
    transition-property: border-color, box-shadow, background-color, color;
}

.home-shell .index_new_products .bd .swiper-slide {
    transition-property: flex-basis, width, min-height, height, max-height, margin-top, border-color, box-shadow, background-color;
}

.home-shell .index_pro_type .bd ul.catalog-home-grid li:hover a,
.home-shell .index_pro_type .bd ul.catalog-home-grid li a:hover,
.home-shell .index_case .bd .item:hover,
.home-shell .index_news .bd .left .item:hover,
.home-shell .index_news .bd .right .item:hover {
    transform: none !important;
    -webkit-transform: none !important;
}

.home-shell .index_new_products .bd .swiper-slide:hover {
    transform: none !important;
    -webkit-transform: none !important;
    border-width: 1px !important;
    border-color: rgba(101,88,255,.42);
    box-shadow: 0 22px 54px rgba(91,99,188,.16);
}

.home-shell .index_new_products .bd .swiper-slide.swiper-slide-active:hover {
    transform: translateY(-18px) !important;
    -webkit-transform: translateY(-18px) !important;
}

.home-shell .index_new_products .bd .swiper-slide:hover .pic img,
.home-shell .home-new-cart-btn:hover {
    transform: none !important;
    -webkit-transform: none !important;
}

/* Keep product category lift without hover-edge jitter */
.home-shell .index_pro_type .bd ul.catalog-home-grid li {
    position: relative;
}

.home-shell .index_pro_type .bd ul.catalog-home-grid li::before {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: 0;
    background: rgba(255,255,255,0);
}

.home-shell .index_pro_type .bd ul.catalog-home-grid li a {
    position: relative;
    z-index: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform-origin: center;
    will-change: transform;
    transition-property: transform, border-color, box-shadow, background-color, color;
}

.home-shell .index_pro_type .bd ul.catalog-home-grid li:hover a,
.home-shell .index_pro_type .bd ul.catalog-home-grid li:focus-within a {
    transform: translate3d(0, -8px, 0) !important;
    -webkit-transform: translate3d(0, -8px, 0) !important;
    border-color: rgba(101,88,255,.72);
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,247,255,.84));
    box-shadow:
        inset 0 0 0 2px rgba(101,88,255,.28),
        0 28px 68px rgba(91,99,188,.24);
}

.home-shell .index_pro_type .bd ul.catalog-home-grid li:hover h3,
.home-shell .index_pro_type .bd ul.catalog-home-grid li:focus-within h3 {
    color: #4f46e5;
}

.home-shell .index_pro_type .bd ul.catalog-home-grid li:hover .catalog-home-grid__media img,
.home-shell .index_pro_type .bd ul.catalog-home-grid li:focus-within .catalog-home-grid__media img {
    transform: scale(1.06);
    -webkit-transform: scale(1.06);
    filter: drop-shadow(0 18px 24px rgba(80,87,160,.18));
}

.home-shell .catalog-home-grid__media img {
    transition: transform .28s ease, filter .28s ease;
}

/* 2026-04-28 homepage new product card visual balance */
.home-shell .index_new_products .bd .swiper-slide {
    justify-content: flex-start;
}

.home-shell .index_new_products .bd .swiper-slide .pic {
    margin: 4px 0 22px;
}

.home-shell .index_new_products .bd .swiper-slide .pic img {
    height: 152px !important;
    filter:
        drop-shadow(0 22px 18px rgba(30, 38, 70, .16))
        drop-shadow(0 8px 18px rgba(30, 38, 70, .08));
}

.home-shell .index_new_products .bd .swiper-slide.swiper-slide-active .pic {
    margin-top: 2px;
    margin-bottom: 24px;
}

.home-shell .index_new_products .bd .swiper-slide.swiper-slide-active .pic img {
    height: 190px !important;
    filter:
        drop-shadow(0 28px 22px rgba(30, 38, 70, .18))
        drop-shadow(0 12px 24px rgba(30, 38, 70, .10));
}

.home-shell .index_new_products .bd .swiper-slide .label {
    margin-top: 12px;
}

.home-shell .index_new_products .bd .swiper-slide .label span,
.home-shell .index_new_products .bd .swiper-slide.swiper-slide-active .label span {
    color: #6558ff;
    background: rgba(106,97,255,.10);
    border-color: rgba(106,97,255,.12);
}

.home-shell .index_new_products .bd .swiper-slide .txt {
    margin-top: 2px;
}

.home-shell .index_new_products .bd .swiper-slide .txt::after {
    display: block;
}

.home-shell .home-new-cart-btn {
    display: none !important;
}

/* 2026-04-28 new release listing page */
.new-release-page {
    min-height: 100vh;
    padding: 16px 0 72px;
    background: #fff;
}

.new-release-wrap {
    max-width: 1400px;
}

.new-release-breadcrumb {
    margin-bottom: 18px;
}

.new-release-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 28px;
    align-items: center;
    min-height: 280px;
    padding: 38px 42px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(226,230,251,.95);
    background: url("/skin/image/new-release-hero.png") center right / cover no-repeat;
    box-shadow: 0 18px 50px rgba(89,97,180,.12);
}

.new-release-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.34) 62%, rgba(255,255,255,.08) 100%);
    pointer-events: none;
}

.new-release-hero__copy,
.new-release-hero__visual {
    position: relative;
    z-index: 1;
}

.new-release-hero__copy {
    transform: translateY(-18px);
}

.new-release-eyebrow {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: #665cff;
    background: rgba(102,92,255,.10);
    font-size: 13px;
    font-weight: 700;
}

.new-release-hero h1 {
    margin: 0 0 14px;
    color: #182041;
    font-size: 40px;
    line-height: 1.2;
}

.new-release-hero p {
    max-width: 720px;
    margin: 0;
    color: #7f87ad;
    font-size: 15px;
    line-height: 1.9;
}

.new-release-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 46px;
}

.new-release-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    color: #665cff;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(102,92,255,.14);
    font-size: 13px;
    font-weight: 700;
}

.new-release-hero__visual {
    position: relative;
    min-height: 210px;
}

.new-release-orbit {
    display: none;
}

.new-release-orbit,
.new-release-orbit::before,
.new-release-orbit::after {
    position: absolute;
    border-radius: 50%;
}

.new-release-orbit {
    inset: 6px 28px;
    border: 1px solid rgba(102,92,255,.18);
}

.new-release-orbit::before {
    content: "";
    left: 50%;
    top: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(102,92,255,.22), transparent 68%);
}

.new-release-orbit::after {
    content: "";
    right: 10%;
    top: 18%;
    width: 86px;
    height: 86px;
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(158,232,255,.42));
    box-shadow: 0 24px 44px rgba(89,97,180,.16);
}

.new-release-orbit span {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, #665cff, #9ee8ff);
    opacity: .86;
    box-shadow: 0 18px 34px rgba(102,92,255,.18);
}

.new-release-orbit span:nth-child(1) {
    left: 10%;
    top: 18%;
}

.new-release-orbit span:nth-child(2) {
    right: 18%;
    bottom: 18%;
    width: 38px;
    height: 38px;
}

.new-release-orbit span:nth-child(3) {
    left: 40%;
    bottom: 8%;
    width: 24px;
    height: 24px;
}

.new-release-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.new-release-panel {
    border-radius: 22px;
    border: 1px solid rgba(227,230,251,.95);
    background: rgba(255,255,255,.86);
    box-shadow: 0 10px 28px rgba(89,97,180,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.new-release-filter {
    align-self: start;
    padding: 22px;
    position: sticky;
    top: 118px;
}

.new-release-panel__head,
.new-release-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.new-release-panel__head {
    margin-bottom: 22px;
}

.new-release-panel__head h2 {
    margin: 0;
    color: #182041;
    font-size: 18px;
}

.new-release-panel__head button {
    border: none;
    background: transparent;
    color: #665cff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.new-release-filter__group + .new-release-filter__group {
    margin-top: 22px;
}

.new-release-filter__group h3 {
    margin: 0 0 12px;
    color: #283154;
    font-size: 14px;
}

.new-release-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.new-release-chips button {
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid #e2e5fb;
    background: #fff;
    color: #687197;
    font-size: 13px;
    cursor: pointer;
}

.new-release-chips button.is-active,
.new-release-chips button:hover {
    color: #fff;
    border-color: #665cff;
    background: linear-gradient(135deg, #665cff, #8a83ff);
    box-shadow: 0 10px 22px rgba(102,92,255,.20);
}

.new-release-products {
    padding: 24px;
}

.new-release-toolbar {
    margin-bottom: 18px;
}

.new-release-result-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #687197;
    font-size: 14px;
    font-weight: 500;
}

.new-release-result-summary strong,
.new-release-result-summary em {
    color: #665cff;
    font-style: normal;
    font-weight: 800;
}

.new-release-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-release-search input {
    width: 220px;
    height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #dfe3ff;
    background: #fff;
    color: #182041;
    outline: none;
}

.new-release-sort select {
    width: 150px;
    height: 40px;
    padding: 0 34px 0 14px;
    border-radius: 12px;
    border: 1px solid #dfe3ff;
    background: #fff;
    color: #182041;
    font-size: 14px;
    outline: none;
}

.new-release-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.new-release-card {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(227,230,251,.95);
    background: rgba(255,255,255,.90);
    box-shadow: 0 10px 28px rgba(89,97,180,.08);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.new-release-card:hover {
    transform: translateY(-4px);
    border-color: rgba(102,92,255,.30);
    box-shadow: 0 22px 50px rgba(96,106,200,.16);
}

.new-release-card__media {
    position: relative;
    display: grid;
    place-items: center;
    height: 210px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #f7f8ff, #fff);
}

.new-release-card__media img {
    display: block;
    width: 82%;
    height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 22px 22px rgba(30,38,70,.14));
}

.new-release-card__badge,
.new-release-card__date {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.new-release-card__badge {
    left: 14px;
    top: 14px;
    color: #fff;
    background: linear-gradient(135deg, #665cff, #8a83ff);
}

.new-release-card__date {
    right: 14px;
    top: 14px;
    color: #111827;
    background: transparent;
    border: 1px solid #dfe3ff;
    border-radius: 999px;
    font-weight: 500;
}

.new-release-card__body {
    padding: 18px;
}

.new-release-card__title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.new-release-card__title h3 {
    margin: 0;
    color: #182041;
    font-size: 18px;
    line-height: 1.42;
}

.new-release-card__sku {
    margin: 8px 0 12px;
    color: #7f87ad;
    font-size: 14px;
    line-height: 1.5;
}

.new-release-card__params {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.new-release-card__params span {
    min-height: 56px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f7f8ff;
    border: 1px solid #edf0ff;
}

.new-release-card__params strong,
.new-release-card__params em {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: normal;
}

.new-release-card__params strong {
    color: #182041;
    font-size: 13px;
    font-weight: 800;
}

.new-release-card__params em {
    margin-top: 3px;
    color: #687197;
    font-size: 12px;
}

.new-release-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.new-release-card__foot strong {
    color: #665cff;
    font-size: 26px;
    line-height: 1;
    font-weight: 900;
}

.new-release-card__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-release-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 98px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #dfe3ff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
}

.new-release-action--cart {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, #665cff, #8a83ff);
    box-shadow: 0 12px 24px rgba(102,92,255,.22);
}

.new-release-action--compare {
    color: #665cff;
    background: #fff;
}

.new-release-action.is-disabled,
.new-release-action:disabled {
    cursor: not-allowed;
    opacity: .55;
    box-shadow: none;
}

.new-release-card.is-hidden,
.new-release-empty.is-hidden {
    display: none;
}

.new-release-empty {
    grid-column: 1 / -1;
    padding: 48px 24px;
    border-radius: 20px;
    border: 1px dashed rgba(102,92,255,.26);
    color: #7f87ad;
    text-align: center;
    background: rgba(255,255,255,.68);
}

@media (max-width: 1280px) {
    .new-release-layout,
    .new-release-hero {
        grid-template-columns: 1fr;
    }

    .new-release-filter {
        position: static;
    }

    .new-release-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .new-release-page {
        padding-top: 16px;
    }

    .new-release-wrap {
        width: calc(100% - 32px);
    }

    .new-release-hero {
        padding: 28px 22px;
        background-position: 64% center;
    }

    .new-release-hero__copy {
        transform: translateY(-10px);
    }

    .new-release-hero h1 {
        font-size: 30px;
    }

    .new-release-hero__visual {
        display: none;
    }

    .new-release-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .new-release-tools {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .new-release-search,
    .new-release-search input,
    .new-release-sort,
    .new-release-sort select {
        width: 100%;
    }

    .new-release-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026-04-28 homepage desktop downscale for 1080p screens */
@media (min-width: 1025px) and (max-width: 1920px) {
    .home-shell {
        --homepage-desktop-scale: .8;
    }

    .home-shell .index_banner .swiper-container {
        height: clamp(256px, 24vw, 448px);
    }

    .home-shell > .index_pro_type > .wrap,
    .home-shell > .index_case > .wrap,
    .home-shell > .index_news > .wrap {
        zoom: var(--homepage-desktop-scale);
    }

    .home-shell > .index_pro_type {
        padding: 58px 0 69px;
    }

    .home-shell > .index_new_products,
    .home-shell > .index_case,
    .home-shell > .index_news {
        padding-bottom: 45px;
    }

    .home-shell > .index_news {
        padding-bottom: 0;
    }

    .home-shell > .index_new_products > .wrap {
        width: min(1376px, calc(100% - 56px));
        max-width: 1376px;
        padding-top: 46px;
        padding-bottom: 32px;
        border-radius: 32px;
    }

    .home-shell .index_new_products .index_hd {
        width: calc(100% - 72px);
        margin-bottom: 12px;
    }

    .home-shell .index_new_products .bd {
        height: 380px;
        padding-left: 36px;
        padding-right: 36px;
    }

    .home-shell .index_new_products .bd .swiper-container {
        height: 370px !important;
    }

    .home-shell .index_new_products .bd .swiper-wrapper {
        height: 370px !important;
        padding-top: 12px;
    }

    .home-shell .index_new_products .bd .swiper-slide,
    .home-shell .index_new_products .bd .swiper-slide.swiper-slide-active {
        width: 300px !important;
        flex: 0 0 300px;
        flex-basis: 300px;
    }

    body:has(.home-shell) .footer .wrap {
        zoom: .8;
    }

    body:has(.home-shell) .service-commitment {
        margin-top: 0;
        padding-top: 34px;
        padding-bottom: 26px;
        background: var(--homepage-surface-bg);
    }

    body:has(.home-shell) .service-commitment .wrap {
        width: min(1280px, calc(100% - 96px));
        max-width: 1280px;
    }
}

@media (max-width: 1380px) {
    .index_new_products .wrap,
    .index_case .wrap,
    .index_news .wrap {
        width: calc(100% - 56px);
    }

    .service-commitment .wrap {
        width: calc(100% - 56px);
        border-radius: 36px;
    }

    .service-commitment ul {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-commitment li::after {
        display: none;
    }

    .footer_infos ul.grid-x {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .index_new_products .wrap,
    .index_case .wrap,
    .index_news .wrap,
    .footer .wrap {
        width: calc(100% - 32px);
    }

    .index_case .wrap,
    .index_news .wrap {
        padding: 24px;
    }

    .index_new_products .index_hd,
    .index_new_products .bd {
        width: auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .index_new_products .index_hd .name h2,
    .index_case .index_hd .name h2,
    .index_news .index_hd .name h2 {
        font-size: 28px;
    }

    .index_case .bd,
    .index_case .bd .item.home-case-feature a,
    .index_news .bd,
    .index_news .bd .left,
    .footer_infos ul.grid-x {
        grid-template-columns: 1fr;
    }

    .index_case .bd .item.home-case-feature .pic {
        order: 1;
    }

    .index_case .bd .item.home-case-feature .txt {
        order: 2;
        padding: 28px 24px;
    }

    .index_case .bd .item.home-case-feature a .pic,
    .index_case .bd .item.home-case-feature a .pic img {
        min-height: 260px;
        height: 260px;
    }

    .service-commitment .wrap {
        width: calc(100% - 32px);
    }

    .service-commitment ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px;
    }

    .footer .copyright {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .index_news .bd .right .item a {
        grid-template-columns: 1fr;
    }

    .index_news .bd .right .item a .pic,
    .index_news .bd .right .item a .pic img {
        width: 100%;
        height: 180px;
    }

    .service-commitment ul {
        grid-template-columns: 1fr;
    }
}

/* 2026-04-28 stable centered carousel for new products */
@media (min-width: 1025px) {
    .home-shell .index_new_products .bd .swiper-wrapper {
        align-items: center;
    }

    .home-shell .index_new_products .bd .swiper-slide,
    .home-shell .index_new_products .bd .swiper-slide.swiper-slide-active {
        width: 300px !important;
        flex: 0 0 300px !important;
        flex-basis: 300px !important;
        height: 320px !important;
        max-height: 320px !important;
        margin-top: 18px !important;
    }

    .home-shell .index_new_products .bd .swiper-slide {
        z-index: 1;
        transform: translateY(0) !important;
        transform-origin: center center;
        transition: transform .42s ease, border-color .28s ease, box-shadow .28s ease, background-color .28s ease;
    }

    .home-shell .index_new_products .bd .swiper-slide.swiper-slide-active {
        z-index: 3;
        transform: translateY(-18px) !important;
    }

    .home-shell .index_new_products .bd .swiper-slide.swiper-slide-prev,
    .home-shell .index_new_products .bd .swiper-slide.swiper-slide-next {
        z-index: 2;
        transform: translateY(0) !important;
    }

    .home-shell .index_new_products .bd .swiper-slide:hover,
    .home-shell .index_new_products .bd .swiper-slide.swiper-slide-active:hover {
        transform: translateY(-18px) !important;
    }

    .home-shell .index_new_products .bd .swiper-slide .pic,
    .home-shell .index_new_products .bd .swiper-slide.swiper-slide-active .pic {
        margin-top: 4px;
        margin-bottom: 22px;
    }

    .home-shell .index_new_products .bd .swiper-slide .pic img,
    .home-shell .index_new_products .bd .swiper-slide.swiper-slide-active .pic img {
        height: 152px !important;
    }

    .home-shell .index_new_products .bd .swiper-slide .txt h3,
    .home-shell .index_new_products .bd .swiper-slide.swiper-slide-active .txt h3 {
        font-size: 18px;
    }
}

/* 2026-04-28 reuse home category selection effect on catalog pages */
.product-hub .product-hub-tile,
.new-release-page .new-release-card {
    position: relative;
    overflow: visible !important;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform-origin: center;
    will-change: transform;
    transition-property: transform, border-color, box-shadow, background-color, color !important;
    transition-duration: .28s !important;
    transition-timing-function: ease !important;
}

.product-hub .product-hub-tile::before,
.new-release-page .new-release-card::before {
    content: "";
    position: absolute;
    inset: -10px;
    z-index: 0;
    background: rgba(255,255,255,0);
    pointer-events: auto;
}

.product-hub .product-hub-tile > *,
.new-release-page .new-release-card > * {
    position: relative;
    z-index: 1;
}

.product-hub .product-hub-tile--product-card::after {
    border-radius: 0 0 22px 22px;
}

.new-release-page .new-release-card {
    overflow: hidden !important;
}

.product-hub .product-hub-tile:hover,
.product-hub .product-hub-tile:focus-within {
    transform: translate3d(0, -8px, 0) !important;
    -webkit-transform: translate3d(0, -8px, 0) !important;
    border-color: rgba(101,88,255,.72) !important;
    /* original: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,247,255,.86)) */
    background: #fff !important;
    box-shadow:
        inset 0 0 0 2px rgba(101,88,255,.28),
        0 28px 68px rgba(91,99,188,.24) !important;
}

.new-release-page .new-release-card:hover,
.new-release-page .new-release-card:focus-within {
    transform: translate3d(0, -8px, 0) !important;
    -webkit-transform: translate3d(0, -8px, 0) !important;
    border-color: rgba(101,88,255,.72) !important;
    background: #fff !important;
    box-shadow: 0 28px 68px rgba(91,99,188,.24) !important;
}

.product-hub .product-hub-tile:hover .product-hub-tile__body h3,
.product-hub .product-hub-tile:focus-within .product-hub-tile__body h3,
.new-release-page .new-release-card:hover .new-release-card__title h3,
.new-release-page .new-release-card:focus-within .new-release-card__title h3 {
    color: #4f46e5 !important;
}

.product-hub .product-hub-tile__media img,
.new-release-page .new-release-card__media img {
    transition: transform .28s ease, filter .28s ease;
    transform-origin: center;
}

.product-hub .product-hub-tile:hover .product-hub-tile__media img,
.product-hub .product-hub-tile:focus-within .product-hub-tile__media img,
.new-release-page .new-release-card:hover .new-release-card__media img,
.new-release-page .new-release-card:focus-within .new-release-card__media img {
    transform: scale(1.06) !important;
    -webkit-transform: scale(1.06) !important;
    filter: drop-shadow(0 18px 24px rgba(80,87,160,.18)) !important;
}
