/*
 * Yinse Custom Theme
 * For YinSe Store
 */
:root {
    --xn-block-gap: 18px;
    --xn-ink: #102738;
    --xn-ink-2: #1d4055;
    --xn-building: #0b2032;
    --xn-hair: #d96a2e;
    --xn-hair-soft: #f6bc63;
    --xn-sky: #ffe7bd;
    --xn-paper: rgba(248, 253, 255, 0.82);
    --xn-paper-2: rgba(234, 248, 251, 0.72);
    --xn-line: rgba(217, 106, 46, 0.22);
    --xn-line-strong: rgba(246, 188, 99, 0.42);
    --xn-pink: #c24f6f;
    --xn-brick: #8a1f3d;
    --xn-success: #23b987;
    --xn-warning: #f0aa38;
    --xn-shadow: 0 18px 42px rgba(128, 52, 35, 0.13);
    --xn-shadow-hover: 0 24px 54px rgba(128, 52, 35, 0.18);
}

body.yinse-theme.xn {
    --yinse-layout-gap: var(--xn-block-gap);
    --yinse-bg: var(--xn-paper-2);
    --yinse-surface: var(--xn-paper);
    --yinse-black: #9a3a52;
    --yinse-text: var(--xn-ink);
    --yinse-muted: #607889;
    --yinse-muted-strong: #35586b;
    --yinse-muted-soft: var(--xn-hair);
    --yinse-link: #d96a2e;
    --yinse-border: var(--xn-line);
    --yinse-border-strong: var(--xn-line-strong);
    --yinse-accent: var(--xn-hair);
    --yinse-accent-light: var(--xn-hair-soft);
    --yinse-accent-rgb: 217, 106, 46;
    --yinse-shadow-soft: var(--xn-shadow);
    --yinse-shadow-elevated: var(--xn-shadow-hover);
    min-height: 100vh;
    background-color: #f6f6f4 !important;
    background-image:
        var(--yinse-page-background-image, none) !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    color: var(--xn-ink);
}

body.yinse-theme.xn::before {
    display: none !important;
}

body.yinse-theme.xn.yinse-bg-mask-on::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    display: block !important;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.56));
}

.yinse-heart-particle-layer {
    position: fixed;
    inset: 0;
    z-index: 12;
    overflow: hidden;
    pointer-events: none;
    contain: layout paint;
}

.yinse-spark-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.yinse-heart-particle {
    position: absolute;
    left: var(--heart-x, 50vw);
    top: var(--heart-y, 70vh);
    width: var(--heart-size, 18px);
    height: var(--heart-size, 18px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--heart-color, var(--xn-pink));
    font-size: var(--heart-size, 18px);
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    border-radius: 999px;
    text-shadow:
        0 0 5px rgba(217, 106, 46, 0.42),
        0 0 12px rgba(128, 52, 35, 0.28);
    filter:
        drop-shadow(0 0 6px rgba(128, 52, 35, 0.34))
        drop-shadow(0 5px 10px rgba(93, 24, 8, 0.18));
    mix-blend-mode: normal;
    transform: translate3d(-50%, -50%, 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-mouse-rotate, 0deg))) scale(0.72);
    animation: yinseHeartFloat var(--heart-duration, 2.2s) cubic-bezier(0.19, 0.78, 0.24, 1) forwards;
    transition: filter 0.22s ease, text-shadow 0.22s ease;
}

.yinse-heart-particle.is-near-mouse {
    filter:
        drop-shadow(0 0 10px rgba(154, 58, 31, 0.44))
        drop-shadow(0 8px 14px rgba(93, 24, 8, 0.24));
}

@keyframes yinseHeartFloat {
    0% {
        opacity: 0;
        transform: translate3d(-50%, -50%, 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-mouse-rotate, 0deg))) scale(0.18);
    }
    8% {
        opacity: var(--heart-opacity, 0.72);
        transform: translate3d(calc(-50% + var(--heart-drift-mid, 18px)), calc(-50% + var(--heart-lift, -28px)), 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-mouse-rotate, 0deg))) scale(1.18);
    }
    34% {
        opacity: var(--heart-opacity, 0.72);
        transform: translate3d(calc(-50% + var(--heart-drift-mid, 18px)), calc(-50% + var(--heart-lift, -28px)), 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-spin, 28deg) + var(--heart-mouse-rotate, 0deg))) scale(0.9);
    }
    68% {
        opacity: 0.32;
        transform: translate3d(calc(-50% + var(--heart-drift, -18px)), calc(-50% + var(--heart-fall, 40px)), 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-spin, 28deg) + var(--heart-mouse-rotate, 0deg))) scale(0.62);
    }
    100% {
        opacity: 0;
        transform: translate3d(calc(-50% + var(--heart-drift, -18px)), calc(-50% + var(--heart-fall, 40px)), 0) rotate(calc(var(--heart-rotate, 0deg) + var(--heart-spin, 28deg) + var(--heart-mouse-rotate, 0deg))) scale(0.12);
    }
}

@media (prefers-reduced-motion: reduce) {
    .yinse-heart-particle-layer {
        display: none !important;
    }
}

@media (max-width: 767.98px), (hover: none), (pointer: coarse) {
    .yinse-heart-particle-layer {
        display: none !important;
    }
}

body.xn .yinse-page-frame {
    min-height: 100vh;
}

body.xn .yinse-main {
    margin-top: var(--xn-block-gap) !important;
}

body.xn .yinse-nav-shell + .yinse-nav-shell,
body.xn .yinse-header + .yinse-nav-shell {
    padding-top: var(--xn-block-gap) !important;
}

body.xn .yinse-shop-layout {
    gap: var(--xn-block-gap) !important;
}

body.xn .yinse-catalog-panel,
body.xn .yinse-inline-item-panel,
body.xn .yinse-item-unified-panel,
body.xn .yinse-description-panel,
body.xn .yinse-item-panel {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.xn .yinse-nav,
body.xn .panel,
body.xn .yinse-item-unified-panel,
body.xn .yinse-footer-wrap,
body.xn .yinse-layer-popup,
body.xn .component-popup {
    border: 1px solid var(--xn-line) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 251, 253, 0.46)) !important;
    color: var(--xn-ink) !important;
    box-shadow: var(--xn-shadow) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
}

body.xn .yinse-nav {
    border-radius: 18px !important;

}

body.xn .yinse-nav::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--xn-hair), var(--xn-pink), transparent);
    opacity: 0.58;
}

body.xn .yinse-brand,
body.xn .yinse-brand-name,
body.xn .yinse-nav-link,
body.xn .yinse-user-chip,
body.xn .yinse-user-name,
body.xn .yinse-user-balance,
body.xn .dropdown-item,
body.xn .form-control,
body.xn .yinse-searchbox,
body.xn .yinse-search-combo,
body.xn .yinse-category-name,
body.xn .yinse-commodity-name,
body.xn .yinse-description-body,
body.xn .yinse-notice-popup-inner {
    color: var(--xn-ink) !important;
}

body.xn .yinse-brand-mark,
body.xn .yinse-user-avatar,
body.xn .yinse-current-cat-icon,
body.xn .item-cover {
    border: 1px solid rgba(53, 201, 213, 0.36) !important;
    box-shadow: 0 0 0 4px rgba(53, 201, 213, 0.08) !important;
}

body.xn .yinse-current-cat-icon {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}

body.xn .yinse-brand {
    position: relative;
    isolation: isolate;
    min-height: 48px;
    padding: 5px 14px 5px 6px;
    border: 1px solid transparent;
    border-radius: 15px;
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        background-color 0.28s ease,
        box-shadow 0.28s ease;
}

body.xn .yinse-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22px 50%, rgba(255, 79, 163, 0.18), transparent 36px),
        radial-gradient(circle at calc(100% - 18px) 18px, rgba(53, 201, 213, 0.16), transparent 42px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(200, 247, 253, 0.24));
    opacity: 0.62;
    transform: scale(0.98);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

body.xn .yinse-brand::after {
    content: "鉁?;
    position: absolute;
    right: 7px;
    top: 3px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 79, 163, 0.20);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.64);
    color: var(--xn-pink);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.78;
    transform: translateY(0) rotate(10deg) scale(0.92);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

body.xn .yinse-brand-mark {
    position: relative;
    border: 1px solid rgba(53, 201, 213, 0.42) !important;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.92), rgba(234, 248, 251, 0.70)) !important;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.72),
        0 0 0 6px rgba(53, 201, 213, 0.08),
        0 8px 20px rgba(26, 73, 95, 0.13) !important;
    transform: translateY(0) rotate(0deg);
    transition:
        transform 0.36s cubic-bezier(0.2, 0.9, 0.2, 1.1),
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        filter 0.28s ease;
    animation: yinseBrandAvatarFloat 4.8s ease-in-out infinite;
}

body.xn .yinse-brand-chip {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 22px 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
}

body.xn .yinse-brand-chip::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 24px;
    bottom: 3px;
    height: 5px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 79, 163, 0.34), rgba(53, 201, 213, 0.46), rgba(126, 232, 168, 0.30));
    opacity: 0;
    transform: scaleX(0.24) translateY(2px);
    transform-origin: left center;
    pointer-events: none;
    filter: blur(0.2px);
    transition:
        opacity 0.28s ease,
        transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1.1);
}

body.xn .yinse-brand-chip::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 22px;
    height: 7px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 3px 50%, var(--xn-pink) 0 2.5px, transparent 3px),
        radial-gradient(circle at 11px 50%, var(--xn-hair) 0 2.5px, transparent 3px),
        radial-gradient(circle at 19px 50%, #7ee8a8 0 2.5px, transparent 3px);
    opacity: 0.72;
    transform: translateY(-50%);
}

body.xn .yinse-brand-name {
    position: relative;
    z-index: 1;
    color: transparent !important;
    background: linear-gradient(90deg, #133047 0%, #128da1 42%, var(--xn-pink) 72%, #35c9d5 100%);
    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 900;
    text-shadow: 0 6px 18px rgba(26, 73, 95, 0.10);
    transform: translateY(0);
    transition:
        transform 0.28s ease,
        background-position 0.38s ease,
        filter 0.28s ease,
        letter-spacing 0.28s ease;
}

body.xn .yinse-brand:hover,
body.xn .yinse-brand:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(39, 174, 193, 0.22);
    background: rgba(255, 255, 255, 0.20);
    box-shadow:
        0 12px 28px rgba(26, 73, 95, 0.12),
        0 0 18px rgba(53, 201, 213, 0.10);
}

body.xn .yinse-brand:hover::before,
body.xn .yinse-brand:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

body.xn .yinse-brand:hover::after,
body.xn .yinse-brand:focus-visible::after {
    opacity: 1;
    transform: translateY(-2px) rotate(-8deg) scale(1.1);
}

body.xn .yinse-brand:hover .yinse-brand-mark,
body.xn .yinse-brand:focus-visible .yinse-brand-mark {
    border-color: rgba(255, 79, 163, 0.40) !important;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.78),
        0 0 0 7px rgba(255, 79, 163, 0.10),
        0 12px 24px rgba(26, 73, 95, 0.16),
        0 0 20px rgba(53, 201, 213, 0.24) !important;
    filter: saturate(1.08);
    animation: yinseBrandLogoShake 0.72s ease both;
}

body.xn .yinse-brand:hover .yinse-brand-chip::before,
body.xn .yinse-brand:focus-visible .yinse-brand-chip::before {
    opacity: 1;
    transform: scaleX(1) translateY(0);
}

body.xn .yinse-brand:hover .yinse-brand-name,
body.xn .yinse-brand:focus-visible .yinse-brand-name {
    transform: translateY(-1px);
    background-position: 100% 50%;
    filter:
        drop-shadow(1px 0 0 rgba(255, 79, 163, 0.22))
        drop-shadow(-1px 0 0 rgba(53, 201, 213, 0.20))
        drop-shadow(0 5px 12px rgba(53, 201, 213, 0.18));
    letter-spacing: 0.018em;
}

@keyframes yinseBrandAvatarFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-1.5px) rotate(2deg);
    }
}

@keyframes yinseBrandLogoShake {
    0% {
        transform: translateY(-1px) rotate(0deg) scale(1.04);
    }
    18% {
        transform: translateY(-2px) rotate(-11deg) scale(1.06);
    }
    36% {
        transform: translateY(-2px) rotate(9deg) scale(1.06);
    }
    54% {
        transform: translateY(-1px) rotate(-7deg) scale(1.05);
    }
    72% {
        transform: translateY(-1px) rotate(5deg) scale(1.045);
    }
    100% {
        transform: translateY(-1px) rotate(0deg) scale(1.04);
    }
}

@media (prefers-reduced-motion: reduce) {
    body.xn .yinse-brand-mark {
        animation: none;
    }

    body.xn .yinse-brand:hover .yinse-brand-chip::before,
    body.xn .yinse-brand:focus-visible .yinse-brand-chip::before {
        transition: none;
    }
}

body.xn .yinse-nav-link,
body.xn .yinse-button-light,
body.xn .yinse-user-chip,
body.xn .yinse-searchbox,
body.xn .yinse-search-combo,
body.xn .form-control,
body.xn .qty-group,
body.xn .password-form .input-group {
    border-color: rgba(39, 174, 193, 0.22) !important;
    background: rgba(234, 248, 251, 0.74) !important;
    box-shadow: none !important;
}

body.xn .yinse-nav-link:hover,
body.xn .yinse-nav-link.is-active,
body.xn .yinse-button-dark,
body.xn .yinse-commodity-action-link,
body.xn .sku.is-primary,
body.xn .view-card-btn,
body.xn .component-popup .queryBtn,
body.xn .component-popup .query-button {
    border-color: #129eb5 !important;
    background: linear-gradient(135deg, #129eb5, #36cbd8 58%, #58a9e8) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(18, 158, 181, 0.26) !important;
}

body.xn .yinse-button-light:hover,
body.xn .yinse-category-link:hover,
body.xn .yinse-category-link.is-active,
body.xn .yinse-dropdown-menu .dropdown-item:hover {
    border-color: rgba(39, 174, 193, 0.34) !important;
    background: rgba(232, 249, 252, 0.72) !important;
    color: #0f6175 !important;
}

body.xn .panel {
    position: relative;
    border-radius: 20px !important;
    overflow: hidden;
}

body.xn .panel::before,
body.xn .yinse-hero-banner--notice::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 3px;
    z-index: 2;
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent, rgba(53, 201, 213, 0.74), rgba(255, 79, 163, 0.62), rgba(141, 234, 242, 0.72), transparent);
    opacity: 0.72;
}

body.xn .yinse-hero-banner--notice::after {
    display: block !important;
}

body.xn .panel-header {
    position: relative;
    border-bottom: 1px solid rgba(39, 174, 193, 0.16) !important;
    background:
        linear-gradient(90deg, rgba(223, 247, 251, 0.48), rgba(248, 253, 255, 0.22)) !important;
}

body.xn .panel-header::after,
.yinse-hero-notice-head::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 8px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 4px 50%, var(--xn-pink) 0 3px, transparent 3.5px),
        radial-gradient(circle at 17px 50%, var(--xn-hair) 0 3px, transparent 3.5px),
        radial-gradient(circle at 30px 50%, #7ee8a8 0 3px, transparent 3.5px);
    opacity: 0.74;
}

body.xn .yinse-catalog-heading::after {
    display: block !important;
    top: 18px;
    right: 18px;
}

body.xn .yinse-catalog-tools {
    position: absolute;
    top: 32px;
    right: 22px;
    width: min(100%, 360px);
    display: flex;
    justify-content: flex-end;
}

body.xn .yinse-catalog-tools::before {
    display: none !important;
}

body.xn .yinse-catalog-tools::after {
    display: none !important;
}

body.xn .panel-kicker,
body.xn .yinse-notice-kicker,
body.xn .yinse-commodity-muted,
body.xn .yinse-footer-copy,
body.xn .yinse-footer-icp {
    color: #607889 !important;
}

body.xn .panel-title,
body.xn .yinse-index-panel-title,
body.xn .yinse-item-inline-title,
body.xn .yinse-item-price .price,
body.xn .yinse-current-name,
body.xn .panel-title-small {
    color: var(--xn-ink-2) !important;
    text-shadow: none !important;
}

.yinse-banner-shell {
    margin-top: var(--xn-block-gap) !important;
}

body.xn .yinse-hero-banner {
    position: relative;
    min-height: 256px;
    padding: 0 !important;
    border: 1px solid var(--xn-line) !important;
    border-radius: 20px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 251, 253, 0.46)) !important;
    box-shadow: var(--xn-shadow) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    overflow: hidden;
    overflow: clip;
    isolation: isolate;
}

body.xn .yinse-hero-banner--notice {
    display: block !important;
    min-height: 256px;
    padding: 0 !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 251, 253, 0.46)) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(122%) !important;
    box-shadow: var(--xn-shadow) !important;
}

.yinse-hero-notice-head {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 13px 20px 12px;
    border-bottom: 1px solid rgba(39, 174, 193, 0.16);
    background:
        linear-gradient(90deg, rgba(223, 247, 251, 0.48), rgba(248, 253, 255, 0.22)) !important;
}

.yinse-hero-notice-title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
    color: var(--xn-ink) !important;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.yinse-hero-notice-title i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(39, 174, 193, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: #0b7f9a;
    box-shadow: 0 8px 18px rgba(26, 73, 95, 0.12);
}

.yinse-hero-news.yinse-news-ticker {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    padding: 4px 0;
    border: 0 !important;
    color: var(--xn-ink) !important;
    background: transparent !important;
    box-shadow: none !important;
}

.yinse-hero-news .yinse-news-ticker-track {
    font-size: 13px;
    line-height: 1.35;
}

.yinse-hero-notice-body {
    padding: 14px 18px 18px;
    color: var(--xn-ink) !important;
}

.yinse-hero-notice-body > :first-child {
    margin-top: 0 !important;
}

.yinse-hero-notice-body > :last-child {
    margin-bottom: 0 !important;
}

.yinse-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: inherit;
}

.yinse-hero-media-image {
    position: absolute;
    left: 50%;
    top: var(--yinse-hero-bg-y, 20%);
    width: var(--yinse-hero-bg-size, 103%);
    max-width: none;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    transform: translate3d(calc(-50% + var(--yinse-hero-shift-x, 0px)), calc(var(--yinse-hero-bg-y-neg, -20%) + var(--yinse-hero-shift-y, 0px)), 0) scale(1.02);
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
}

body.xn .yinse-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(8, 28, 45, 0.22), transparent 32%, rgba(255, 255, 255, 0.04)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 28%, rgba(8, 28, 45, 0.10));
}

body.xn .yinse-hero-banner::after {
    display: none !important;
}

body.xn .yinse-hero-banner--notice::after {
    display: block !important;
}

body.xn .yinse-hero-banner--notice::before {
    display: none !important;
}

body.xn .yinse-hero-banner--image {
    --yinse-sign-mx: 50%;
    --yinse-sign-my: 50%;
}

body.xn .yinse-hero-banner--image .yinse-hero-title::before {
    content: "";
    position: absolute;
    inset: -28px -34px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.54;
    background:
        radial-gradient(circle at var(--yinse-sign-mx, 50%) var(--yinse-sign-my, 50%), rgba(255, 255, 255, 0.28), transparent 26%),
        linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.16) 50%, transparent 62%);
    filter: blur(18px);
    animation: yinseSignAmbientGlow 5.4s ease-in-out infinite;
}

.yinse-hero-title {
    position: absolute;
    left: 42px;
    bottom: 86px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    pointer-events: none;
}

.yinse-hero-title span {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: clamp(46px, 6vw, 86px);
    font-weight: 950;
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow:
        0 5px 24px rgba(6, 22, 36, 0.46),
        0 0 34px rgba(246, 188, 99, 0.30),
        0 0 18px rgba(194, 79, 111, 0.22);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
    animation:
        yinseHeroTitleIn 0.9s cubic-bezier(0.2, 1.25, 0.18, 1) both,
        yinseHeroTitleBreath 3.6s ease-in-out 0.9s infinite;
}

.yinse-hero-title span::before,
.yinse-hero-title span::after {
    content: attr(data-yinse-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.yinse-hero-title span::before {
    z-index: -1;
    color: rgba(255, 255, 255, 0.30);
    transform: translate(4px, 3px);
    filter: blur(1px);
}

.yinse-hero-title span::after {
    color: transparent;
    background:
        linear-gradient(100deg, transparent 0 34%, rgba(255, 255, 255, 0.92) 45%, transparent 58%),
        linear-gradient(180deg, #fff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0.72;
    mix-blend-mode: screen;
    transform: translateX(-120%);
    animation: yinseHeroTitleSweep 3.8s ease-in-out 1.1s infinite;
}

.yinse-hero-title .yinse-title-glitch {
    position: absolute;
    inset: 0;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: #fff;
    opacity: 0.14;
    pointer-events: none;
    clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%);
    animation: yinseHeroSoftGlitch 2.8s steps(2, end) infinite;
}

.yinse-hero-title strong {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffe7bd;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
    text-shadow:
        0 4px 18px rgba(6, 22, 36, 0.42),
        0 0 16px rgba(217, 106, 46, 0.22);
    animation: yinseHeroSubIn 0.8s cubic-bezier(0.2, 1, 0.2, 1) 0.18s both;
}

.yinse-hero-title strong::after {
    content: "";
    flex: 1;
    min-width: 160px;
    height: 8px;
    transform: translateY(4px);
    background:
        radial-gradient(circle, rgba(255, 237, 214, 0.95) 0 2px, transparent 2.7px) 0 50% / 12px 8px repeat-x;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.28));
    animation: yinseHeroDotMove 1.2s linear infinite;
    mask-image: linear-gradient(90deg, #000 0 84%, transparent);
}

.yinse-hero-banner .container-fluid,
.yinse-hero-banner .yinse-nav-main,
.yinse-hero-banner .cyber-brand-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.yinse-hero-banner .yinse-nav-main {
    padding: 0 !important;
    border: 0 !important;
}

.yinse-hero-actions {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 28px;
    z-index: 2;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.yinse-hero-actions .cyber-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
}

.yinse-hero-actions .cyber-btn-item {
    --yinse-btn-lift: 0px;
    min-height: 38px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(217, 106, 46, 0.28);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(248, 244, 242, 0.68)) !important;
    color: #1d4055 !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none !important;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 24px rgba(26, 73, 95, 0.10);
    transform: translateY(var(--yinse-btn-lift));
    transition:
        transform 0.22s cubic-bezier(0.2, 1.4, 0.2, 1),
        background 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        color 0.18s ease;
    animation:
        yinseHeroBtnIn 0.65s cubic-bezier(0.2, 1.28, 0.18, 1) both,
        yinseHeroBtnIdle 3.6s ease-in-out infinite;
    animation-delay:
        calc(var(--yinse-btn-index, 0) * 0.08s),
        calc(0.9s + var(--yinse-btn-index, 0) * 0.16s);
}

.yinse-hero-actions .cyber-btn-item::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.82) 48%, transparent 62%);
    opacity: 0.65;
    transform: translateX(-130%);
    transition: transform 0.65s ease;
}

.yinse-hero-actions .cyber-btn-item::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: inherit;
    background: radial-gradient(circle at var(--yinse-btn-rx, 50%) var(--yinse-btn-ry, 50%), rgba(255, 255, 255, 0.76), transparent 28%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.yinse-hero-actions .cyber-btn-item > * {
    position: relative;
    z-index: 2;
}

.yinse-hero-actions .cyber-btn-item:hover {
    --yinse-btn-lift: -5px;
    border-color: rgba(194, 79, 111, 0.42);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 242, 246, 0.86)) !important;
    color: #5d1808 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.90),
        0 16px 30px rgba(26, 73, 95, 0.14),
        0 0 18px rgba(217, 106, 46, 0.14);
}

.yinse-hero-actions .cyber-btn-item:hover::before {
    transform: translateX(130%);
}

.yinse-hero-actions .cyber-btn-item:hover::after {
    opacity: 0.62;
}

.yinse-hero-actions .cyber-btn-item:active {
    transform: translateY(-1px) scale(0.96);
}

.yinse-hero-ripple {
    position: absolute;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: yinseHeroRipple 0.56s ease-out forwards;
}

.yinse-hero-spark {
    position: absolute;
    z-index: 5;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 240, 218, 0.95);
    box-shadow: 0 0 12px rgba(255, 240, 218, 0.82);
    pointer-events: none;
    animation: yinseHeroSpark 0.72s ease-out forwards;
}

@keyframes yinseSignAmbientGlow {
    0%, 100% {
        opacity: 0.42;
        transform: translate3d(0, 0, 0) scale(0.98);
    }
    50% {
        opacity: 0.72;
        transform: translate3d(0, -4px, 0) scale(1.02);
    }
}

@keyframes yinseHeroTitleIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

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

@keyframes yinseHeroTitleSweep {
    0%, 36% {
        transform: translateX(-125%);
        opacity: 0;
    }
    48% {
        opacity: 0.86;
    }
    68%, 100% {
        transform: translateX(120%);
        opacity: 0;
    }
}

@keyframes yinseHeroSoftGlitch {
    0%, 88%, 100% {
        transform: translate(0, 0);
        clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%);
    }
    91% {
        transform: translate(7px, -1px);
        clip-path: polygon(0 16%, 100% 16%, 100% 38%, 0 38%);
    }
    94% {
        transform: translate(-5px, 1px);
        clip-path: polygon(0 2%, 100% 2%, 100% 26%, 0 26%);
    }
}

@keyframes yinseHeroSubIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes yinseHeroDotMove {
    to {
        background-position: 12px 50%;
    }
}

@keyframes yinseHeroBtnIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.9);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(var(--yinse-btn-lift)) scale(1);
        filter: blur(0);
    }
}

@keyframes yinseHeroBtnIdle {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -2px;
    }
}

@keyframes yinseHeroRipple {
    to {
        transform: translate(-50%, -50%) scale(9);
        opacity: 0;
    }
}

@keyframes yinseHeroSpark {
    from {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(var(--yinse-spark-x), var(--yinse-spark-y)) scale(0.1);
    }
}

body.xn .yinse-news-ticker {
    border-color: rgba(39, 174, 193, 0.22) !important;
    background: transparent !important;
    color: var(--xn-ink) !important;
    box-shadow: none !important;
}

body.xn .yinse-news-ticker-track span[style] {
    border: 1px solid rgba(255, 79, 163, 0.26) !important;
    background: rgba(255, 244, 250, 0.82) !important;
    color: #e83f93 !important;
    border-radius: 999px !important;
    box-shadow: 0 6px 16px rgba(255, 79, 163, 0.12) !important;
}

body.xn .yinse-category-link {
    position: relative;
    overflow: hidden;
    border-color: rgba(39, 174, 193, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(226, 247, 251, 0.34)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 5px 12px rgba(26, 73, 95, 0.045) !important;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease,
        color 0.28s ease !important;
}

body.xn .yinse-category-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(53, 201, 213, 0.055), transparent 42%),
        radial-gradient(circle at 12% 20%, rgba(255, 79, 163, 0.055), transparent 24%);
    opacity: 0.58;
}

body.xn .yinse-category-link > * {
    position: relative;
    z-index: 1;
}

body.xn .yinse-category-link::after {
    content: "鉁?;
    position: absolute;
    top: 6px;
    right: 8px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    transform: translateY(-5px) rotate(12deg);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

body.xn .yinse-category-link:hover::after,
body.xn .yinse-category-link.is-active::after {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

body.xn .yinse-category-link:hover,
body.xn .yinse-category-link.is-active {
    border-color: rgba(39, 174, 193, 0.38) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(218, 247, 251, 0.52)) !important;
    box-shadow:
        0 9px 18px rgba(26, 73, 95, 0.10),
        0 0 14px rgba(53, 201, 213, 0.11) !important;
}

body.xn .yinse-category-link.is-active:hover {
    transform: translateY(-5px) scale(1.018);
    border-color: rgba(255, 79, 163, 0.42) !important;
    background:
        radial-gradient(circle at 16px 14px, rgba(255, 79, 163, 0.12), transparent 68px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(207, 246, 251, 0.62)) !important;
    box-shadow:
        0 12px 24px rgba(26, 73, 95, 0.13),
        0 0 0 2px rgba(255, 79, 163, 0.10),
        0 0 18px rgba(53, 201, 213, 0.17) !important;
}

body.xn .yinse-category-link.is-active:hover::after {
    transform: translateY(-1px) rotate(10deg) scale(1.12);
}

body.xn .yinse-category-tree.is-floating .yinse-category-row {
    animation-name: yinseCategoryBuoy !important;
    animation-timing-function: cubic-bezier(0.42, 0, 0.26, 1) !important;
    transform-origin: 50% 62%;
}

body.xn .yinse-category-tree.is-floating .yinse-category-row:hover,
body.xn .yinse-category-tree.is-floating .yinse-category-row:has(.yinse-category-link.is-active) {
    animation-play-state: paused;
}

@keyframes yinseCategoryBuoy {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    16% {
        transform:
            translate3d(calc(var(--yinse-category-float-x1, 2px) * 0.45), calc(var(--yinse-category-float-y1, -3px) * 0.35), 0)
            rotate(calc(var(--yinse-category-float-r1, 0.35deg) * 0.45))
            scale(1.006);
    }
    38% {
        transform:
            translate3d(var(--yinse-category-float-x1, 2px), var(--yinse-category-float-y1, -3px), 0)
            rotate(var(--yinse-category-float-r1, 0.35deg))
            scale(1.012);
    }
    58% {
        transform:
            translate3d(calc(var(--yinse-category-float-x2, -3px) * 0.74), calc(var(--yinse-category-float-y2, 2px) * 0.82), 0)
            rotate(calc(var(--yinse-category-float-r2, -0.35deg) * 0.82))
            scale(1.004);
    }
    78% {
        transform:
            translate3d(var(--yinse-category-float-x3, 2px), var(--yinse-category-float-y3, 3px), 0)
            rotate(calc(var(--yinse-category-float-r2, -0.35deg) * -0.42))
            scale(1.01);
    }
}

body.xn .yinse-table-wrap,
body.xn .yinse-card-catalog-wrap,
body.xn .yinse-commodity-card,
body.xn .component-popup .fixed-table-container,
body.xn .component-popup .mcy-card {
    border-color: rgba(39, 174, 193, 0.18) !important;
    background: rgba(255, 255, 255, 0.38) !important;
    box-shadow: none !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
}

body.xn .yinse-commodity-table thead th,
body.xn .component-popup .bootstrap-table .fixed-table-container .table thead th {
    background: rgba(230, 247, 251, 0.46) !important;
    color: var(--xn-ink-2) !important;
}

body.xn .item-list .yinse-commodity-row:hover,
body.xn .yinse-commodity-card:hover,
body.xn .yinse-commodity-card.is-inline-active {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 9px !important;
}

body.xn .yinse-commodity-card .row-inner {
    position: relative;
    overflow: hidden;
}

body.xn .yinse-commodity-card:hover .row-inner,
body.xn .yinse-commodity-card.is-inline-active .row-inner {
    transform: translateY(-4px) !important;
    border-color: rgba(53, 201, 213, 0.36) !important;
    background:
        radial-gradient(circle at 18px 16px, rgba(255, 79, 163, 0.08), transparent 72px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(222, 248, 252, 0.48)) !important;
    box-shadow:
        0 12px 26px rgba(26, 73, 95, 0.13),
        0 0 18px rgba(53, 201, 213, 0.13) !important;
}

body.xn .yinse-commodity-card.is-inline-active .row-inner {
    border-color: rgba(255, 79, 163, 0.46) !important;
    background:
        radial-gradient(circle at 18px 16px, rgba(255, 79, 163, 0.13), transparent 76px),
        radial-gradient(circle at calc(100% - 18px) 20px, rgba(53, 201, 213, 0.13), transparent 82px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(217, 248, 252, 0.56)) !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        inset 0 0 0 2px rgba(53, 201, 213, 0.12),
        0 13px 28px rgba(26, 73, 95, 0.15),
        0 0 0 2px rgba(255, 79, 163, 0.12),
        0 0 20px rgba(53, 201, 213, 0.16) !important;
}

body.xn .yinse-commodity-card.is-inline-active:hover .row-inner {
    transform: translateY(-6px) scale(1.012) !important;
    border-color: rgba(255, 79, 163, 0.62) !important;
    background:
        radial-gradient(circle at 18px 16px, rgba(255, 79, 163, 0.17), transparent 82px),
        radial-gradient(circle at calc(100% - 18px) 20px, rgba(53, 201, 213, 0.17), transparent 88px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(207, 247, 252, 0.64)) !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.78),
        inset 0 0 0 2px rgba(53, 201, 213, 0.16),
        0 17px 34px rgba(26, 73, 95, 0.18),
        0 0 0 2px rgba(255, 79, 163, 0.18),
        0 0 26px rgba(53, 201, 213, 0.22) !important;
}

body.xn .yinse-commodity-card.is-inline-active:hover .row-inner::before {
    transform: translateY(-1px) rotate(10deg) scale(1.12);
}

body.xn .yinse-commodity-card .row-inner::before {
    content: "鉁?;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    transform: translateY(-5px) rotate(12deg);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

body.xn .yinse-commodity-card:hover .row-inner::before,
body.xn .yinse-commodity-card.is-inline-active .row-inner::before {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

body.xn .yinse-commodity-thumb,
body.xn .yinse-category-icon {
    outline: 3px solid rgba(255, 255, 255, 0.52);
    outline-offset: -3px;
}

body.xn .yinse-commodity-thumb {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-origin: border-box;
    transition:
        transform 0.34s cubic-bezier(0.2, 0.9, 0.2, 1.1),
        filter 0.34s ease,
        box-shadow 0.34s ease,
        border-color 0.34s ease !important;
}

body.xn .yinse-commodity-thumb::before {
    content: "";
    position: absolute;
    inset: -35%;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.72) 45%, rgba(141, 234, 242, 0.42) 51%, transparent 64%);
    opacity: 0;
    transform: translateX(-48%) rotate(8deg);
}

body.xn .yinse-commodity-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 79, 163, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 58%);
    opacity: 0;
    transition: opacity 0.24s ease;
}

body.xn .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb,
body.xn .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb {
    animation: yinseLogoStickerPop 0.72s cubic-bezier(0.2, 0.9, 0.2, 1.1) both !important;
    border-color: rgba(255, 79, 163, 0.34) !important;
    filter: saturate(1.12) contrast(1.03);
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.52),
        0 10px 22px rgba(26, 73, 95, 0.15),
        0 0 20px rgba(53, 201, 213, 0.22),
        0 0 14px rgba(255, 79, 163, 0.13) !important;
}

body.xn .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb::before,
body.xn .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb::before {
    animation: yinseLogoScan 0.86s ease both;
}

body.xn .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb::after,
body.xn .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb::after {
    opacity: 1;
}

body.xn .yinse-card-logo-border-off .yinse-commodity-thumb {
    border-color: transparent !important;
    outline: 0 !important;
}

body.xn .yinse-card-logo-border-off .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb,
body.xn .yinse-card-logo-border-off .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb {
    border-color: transparent !important;
}

body.xn .yinse-card-logo-glow-off .yinse-commodity-thumb,
body.xn .yinse-card-logo-glow-off .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb,
body.xn .yinse-card-logo-glow-off .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb {
    box-shadow: none !important;
    filter: none !important;
}

body.xn .yinse-card-logo-glow-off .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb::after,
body.xn .yinse-card-logo-glow-off .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb::after {
    opacity: 0;
}

@keyframes yinseLogoStickerPop {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    }
    24% {
        transform: translate3d(0, -5px, 0) rotate(-5deg) scale(1.08);
    }
    48% {
        transform: translate3d(0, -3px, 0) rotate(4deg) scale(1.045);
    }
    72% {
        transform: translate3d(0, -4px, 0) rotate(-2deg) scale(1.06);
    }
    100% {
        transform: translate3d(0, -3px, 0) rotate(0deg) scale(1.055);
    }
}

@keyframes yinseLogoScan {
    0% {
        opacity: 0;
        transform: translateX(-52%) rotate(8deg);
    }
    24% {
        opacity: 0.95;
    }
    100% {
        opacity: 0;
        transform: translateX(52%) rotate(8deg);
    }
}

body.xn .yinse-pill,
body.xn .badge-soft,
body.xn .badge-soft-primary {
    border-color: rgba(39, 174, 193, 0.18) !important;
    background: rgba(234, 248, 251, 0.82) !important;
    color: #0f6175 !important;
}

body.xn .badge-money {
    --yinse-badge-money-bg: #eaf8fb !important;
    --yinse-badge-money-border: rgba(39, 174, 193, 0.30) !important;
    color: #0f6175 !important;
}

body.xn .status-badge.status-paid,
body.xn .badge-soft-success {
    background: rgba(217, 106, 46, 0.13) !important;
    color: #9a4d22 !important;
}

body.xn .goods-sku.a-badge-warning {
    background: rgba(240, 170, 56, 0.16) !important;
    color: #9b6716 !important;
}

/* Item purchase panel: badges, price, sku and form controls. */
body.xn .yinse-item-form-wrap {
    color: var(--xn-ink);
}

body.xn .yinse-item-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}

body.xn .yinse-item-badges .badge-soft,
body.xn .badge-soft,
body.xn .yinse-pill,
body.xn .snap-up,
body.xn .goods-sku,
body.xn .a-badge-primary,
body.xn .a-badge-warning,
body.xn .a-badge-success,
body.xn .a-badge-danger {
    position: relative;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 11px !important;
    border: 1px solid rgba(217, 106, 46, 0.22) !important;
    border-radius: 9px !important;
    background:
        radial-gradient(circle at 10px 8px, rgba(246, 188, 99, 0.16), transparent 34px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 235, 214, 0.36)) !important;
    color: #7b3b24 !important;
    font-size: 0.82rem !important;
    font-weight: 850 !important;
    line-height: 1.2;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 5px 12px rgba(128, 52, 35, 0.06) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease;
}

body.xn .yinse-item-badges .badge-soft::after {
    content: "鉁?;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 1px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-hair);
    font-size: 10px;
    line-height: 1;
    transform: rotate(-8deg);
}

body.xn .yinse-item-badges .badge-soft:hover,
body.xn .yinse-pill:hover,
body.xn .goods-sku:hover,
body.xn .a-badge-primary:hover,
body.xn .a-badge-warning:hover,
body.xn .a-badge-success:hover,
body.xn .a-badge-danger:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 106, 46, 0.42) !important;
    background:
        radial-gradient(circle at 10px 8px, rgba(246, 188, 99, 0.24), transparent 38px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(255, 225, 190, 0.52)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 9px 18px rgba(128, 52, 35, 0.10),
        0 0 14px rgba(217, 106, 46, 0.12) !important;
}

body.xn .badge-soft-success {
    border-color: rgba(217, 106, 46, 0.24) !important;
    color: #9a4d22 !important;
}

body.xn .badge-soft-danger,
body.xn .a-badge-danger {
    border-color: rgba(138, 31, 61, 0.26) !important;
    background:
        radial-gradient(circle at 10px 8px, rgba(194, 79, 111, 0.12), transparent 34px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.80), rgba(255, 229, 214, 0.50)) !important;
    color: #8a1f3d !important;
}

body.xn .badge-soft-info,
body.xn .shared-button {
    cursor: pointer;
}

body.xn .yinse-item-price {
    position: relative;
    margin: 8px 0 18px;
    padding: 14px 16px;
    overflow: hidden;
    border: 1px solid rgba(217, 106, 46, 0.18);
    border-radius: 14px;
    background:
        radial-gradient(circle at 24px 16px, rgba(246, 188, 99, 0.16), transparent 72px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 233, 206, 0.34));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 10px 24px rgba(128, 52, 35, 0.07);
}

body.xn .yinse-item-price::after {
    content: "鉁?;
    position: absolute;
    right: 12px;
    top: 10px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 106, 46, 0.20);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-hair);
    font-size: 13px;
    transform: rotate(8deg);
}

body.xn .yinse-item-price .price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
    color: #1d4055 !important;
    font-size: clamp(2rem, 4vw, 3.1rem) !important;
    font-weight: 950 !important;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 10px 28px rgba(217, 106, 46, 0.15) !important;
}

body.xn .yinse-item-price .unit {
    color: var(--xn-hair);
    font-size: 0.48em;
    font-weight: 950;
}

body.xn .yinse-form-stack {
    gap: 14px !important;
}

body.xn .yinse-field {
    position: relative;
    padding: 13px;
    border: 1px solid rgba(217, 106, 46, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 232, 207, 0.24));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

body.xn .yinse-field .form-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px !important;
    color: #7b3b24 !important;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

body.xn .yinse-field .form-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--xn-hair);
    box-shadow: 0 0 0 4px rgba(217, 106, 46, 0.12);
}

body.xn .sku-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 2px !important;
}

body.xn .sku {
    position: relative;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 13px !important;
    border: 1px solid rgba(217, 106, 46, 0.22) !important;
    border-radius: 10px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 233, 208, 0.36)) !important;
    color: var(--xn-ink-2) !important;
    font-weight: 900 !important;
    line-height: 1.25;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 5px 14px rgba(128, 52, 35, 0.06) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease;
}

body.xn .sku:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 106, 46, 0.48) !important;
    background:
        radial-gradient(circle at 10px 9px, rgba(246, 188, 99, 0.18), transparent 36px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(255, 224, 188, 0.54)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 22px rgba(128, 52, 35, 0.11),
        0 0 16px rgba(217, 106, 46, 0.13) !important;
}

body.xn .sku.is-primary {
    border-color: #b8562d !important;
    background: linear-gradient(135deg, #8a1f3d, #d96a2e 58%, #f6bc63) !important;
    color: #ffffff !important;
    box-shadow:
        0 12px 28px rgba(217, 106, 46, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

body.xn .sku.is-primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 16px 34px rgba(217, 106, 46, 0.30),
        0 0 20px rgba(246, 188, 99, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}

body.xn .sku-label {
    position: relative;
    z-index: 1;
}

body.xn .badge-money {
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px !important;
    border: 1px solid rgba(217, 106, 46, 0.22) !important;
    border-radius: 7px !important;
    background: rgba(255, 255, 255, 0.62) !important;
    color: #9a4d22 !important;
    font-size: 0.72rem !important;
    font-weight: 950 !important;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(217, 106, 46, 0.10) !important;
}

body.xn .sku.is-primary .badge-money {
    color: #7b3b24 !important;
    background: rgba(255, 255, 255, 0.84) !important;
}

body.xn .yinse-form-stack .form-control,
body.xn .yinse-form-stack input.form-control,
body.xn .yinse-form-stack input.captcha-input,
body.xn .yinse-captcha-group,
body.xn .qty-group,
body.xn .password-form .input-group {
    min-height: 42px;
    border: 1px solid rgba(217, 106, 46, 0.22) !important;
    border-radius: 12px !important;
    background: rgba(255, 250, 244, 0.72) !important;
    color: var(--xn-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 5px 14px rgba(128, 52, 35, 0.045) !important;
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

body.xn .yinse-form-stack .form-control:focus,
body.xn .yinse-form-stack input.captcha-input:focus {
    border-color: rgba(217, 106, 46, 0.50) !important;
    background: rgba(255, 255, 255, 0.86) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 0 0 4px rgba(217, 106, 46, 0.12),
        0 8px 20px rgba(128, 52, 35, 0.08) !important;
    outline: 0 !important;
}

body.xn .yinse-form-stack .form-control::placeholder,
body.xn .yinse-form-stack input.captcha-input::placeholder {
    color: rgba(123, 59, 36, 0.52) !important;
}

body.xn .qty-group {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
    padding: 5px !important;
}

body.xn .qty-group .form-control {
    min-height: 34px;
    border: 0 !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.52) !important;
    box-shadow: none !important;
    font-weight: 900;
}

body.xn .change-num-sub,
body.xn .change-num-add {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 106, 46, 0.24) !important;
    border-radius: 9px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 233, 208, 0.52)) !important;
    color: #7b3b24 !important;
    box-shadow: 0 5px 12px rgba(128, 52, 35, 0.06) !important;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

body.xn .change-num-sub:hover,
body.xn .change-num-add:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 106, 46, 0.50) !important;
    background: linear-gradient(135deg, #9a3a52, #d96a2e) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(217, 106, 46, 0.22) !important;
}

body.xn .optional-card,
body.xn .view-card-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 1px solid rgba(217, 106, 46, 0.24) !important;
    border-radius: 12px !important;
    background:
        radial-gradient(circle at 14px 10px, rgba(246, 188, 99, 0.16), transparent 42px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 233, 208, 0.50)) !important;
    color: #7b3b24 !important;
    font-weight: 900;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 6px 16px rgba(128, 52, 35, 0.08) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

body.xn .optional-card:hover,
body.xn .view-card-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 106, 46, 0.50) !important;
    background:
        radial-gradient(circle at 14px 10px, rgba(246, 188, 99, 0.22), transparent 48px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 224, 188, 0.62)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 10px 22px rgba(128, 52, 35, 0.12) !important;
}

body.xn .yinse-captcha-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px !important;
}

body.xn .yinse-captcha-group .form-control {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.xn .captcha-img,
body.xn .input-group-text.captcha-img {
    min-width: 104px;
    height: 34px;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(217, 106, 46, 0.22) !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.66) !important;
}

body.xn .wholesale-table,
body.xn table.wholesale-table {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(217, 106, 46, 0.20) !important;
    border-radius: 14px !important;
    background: rgba(255, 250, 244, 0.66) !important;
    --bs-table-bg: transparent !important;
    --bs-table-color: var(--xn-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 8px 18px rgba(128, 52, 35, 0.07) !important;
}

body.xn .wholesale-table th,
body.xn .wholesale-table td {
    border-color: rgba(217, 106, 46, 0.14) !important;
    background: transparent !important;
    color: var(--xn-ink) !important;
}

body.xn .cash-pay {
    padding: 13px;
    border: 1px solid rgba(217, 106, 46, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 232, 207, 0.24));
}

body.xn .cash-pay > .form-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #7b3b24 !important;
    font-weight: 900;
}

body.xn .pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

body.xn .pay-list .pay {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 12px;
    border: 1px solid rgba(217, 106, 46, 0.22);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 233, 208, 0.50));
    color: #7b3b24;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(128, 52, 35, 0.07);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

body.xn .pay-list .pay img {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    object-fit: cover;
}

body.xn .pay-list .pay:hover,
body.xn .pay-list .pay.active,
body.xn .pay-list .pay.pay-selected {
    transform: translateY(-2px);
    border-color: rgba(217, 106, 46, 0.50);
    background: linear-gradient(135deg, #9a3a52, #d96a2e) !important;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(217, 106, 46, 0.22);
}

/* Order lookup heading. */
body.xn .yinse-query-panel {
    overflow: hidden;
}

body.xn .yinse-query-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    min-height: 92px;
    padding: 17px 20px !important;
    overflow: hidden;
    border-bottom: 1px solid rgba(39, 174, 193, 0.16) !important;
    background:
        radial-gradient(circle at 22px 18px, rgba(255, 79, 163, 0.08), transparent 72px),
        linear-gradient(90deg, rgba(223, 247, 251, 0.54), rgba(248, 253, 255, 0.18)) !important;
}

body.xn .yinse-query-heading-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(39, 174, 193, 0.26);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.58);
    color: #0b7f9a;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(26, 73, 95, 0.10);
    flex: 0 0 auto;
}

body.xn .yinse-query-heading::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 14px;
    width: 34px;
    height: 8px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 4px 50%, var(--xn-pink) 0 3px, transparent 3.5px),
        radial-gradient(circle at 17px 50%, var(--xn-hair) 0 3px, transparent 3.5px),
        radial-gradient(circle at 30px 50%, #7ee8a8 0 3px, transparent 3.5px);
    opacity: 0.62;
}

body.xn .yinse-query-heading-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

body.xn .yinse-query-heading .panel-kicker {
    margin: 0;
    color: #607889 !important;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
}

body.xn .yinse-query-title {
    margin: 0;
    color: var(--xn-ink-2) !important;
    font-size: clamp(1.28rem, 2.2vw, 1.72rem);
    line-height: 1.05;
    font-weight: 950;
    text-shadow: none !important;
}

body.xn .yinse-query-summary {
    margin: 0;
    max-width: 560px;
    color: #607889 !important;
    font-size: 0.84rem;
    line-height: 1.45;
}

/* Order lookup results. */
body.xn .order-results .panel-body {
    padding: 18px;
}

body.xn .order-list {
    display: grid;
    gap: 14px;
}

body.xn .order-item {
    position: relative;
    overflow: hidden;
    padding: 16px !important;
    border: 1px solid rgba(39, 174, 193, 0.22) !important;
    border-radius: 16px !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(255, 79, 163, 0.10), transparent 86px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 247, 251, 0.46)) !important;
    color: var(--xn-ink);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 28px rgba(26, 73, 95, 0.10) !important;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease;
}

body.xn .order-item::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--xn-pink), var(--xn-hair), #7ee8a8);
    opacity: 0.72;
}

body.xn .order-item::after {
    content: "鉁?;
    position: absolute;
    top: 12px;
    right: 14px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 79, 163, 0.22);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(8deg);
}

body.xn .order-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 79, 163, 0.34) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(255, 79, 163, 0.14), transparent 92px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(211, 246, 251, 0.58)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 16px 34px rgba(26, 73, 95, 0.14),
        0 0 22px rgba(53, 201, 213, 0.12) !important;
}

body.xn .order-header,
body.xn .goods-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
}

body.xn .order-header {
    padding: 4px 30px 14px 0;
    border-bottom: 1px solid rgba(39, 174, 193, 0.16);
}

body.xn .order-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

body.xn .order-status {
    flex: 0 0 auto;
}

body.xn .status-badge,
body.xn .shipment-badge {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 11px !important;
    border: 1px solid rgba(39, 174, 193, 0.24) !important;
    border-radius: 9px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(225, 248, 252, 0.54)) !important;
    color: #0f6175 !important;
    font-size: 0.82rem !important;
    font-weight: 900 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 5px 12px rgba(26, 73, 95, 0.06) !important;
}

body.xn .status-badge.status-paid,
body.xn .shipment-badge.shipment-paid {
    border-color: rgba(35, 185, 135, 0.26) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(218, 250, 240, 0.58)) !important;
    color: #16835f !important;
}

body.xn .order-basic {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: #35586b;
    font-size: 0.88rem;
    font-weight: 750;
}

body.xn .order-no {
    color: var(--xn-ink-2);
    font-size: 1rem;
    font-weight: 950;
    word-break: break-all;
}

body.xn .order-no::before {
    content: "Order";
    display: inline-flex;
    align-items: center;
    margin-right: 7px;
    padding: 2px 7px;
    border: 1px solid rgba(53, 201, 213, 0.22);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.58);
    color: #0f6175;
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.xn .payment-method {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.xn .payment-icon {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(26, 73, 95, 0.10);
}

body.xn .order-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

body.xn .order-amount {
    min-width: 118px;
    display: grid;
    gap: 5px;
    justify-items: end;
    padding: 10px 12px;
    border: 1px solid rgba(39, 174, 193, 0.18);
    border-radius: 13px;
    background: rgba(248, 253, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

body.xn .amount-label {
    color: #607889;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.xn .amount-value {
    color: #13b56f;
    font-size: 1.45rem;
    font-weight: 950;
    line-height: 1;
    text-shadow: 0 8px 18px rgba(19, 181, 111, 0.14);
}

body.xn .goods-section {
    margin-top: 14px;
    padding: 13px;
    border: 1px solid rgba(39, 174, 193, 0.16);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(226, 247, 251, 0.28));
}

body.xn .goods-thumb {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.24);
    border-radius: 12px;
    background: rgba(248, 253, 255, 0.68);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 7px 16px rgba(26, 73, 95, 0.08);
}

body.xn .goods-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.xn .goods-details {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 8px;
    flex: 1 1 auto;
}

body.xn .goods-name {
    margin: 0;
    color: var(--xn-ink-2);
    font-size: 1rem;
    font-weight: 950;
    line-height: 1.35;
}

body.xn .goods-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

body.xn .card-section {
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.18) !important;
    border-radius: 15px !important;
    background:
        radial-gradient(circle at 22px 18px, rgba(255, 79, 163, 0.08), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(223, 247, 251, 0.38)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 9px 20px rgba(26, 73, 95, 0.07) !important;
}

body.xn .card-section .card-header {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(39, 174, 193, 0.14);
    background: rgba(230, 247, 251, 0.36);
}

body.xn .shipment-content,
body.xn .card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    color: var(--xn-ink-2);
    font-size: 1rem !important;
    font-weight: 950;
}

body.xn .shipment-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

body.xn .shipment-title i {
    color: #0f9f9f;
}

body.xn .card-content-no-password,
body.xn .card-password-section,
body.xn .card-content {
    padding: 13px 14px;
    color: var(--xn-ink);
    font-weight: 750;
    line-height: 1.72;
}

body.xn .card-display {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px dashed rgba(39, 174, 193, 0.24);
    border-radius: 12px;
    background: rgba(248, 253, 255, 0.56);
    color: var(--xn-ink-2);
    word-break: break-word;
}

body.xn .btn-copy-unified,
body.xn .btn-unified {
    min-height: 30px;
    padding: 4px 10px !important;
    border: 1px solid rgba(39, 174, 193, 0.26);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.68);
    color: #0f6175 !important;
    font-weight: 900;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

body.xn .btn-copy-unified:hover,
body.xn .btn-unified:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.46);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 8px 18px rgba(26, 73, 95, 0.10);
}

@media (max-width: 767.98px) {
    body.xn .yinse-query-heading {
        align-items: flex-start;
        min-height: auto;
        padding: 14px !important;
    }

    body.xn .yinse-query-heading-icon {
        width: 36px;
        height: 36px;
        margin-right: 10px;
        border-radius: 10px;
        font-size: 15px;
    }

    body.xn .yinse-query-heading::after {
        right: 12px;
        top: 12px;
    }

    body.xn .yinse-query-title {
        font-size: 1.28rem;
    }

    body.xn .yinse-query-summary {
        font-size: 0.8rem;
    }

    body.xn .order-header,
    body.xn .goods-section {
        flex-direction: column;
    }

    body.xn .order-left {
        flex-direction: column;
    }

    body.xn .order-right,
    body.xn .order-amount {
        width: 100%;
        justify-items: start;
    }
}

body.xn .yinse-description-body a,
body.xn .btn-copy-card,
body.xn .cyber-back-btn {
    border-color: rgba(39, 174, 193, 0.32) !important;
    background: rgba(234, 248, 251, 0.82) !important;
    color: #0f6175 !important;
    box-shadow: none !important;
}

body.xn .yinse-description-body a:hover,
body.xn .btn-copy-card:hover,
body.xn .cyber-back-btn:hover {
    background: #129eb5 !important;
    color: #ffffff !important;
}

body.xn .yinse-description-body blockquote {
    position: relative;
    margin: 16px 0 !important;
    padding: 18px 20px 18px 24px !important;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.22) !important;
    border-left: 0 !important;
    border-radius: 14px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 247, 251, 0.46)) !important;
    color: var(--xn-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 12px 28px rgba(26, 73, 95, 0.10) !important;
}

body.xn .yinse-description-body blockquote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--xn-pink), var(--xn-hair), #7ee8a8);
    box-shadow: 0 0 18px rgba(53, 201, 213, 0.24);
}

body.xn .yinse-description-body blockquote::after {
    content: "鉁?;
    position: absolute;
    top: 10px;
    right: 12px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 79, 163, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

body.xn .yinse-description-body blockquote p {
    margin: 0 0 10px !important;
}

body.xn .yinse-description-body blockquote p:last-child,
body.xn .yinse-description-body blockquote > :last-child {
    margin-bottom: 0 !important;
}

body.xn .yinse-description-body blockquote ul,
body.xn .yinse-description-body blockquote ol {
    margin: 8px 0 0 !important;
    padding-left: 18px !important;
}

body.xn .yinse-description-body a,
body.xn .btn-copy-card,
body.xn .cyber-back-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 40px;
    margin: 5px 6px;
    padding: 9px 38px 9px 16px;
    border: 1px solid rgba(39, 174, 193, 0.34) !important;
    border-radius: 9px;
    background:
        radial-gradient(circle at 18px 12px, rgba(255, 79, 163, 0.11), transparent 48px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(222, 248, 252, 0.68)) !important;
    color: #0f6175 !important;
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.35;
    text-decoration: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 8px 18px rgba(26, 73, 95, 0.10) !important;
    overflow: hidden;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease,
        color 0.24s ease;
}

body.xn .yinse-description-body a::after,
body.xn .btn-copy-card::after,
body.xn .cyber-back-btn::after {
    content: "鉁?;
    position: absolute;
    right: 10px;
    top: 8px;
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 79, 163, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--xn-pink);
    font-size: 11px;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(255, 79, 163, 0.10);
    transform: rotate(-8deg) scale(0.96);
    transform-origin: center;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease;
}

body.xn .yinse-description-body a:hover,
body.xn .btn-copy-card:hover,
body.xn .cyber-back-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(53, 201, 213, 0.68) !important;
    background:
        radial-gradient(circle at 18px 12px, rgba(255, 79, 163, 0.18), transparent 54px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(198, 244, 251, 0.82)) !important;
    color: #0b5267 !important;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 22px rgba(26, 73, 95, 0.14),
        0 0 18px rgba(53, 201, 213, 0.18) !important;
}

body.xn .yinse-description-body a:hover::after,
body.xn .btn-copy-card:hover::after,
body.xn .cyber-back-btn:hover::after {
    border-color: rgba(255, 79, 163, 0.32);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 7px 16px rgba(255, 79, 163, 0.16);
    transform: rotate(8deg) scale(1.14);
}

body.xn .yinse-description-body blockquote {
    padding: 20px 22px 18px 24px !important;
    border: 1px solid rgba(39, 174, 193, 0.24) !important;
    border-left: 1px solid rgba(39, 174, 193, 0.24) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(255, 79, 163, 0.13), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(223, 247, 251, 0.48)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 12px 28px rgba(26, 73, 95, 0.10) !important;
    transform: translateY(0);
    transition:
        transform 0.26s ease,
        border-color 0.26s ease,
        background-color 0.26s ease,
        box-shadow 0.26s ease;
}

body.xn .yinse-description-body blockquote::before {
    left: 18px;
    top: 0;
    bottom: auto;
    width: 88px;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--xn-pink), var(--xn-hair), #7ee8a8);
    box-shadow: 0 8px 20px rgba(53, 201, 213, 0.20);
}

body.xn .yinse-description-body blockquote::after {
    content: "鉁?;
    box-shadow: 0 6px 14px rgba(255, 79, 163, 0.12);
    transition:
        transform 0.26s ease,
        background-color 0.26s ease,
        box-shadow 0.26s ease;
}

body.xn .yinse-description-body blockquote:hover {
    transform: translateY(-3px);
    border-color: rgba(53, 201, 213, 0.42) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(255, 79, 163, 0.16), transparent 86px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(211, 246, 251, 0.58)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 16px 34px rgba(26, 73, 95, 0.14),
        0 0 22px rgba(53, 201, 213, 0.12) !important;
}

body.xn .yinse-description-body blockquote:hover::after {
    transform: rotate(8deg) scale(1.08);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 8px 18px rgba(255, 79, 163, 0.18);
}

body.xn .yinse-description-body blockquote.red {
    --xn-quote-accent: #c24f4a;
    --xn-quote-accent-rgb: 194, 79, 74;
}

body.xn .yinse-description-body blockquote.blue,
body.xn .yinse-description-body blockquote.blud {
    --xn-quote-accent: #3b82f6;
    --xn-quote-accent-rgb: 59, 130, 246;
}

body.xn .yinse-description-body blockquote.green {
    --xn-quote-accent: #22c55e;
    --xn-quote-accent-rgb: 34, 197, 94;
}

body.xn .yinse-description-body blockquote.cyan {
    --xn-quote-accent: #22c7d8;
    --xn-quote-accent-rgb: 34, 199, 216;
}

body.xn .yinse-description-body blockquote.red,
body.xn .yinse-description-body blockquote.blue,
body.xn .yinse-description-body blockquote.blud,
body.xn .yinse-description-body blockquote.green,
body.xn .yinse-description-body blockquote.cyan,
body.xn .yinse-description-body blockquote.has-xn-quote-accent,
body.xn .yinse-description-body blockquote[style*="border-left-color"],
body.xn .yinse-description-body blockquote[style*="border-color"] {
    border-color: color-mix(in srgb, var(--xn-quote-accent, var(--xn-hair)) 42%, transparent) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(var(--xn-quote-accent-rgb, 255, 79, 163), 0.12), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(223, 247, 251, 0.48)) !important;
}

body.xn .yinse-description-body blockquote.red::before,
body.xn .yinse-description-body blockquote.blue::before,
body.xn .yinse-description-body blockquote.blud::before,
body.xn .yinse-description-body blockquote.green::before,
body.xn .yinse-description-body blockquote.cyan::before,
body.xn .yinse-description-body blockquote.has-xn-quote-accent::before,
body.xn .yinse-description-body blockquote[style*="border-left-color"]::before,
body.xn .yinse-description-body blockquote[style*="border-color"]::before {
    background: linear-gradient(90deg, var(--xn-quote-accent, var(--xn-hair)), rgba(255, 255, 255, 0.72), var(--xn-hair));
    box-shadow: 0 8px 20px rgba(var(--xn-quote-accent-rgb, 53, 201, 213), 0.18);
}

body.xn .yinse-description-body blockquote.red::after,
body.xn .yinse-description-body blockquote.blue::after,
body.xn .yinse-description-body blockquote.blud::after,
body.xn .yinse-description-body blockquote.green::after,
body.xn .yinse-description-body blockquote.cyan::after,
body.xn .yinse-description-body blockquote.has-xn-quote-accent::after,
body.xn .yinse-description-body blockquote[style*="border-left-color"]::after,
body.xn .yinse-description-body blockquote[style*="border-color"]::after {
    border-color: rgba(var(--xn-quote-accent-rgb, 255, 79, 163), 0.22);
    color: var(--xn-quote-accent, var(--xn-pink));
    box-shadow: 0 6px 14px rgba(var(--xn-quote-accent-rgb, 255, 79, 163), 0.12);
}

body.xn .yinse-description-body blockquote.red:hover,
body.xn .yinse-description-body blockquote.blue:hover,
body.xn .yinse-description-body blockquote.blud:hover,
body.xn .yinse-description-body blockquote.green:hover,
body.xn .yinse-description-body blockquote.cyan:hover,
body.xn .yinse-description-body blockquote.has-xn-quote-accent:hover,
body.xn .yinse-description-body blockquote[style*="border-left-color"]:hover,
body.xn .yinse-description-body blockquote[style*="border-color"]:hover {
    border-color: color-mix(in srgb, var(--xn-quote-accent, var(--xn-hair)) 60%, transparent) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(var(--xn-quote-accent-rgb, 255, 79, 163), 0.16), transparent 86px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(211, 246, 251, 0.58)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 16px 34px rgba(26, 73, 95, 0.14),
        0 0 22px rgba(var(--xn-quote-accent-rgb, 53, 201, 213), 0.12) !important;
}

body.xn .cyber-note {
    border-left-color: var(--xn-hair) !important;
    background: rgba(241, 251, 253, 0.82) !important;
    color: var(--xn-ink) !important;
}

body.xn .yinse-payment-notice {
    position: relative;
    margin: 2px 0 0;
    padding: 14px 16px;
    border: 1px solid rgba(217, 106, 46, 0.24);
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(248, 244, 242, 0.70)),
        var(--yinse-page-background-image, none);
    background-size: cover;
    background-position: center;
    color: #1d4055;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.58;
    text-align: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 12px 26px rgba(26, 73, 95, 0.10);
    overflow: hidden;
}

body.xn .yinse-payment-notice::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(194, 79, 111, 0.16), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(246, 188, 99, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(217, 106, 46, 0.12), rgba(255, 255, 255, 0.04));
    pointer-events: none;
}

body.xn .yinse-payment-notice > * {
    position: relative;
    z-index: 1;
}

body.xn .yinse-payment-notice p {
    margin: 0;
}

body.xn .yinse-payment-notice p + p {
    margin-top: 2px;
}

body.xn .yinse-payment-notice a {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    margin: 0 2px;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    color: #d96a2e !important;
    font-size: inherit;
    font-weight: 900;
    line-height: inherit;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    box-shadow: none !important;
    transform: none !important;
}

body.xn .yinse-payment-notice a::after {
    display: none !important;
}

body.xn .yinse-payment-notice a:hover {
    color: #c24f6f !important;
    text-shadow: 0 0 12px rgba(194, 79, 111, 0.24);
}

body.xn .yinse-payment-panel {
    margin-top: var(--yinse-layout-gap);
    overflow: hidden;
}

body.xn .yinse-payment-heading {
    min-height: 96px;
    align-items: center;
}

body.xn .yinse-payment-body {
    padding: 18px;
}

body.xn .cash-pay--independent {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(39, 174, 193, 0.18);
    border-radius: 14px;
    background:
        radial-gradient(circle at 24px 18px, rgba(255, 79, 163, 0.10), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(223, 247, 251, 0.40));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 10px 24px rgba(26, 73, 95, 0.08);
}

body.xn .cash-pay--independent::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    width: 88px;
    height: 5px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--xn-pink), var(--xn-hair), #7ee8a8);
    box-shadow: 0 8px 20px rgba(53, 201, 213, 0.18);
}

body.xn .cash-pay--independent .pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.xn .cash-pay--independent .pay-list:empty {
    min-height: 38px;
}

body .yinse-layer-popup.layui-layer,
body.xn .layui-layer.layui-layer-page,
body.xn .component-popup {
    background: rgba(255, 255, 255, 0.86) !important;
    border-color: rgba(39, 174, 193, 0.24) !important;
    color: var(--xn-ink) !important;
    box-shadow: var(--xn-shadow-hover) !important;
}

body .yinse-layer-popup .layui-layer-content,
body .yinse-layer-popup .yinse-notice-title,
body .yinse-layer-popup .yinse-notice-popup-inner,
body .yinse-layer-popup .yinse-notice-tip {
    color: var(--xn-ink) !important;
}

body .yinse-layer-popup .yinse-notice-modal-head {
    background: linear-gradient(180deg, #eaf8fb, #ffffff) !important;
    border-bottom-color: rgba(39, 174, 193, 0.16) !important;
}

.yinse-form-stack input.form-control,
.yinse-form-stack input.captcha-input {
    color: var(--xn-ink) !important;
}

.yinse-form-stack input.form-control::placeholder,
.yinse-form-stack input.captcha-input::placeholder {
    color: #7b93a1 !important;
}

body.xn .yinse-back-to-top,
#backToTop {
    border-color: rgba(39, 174, 193, 0.30) !important;
    background: rgba(255, 255, 255, 0.84) !important;
    color: #0f6175 !important;
    box-shadow: var(--xn-shadow) !important;
}

body.xn .yinse-back-to-top:hover,
#backToTop:hover {
    background: #129eb5 !important;
    color: #ffffff !important;
}

html::-webkit-scrollbar-track,
#yinse-category-tree::-webkit-scrollbar-track {
    background: #dff4f8 !important;
}

html::-webkit-scrollbar-thumb,
#yinse-category-tree::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--xn-hair-soft), var(--xn-hair), #5aa4e2) !important;
    border-color: #dff4f8 !important;
}

html::-webkit-scrollbar-thumb:hover,
#yinse-category-tree::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b7f6fb, var(--xn-pink), var(--xn-hair)) !important;
}

@media (max-width: 767px) {
    :root {
        --xn-block-gap: 14px;
    }

    body.xn .yinse-nav-wrap,
    body.xn .yinse-shell,
    body.xn .yinse-shell--narrow,
    body.xn .yinse-footer-wrap {
        width: calc(100% - 20px);
    }

    body.yinse-theme.xn {
        background-position: center, center, 60% top !important;
        background-attachment: scroll !important;
    }

    .yinse-banner-shell {
        margin-top: var(--xn-block-gap) !important;
    }

    body.xn .yinse-hero-banner {
        min-height: 268px;
        border-radius: 20px !important;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 251, 253, 0.46)) !important;
    }

    body.xn .yinse-hero-banner--image::before {
        background:
            linear-gradient(180deg, rgba(8, 28, 45, 0.06) 0%, rgba(8, 28, 45, 0.08) 44%, rgba(8, 28, 45, 0.48) 100%),
            linear-gradient(90deg, rgba(8, 28, 45, 0.30), transparent 58%) !important;
    }

    body.xn .yinse-hero-banner--notice {
        padding: 0 !important;
        min-height: auto;
    }

    .yinse-hero-notice-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .yinse-hero-news.yinse-news-ticker {
        width: 100%;
    }

    body.xn .yinse-catalog-tools {
        position: static;
        width: 100%;
    }

    body.xn .yinse-catalog-tools::before,
    body.xn .yinse-catalog-tools::after {
        display: none !important;
    }

    .yinse-hero-media {
        inset: 0;
    }

    .yinse-hero-media-image {
        left: -12px;
        top: -4px;
        width: calc(100% + 24px);
        height: calc(100% + 8px);
        object-fit: cover;
        object-position: 64% 43%;
        transform: translate3d(var(--yinse-hero-shift-x, 0px), var(--yinse-hero-shift-y, 0px), 0) scale(1.03);
    }

    .yinse-hero-actions {
        left: 18px;
        right: 18px;
        bottom: 12px;
        padding: 0;
    }

    .yinse-hero-title {
        left: 18px;
        right: 18px;
        bottom: 78px;
        gap: 4px;
    }

    .yinse-hero-title span {
        max-width: 100%;
        font-size: clamp(28px, 9.4vw, 38px);
        line-height: 0.95;
        text-wrap: balance;
    }

    .yinse-hero-title strong {
        max-width: min(100%, 330px);
        font-size: clamp(12px, 3.8vw, 15px);
        line-height: 1.18;
        text-wrap: balance;
    }

    .yinse-hero-actions .cyber-nav-buttons {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 6px;
        max-height: 58px;
        overflow: hidden;
    }

    .yinse-hero-actions .cyber-btn-item {
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(50% - 4px);
        min-height: 28px;
        padding: 0 9px;
        border-radius: 10px;
        font-size: 11px;
        line-height: 1.15;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-shadow: 0 8px 18px rgba(26, 73, 95, 0.12);
    }

}

@media (max-width: 420px) {
    body.xn .yinse-hero-banner {
        min-height: 268px;
    }

    .yinse-hero-media-image {
        left: -12px;
        top: -4px;
        width: calc(100% + 24px);
        height: calc(100% + 8px);
        object-position: 66% 42%;
    }

    .yinse-hero-title {
        bottom: 76px;
    }

    .yinse-hero-title span {
        font-size: clamp(26px, 9vw, 34px);
    }

    .yinse-hero-title strong {
        font-size: 12px;
    }

    .yinse-hero-actions .cyber-nav-buttons {
        gap: 6px;
        max-height: 58px;
    }

    .yinse-hero-actions .cyber-btn-item {
        max-width: calc(50% - 4px);
        min-height: 28px;
        padding: 0 8px;
        font-size: 10px;
    }
}
/* 公共提取样式，减少重复代码 */
.bt-pro,
.bt-red,
.bt-blue,
.bt-green {
    /* 默认基准字号 14px，内联 style="font-size:XXpx" 可覆盖大小 */
    font-size: 14px;
    font-weight: 900;
    position: relative;
    top: 0px;
    left: 5px;
    /* em = 自身 font-size 倍数，文字变大时边距同步变大 */
    margin: 0 calc(0.625em) calc(0.125em) 0;
    padding: calc(0.14em) calc(0.71em);
    /* 圆角随字号自适应，1em = 当前文字大小 */
    border-radius: 1em;
    display: inline-block;
    line-height: 1.2;
    color: #ffffff !important;
}
/* 多色循环标签 */
.bt-pro {
    background: rgba(255, 0, 0, 0.8);
    text-shadow: 0 0 calc(0.5em) #ff0000, 0 0 calc(1em) #ff0000;
    animation: yinsehd 8s infinite linear;
}
@keyframes yinsehd {
    0%,100% {
        background: #ff0000;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #ff0000, 0 0 calc(1em) #ff0000;
    }
    25% {
        background: #ff5500;
        color: #fff;
        text-shadow: 0 0 calc(0.5em) #ff5500, 0 0 calc(1em) #ff5500;
    }
    50% {
        background: #00d114;
        color: #fff;
        text-shadow: 0 0 calc(0.5em) #00d114, 0 0 calc(1em) #00d114;
    }
    75% {
        background: #0066ff;
        color: #fff;
        text-shadow: 0 0 calc(0.5em) #0066ff, 0 0 calc(1em) #0066ff;
    }
}

/* 红色渐变标签 */
.bt-red {
    background: rgba(255, 0, 0, 0.8);
    text-shadow: 0 0 calc(0.5em) #ff0000, 0 0 calc(1em) #ff0000;
    animation: yinsehd-alone-red 8s infinite linear;
}
@keyframes yinsehd-alone-red {
    0%,100% {
        background: #ff0000;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #ff0000, 0 0 calc(1em) #ff0000;
    }
    33% {
        background: var(--tokyo-accent,#ff2266); /* 兜底默认色，无变量不报错 */
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) var(--tokyo-accent,#ff2266), 0 0 calc(1em) var(--tokyo-accent,#ff2266);
    }
    66% {
        background: #ff71be;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #ff71be, 0 0 calc(1em) #ff71be;
    }
}

/* 钃濊壊娓愬彉鏍囩 */
.bt-blue {
    background: rgba(0, 102, 255, 0.8);
    text-shadow: 0 0 calc(0.5em) #0066ff, 0 0 calc(1em) #0066ff;
    animation: yinsehd-alone-blue 8s infinite linear;
}
@keyframes yinsehd-alone-blue {
    0%,100% {
        background: #0066ff;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #0066ff, 0 0 calc(1em) #0066ff;
    }
    33% {
        background: #00d2ff;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #00d2ff, 0 0 calc(1em) #00d2ff;
    }
    66% {
        background: #74b9ff;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #74b9ff, 0 0 calc(1em) #74b9ff;
    }
}

/* 缁胯壊娓愬彉鏍囩 */
.bt-green {
    background: rgba(0, 209, 20, 0.8);
    text-shadow: 0 0 calc(0.5em) #00d114, 0 0 calc(1em) #00d114;
    animation: yinsehd-alone-green 8s infinite linear;
}
@keyframes yinsehd-alone-green {
    0%,100% {
        background: #00d114;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #00d114, 0 0 calc(1em) #00d114;
    }
    33% {
        background: #a2f82c;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #a2f82c, 0 0 calc(1em) #a2f82c;
    }
    66% {
        background: #00b894;
        color: #ffffff;
        text-shadow: 0 0 calc(0.5em) #00b894, 0 0 calc(1em) #00b894;
    }
}

body.xn .yinse-nav,
body.xn .panel,
body.xn .yinse-item-unified-panel,
body.xn .yinse-footer-wrap,
body.xn .yinse-layer-popup,
body.xn .component-popup,
body.xn .yinse-hero-banner,
body.xn .yinse-hero-banner--notice,
body.xn .yinse-card-catalog-wrap,
body.xn .yinse-catalog-body,
body.xn .yinse-table-wrap,
body.xn .yinse-field,
body.xn .cash-pay,
body.xn .cash-pay--independent,
body.xn .yinse-payment-body,
body.xn .yinse-form-stack .form-control,
body.xn .yinse-form-stack input.form-control,
body.xn .yinse-form-stack input.captcha-input,
body.xn .yinse-captcha-group,
body.xn .qty-group,
body.xn .optional-card,
body.xn .pay-list .pay,
body.xn .wholesale-table,
body.xn table.wholesale-table,
body.xn .order-card,
body.xn .yinse-inline-note {
    border-color: rgba(217, 106, 46, 0.18) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(248, 244, 242, 0.50)) !important;
    color: #1d4055 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 10px 24px rgba(26, 73, 95, 0.10) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
}

body.xn .panel-header,
.yinse-hero-notice-head,
body.xn .yinse-query-heading,
body.xn .yinse-layer-popup .layui-layer-title,
body.xn .component-popup .layui-layer-title,
body.xn .component-popup .layui-layer-btn {
    border-bottom-color: rgba(217, 106, 46, 0.18) !important;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(250, 242, 236, 0.78)) !important;
    color: #1d4055 !important;
}

body.xn .yinse-brand-name,
body.xn .panel-title,
body.xn .yinse-index-panel-title,
body.xn .yinse-item-inline-title,
body.xn .yinse-item-price .price,
body.xn .yinse-current-name,
body.xn .panel-title-small {
    color: #1d4055 !important;
}

body.xn .yinse-brand::before,
body.xn .yinse-category-link::before {
    background:
        radial-gradient(circle at 22px 50%, rgba(194, 79, 111, 0.16), transparent 38px),
        radial-gradient(circle at calc(100% - 18px) 18px, rgba(246, 188, 99, 0.18), transparent 44px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(248, 244, 242, 0.26)) !important;
}

body.xn .yinse-brand::after,
body.xn .yinse-category-link::after,
body.xn .yinse-news-ticker-track span[style],
body.xn .badge-soft,
body.xn .status-badge {
    border-color: rgba(217, 106, 46, 0.22) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    color: #d96a2e !important;
    box-shadow: 0 8px 20px rgba(26, 73, 95, 0.10) !important;
}

body.xn .yinse-nav-link,
body.xn .yinse-button-light,
body.xn .yinse-user-chip,
body.xn .yinse-searchbox,
body.xn .yinse-search-combo,
body.xn .form-control,
body.xn .qty-group,
body.xn .password-form .input-group,
body.xn .yinse-category-link,
body.xn .yinse-commodity-card .row-inner,
body.xn .cash-pay--independent,
body.xn .order-card,
body.xn .yinse-inline-note,
body.xn .yinse-dropdown-menu .dropdown-item,
body.xn .yinse-description-body a,
body.xn .btn-copy-card,
body.xn .cyber-back-btn,
body.xn .yinse-description-body button,
body.xn .yinse-description-body input[type="button"],
body.xn .yinse-description-body input[type="submit"],
body.xn .yinse-description-body [role="button"],
body.xn .yinse-description-body .btn,
body.xn .yinse-description-body [class*="btn"],
body.xn .yinse-description-body [class*="button"],
body.xn .btn-copy-unified,
body.xn .btn-unified,
body.xn .view-card-btn,
body.xn .optional-card {
    border-color: rgba(217, 106, 46, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 244, 241, 0.80)) !important;
    color: #1d4055 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 8px 18px rgba(26, 73, 95, 0.10) !important;
}

body.xn .yinse-nav-link:hover,
body.xn .yinse-nav-link.is-active,
body.xn .yinse-button-dark,
body.xn .yinse-commodity-action-link,
body.xn .sku.is-primary,
body.xn .component-popup .queryBtn,
body.xn .component-popup .query-button {
    border-color: rgba(217, 106, 46, 0.52) !important;
    background: linear-gradient(135deg, #fff7f2, #f6bc63 58%, #d96a2e) !important;
    color: #5d1808 !important;
    box-shadow:
        0 12px 26px rgba(93, 24, 8, 0.14),
        0 0 18px rgba(217, 106, 46, 0.16) !important;
}

body.xn .yinse-button-light:hover,
body.xn .yinse-category-link:hover,
body.xn .yinse-category-link.is-active,
body.xn .yinse-dropdown-menu .dropdown-item:hover,
body.xn .yinse-dropdown-menu .dropdown-item:focus,
body.xn .yinse-commodity-card:hover .row-inner,
body.xn .yinse-commodity-card.is-inline-active .row-inner,
body.xn .yinse-commodity-card.is-inline-active:hover .row-inner,
body.xn .yinse-description-body a:hover,
body.xn .btn-copy-card:hover,
body.xn .cyber-back-btn:hover,
body.xn .yinse-description-body button:hover,
body.xn .yinse-description-body input[type="button"]:hover,
body.xn .yinse-description-body input[type="submit"]:hover,
body.xn .yinse-description-body [role="button"]:hover,
body.xn .yinse-description-body .btn:hover,
body.xn .yinse-description-body [class*="btn"]:hover,
body.xn .yinse-description-body [class*="button"]:hover,
body.xn .btn-copy-unified:hover,
body.xn .btn-unified:hover,
body.xn .view-card-btn:hover,
body.xn .optional-card:hover {
    border-color: rgba(194, 79, 111, 0.36) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(252, 242, 246, 0.88)) !important;
    color: #5d1808 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 12px 26px rgba(26, 73, 95, 0.12) !important;
}

body.xn .yinse-category-link.is-active:hover,
body.xn .yinse-commodity-card.is-inline-active:hover .row-inner {
    border-color: rgba(194, 79, 111, 0.44) !important;
    box-shadow:
        0 14px 30px rgba(26, 73, 95, 0.14),
        0 0 0 2px rgba(194, 79, 111, 0.08),
        0 0 18px rgba(217, 106, 46, 0.16) !important;
}

body.xn .yinse-description-body blockquote,
body.xn .yinse-description-body blockquote.red,
body.xn .yinse-description-body blockquote.blue,
body.xn .yinse-description-body blockquote.blud,
body.xn .yinse-description-body blockquote.green,
body.xn .yinse-description-body blockquote.cyan,
body.xn .yinse-description-body blockquote.has-xn-quote-accent,
body.xn .yinse-description-body blockquote[style*="border-left-color"],
body.xn .yinse-description-body blockquote[style*="border-color"] {
    border-color: rgba(217, 106, 46, 0.20) !important;
    border-left-color: rgba(194, 79, 111, 0.36) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(248, 244, 242, 0.70)) !important;
    color: #1d4055 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 12px 28px rgba(26, 73, 95, 0.10) !important;
}

body.xn .yinse-description-body blockquote::before,
body.xn .yinse-description-body blockquote.red::before,
body.xn .yinse-description-body blockquote.blue::before,
body.xn .yinse-description-body blockquote.blud::before,
body.xn .yinse-description-body blockquote.green::before,
body.xn .yinse-description-body blockquote.cyan::before,
body.xn .yinse-description-body blockquote.has-xn-quote-accent::before,
body.xn .yinse-description-body blockquote[style*="border-left-color"]::before,
body.xn .yinse-description-body blockquote[style*="border-color"]::before {
    background: linear-gradient(180deg, #c24f6f, #d96a2e, #f6bc63) !important;
}

body.xn .yinse-description-body blockquote::after,
body.xn .yinse-description-body blockquote.red::after,
body.xn .yinse-description-body blockquote.blue::after,
body.xn .yinse-description-body blockquote.blud::after,
body.xn .yinse-description-body blockquote.green::after,
body.xn .yinse-description-body blockquote.cyan::after,
body.xn .yinse-description-body blockquote.has-xn-quote-accent::after,
body.xn .yinse-description-body blockquote[style*="border-left-color"]::after,
body.xn .yinse-description-body blockquote[style*="border-color"]::after,
body.xn .yinse-description-body a::after,
body.xn .btn-copy-card::after,
body.xn .cyber-back-btn::after {
    background: rgba(255, 255, 255, 0.82) !important;
    color: #d96a2e !important;
    border-color: rgba(217, 106, 46, 0.22) !important;
}

body.xn .yinse-description-body [style*="background"],
body.xn .yinse-description-body [style*="background-color"],
body.xn .yinse-description-body [style*="rgb(255"],
body.xn .yinse-description-body [style*="rgba(255"],
body.xn .yinse-description-body [style*="#fff"],
body.xn .yinse-description-body [style*="#FFF"],
body.xn .yinse-description-body table,
body.xn .yinse-description-body tbody,
body.xn .yinse-description-body tr,
body.xn .yinse-description-body td,
body.xn .yinse-description-body th {
    border-color: rgba(217, 106, 46, 0.20) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 244, 240, 0.76)) !important;
    color: #1d4055 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 10px 24px rgba(26, 73, 95, 0.08) !important;
}

/* Item purchase panel warm accent pass. */
body.xn .yinse-item-form-wrap .badge-soft,
body.xn .yinse-item-form-wrap .yinse-pill,
body.xn .yinse-item-form-wrap .goods-sku,
body.xn .yinse-item-form-wrap .a-badge-primary,
body.xn .yinse-item-form-wrap .a-badge-warning,
body.xn .yinse-item-form-wrap .a-badge-success,
body.xn .yinse-item-form-wrap .a-badge-danger,
body.xn .yinse-item-form-wrap .shared-button {
    border-color: rgba(217, 106, 46, 0.24) !important;
    background:
        radial-gradient(circle at 12px 8px, rgba(246, 188, 99, 0.16), transparent 34px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 235, 214, 0.42)) !important;
    color: #7b3b24 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 8px 18px rgba(128, 52, 35, 0.08) !important;
}

body.xn .yinse-item-form-wrap .badge-soft:hover,
body.xn .yinse-item-form-wrap .yinse-pill:hover,
body.xn .yinse-item-form-wrap .goods-sku:hover,
body.xn .yinse-item-form-wrap .a-badge-primary:hover,
body.xn .yinse-item-form-wrap .a-badge-warning:hover,
body.xn .yinse-item-form-wrap .a-badge-success:hover,
body.xn .yinse-item-form-wrap .a-badge-danger:hover,
body.xn .yinse-item-form-wrap .shared-button:hover {
    border-color: rgba(217, 106, 46, 0.48) !important;
    background:
        radial-gradient(circle at 12px 8px, rgba(246, 188, 99, 0.26), transparent 40px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 224, 188, 0.62)) !important;
    color: #5d1808 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 12px 24px rgba(128, 52, 35, 0.13),
        0 0 16px rgba(217, 106, 46, 0.14) !important;
}

body.xn .yinse-item-form-wrap .yinse-item-price,
body.xn .yinse-item-form-wrap .yinse-field,
body.xn .yinse-item-form-wrap .cash-pay {
    border-color: rgba(217, 106, 46, 0.18) !important;
    background:
        radial-gradient(circle at 24px 16px, rgba(246, 188, 99, 0.13), transparent 76px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(250, 244, 240, 0.48)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.88),
        0 12px 26px rgba(128, 52, 35, 0.08) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(116%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(116%) !important;
}

body.xn .yinse-item-form-wrap .yinse-item-price::after,
body.xn .yinse-item-form-wrap .yinse-item-badges .badge-soft::after {
    border-color: rgba(217, 106, 46, 0.22) !important;
    background: rgba(255, 255, 255, 0.74) !important;
    color: #d96a2e !important;
    box-shadow: 0 6px 14px rgba(217, 106, 46, 0.10) !important;
}

body.xn .yinse-item-form-wrap .yinse-field .form-label,
body.xn .yinse-item-form-wrap .cash-pay > .form-label {
    color: #7b3b24 !important;
}

body.xn .yinse-item-form-wrap .yinse-field .form-label::before {
    background: #d96a2e !important;
    box-shadow: 0 0 0 4px rgba(217, 106, 46, 0.12) !important;
}

body.xn .yinse-item-form-wrap .yinse-item-price .price {
    color: #1d4055 !important;
    text-shadow: 0 10px 28px rgba(217, 106, 46, 0.14) !important;
}

body.xn .yinse-item-form-wrap .yinse-item-price .unit {
    color: #d96a2e !important;
}

body.xn .yinse-item-form-wrap .form-control,
body.xn .yinse-item-form-wrap input.form-control,
body.xn .yinse-item-form-wrap input.captcha-input,
body.xn .yinse-item-form-wrap .yinse-captcha-group,
body.xn .yinse-item-form-wrap .qty-group,
body.xn .yinse-item-form-wrap .password-form .input-group {
    border-color: rgba(217, 106, 46, 0.24) !important;
    background: rgba(255, 250, 244, 0.76) !important;
    color: #1d4055 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.90),
        0 8px 18px rgba(128, 52, 35, 0.07) !important;
}

body.xn .yinse-item-form-wrap .form-control:focus,
body.xn .yinse-item-form-wrap input.captcha-input:focus {
    border-color: rgba(217, 106, 46, 0.52) !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 0 0 4px rgba(217, 106, 46, 0.12),
        0 10px 22px rgba(128, 52, 35, 0.10) !important;
}

body.xn .yinse-item-form-wrap .form-control::placeholder,
body.xn .yinse-item-form-wrap input.captcha-input::placeholder {
    color: rgba(123, 59, 36, 0.52) !important;
}

body.xn .yinse-item-form-wrap .qty-group .form-control {
    border: 0 !important;
    background: rgba(255, 255, 255, 0.66) !important;
    box-shadow: none !important;
}

body.xn .yinse-item-form-wrap .change-num-sub,
body.xn .yinse-item-form-wrap .change-num-add {
    border-color: rgba(217, 106, 46, 0.26) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 233, 208, 0.58)) !important;
    color: #7b3b24 !important;
    box-shadow: 0 7px 16px rgba(128, 52, 35, 0.08) !important;
}

body.xn .yinse-item-form-wrap .change-num-sub:hover,
body.xn .yinse-item-form-wrap .change-num-add:hover,
body.xn .yinse-item-form-wrap .pay-list .pay:hover,
body.xn .yinse-item-form-wrap .pay-list .pay.active,
body.xn .yinse-item-form-wrap .pay-list .pay.pay-selected {
    border-color: rgba(217, 106, 46, 0.54) !important;
    background: linear-gradient(135deg, #9a3a52, #d96a2e 72%, #f6bc63) !important;
    color: #ffffff !important;
    box-shadow:
        0 12px 26px rgba(128, 52, 35, 0.18),
        0 0 18px rgba(217, 106, 46, 0.18) !important;
}

body.xn .yinse-item-form-wrap .pay-list .pay {
    border-color: rgba(217, 106, 46, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 235, 214, 0.44)) !important;
    color: #7b3b24 !important;
    box-shadow: 0 8px 18px rgba(128, 52, 35, 0.08) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(112%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(112%) !important;
}

/* Container blur setting final pass. */
body.xn .yinse-nav,
body.xn .panel,
body.xn .yinse-sidebar-panel,
body.xn .yinse-catalog-panel,
body.xn .yinse-item-unified-panel,
body.xn .yinse-description-panel,
body.xn .yinse-item-panel,
body.xn .yinse-hero-banner--notice,
body.xn .yinse-card-catalog-wrap,
body.xn .yinse-catalog-body,
body.xn .yinse-table-wrap,
body.xn .yinse-description-body,
body.xn .yinse-item-form-wrap,
body.xn .cyber-left-details-block,
body.xn .cyber-right-form-block,
body.xn .cash-pay--independent,
body.xn .yinse-payment-body,
body.xn .yinse-payment-panel,
body.xn .order-card,
body.xn .yinse-dropdown-menu,
body.xn .yinse-user-chip,
body.xn .yinse-searchbox,
body.xn .yinse-search-combo,
body.xn .yinse-searchbox-combo,
body.xn .yinse-form-stack .form-control,
body.xn .yinse-form-stack input.form-control,
body.xn .yinse-form-stack input.captcha-input,
body.xn .yinse-captcha-group,
body.xn .qty-group,
body.xn .optional-card,
body.xn .pay-list .pay,
body.xn .sku,
body.xn .badge-soft,
body.xn .yinse-pill,
body.xn .goods-sku,
body.xn .a-badge-primary,
body.xn .a-badge-warning,
body.xn .a-badge-success,
body.xn .a-badge-danger,
body.xn .yinse-footer-wrap,
body.xn .yinse-layer-popup,
body.xn .component-popup {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 244, 242, 0.48)) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
}

body.xn .panel-header,
body.xn .yinse-catalog-heading,
body.xn .yinse-query-heading,
body.xn .yinse-hero-notice-head,
body.xn .yinse-layer-popup .layui-layer-title,
body.xn .component-popup .layui-layer-title,
body.xn .component-popup .layui-layer-btn {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(250, 242, 236, 0.52)) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(116%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(116%) !important;
}

body.xn .yinse-commodity-card,
body.xn .yinse-commodity-card .row-inner,
body.xn .yinse-commodity-card.is-inline-active .row-inner {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.70), rgba(248, 244, 242, 0.44)) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(114%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(114%) !important;
}

body.xn .yinse-commodity-card:hover .row-inner,
body.xn .yinse-commodity-card.is-inline-active:hover .row-inner {
    background:
        radial-gradient(circle at 18px 16px, rgba(246, 188, 99, 0.14), transparent 72px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 235, 214, 0.52)) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
}

body.xn .yinse-catalog-panel.panel,
body.xn .yinse-catalog-panel > .panel-body.yinse-catalog-body,
body.xn .panel-body.yinse-catalog-body,
body.xn .yinse-catalog-body > .yinse-card-catalog-wrap,
body.xn .yinse-catalog-body .yinse-card-catalog-wrap,
body.xn .yinse-catalog-body .yinse-commodity-grid {
    background:
        radial-gradient(circle at 18px 18px, rgba(246, 188, 99, 0.10), transparent 92px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(248, 244, 242, 0.34)) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(118%) !important;
}

body.xn .yinse-catalog-body > .yinse-card-catalog-wrap,
body.xn .yinse-catalog-body .yinse-card-catalog-wrap {
    border: 1px solid rgba(217, 106, 46, 0.16) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.60),
        0 12px 28px rgba(128, 52, 35, 0.06) !important;
}

body.xn .yinse-catalog-body .yinse-commodity-grid {
    background: transparent !important;
}

/* Pink neon frame redesign. */
body.yinse-theme.xn {
    --xn-kitty-pink: #ff5fa2;
    --xn-kitty-pink-2: #ff2f86;
    --xn-kitty-pink-soft: #ff9ac8;
    --xn-kitty-ink: #fff1f8;
    --xn-kitty-muted: #f8b8d5;
    --xn-kitty-panel: rgba(10, 5, 10, 0.76);
    --xn-kitty-panel-2: rgba(20, 8, 18, 0.82);
    --xn-kitty-panel-soft: rgba(255, 95, 162, 0.075);
    --xn-kitty-line: rgba(255, 95, 162, 0.42);
    --xn-kitty-line-hot: rgba(255, 95, 162, 0.76);
    --xn-kitty-glow: rgba(255, 72, 150, 0.34);
    --xn-kitty-glow-soft: rgba(255, 72, 150, 0.18);
    --yinse-bg: #050205;
    --yinse-surface: var(--xn-kitty-panel);
    --yinse-black: var(--xn-kitty-ink);
    --yinse-text: var(--xn-kitty-ink);
    --yinse-muted: var(--xn-kitty-muted);
    --yinse-muted-strong: #ffd4e8;
    --yinse-muted-soft: var(--xn-kitty-pink-soft);
    --yinse-link: var(--xn-kitty-pink);
    --yinse-border: var(--xn-kitty-line);
    --yinse-border-strong: var(--xn-kitty-line-hot);
    --yinse-accent: var(--xn-kitty-pink);
    --yinse-accent-light: var(--xn-kitty-pink-soft);
    --yinse-accent-rgb: 255, 95, 162;
    --yinse-shadow-soft:
        0 0 0 1px rgba(255, 95, 162, 0.18),
        0 16px 34px rgba(0, 0, 0, 0.46),
        0 0 26px rgba(255, 72, 150, 0.14);
    --yinse-shadow-elevated:
        0 0 0 1px rgba(255, 95, 162, 0.30),
        0 20px 46px rgba(0, 0, 0, 0.58),
        0 0 34px rgba(255, 72, 150, 0.22);
    background-color: #050205 !important;
    color: var(--xn-kitty-ink) !important;
}

body.yinse-theme.xn.yinse-bg-mask-on::before {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 95, 162, 0.16), transparent 38%),
        radial-gradient(circle at 0% 50%, rgba(255, 95, 162, 0.12), transparent 32%),
        radial-gradient(circle at 100% 50%, rgba(255, 95, 162, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.54) 42%, rgba(0, 0, 0, 0.20)) !important;
}

body.xn .yinse-nav,
body.xn .panel,
body.xn .yinse-hero-banner,
body.xn .yinse-sidebar-panel,
body.xn .yinse-catalog-panel,
body.xn .yinse-item-unified-panel,
body.xn .yinse-description-panel,
body.xn .yinse-item-panel,
body.xn .yinse-card-catalog-wrap,
body.xn .yinse-catalog-body,
body.xn .yinse-table-wrap,
body.xn .yinse-description-body,
body.xn .yinse-item-form-wrap,
body.xn .cyber-left-details-block,
body.xn .cyber-right-form-block,
body.xn .cash-pay--independent,
body.xn .yinse-payment-body,
body.xn .yinse-payment-panel,
body.xn .order-card,
body.xn .yinse-footer-wrap,
body.xn .yinse-layer-popup,
body.xn .component-popup {
    border-color: var(--xn-kitty-line) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.08), rgba(255, 95, 162, 0.025) 34%, rgba(8, 3, 8, 0.78)),
        var(--xn-kitty-panel) !important;
    color: var(--xn-kitty-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 190, 224, 0.14),
        0 0 0 1px rgba(255, 95, 162, 0.10),
        0 18px 38px rgba(0, 0, 0, 0.50),
        0 0 28px rgba(255, 72, 150, 0.15) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(136%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(136%) !important;
}

body.xn .yinse-nav,
body.xn .yinse-hero-banner {
    box-shadow:
        inset 0 1px 0 rgba(255, 190, 224, 0.22),
        0 0 0 1px rgba(255, 95, 162, 0.20),
        0 20px 42px rgba(0, 0, 0, 0.56),
        0 0 38px rgba(255, 72, 150, 0.25) !important;
}

body.xn .yinse-nav::before,
body.xn .panel::before,
body.xn .yinse-hero-banner::after {
    background:
        linear-gradient(90deg, transparent, rgba(255, 138, 194, 0.78), rgba(255, 47, 134, 0.58), transparent) !important;
    box-shadow: 0 0 18px rgba(255, 95, 162, 0.30) !important;
}

body.xn .panel-header,
body.xn .yinse-catalog-heading,
body.xn .yinse-query-heading,
body.xn .yinse-hero-notice-head,
body.xn .yinse-layer-popup .layui-layer-title,
body.xn .component-popup .layui-layer-title,
body.xn .component-popup .layui-layer-btn {
    border-color: rgba(255, 95, 162, 0.28) !important;
    background:
        linear-gradient(90deg, rgba(255, 95, 162, 0.12), rgba(255, 95, 162, 0.035), rgba(8, 3, 8, 0.62)) !important;
    color: var(--xn-kitty-ink) !important;
}

body.xn .panel-kicker,
body.xn .yinse-eyebrow,
body.xn .yinse-meta-label {
    color: var(--xn-kitty-pink-soft) !important;
    text-shadow: 0 0 12px rgba(255, 95, 162, 0.38) !important;
}

body.xn .panel-title,
body.xn .panel-title-lg,
body.xn .panel-title-small,
body.xn .yinse-page-title,
body.xn .yinse-index-panel-title {
    color: #fff6fb !important;
    text-shadow:
        0 0 10px rgba(255, 95, 162, 0.46),
        0 0 24px rgba(255, 47, 134, 0.26) !important;
}

body.xn .yinse-nav-link,
body.xn .yinse-button,
body.xn .yinse-user-chip,
body.xn .yinse-searchbox,
body.xn .yinse-search-combo,
body.xn .yinse-searchbox-combo,
body.xn .yinse-category-link,
body.xn .badge-soft,
body.xn .yinse-pill,
body.xn .goods-sku,
body.xn .sku,
body.xn .optional-card,
body.xn .pay-list .pay,
body.xn .a-badge-primary,
body.xn .a-badge-warning,
body.xn .a-badge-success,
body.xn .a-badge-danger {
    border-color: rgba(255, 95, 162, 0.34) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.14), rgba(255, 95, 162, 0.04)),
        rgba(8, 3, 8, 0.62) !important;
    color: var(--xn-kitty-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 190, 224, 0.12),
        0 0 16px rgba(255, 72, 150, 0.10) !important;
}

body.xn .yinse-nav-link:hover,
body.xn .yinse-nav-link.is-active,
body.xn .yinse-button:hover,
body.xn .yinse-category-link:hover,
body.xn .yinse-category-link.is-active,
body.xn .sku:hover,
body.xn .sku.is-primary,
body.xn .optional-card:hover,
body.xn .pay-list .pay:hover,
body.xn .pay-list .pay.active,
body.xn .pay-list .pay.pay-selected,
body.xn .badge-soft:hover,
body.xn .goods-sku:hover {
    border-color: rgba(255, 138, 194, 0.82) !important;
    background:
        radial-gradient(circle at 18px 12px, rgba(255, 196, 224, 0.24), transparent 52px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.28), rgba(255, 47, 134, 0.10)),
        rgba(14, 4, 12, 0.84) !important;
    color: #ffffff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.24),
        0 0 0 1px rgba(255, 95, 162, 0.18),
        0 0 22px rgba(255, 72, 150, 0.34),
        0 14px 28px rgba(0, 0, 0, 0.42) !important;
}

body.xn .yinse-hero-banner--image {
    min-height: clamp(250px, 27vw, 360px) !important;
    border-color: rgba(255, 138, 194, 0.62) !important;
    overflow: hidden !important;
}

body.xn .yinse-hero-banner--image::before {
    background:
        radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(255, 95, 162, 0.08) 62%, rgba(0, 0, 0, 0.32) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)) !important;
}

body.xn .yinse-hero-title span {
    color: #fff8fc !important;
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.30),
        0 0 18px rgba(255, 95, 162, 0.78),
        0 0 38px rgba(255, 47, 134, 0.54) !important;
}

body.xn .yinse-hero-title strong {
    color: #ffd2e8 !important;
    text-shadow:
        0 0 8px rgba(255, 95, 162, 0.60),
        0 0 20px rgba(255, 47, 134, 0.36) !important;
}

body.xn .yinse-hero-title strong::after {
    background:
        radial-gradient(circle at 5px 50%, #ffb6d8 0 3px, transparent 3.5px),
        radial-gradient(circle at 17px 50%, #ff5fa2 0 3px, transparent 3.5px) !important;
    background-size: 24px 100% !important;
    filter: drop-shadow(0 0 8px rgba(255, 95, 162, 0.76)) !important;
}

body.xn .yinse-hero-actions .cyber-btn-item {
    border-color: rgba(255, 138, 194, 0.58) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.26), rgba(255, 47, 134, 0.12)),
        rgba(8, 3, 8, 0.72) !important;
    color: #fff6fb !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.22),
        0 0 22px rgba(255, 72, 150, 0.28) !important;
}

body.xn .yinse-hero-actions .cyber-btn-item:hover {
    border-color: rgba(255, 196, 224, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.36),
        0 0 34px rgba(255, 72, 150, 0.46),
        0 16px 30px rgba(0, 0, 0, 0.46) !important;
}

body.xn .yinse-commodity-card,
body.xn .yinse-commodity-card .row-inner,
body.xn .yinse-commodity-card.is-inline-active .row-inner {
    border-color: rgba(255, 95, 162, 0.28) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.08), rgba(255, 95, 162, 0.02)),
        rgba(8, 3, 8, 0.70) !important;
    color: var(--xn-kitty-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 190, 224, 0.10),
        0 0 0 1px rgba(255, 95, 162, 0.06),
        0 12px 26px rgba(0, 0, 0, 0.36) !important;
}

body.xn .yinse-commodity-card:hover .row-inner,
body.xn .yinse-commodity-card.is-inline-active .row-inner,
body.xn .yinse-commodity-card.is-inline-active:hover .row-inner {
    border-color: rgba(255, 138, 194, 0.90) !important;
    background:
        radial-gradient(circle at 18px 18px, rgba(255, 95, 162, 0.24), transparent 92px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.16), rgba(255, 47, 134, 0.05)),
        rgba(12, 4, 11, 0.86) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.18),
        0 0 0 1px rgba(255, 95, 162, 0.16),
        0 0 30px rgba(255, 72, 150, 0.32),
        0 18px 34px rgba(0, 0, 0, 0.48) !important;
}

body.xn .yinse-commodity-card .row-inner::before {
    background:
        linear-gradient(90deg, transparent, rgba(255, 138, 194, 0.86), rgba(255, 47, 134, 0.62), transparent) !important;
    box-shadow: 0 0 16px rgba(255, 95, 162, 0.42) !important;
}

body.xn .yinse-commodity-thumb {
    background-color: rgba(0, 0, 0, 0.24) !important;
    border-color: rgba(255, 138, 194, 0.46) !important;
    box-shadow:
        0 0 0 1px rgba(255, 95, 162, 0.12),
        0 0 18px rgba(255, 72, 150, 0.18) !important;
}

body.xn .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb,
body.xn .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb {
    border-color: rgba(255, 196, 224, 0.86) !important;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 22px rgba(255, 72, 150, 0.46) !important;
}

body.xn .yinse-commodity-name,
body.xn .yinse-category-name,
body.xn .yinse-current-cat-text,
body.xn .yinse-item-inline-title,
body.xn .yinse-user-name {
    color: #fff5fb !important;
}

body.xn .yinse-commodity-price,
body.xn .yinse-commodity-price-main,
body.xn .yinse-item-form-wrap .yinse-item-price .price,
body.xn .yinse-item-form-wrap .yinse-item-price .unit {
    color: #ff8fc1 !important;
    text-shadow: 0 0 16px rgba(255, 95, 162, 0.46) !important;
}

body.xn .yinse-form-stack .form-control,
body.xn .yinse-form-stack input.form-control,
body.xn .yinse-form-stack input.captcha-input,
body.xn .yinse-item-form-wrap .form-control,
body.xn .yinse-item-form-wrap input.form-control,
body.xn .yinse-item-form-wrap input.captcha-input,
body.xn .yinse-captcha-group,
body.xn .qty-group,
body.xn .password-form .input-group {
    border-color: rgba(255, 95, 162, 0.36) !important;
    background: rgba(2, 0, 3, 0.58) !important;
    color: #fff6fb !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 190, 224, 0.10),
        0 0 18px rgba(255, 72, 150, 0.10) !important;
}

body.xn .yinse-form-stack .form-control:focus,
body.xn .yinse-item-form-wrap .form-control:focus,
body.xn .yinse-item-form-wrap input.captcha-input:focus {
    border-color: rgba(255, 138, 194, 0.86) !important;
    background: rgba(8, 3, 8, 0.82) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.18),
        0 0 0 4px rgba(255, 95, 162, 0.14),
        0 0 24px rgba(255, 72, 150, 0.22) !important;
}

body.xn .yinse-form-stack .form-control::placeholder,
body.xn .yinse-item-form-wrap .form-control::placeholder,
body.xn .yinse-item-form-wrap input.captcha-input::placeholder {
    color: rgba(255, 202, 229, 0.56) !important;
}

body.xn .change-num-sub,
body.xn .change-num-add,
body.xn .yinse-item-form-wrap .change-num-sub,
body.xn .yinse-item-form-wrap .change-num-add {
    border-color: rgba(255, 95, 162, 0.45) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.20), rgba(255, 47, 134, 0.08)),
        rgba(8, 3, 8, 0.68) !important;
    color: #ffd7ea !important;
}

body.xn .change-num-sub:hover,
body.xn .change-num-add:hover {
    color: #ffffff !important;
    border-color: rgba(255, 196, 224, 0.92) !important;
    box-shadow: 0 0 22px rgba(255, 72, 150, 0.34) !important;
}

body.xn .yinse-description-body {
    color: #ffeaf5 !important;
}

body.xn .yinse-description-body a {
    border-color: rgba(255, 95, 162, 0.54) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.25), rgba(255, 47, 134, 0.10)),
        rgba(8, 3, 8, 0.78) !important;
    color: #ffffff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.18),
        0 0 22px rgba(255, 72, 150, 0.24) !important;
}

body.xn .yinse-description-body a:hover {
    border-color: rgba(255, 196, 224, 0.94) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.30),
        0 0 30px rgba(255, 72, 150, 0.42) !important;
}

body.xn .yinse-description-body blockquote,
body.xn .yinse-description-body blockquote.red,
body.xn .yinse-description-body blockquote.blue,
body.xn .yinse-description-body blockquote.blud,
body.xn .yinse-description-body blockquote.green,
body.xn .yinse-description-body blockquote.cyan,
body.xn .yinse-description-body blockquote.has-xn-quote-accent,
body.xn .yinse-description-body blockquote[style*="border-left-color"],
body.xn .yinse-description-body blockquote[style*="border-color"] {
    border-color: rgba(255, 95, 162, 0.56) !important;
    border-left-color: #ff5fa2 !important;
    background:
        radial-gradient(circle at 22px 18px, rgba(255, 95, 162, 0.18), transparent 86px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.10), rgba(255, 47, 134, 0.035)),
        rgba(8, 3, 8, 0.76) !important;
    color: #fff0f8 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.12),
        0 0 22px rgba(255, 72, 150, 0.18) !important;
}

body.xn .yinse-description-body blockquote::before,
body.xn .yinse-description-body blockquote::after {
    border-color: rgba(255, 138, 194, 0.44) !important;
    color: #ff9ac8 !important;
    background: rgba(8, 3, 8, 0.84) !important;
    box-shadow: 0 0 16px rgba(255, 72, 150, 0.28) !important;
}

body.xn .yinse-layer-popup,
body.xn .component-popup,
body.xn .layui-layer,
body.xn .layui-layer-page {
    border-color: rgba(255, 95, 162, 0.50) !important;
    background: rgba(8, 3, 8, 0.92) !important;
    box-shadow:
        0 0 0 1px rgba(255, 95, 162, 0.18),
        0 0 42px rgba(255, 72, 150, 0.26),
        0 24px 60px rgba(0, 0, 0, 0.62) !important;
}

body.xn .yinse-dropdown-menu {
    border-color: rgba(255, 95, 162, 0.48) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.12), rgba(8, 3, 8, 0.92)) !important;
    box-shadow:
        0 0 0 1px rgba(255, 95, 162, 0.16),
        0 0 30px rgba(255, 72, 150, 0.26),
        0 18px 38px rgba(0, 0, 0, 0.54) !important;
}

body.xn .yinse-dropdown-menu .dropdown-item {
    color: #ffe8f4 !important;
}

body.xn .yinse-dropdown-menu .dropdown-item:hover {
    background: rgba(255, 95, 162, 0.16) !important;
    color: #ffffff !important;
}

body.xn .badge-money,
body.xn .status-badge,
body.xn .shipment-badge {
    border-color: rgba(255, 138, 194, 0.56) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.32), rgba(255, 47, 134, 0.16)),
        rgba(8, 3, 8, 0.74) !important;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 95, 162, 0.52) !important;
}

body.xn .yinse-heart-particle {
    color: var(--heart-color, #ff5fa2) !important;
    text-shadow:
        0 0 6px rgba(255, 196, 224, 0.72),
        0 0 14px rgba(255, 95, 162, 0.58),
        0 0 28px rgba(255, 47, 134, 0.34) !important;
    filter:
        drop-shadow(0 0 8px rgba(255, 95, 162, 0.54))
        drop-shadow(0 8px 16px rgba(255, 47, 134, 0.22)) !important;
}

body.xn .yinse-heart-particle.is-near-mouse {
    filter:
        drop-shadow(0 0 14px rgba(255, 196, 224, 0.72))
        drop-shadow(0 0 28px rgba(255, 72, 150, 0.46)) !important;
}

body.xn ::selection {
    background: rgba(255, 95, 162, 0.42);
    color: #ffffff;
}

/* Pink neon final patch: catalog grid, purchase page and item details. */
body.xn .yinse-catalog-panel,
body.xn .yinse-catalog-panel.panel,
body.xn .yinse-catalog-panel .panel-body,
body.xn .yinse-catalog-panel > .panel-body.yinse-catalog-body,
body.xn .panel-body.yinse-catalog-body,
body.xn .yinse-catalog-body,
body.xn .yinse-catalog-body > .yinse-card-catalog-wrap,
body.xn .yinse-card-catalog-wrap,
body.xn .yinse-card-catalog-wrap .yinse-commodity-grid,
body.xn .yinse-commodity-grid {
    border-color: rgba(255, 95, 162, 0.46) !important;
    background:
        radial-gradient(circle at 12% 4%, rgba(255, 95, 162, 0.16), transparent 28%),
        radial-gradient(circle at 90% 88%, rgba(255, 47, 134, 0.12), transparent 26%),
        linear-gradient(135deg, rgba(18, 4, 14, 0.88), rgba(4, 0, 4, 0.84)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 190, 224, 0.12),
        0 0 0 1px rgba(255, 95, 162, 0.14),
        0 0 34px rgba(255, 72, 150, 0.20),
        0 18px 40px rgba(0, 0, 0, 0.54) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(140%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(140%) !important;
}

body.xn .yinse-card-catalog-wrap,
body.xn .yinse-catalog-body > .yinse-card-catalog-wrap {
    padding: 14px !important;
}

body.xn .yinse-commodity-grid {
    background: transparent !important;
}

body.xn .yinse-commodity-card,
body.xn .yinse-commodity-card .row-inner {
    border: 1px solid rgba(255, 95, 162, 0.42) !important;
    border-radius: 8px !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.13), rgba(255, 47, 134, 0.035)),
        rgba(9, 1, 8, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 190, 224, 0.10),
        0 0 0 1px rgba(255, 95, 162, 0.08),
        0 12px 26px rgba(0, 0, 0, 0.46) !important;
}

body.xn .yinse-commodity-card:hover,
body.xn .yinse-commodity-card:hover .row-inner,
body.xn .yinse-commodity-card.is-inline-active,
body.xn .yinse-commodity-card.is-inline-active .row-inner {
    border-color: rgba(255, 154, 200, 0.96) !important;
    background:
        radial-gradient(circle at 16px 18px, rgba(255, 95, 162, 0.28), transparent 88px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.21), rgba(255, 47, 134, 0.07)),
        rgba(13, 2, 11, 0.96) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.20),
        0 0 0 1px rgba(255, 95, 162, 0.22),
        0 0 34px rgba(255, 72, 150, 0.38),
        0 16px 32px rgba(0, 0, 0, 0.54) !important;
}

body.xn .yinse-item-unified-panel,
body.xn .unified-layout-body,
body.xn .cyber-left-details-block,
body.xn .cyber-right-form-block,
body.xn .yinse-item-panel,
body.xn .yinse-description-panel,
body.xn .yinse-item-form-wrap {
    border-color: rgba(255, 95, 162, 0.44) !important;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 95, 162, 0.14), transparent 32%),
        linear-gradient(135deg, rgba(16, 3, 13, 0.90), rgba(4, 0, 4, 0.88)) !important;
    color: #fff0f8 !important;
}

body.xn .yinse-item-form-wrap .yinse-item-price,
body.xn .yinse-item-form-wrap .yinse-field,
body.xn .yinse-item-form-wrap .cash-pay,
body.xn .yinse-item-form-wrap .qty-group,
body.xn .yinse-form-stack .yinse-field,
body.xn .cash-pay--independent,
body.xn .yinse-payment-panel,
body.xn .yinse-payment-body {
    border-color: rgba(255, 95, 162, 0.48) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.12), rgba(255, 47, 134, 0.035)),
        rgba(7, 1, 7, 0.86) !important;
    color: #fff0f8 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 190, 224, 0.12),
        0 0 22px rgba(255, 72, 150, 0.16),
        0 14px 30px rgba(0, 0, 0, 0.42) !important;
}

body.xn .yinse-item-form-wrap .form-control,
body.xn .yinse-item-form-wrap input.form-control,
body.xn .yinse-item-form-wrap input.captcha-input,
body.xn .yinse-form-stack .form-control,
body.xn .yinse-form-stack input.form-control,
body.xn .yinse-captcha-group,
body.xn .password-form .input-group,
body.xn .qty-group .form-control {
    border-color: rgba(255, 95, 162, 0.48) !important;
    background: rgba(2, 0, 3, 0.74) !important;
    color: #fff7fb !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 190, 224, 0.10),
        0 0 16px rgba(255, 72, 150, 0.14) !important;
}

body.xn .yinse-item-form-wrap .form-label,
body.xn .yinse-item-form-wrap .yinse-field .form-label,
body.xn .yinse-item-form-wrap .cash-pay > .form-label {
    color: #ffb7d9 !important;
    text-shadow: 0 0 12px rgba(255, 95, 162, 0.36) !important;
}

body.xn .yinse-item-form-wrap .yinse-field .form-label::before {
    background: #ff5fa2 !important;
    box-shadow: 0 0 0 4px rgba(255, 95, 162, 0.16), 0 0 14px rgba(255, 95, 162, 0.52) !important;
}

body.xn .yinse-item-form-wrap .badge-soft,
body.xn .yinse-item-form-wrap .yinse-pill,
body.xn .yinse-item-form-wrap .goods-sku,
body.xn .yinse-item-form-wrap .a-badge-primary,
body.xn .yinse-item-form-wrap .a-badge-warning,
body.xn .yinse-item-form-wrap .a-badge-success,
body.xn .yinse-item-form-wrap .a-badge-danger,
body.xn .yinse-item-form-wrap .shared-button,
body.xn .yinse-item-form-wrap .pay-list .pay,
body.xn .change-num-sub,
body.xn .change-num-add {
    border-color: rgba(255, 95, 162, 0.54) !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.24), rgba(255, 47, 134, 0.09)),
        rgba(9, 1, 8, 0.82) !important;
    color: #ffe8f4 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.14),
        0 0 18px rgba(255, 72, 150, 0.18) !important;
}

body.xn .yinse-item-form-wrap .badge-soft:hover,
body.xn .yinse-item-form-wrap .yinse-pill:hover,
body.xn .yinse-item-form-wrap .goods-sku:hover,
body.xn .yinse-item-form-wrap .shared-button:hover,
body.xn .yinse-item-form-wrap .pay-list .pay:hover,
body.xn .yinse-item-form-wrap .pay-list .pay.active,
body.xn .yinse-item-form-wrap .pay-list .pay.pay-selected,
body.xn .change-num-sub:hover,
body.xn .change-num-add:hover {
    border-color: rgba(255, 196, 224, 0.96) !important;
    background:
        radial-gradient(circle at 14px 10px, rgba(255, 220, 238, 0.24), transparent 46px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.38), rgba(255, 47, 134, 0.18)),
        rgba(14, 2, 12, 0.92) !important;
    color: #ffffff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.28),
        0 0 28px rgba(255, 72, 150, 0.40) !important;
}

body.xn .payment-notice,
body.xn .payment-tip,
body.xn .pay-notice,
body.xn .cash-pay .notice,
body.xn .yinse-payment-notice,
body.xn .yinse-item-form-wrap [class*="notice"] {
    border-color: rgba(255, 95, 162, 0.58) !important;
    background:
        radial-gradient(circle at left top, rgba(255, 95, 162, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(12, 2, 10, 0.84), rgba(4, 0, 4, 0.76)) !important;
    color: #ffeaf5 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.12),
        0 0 26px rgba(255, 72, 150, 0.22) !important;
}

body.xn .yinse-description-body,
body.xn .yinse-description-panel .panel-body,
body.xn .yinse-description-panel .yinse-description-body {
    border-color: rgba(255, 95, 162, 0.42) !important;
    background:
        radial-gradient(circle at 18px 18px, rgba(255, 95, 162, 0.12), transparent 96px),
        linear-gradient(135deg, rgba(13, 2, 11, 0.88), rgba(4, 0, 4, 0.82)) !important;
    color: #fff0f8 !important;
}

body.xn .cyber-static-logo-box,
body.xn .yinse-item-cover-card,
body.xn .yinse-item-cover-trigger {
    border-color: rgba(255, 95, 162, 0.46) !important;
    background: rgba(5, 0, 5, 0.64) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.10),
        0 0 24px rgba(255, 72, 150, 0.18) !important;
}

/* Keep image banner at the requested compact height. */
body.xn .yinse-hero-banner--image {
    height: 256px !important;
    min-height: 256px !important;
    max-height: 256px !important;
}

/* Improve image-banner text contrast over busy pink line art. */
body.xn .yinse-hero-banner--image::before {
    background:
        radial-gradient(ellipse at 24% 54%, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 30%, rgba(0, 0, 0, 0.18) 58%, transparent 78%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.46) 34%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.18) 100%),
        radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(255, 95, 162, 0.08) 62%, rgba(0, 0, 0, 0.30) 100%) !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-title::before {
    inset: -22px -30px -16px -30px !important;
    background:
        radial-gradient(ellipse at 26% 48%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 56%, transparent 76%),
        linear-gradient(135deg, rgba(255, 95, 162, 0.16), rgba(255, 47, 134, 0.05)) !important;
    border: 1px solid rgba(255, 180, 220, 0.16) !important;
    box-shadow:
        0 0 42px rgba(0, 0, 0, 0.78),
        0 0 34px rgba(255, 72, 150, 0.18) !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-title span {
    color: #ffffff !important;
    -webkit-text-stroke: 1px rgba(255, 198, 227, 0.22);
    text-shadow:
        0 2px 0 rgba(92, 8, 45, 0.92),
        0 0 7px rgba(255, 255, 255, 0.78),
        0 0 18px rgba(255, 95, 162, 0.86),
        0 0 36px rgba(255, 47, 134, 0.58),
        0 12px 26px rgba(0, 0, 0, 0.92) !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-title strong {
    color: #fff4fa !important;
    text-shadow:
        0 1px 0 rgba(60, 0, 28, 0.96),
        0 0 8px rgba(255, 255, 255, 0.44),
        0 0 18px rgba(255, 95, 162, 0.76),
        0 8px 18px rgba(0, 0, 0, 0.92) !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item {
    border-color: rgba(255, 190, 224, 0.78) !important;
    background:
        radial-gradient(circle at var(--yinse-btn-rx, 50%) var(--yinse-btn-ry, 50%), rgba(255, 230, 242, 0.20), transparent 54%),
        linear-gradient(135deg, rgba(255, 95, 162, 0.32), rgba(255, 47, 134, 0.14)),
        rgba(16, 2, 12, 0.88) !important;
    color: #fff7fb !important;
    text-shadow:
        0 1px 0 rgba(60, 0, 28, 0.96),
        0 0 10px rgba(255, 95, 162, 0.58) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 230, 242, 0.22),
        0 0 0 1px rgba(0, 0, 0, 0.34),
        0 0 18px rgba(255, 72, 150, 0.34),
        0 10px 22px rgba(0, 0, 0, 0.64) !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item:hover {
    background:
        radial-gradient(circle at var(--yinse-btn-rx, 50%) var(--yinse-btn-ry, 50%), rgba(255, 255, 255, 0.28), transparent 48%),
        linear-gradient(135deg, rgba(255, 95, 162, 0.54), rgba(255, 47, 134, 0.28)),
        rgba(20, 2, 14, 0.94) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.36),
        0 0 0 1px rgba(255, 190, 224, 0.28),
        0 0 30px rgba(255, 72, 150, 0.54),
        0 12px 26px rgba(0, 0, 0, 0.70) !important;
}

/* Cute banner motion: soft bounce instead of cyber sweep/glitch. */
body.xn .yinse-hero-banner--image .yinse-hero-title span {
    transform-origin: 12% 78%;
    animation:
        yinseHeroTitleIn 0.78s cubic-bezier(0.2, 1.25, 0.18, 1) both,
        yinseCuteTitleBob 4.2s ease-in-out 0.8s infinite !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-title span::after,
body.xn .yinse-hero-banner--image .yinse-hero-title .yinse-title-glitch {
    display: none !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-title span::before {
    color: rgba(255, 120, 184, 0.28) !important;
    transform: translate(5px, 5px) scale(1.01) !important;
    filter: blur(2px) !important;
    animation: yinseCuteTitleShadow 4.2s ease-in-out 0.8s infinite !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-title strong {
    transform-origin: left center;
    animation:
        yinseHeroSubIn 0.72s cubic-bezier(0.2, 1, 0.2, 1) 0.12s both,
        yinseCuteSubtitleWiggle 5.4s ease-in-out 1s infinite !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-title strong::after {
    animation: yinseCuteDotFloat 1.8s ease-in-out infinite !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item {
    transform-origin: center bottom;
    transition:
        transform 0.34s cubic-bezier(0.18, 1.55, 0.28, 1),
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        color 0.22s ease !important;
    animation:
        yinseCuteButtonPop 0.62s cubic-bezier(0.2, 1.35, 0.18, 1) both,
        yinseCuteButtonIdle 4.8s ease-in-out infinite !important;
    animation-delay:
        calc(var(--yinse-btn-index, 0) * 0.07s),
        calc(1.2s + var(--yinse-btn-index, 0) * 0.22s) !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item::before {
    background:
        radial-gradient(circle at 28% 32%, rgba(255, 255, 255, 0.34) 0 7px, transparent 8px),
        linear-gradient(110deg, transparent 0 34%, rgba(255, 220, 238, 0.48) 48%, transparent 62%) !important;
    opacity: 0.58 !important;
    transform: translateX(-132%) rotate(-8deg) !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item:hover {
    --yinse-btn-lift: 0px;
    transform: translateY(-4px) scale(1.055) rotate(-1deg) !important;
    animation-play-state: paused !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item:hover::before {
    transform: translateX(130%) rotate(-8deg) !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item:active {
    transform: translateY(1px) scale(0.94, 1.08) !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-ripple {
    width: 14px !important;
    height: 14px !important;
    border: 2px solid rgba(255, 210, 234, 0.86) !important;
    background: rgba(255, 95, 162, 0.26) !important;
    box-shadow: 0 0 18px rgba(255, 95, 162, 0.56) !important;
    animation: yinseCuteBubbleRipple 0.66s ease-out forwards !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-spark--cute {
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #ff8fc5 !important;
    font-size: 15px !important;
    font-style: normal !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-shadow:
        0 0 8px rgba(255, 220, 238, 0.90),
        0 0 16px rgba(255, 95, 162, 0.72) !important;
    box-shadow: none !important;
    animation: yinseCuteSparkFly 0.86s cubic-bezier(0.16, 0.9, 0.26, 1) forwards !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-spark--1 {
    color: #ffd2ea !important;
    font-size: 13px !important;
}

body.xn .yinse-hero-banner--image .yinse-hero-spark--2 {
    color: #ff5fa2 !important;
    font-size: 18px !important;
}

@keyframes yinseCuteTitleBob {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    34% {
        transform: translateY(-3px) rotate(-0.45deg) scale(1.01);
    }
    68% {
        transform: translateY(1px) rotate(0.28deg) scale(0.996);
    }
}

@keyframes yinseCuteTitleShadow {
    0%, 100% {
        transform: translate(5px, 5px) scale(1.01);
        opacity: 0.82;
    }
    50% {
        transform: translate(7px, 7px) scale(1.02);
        opacity: 0.56;
    }
}

@keyframes yinseCuteSubtitleWiggle {
    0%, 100% {
        transform: translateY(0);
    }
    45% {
        transform: translateY(-1px);
    }
    52% {
        transform: translateY(-1px) rotate(-0.45deg);
    }
    59% {
        transform: translateY(-1px) rotate(0.35deg);
    }
}

@keyframes yinseCuteDotFloat {
    0%, 100% {
        transform: translateY(4px);
        opacity: 0.92;
    }
    50% {
        transform: translateY(1px);
        opacity: 0.62;
    }
}

@keyframes yinseCuteButtonPop {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.82, 1.12);
    }
    62% {
        opacity: 1;
        transform: translateY(-3px) scale(1.08, 0.94);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes yinseCuteButtonIdle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.018);
    }
}

@keyframes yinseCuteBubbleRipple {
    to {
        transform: translate(-50%, -50%) scale(7.5);
        opacity: 0;
    }
}

@keyframes yinseCuteSparkFly {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.4) rotate(0deg);
    }
    18% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform:
            translate(calc(-50% + var(--yinse-spark-x)), calc(-50% + var(--yinse-spark-y)))
            scale(1.15)
            rotate(var(--yinse-spark-rotate, 18deg));
    }
}

/* Pink theme category hover/expanded states. */
body.xn .yinse-category-link:hover,
body.xn .yinse-category-link:focus-visible,
body.xn .yinse-category-link.is-active,
body.xn .yinse-category-link:has(.yinse-category-toggle.is-expanded) {
    border-color: rgba(255, 138, 194, 0.88) !important;
    background:
        radial-gradient(circle at 26px 20px, rgba(255, 196, 224, 0.30), transparent 68px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.24), rgba(255, 47, 134, 0.10)),
        rgba(18, 3, 14, 0.82) !important;
    color: #fff5fb !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 230, 242, 0.24),
        0 0 0 1px rgba(255, 95, 162, 0.18),
        0 0 26px rgba(255, 72, 150, 0.30),
        0 14px 30px rgba(0, 0, 0, 0.42) !important;
}

body.xn .yinse-category-link.is-active:hover,
body.xn .yinse-category-link:has(.yinse-category-toggle.is-expanded):hover {
    border-color: rgba(255, 205, 232, 0.98) !important;
    background:
        radial-gradient(circle at 28px 18px, rgba(255, 220, 238, 0.42), transparent 76px),
        radial-gradient(circle at 85% 18%, rgba(255, 95, 162, 0.22), transparent 62px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.34), rgba(255, 47, 134, 0.15)),
        rgba(22, 2, 16, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.34),
        0 0 0 1px rgba(255, 196, 224, 0.25),
        0 0 34px rgba(255, 72, 150, 0.46),
        0 16px 34px rgba(0, 0, 0, 0.50) !important;
}

body.xn .yinse-category-link:hover .yinse-category-name,
body.xn .yinse-category-link:focus-visible .yinse-category-name,
body.xn .yinse-category-link.is-active .yinse-category-name,
body.xn .yinse-category-link:has(.yinse-category-toggle.is-expanded) .yinse-category-name {
    color: #fff7fb !important;
    text-shadow:
        0 1px 0 rgba(70, 0, 34, 0.88),
        0 0 12px rgba(255, 95, 162, 0.62) !important;
}

body.xn .yinse-category-link:hover .yinse-category-icon,
body.xn .yinse-category-link.is-active .yinse-category-icon,
body.xn .yinse-category-link:has(.yinse-category-toggle.is-expanded) .yinse-category-icon {
    outline-color: rgba(255, 220, 238, 0.72) !important;
    box-shadow:
        0 0 0 1px rgba(255, 95, 162, 0.28),
        0 0 18px rgba(255, 72, 150, 0.36) !important;
}

body.xn .yinse-category-link:hover .yinse-category-toggle,
body.xn .yinse-category-link .yinse-category-toggle.is-expanded,
body.xn .yinse-category-link.is-active .yinse-category-count {
    border-color: rgba(255, 196, 224, 0.72) !important;
    background: rgba(255, 95, 162, 0.22) !important;
    color: #fff7fb !important;
    box-shadow: 0 0 14px rgba(255, 72, 150, 0.32) !important;
}

/* Item description buttons and quote blocks: force pink dark theme. */
body.xn .yinse-description-body a,
body.xn .yinse-description-body button,
body.xn .yinse-description-body input[type="button"],
body.xn .yinse-description-body input[type="submit"],
body.xn .yinse-description-body [role="button"],
body.xn .yinse-description-body .btn,
body.xn .yinse-description-body [class*="btn"],
body.xn .yinse-description-body [class*="button"] {
    border: 1px solid rgba(255, 95, 162, 0.64) !important;
    background:
        radial-gradient(circle at 18px 12px, rgba(255, 196, 224, 0.16), transparent 46px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.20), rgba(255, 47, 134, 0.075)),
        rgba(12, 1, 10, 0.84) !important;
    color: #ffd8ea !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.16),
        0 0 0 1px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(255, 72, 150, 0.18) !important;
    text-shadow: 0 0 10px rgba(255, 95, 162, 0.34) !important;
}

body.xn .yinse-description-body a *,
body.xn .yinse-description-body button *,
body.xn .yinse-description-body .btn *,
body.xn .yinse-description-body [class*="btn"] *,
body.xn .yinse-description-body [class*="button"] * {
    color: inherit !important;
}

body.xn .yinse-description-body a:hover,
body.xn .yinse-description-body a:focus-visible,
body.xn .yinse-description-body button:hover,
body.xn .yinse-description-body button:focus-visible,
body.xn .yinse-description-body input[type="button"]:hover,
body.xn .yinse-description-body input[type="submit"]:hover,
body.xn .yinse-description-body [role="button"]:hover,
body.xn .yinse-description-body .btn:hover,
body.xn .yinse-description-body [class*="btn"]:hover,
body.xn .yinse-description-body [class*="button"]:hover {
    border-color: rgba(255, 205, 232, 0.98) !important;
    background:
        radial-gradient(circle at 18px 12px, rgba(255, 230, 242, 0.26), transparent 52px),
        radial-gradient(circle at 92% 16%, rgba(255, 95, 162, 0.22), transparent 58px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.36), rgba(255, 47, 134, 0.16)),
        rgba(18, 2, 14, 0.94) !important;
    color: #fff7fb !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.30),
        0 0 0 1px rgba(255, 196, 224, 0.22),
        0 0 30px rgba(255, 72, 150, 0.48),
        0 12px 26px rgba(0, 0, 0, 0.42) !important;
}

body.xn .yinse-description-body blockquote,
body.xn .yinse-description-body blockquote.red,
body.xn .yinse-description-body blockquote.blue,
body.xn .yinse-description-body blockquote.blud,
body.xn .yinse-description-body blockquote.green,
body.xn .yinse-description-body blockquote.cyan,
body.xn .yinse-description-body blockquote.has-xn-quote-accent,
body.xn .yinse-description-body blockquote[style*="border-left-color"],
body.xn .yinse-description-body blockquote[style*="border-color"] {
    --xn-quote-accent: #ff5fa2 !important;
    --xn-quote-accent-rgb: 255, 95, 162 !important;
    border-color: rgba(255, 95, 162, 0.58) !important;
    border-left-color: #ff5fa2 !important;
    background:
        radial-gradient(circle at 24px 18px, rgba(255, 196, 224, 0.18), transparent 82px),
        radial-gradient(circle at 100% 18%, rgba(255, 95, 162, 0.10), transparent 86px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.12), rgba(255, 47, 134, 0.035)),
        rgba(8, 1, 7, 0.82) !important;
    color: #ffeaf5 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.12),
        0 0 0 1px rgba(255, 95, 162, 0.12),
        0 0 26px rgba(255, 72, 150, 0.18) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(132%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(132%) !important;
}

body.xn .yinse-description-body blockquote *,
body.xn .yinse-description-body blockquote font,
body.xn .yinse-description-body blockquote [style*="color"],
body.xn .yinse-description-body blockquote font[color] {
    color: #ff9ac8 !important;
}

body.xn .yinse-description-body blockquote::before,
body.xn .yinse-description-body blockquote.red::before,
body.xn .yinse-description-body blockquote.blue::before,
body.xn .yinse-description-body blockquote.blud::before,
body.xn .yinse-description-body blockquote.green::before,
body.xn .yinse-description-body blockquote.cyan::before,
body.xn .yinse-description-body blockquote.has-xn-quote-accent::before,
body.xn .yinse-description-body blockquote[style*="border-left-color"]::before,
body.xn .yinse-description-body blockquote[style*="border-color"]::before {
    background: linear-gradient(90deg, #ff5fa2, #ffd2ea, #ff2f86) !important;
    box-shadow: 0 0 18px rgba(255, 95, 162, 0.38) !important;
}

body.xn .yinse-description-body blockquote::after,
body.xn .yinse-description-body blockquote.red::after,
body.xn .yinse-description-body blockquote.blue::after,
body.xn .yinse-description-body blockquote.blud::after,
body.xn .yinse-description-body blockquote.green::after,
body.xn .yinse-description-body blockquote.cyan::after,
body.xn .yinse-description-body blockquote.has-xn-quote-accent::after,
body.xn .yinse-description-body blockquote[style*="border-left-color"]::after,
body.xn .yinse-description-body blockquote[style*="border-color"]::after {
    border-color: rgba(255, 196, 224, 0.54) !important;
    background: rgba(15, 2, 12, 0.90) !important;
    color: #ffd2ea !important;
    box-shadow: 0 0 16px rgba(255, 72, 150, 0.32) !important;
}

body.xn .yinse-description-body blockquote:hover,
body.xn .yinse-description-body blockquote.red:hover,
body.xn .yinse-description-body blockquote.blue:hover,
body.xn .yinse-description-body blockquote.blud:hover,
body.xn .yinse-description-body blockquote.green:hover,
body.xn .yinse-description-body blockquote.cyan:hover,
body.xn .yinse-description-body blockquote.has-xn-quote-accent:hover,
body.xn .yinse-description-body blockquote[style*="border-left-color"]:hover,
body.xn .yinse-description-body blockquote[style*="border-color"]:hover {
    border-color: rgba(255, 205, 232, 0.96) !important;
    border-left-color: #ffd2ea !important;
    background:
        radial-gradient(circle at 24px 18px, rgba(255, 220, 238, 0.28), transparent 92px),
        radial-gradient(circle at 100% 18%, rgba(255, 95, 162, 0.18), transparent 92px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.18), rgba(255, 47, 134, 0.07)),
        rgba(12, 1, 10, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.22),
        0 0 0 1px rgba(255, 196, 224, 0.18),
        0 0 34px rgba(255, 72, 150, 0.38),
        0 14px 30px rgba(0, 0, 0, 0.42) !important;
}

/* Remove the extra dark backing behind product card logos. */
body.xn .yinse-commodity-thumb,
body.xn .yinse-commodity-card .yinse-commodity-thumb,
body.xn .yinse-commodity-card:hover .yinse-commodity-thumb,
body.xn .yinse-commodity-card.is-inline-active .yinse-commodity-thumb,
body.xn .yinse-card-logo-motion .yinse-commodity-card:hover .yinse-commodity-thumb,
body.xn .yinse-card-logo-motion .yinse-commodity-card.is-inline-active .yinse-commodity-thumb {
    background-color: transparent !important;
}

body.xn .yinse-commodity-thumb::after {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.10), transparent 46%),
        radial-gradient(circle at 28% 18%, rgba(255, 196, 224, 0.12), transparent 42%) !important;
    opacity: 0.42 !important;
    mix-blend-mode: screen !important;
}

body.xn .yinse-card-logo-border-off .yinse-commodity-thumb::after,
body.xn .yinse-card-logo-glow-off .yinse-commodity-thumb::after {
    background: transparent !important;
    opacity: 0 !important;
}

/* Replace panel traffic-light marks with a pink bow. */
body.xn .panel-header::after,
body.xn .yinse-catalog-heading::after,
body.xn .yinse-query-heading::after,
body.xn .yinse-hero-notice-head::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 16px !important;
    right: 18px !important;
    width: 36px !important;
    height: 18px !important;
    border-radius: 0 !important;
    opacity: 0.96 !important;
    background:
        radial-gradient(circle at 50% 52%, #ffd8ea 0 4px, #ff6eb1 4.5px 7px, transparent 7.5px),
        radial-gradient(ellipse at 28% 50%, rgba(255, 111, 177, 0.96) 0 8px, rgba(255, 111, 177, 0.20) 8.5px 10px, transparent 10.5px),
        radial-gradient(ellipse at 72% 50%, rgba(255, 111, 177, 0.96) 0 8px, rgba(255, 111, 177, 0.20) 8.5px 10px, transparent 10.5px) !important;
    box-shadow: none !important;
    filter:
        drop-shadow(0 0 6px rgba(255, 95, 162, 0.56))
        drop-shadow(0 4px 8px rgba(0, 0, 0, 0.28)) !important;
    transform: rotate(-4deg) !important;
    transform-origin: center !important;
}

body.xn .panel-header:hover::after,
body.xn .yinse-catalog-heading:hover::after,
body.xn .yinse-query-heading:hover::after,
body.xn .yinse-hero-notice-head:hover::after {
    transform: translateY(-1px) rotate(3deg) scale(1.06) !important;
    filter:
        drop-shadow(0 0 10px rgba(255, 95, 162, 0.76))
        drop-shadow(0 5px 10px rgba(0, 0, 0, 0.32)) !important;
}

/* Top brand block: pink bow theme. */
body.xn .yinse-brand {
    border-color: rgba(255, 138, 194, 0.42) !important;
    background:
        radial-gradient(circle at 16px 50%, rgba(255, 196, 224, 0.16), transparent 42px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.16), rgba(255, 47, 134, 0.055)),
        rgba(12, 1, 10, 0.62) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.16),
        0 0 0 1px rgba(255, 95, 162, 0.12),
        0 0 22px rgba(255, 72, 150, 0.20),
        0 12px 28px rgba(0, 0, 0, 0.28) !important;
}

body.xn .yinse-brand::before {
    background:
        radial-gradient(circle at 22px 50%, rgba(255, 196, 224, 0.22), transparent 42px),
        radial-gradient(circle at calc(100% - 20px) 18px, rgba(255, 95, 162, 0.20), transparent 44px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.18), rgba(255, 47, 134, 0.06)) !important;
}

body.xn .yinse-brand::after {
    content: "" !important;
    right: 7px !important;
    top: 4px !important;
    width: 20px !important;
    height: 11px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
        radial-gradient(circle at 50% 52%, #ffd8ea 0 2px, #ff6eb1 2.5px 4px, transparent 4.5px),
        radial-gradient(ellipse at 28% 50%, #ff6eb1 0 5px, transparent 5.5px),
        radial-gradient(ellipse at 72% 50%, #ff6eb1 0 5px, transparent 5.5px) !important;
    color: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 0 7px rgba(255, 95, 162, 0.62)) !important;
    opacity: 0.95 !important;
    transform: rotate(-8deg) !important;
}

body.xn .yinse-brand:hover,
body.xn .yinse-brand:focus-visible {
    border-color: rgba(255, 205, 232, 0.78) !important;
    background:
        radial-gradient(circle at 16px 50%, rgba(255, 220, 238, 0.24), transparent 48px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.24), rgba(255, 47, 134, 0.10)),
        rgba(18, 2, 14, 0.74) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.24),
        0 0 0 1px rgba(255, 196, 224, 0.18),
        0 0 30px rgba(255, 72, 150, 0.38),
        0 14px 30px rgba(0, 0, 0, 0.34) !important;
}

body.xn .yinse-brand-mark {
    border-color: rgba(255, 138, 194, 0.70) !important;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 240, 248, 0.92), rgba(255, 196, 224, 0.46)),
        rgba(22, 2, 16, 0.64) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.40),
        0 0 0 3px rgba(255, 220, 238, 0.22),
        0 0 18px rgba(255, 72, 150, 0.30) !important;
}

body.xn .yinse-brand:hover .yinse-brand-mark,
body.xn .yinse-brand:focus-visible .yinse-brand-mark {
    border-color: rgba(255, 205, 232, 0.96) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.52),
        0 0 0 3px rgba(255, 220, 238, 0.32),
        0 0 24px rgba(255, 72, 150, 0.48) !important;
}

body.xn .yinse-brand-chip {
    color: #ffd8ea !important;
}

body.xn .yinse-brand-chip::before {
    background:
        linear-gradient(90deg, rgba(255, 95, 162, 0.14), rgba(255, 216, 233, 0.40), rgba(255, 95, 162, 0.16)) !important;
}

body.xn .yinse-brand-chip::after {
    background:
        radial-gradient(circle at 3px 50%, #ffd8ea 0 2.5px, transparent 3px),
        radial-gradient(circle at 11px 50%, #ff6eb1 0 2.5px, transparent 3px),
        radial-gradient(circle at 19px 50%, #ff2f86 0 2.5px, transparent 3px) !important;
    opacity: 0.86 !important;
    filter: drop-shadow(0 0 6px rgba(255, 95, 162, 0.48)) !important;
}

body.xn .yinse-brand-name {
    color: transparent !important;
    background: linear-gradient(90deg, #fff7fb 0%, #ffd8ea 28%, #ff8fc5 58%, #ff5fa2 100%) !important;
    background-size: 180% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
    filter:
        drop-shadow(0 1px 0 rgba(70, 0, 34, 0.72))
        drop-shadow(0 0 10px rgba(255, 95, 162, 0.44)) !important;
}

body.xn .yinse-brand:hover .yinse-brand-name,
body.xn .yinse-brand:focus-visible .yinse-brand-name {
    filter:
        drop-shadow(0 1px 0 rgba(70, 0, 34, 0.76))
        drop-shadow(0 0 14px rgba(255, 95, 162, 0.68)) !important;
}

/* Logged-in user dropdown: pink dark glass. */
body.xn .yinse-user-dropdown {
    position: relative;
}

body.xn .yinse-user-chip {
    border-color: rgba(255, 138, 194, 0.54) !important;
    background:
        radial-gradient(circle at 18px 50%, rgba(255, 196, 224, 0.18), transparent 46px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.16), rgba(255, 47, 134, 0.06)),
        rgba(12, 1, 10, 0.70) !important;
    color: #fff7fb !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.16),
        0 0 0 1px rgba(255, 95, 162, 0.14),
        0 0 22px rgba(255, 72, 150, 0.22),
        0 12px 28px rgba(0, 0, 0, 0.32) !important;
}

body.xn .yinse-user-chip:hover,
body.xn .yinse-user-chip:focus,
body.xn .yinse-user-chip.show,
body.xn .yinse-user-chip[aria-expanded="true"] {
    border-color: rgba(255, 205, 232, 0.88) !important;
    background:
        radial-gradient(circle at 18px 50%, rgba(255, 220, 238, 0.26), transparent 52px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.24), rgba(255, 47, 134, 0.10)),
        rgba(18, 2, 14, 0.84) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.26),
        0 0 0 1px rgba(255, 196, 224, 0.22),
        0 0 30px rgba(255, 72, 150, 0.42),
        0 14px 30px rgba(0, 0, 0, 0.38) !important;
}

body.xn .yinse-user-avatar {
    border-color: rgba(255, 196, 224, 0.78) !important;
    background: rgba(22, 2, 16, 0.70) !important;
    box-shadow:
        0 0 0 3px rgba(255, 220, 238, 0.20),
        0 0 18px rgba(255, 72, 150, 0.34) !important;
}

body.xn .yinse-user-name {
    color: #fff7fb !important;
    text-shadow:
        0 1px 0 rgba(70, 0, 34, 0.78),
        0 0 10px rgba(255, 95, 162, 0.52) !important;
}

body.xn .yinse-user-balance {
    color: #ff9ac8 !important;
    text-shadow: 0 0 8px rgba(255, 95, 162, 0.34) !important;
}

body.xn .yinse-user-chip.dropdown-toggle::after {
    border-top-color: #ffd8ea !important;
    filter: drop-shadow(0 0 5px rgba(255, 95, 162, 0.58)) !important;
}

body.xn .yinse-dropdown-menu,
body.xn .dropdown-menu.yinse-dropdown-menu {
    --bs-dropdown-bg: rgba(10, 1, 8, 0.92);
    --bs-dropdown-border-color: rgba(255, 95, 162, 0.56);
    --bs-dropdown-link-color: #ffe8f4;
    --bs-dropdown-link-hover-color: #fff7fb;
    --bs-dropdown-link-hover-bg: rgba(255, 95, 162, 0.18);
    min-width: 178px !important;
    padding: 10px !important;
    border: 1px solid rgba(255, 95, 162, 0.56) !important;
    border-radius: 14px !important;
    background:
        radial-gradient(circle at 20px 20px, rgba(255, 196, 224, 0.18), transparent 62px),
        radial-gradient(circle at calc(100% - 18px) 12px, rgba(255, 95, 162, 0.16), transparent 56px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.11), rgba(255, 47, 134, 0.04)),
        rgba(8, 1, 7, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.12),
        0 0 0 1px rgba(255, 95, 162, 0.12),
        0 0 34px rgba(255, 72, 150, 0.28),
        0 22px 44px rgba(0, 0, 0, 0.54) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(138%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(138%) !important;
}

body.xn .yinse-dropdown-menu::before {
    content: "" !important;
    position: absolute !important;
    top: -7px !important;
    right: 28px !important;
    width: 14px !important;
    height: 14px !important;
    border-left: 1px solid rgba(255, 95, 162, 0.48) !important;
    border-top: 1px solid rgba(255, 95, 162, 0.48) !important;
    background: rgba(10, 1, 8, 0.92) !important;
    transform: rotate(45deg) !important;
    border-radius: 3px 0 0 0 !important;
}

body.xn .yinse-dropdown-menu .yinse-dropdown-entry {
    margin: 3px 0 !important;
}

body.xn .yinse-dropdown-menu .dropdown-item {
    gap: 10px !important;
    min-height: 38px !important;
    padding: 9px 11px !important;
    border: 1px solid rgba(255, 95, 162, 0.28) !important;
    border-radius: 9px !important;
    background:
        linear-gradient(135deg, rgba(255, 95, 162, 0.10), rgba(255, 47, 134, 0.03)),
        rgba(18, 2, 14, 0.62) !important;
    color: #ffe8f4 !important;
    font-weight: 800 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.08),
        0 0 14px rgba(255, 72, 150, 0.10) !important;
}

body.xn .yinse-dropdown-menu .dropdown-item i {
    color: #ff9ac8 !important;
    text-shadow: 0 0 10px rgba(255, 95, 162, 0.50) !important;
}

body.xn .yinse-dropdown-menu .dropdown-item:hover,
body.xn .yinse-dropdown-menu .dropdown-item:focus {
    border-color: rgba(255, 205, 232, 0.84) !important;
    background:
        radial-gradient(circle at 16px 12px, rgba(255, 220, 238, 0.24), transparent 46px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.26), rgba(255, 47, 134, 0.09)),
        rgba(24, 2, 16, 0.88) !important;
    color: #fff7fb !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.18),
        0 0 22px rgba(255, 72, 150, 0.30) !important;
}

body.xn .yinse-dropdown-menu .dropdown-divider {
    margin: 8px 4px !important;
    border-top-color: rgba(255, 138, 194, 0.34) !important;
    opacity: 1 !important;
}

body.xn .yinse-dropdown-entry-danger .dropdown-item,
body.xn .yinse-dropdown-menu .dropdown-item.text-danger {
    color: #ff9ac8 !important;
}

body.xn .yinse-dropdown-entry-danger .dropdown-item:hover,
body.xn .yinse-dropdown-menu .dropdown-item.text-danger:hover {
    border-color: rgba(255, 130, 184, 0.92) !important;
    background:
        radial-gradient(circle at 16px 12px, rgba(255, 196, 224, 0.26), transparent 46px),
        linear-gradient(135deg, rgba(255, 47, 134, 0.32), rgba(255, 95, 162, 0.12)),
        rgba(28, 2, 18, 0.94) !important;
    color: #fff7fb !important;
}

/* Purchase quantity input: remove leftover gray box. */
body.xn .yinse-item-form-wrap .qty-group {
    border-color: rgba(255, 95, 162, 0.58) !important;
    background:
        radial-gradient(circle at 18px 14px, rgba(255, 196, 224, 0.13), transparent 54px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.12), rgba(255, 47, 134, 0.04)),
        rgba(8, 1, 7, 0.84) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.10),
        0 0 0 1px rgba(255, 95, 162, 0.12),
        0 0 22px rgba(255, 72, 150, 0.18) !important;
}

body.xn .yinse-item-form-wrap .qty-group input.form-control,
body.xn .yinse-item-form-wrap .qty-group .form-control,
body.xn .qty-group input[name="num"].form-control {
    min-height: 36px !important;
    border: 1px solid rgba(255, 138, 194, 0.46) !important;
    border-radius: 10px !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 220, 238, 0.18), transparent 58%),
        linear-gradient(135deg, rgba(255, 95, 162, 0.16), rgba(255, 47, 134, 0.05)),
        rgba(15, 2, 12, 0.88) !important;
    color: #fff7fb !important;
    font-weight: 900 !important;
    text-shadow: 0 0 10px rgba(255, 95, 162, 0.44) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.16),
        0 0 16px rgba(255, 72, 150, 0.18) !important;
}

body.xn .yinse-item-form-wrap .qty-group input.form-control:hover,
body.xn .yinse-item-form-wrap .qty-group input.form-control:focus,
body.xn .qty-group input[name="num"].form-control:hover,
body.xn .qty-group input[name="num"].form-control:focus {
    border-color: rgba(255, 205, 232, 0.88) !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 240, 248, 0.25), transparent 60%),
        linear-gradient(135deg, rgba(255, 95, 162, 0.24), rgba(255, 47, 134, 0.09)),
        rgba(20, 2, 14, 0.94) !important;
    color: #ffffff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.24),
        0 0 0 1px rgba(255, 196, 224, 0.16),
        0 0 22px rgba(255, 72, 150, 0.34) !important;
}

body.xn .qty-group input[type="number"]::-webkit-outer-spin-button,
body.xn .qty-group input[type="number"]::-webkit-inner-spin-button {
    opacity: 0;
}

/* Notice popup modal: pink dark theme. */
body.xn .layui-layer.yinse-layer-popup,
body.xn .yinse-layer-popup.layui-layer,
body.xn .layui-layer-page.yinse-layer-popup {
    border: 1px solid rgba(255, 95, 162, 0.62) !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 20px 20px, rgba(255, 196, 224, 0.18), transparent 78px),
        radial-gradient(circle at calc(100% - 28px) 18px, rgba(255, 95, 162, 0.15), transparent 86px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.10), rgba(255, 47, 134, 0.035)),
        rgba(7, 0, 6, 0.94) !important;
    color: #ffeaf5 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.14),
        0 0 0 1px rgba(255, 95, 162, 0.16),
        0 0 42px rgba(255, 72, 150, 0.34),
        0 28px 70px rgba(0, 0, 0, 0.68) !important;
    overflow: hidden !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(140%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(140%) !important;
}

body.xn .yinse-layer-popup .layui-layer-content {
    background: transparent !important;
    color: #ffeaf5 !important;
}

body.xn .yinse-notice-modal {
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 196, 224, 0.15), transparent 34%),
        linear-gradient(135deg, rgba(12, 1, 10, 0.82), rgba(4, 0, 4, 0.68)) !important;
    color: #ffeaf5 !important;
}

body.xn .yinse-notice-modal-head {
    border-bottom: 1px solid rgba(255, 95, 162, 0.34) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(255, 220, 238, 0.22), transparent 70px),
        linear-gradient(90deg, rgba(255, 95, 162, 0.16), rgba(255, 47, 134, 0.05), rgba(8, 1, 7, 0.18)) !important;
}

body.xn .yinse-notice-kicker {
    color: #ff9ac8 !important;
    text-shadow: 0 0 10px rgba(255, 95, 162, 0.50) !important;
}

body.xn .yinse-notice-title {
    color: #fff7fb !important;
    text-shadow:
        0 1px 0 rgba(70, 0, 34, 0.80),
        0 0 16px rgba(255, 95, 162, 0.58) !important;
}

body.xn .yinse-notice-title i {
    color: #ff9ac8 !important;
    text-shadow: 0 0 12px rgba(255, 95, 162, 0.58) !important;
}

body.xn .yinse-notice-modal .yinse-notice-popup-inner,
body.xn .yinse-notice-modal .yinse-notice-popup-inner .yinse-notice-popup-inner {
    border-color: rgba(255, 95, 162, 0.34) !important;
    background:
        radial-gradient(circle at 18px 18px, rgba(255, 196, 224, 0.12), transparent 86px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.08), rgba(255, 47, 134, 0.025)),
        rgba(6, 0, 5, 0.52) !important;
    color: #ffeaf5 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.10),
        0 0 22px rgba(255, 72, 150, 0.12) !important;
}

body.xn .yinse-notice-modal .yinse-notice-popup-inner *,
body.xn .yinse-notice-modal .yinse-notice-popup-inner [style*="color"],
body.xn .yinse-notice-modal .yinse-notice-popup-inner font[color],
body.xn .yinse-notice-modal .yinse-notice-popup-inner b,
body.xn .yinse-notice-modal .yinse-notice-popup-inner span {
    color: #ffd8ea !important;
}

body.xn .yinse-notice-modal .yinse-notice-popup-inner .new,
body.xn .yinse-notice-modal .yinse-notice-popup-inner p:first-child b {
    color: #fff7fb !important;
    text-shadow:
        0 0 10px rgba(255, 95, 162, 0.62),
        0 0 22px rgba(255, 47, 134, 0.34) !important;
}

body.xn .yinse-notice-modal .yinse-notice-popup-inner hr {
    height: 1px !important;
    border: 0 !important;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 162, 0.70), rgba(255, 216, 233, 0.50), transparent) !important;
    opacity: 1 !important;
    box-shadow: 0 0 12px rgba(255, 95, 162, 0.28) !important;
}

body.xn .yinse-notice-actions {
    border-top: 1px solid rgba(255, 95, 162, 0.28) !important;
    background:
        linear-gradient(90deg, rgba(255, 95, 162, 0.08), rgba(8, 1, 7, 0.18)) !important;
}

body.xn .yinse-notice-actions .yinse-button,
body.xn .yinse-notice-actions .yinse-button-light,
body.xn .yinse-notice-actions .yinse-button-dark {
    border-color: rgba(255, 138, 194, 0.62) !important;
    background:
        radial-gradient(circle at 16px 12px, rgba(255, 220, 238, 0.18), transparent 48px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.20), rgba(255, 47, 134, 0.07)),
        rgba(13, 1, 10, 0.84) !important;
    color: #fff7fb !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 238, 0.16),
        0 0 18px rgba(255, 72, 150, 0.18) !important;
}

body.xn .yinse-notice-actions .yinse-button-dark {
    border-color: rgba(255, 205, 232, 0.80) !important;
    background:
        radial-gradient(circle at 16px 12px, rgba(255, 240, 248, 0.22), transparent 48px),
        linear-gradient(135deg, rgba(255, 95, 162, 0.38), rgba(255, 47, 134, 0.16)),
        rgba(18, 2, 14, 0.92) !important;
}

body.xn .yinse-notice-actions .yinse-button:hover {
    border-color: rgba(255, 225, 240, 0.96) !important;
    transform: translateY(-2px) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 240, 248, 0.28),
        0 0 28px rgba(255, 72, 150, 0.42),
        0 12px 26px rgba(0, 0, 0, 0.34) !important;
}

body.xn .yinse-notice-tip {
    color: rgba(255, 216, 234, 0.72) !important;
    text-shadow: 0 0 10px rgba(255, 95, 162, 0.22) !important;
}


