/*
 * Yinse Custom Theme
 * Potato Shop journal card theme
 */
:root {
    --yinse-block-gap: 18px;
    --yinse-ink: #30263a;
    --yinse-ink-2: #5a3c68;
    --yinse-building: #23172f;
    --yinse-hair: #8a58f6;
    --yinse-hair-soft: #ff8fd1;
    --yinse-sky: #fff4fb;
    --yinse-paper: rgba(255, 255, 255, 0.78);
    --yinse-paper-2: rgba(255, 245, 252, 0.72);
    --yinse-line: rgba(154, 105, 223, 0.22);
    --yinse-line-strong: rgba(255, 117, 190, 0.42);
    --yinse-pink: #ff67bd;
    --yinse-brick: #d96675;
    --yinse-success: #23b987;
    --yinse-warning: #ffd56d;
    --yinse-shadow: 0 18px 42px rgba(126, 76, 152, 0.14);
    --yinse-shadow-hover: 0 24px 54px rgba(126, 76, 152, 0.20);
    --mark-purple: #8544d8;
    --mark-pink: #e96fbe;
    --mark-coral: #ee8357;
    --mark-yellow: #f0a91f;
}

body.yinse-theme.ys {
    --yinse-layout-gap: var(--yinse-block-gap);
    --yinse-bg: var(--yinse-paper-2);
    --yinse-surface: var(--yinse-paper);
    --yinse-black: #6c42d8;
    --yinse-text: var(--yinse-ink);
    --yinse-muted: #7a6f82;
    --yinse-muted-strong: #604d67;
    --yinse-muted-soft: var(--yinse-hair);
    --yinse-link: #7a46e8;
    --yinse-border: var(--yinse-line);
    --yinse-border-strong: var(--yinse-line-strong);
    --yinse-accent: var(--yinse-hair);
    --yinse-accent-light: var(--yinse-hair-soft);
    --yinse-accent-rgb: 138, 88, 246;
    --yinse-shadow-soft: var(--yinse-shadow);
    --yinse-shadow-elevated: var(--yinse-shadow-hover);
    min-height: 100vh;
    background-color: #fff8fd !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(--yinse-ink);
}

body.yinse-theme.ys::before {
    display: none !important;
}

body.yinse-theme.ys.yinse-bg-mask-on::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    display: block !important;
    pointer-events: none;
    background:
        radial-gradient(circle at 13% 18%, rgba(255, 103, 189, 0.13), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(138, 88, 246, 0.10), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 250, 253, 0.68));
}

.yinse-atmosphere-particle-layer {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    overflow: hidden;
    pointer-events: none;
    contain: layout paint;
}

.yinse-atmosphere-particle {
    position: absolute;
    left: var(--atmosphere-x, 50vw);
    bottom: -36px;
    width: var(--atmosphere-size, 20px);
    height: var(--atmosphere-size, 20px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    --atmosphere-primary: #ffd47a;
    --atmosphere-secondary: #56eaff;
    --atmosphere-hot: #ff5fd2;
    opacity: 0;
    color: var(--atmosphere-primary);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: var(--atmosphere-size, 20px);
    font-weight: 900;
    line-height: 1;
    text-shadow:
        0 0 8px rgba(255, 212, 122, 0.28),
        0 0 12px rgba(116, 231, 255, 0.16);
    filter:
        drop-shadow(0 0 10px rgba(255, 212, 122, 0.28))
        drop-shadow(0 0 12px rgba(116, 231, 255, 0.14));
    transform: translate3d(-50%, 0, 0) rotate(calc(var(--atmosphere-rotate, 0deg) + var(--atmosphere-mouse-rotate, 0deg))) scale(calc(0.72 * var(--atmosphere-mouse-scale, 1)));
    animation: yinseAtmosphereFloat var(--atmosphere-duration, 7.2s) cubic-bezier(0.22, 0.64, 0.26, 1) forwards;
    transition: filter 0.22s ease, opacity 0.22s ease;
}

.yinse-atmosphere-particle.is-shape::before,
.yinse-atmosphere-particle.is-shape::after {
    content: none !important;
    display: none !important;
}

.yinse-atmosphere-particle[data-mark="/"] {
    font-weight: 950;
    opacity: 0;
    filter: drop-shadow(0 6px 10px rgba(48, 38, 58, 0.12));
}

.yinse-atmosphere-particle.is-near-mouse {
    filter:
        drop-shadow(0 0 14px rgba(255, 212, 122, 0.38))
        drop-shadow(0 0 16px rgba(116, 231, 255, 0.24));
    animation-play-state: paused;
}

.yinse-atmosphere-particle::before,
.yinse-atmosphere-particle::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.yinse-atmosphere-particle.is-gold {
    --atmosphere-primary: #ffd47a;
    --atmosphere-secondary: #74e7ff;
    --atmosphere-hot: #fff7d8;
}

.yinse-atmosphere-particle.is-cyan {
    --atmosphere-primary: #74e7ff;
    --atmosphere-secondary: #ffd47a;
    --atmosphere-hot: #dffbff;
}

.yinse-atmosphere-particle.is-magenta {
    --atmosphere-primary: #ff67bd;
    --atmosphere-secondary: #ffd47a;
    --atmosphere-hot: #74e7ff;
}

.yinse-atmosphere-particle.is-ivory {
    --atmosphere-primary: #fff7d3;
    --atmosphere-secondary: #56eaff;
    --atmosphere-hot: #ffd47a;
}

.yinse-atmosphere-particle.is-amber {
    --atmosphere-primary: #ffc66d;
    --atmosphere-secondary: #ff5fd2;
    --atmosphere-hot: #74e7ff;
}

.yinse-atmosphere-particle.is-hud-line::before {
    background:
        linear-gradient(180deg, transparent, var(--atmosphere-primary), transparent) 36% 0 / 2px 100% no-repeat,
        linear-gradient(180deg, transparent, var(--atmosphere-secondary), transparent) 64% 22% / 1.5px 62% no-repeat,
        radial-gradient(circle at 50% 14%, var(--atmosphere-hot) 0 1.8px, transparent 2.2px);
    opacity: 0.82;
}

.yinse-atmosphere-particle.is-hud-line::after {
    left: 50%;
    top: 16%;
    width: 1px;
    height: 72%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: translateX(-50%);
    opacity: 0.36;
}

.yinse-atmosphere-particle.is-hud-corner::before {
    background:
        linear-gradient(180deg, var(--atmosphere-primary), rgba(255, 212, 122, 0)) 16% 0 / 2px 48% no-repeat,
        linear-gradient(180deg, rgba(116, 231, 255, 0), var(--atmosphere-secondary)) 74% 52% / 2px 44% no-repeat,
        linear-gradient(90deg, var(--atmosphere-hot), rgba(255, 255, 255, 0)) 34% 28% / 10px 1.5px no-repeat,
        radial-gradient(circle at 78% 22%, var(--atmosphere-hot) 0 1.6px, transparent 2px);
}

.yinse-atmosphere-particle.is-hud-corner::after {
    inset: 18% 18% auto auto;
    width: 2px;
    height: 54%;
    background: linear-gradient(180deg, transparent, var(--atmosphere-secondary), transparent);
    opacity: 0.58;
}

.yinse-atmosphere-particle.is-hud-dot {
    width: calc(var(--atmosphere-size, 22px) * 0.82);
}

.yinse-atmosphere-particle.is-hud-dot::before {
    border-radius: 999px;
    background:
        radial-gradient(circle, var(--atmosphere-primary) 0 2.4px, rgba(255, 255, 255, 0.44) 2.8px 3.8px, transparent 4.2px),
        radial-gradient(circle, rgba(255, 212, 122, 0.22), transparent 68%);
}

.yinse-atmosphere-particle.is-hud-dot::after {
    top: 50%;
    left: 50%;
    width: 2px;
    height: 150%;
    background: linear-gradient(180deg, transparent, var(--atmosphere-secondary), transparent);
    transform: translate(-50%, -50%) rotate(8deg);
    opacity: 0.7;
}

@keyframes yinseAtmosphereFloat {
    0% {
        opacity: 0;
        transform: translate3d(-50%, 0, 0) rotate(calc(var(--atmosphere-rotate, 0deg) + var(--atmosphere-mouse-rotate, 0deg))) scale(calc(0.18 * var(--atmosphere-mouse-scale, 1)));
    }
    5% {
        opacity: var(--atmosphere-opacity, 0.78);
        transform: translate3d(-50%, -8px, 0) rotate(calc(var(--atmosphere-rotate, 0deg) + var(--atmosphere-mouse-rotate, 0deg))) scale(calc(1.48 * var(--atmosphere-mouse-scale, 1)));
    }
    10% {
        opacity: var(--atmosphere-opacity, 0.78);
        transform: translate3d(-50%, -18px, 0) rotate(calc(var(--atmosphere-rotate, 0deg) + var(--atmosphere-mouse-rotate, 0deg))) scale(calc(0.92 * var(--atmosphere-mouse-scale, 1)));
    }
    18% {
        opacity: var(--atmosphere-opacity, 0.78);
        transform: translate3d(calc(-50% + var(--atmosphere-drift-mid, 18px) * 0.22), calc(var(--atmosphere-rise, -72vh) * 0.22), 0) rotate(calc((var(--atmosphere-rotate, 0deg) * 0.35) + var(--atmosphere-mouse-rotate, 0deg))) scale(calc(1 * var(--atmosphere-mouse-scale, 1)));
    }
    42% {
        transform: translate3d(calc(-50% + var(--atmosphere-drift-mid, 18px) * 0.72), calc(var(--atmosphere-rise, -72vh) * 0.52), 0) rotate(calc((var(--atmosphere-rotate, 0deg) * -0.4) + var(--atmosphere-mouse-rotate, 0deg))) scale(calc(1 * var(--atmosphere-mouse-scale, 1)));
    }
    100% {
        opacity: 0;
        transform: translate3d(calc(-50% + var(--atmosphere-drift, -18px)), var(--atmosphere-rise, -72vh), 0) rotate(calc(var(--atmosphere-rotate, 0deg) + var(--atmosphere-spin, 28deg) + var(--atmosphere-mouse-rotate, 0deg))) scale(calc(0.88 * var(--atmosphere-mouse-scale, 1)));
    }
}

@media (prefers-reduced-motion: reduce) {
    .yinse-atmosphere-particle-layer {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .yinse-atmosphere-particle-layer {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

body.ys .yinse-page-frame {
    min-height: 100vh;
}

body.ys .yinse-main {
    margin-top: var(--yinse-block-gap) !important;
}

body.ys .yinse-nav-shell + .yinse-nav-shell,
body.ys .yinse-header + .yinse-nav-shell {
    padding-top: var(--yinse-block-gap) !important;
}

body.ys .yinse-shop-layout {
    gap: var(--yinse-block-gap) !important;
}

body.ys .yinse-catalog-panel,
body.ys .yinse-inline-item-panel,
body.ys .yinse-item-unified-panel,
body.ys .yinse-description-panel,
body.ys .yinse-item-panel {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.ys .yinse-nav,
body.ys .panel,
body.ys .yinse-item-unified-panel,
body.ys .yinse-footer-wrap,
body.ys .yinse-layer-popup,
body.ys .component-popup {
    border: 1px solid var(--yinse-line) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(242, 251, 253, 0.46)) !important;
    color: var(--yinse-ink) !important;
    box-shadow: var(--yinse-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.ys .yinse-nav {
    border-radius: 18px !important;

}

body.ys .yinse-nav::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--yinse-hair), var(--yinse-pink), transparent);
    opacity: 0.58;
}

body.ys .yinse-brand,
body.ys .yinse-brand-name,
body.ys .yinse-nav-link,
body.ys .yinse-user-chip,
body.ys .yinse-user-name,
body.ys .yinse-user-balance,
body.ys .dropdown-item,
body.ys .form-control,
body.ys .yinse-searchbox,
body.ys .yinse-search-combo,
body.ys .yinse-category-name,
body.ys .yinse-commodity-name,
body.ys .yinse-description-body,
body.ys .yinse-notice-popup-inner {
    color: var(--yinse-ink) !important;
}

body.ys .yinse-brand-mark,
body.ys .yinse-user-avatar,
body.ys .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.ys .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.ys .yinse-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22px 50%, rgba(255, 103, 189, 0.22), transparent 38px),
        radial-gradient(circle at calc(100% - 18px) 18px, rgba(138, 88, 246, 0.18), transparent 42px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 244, 251, 0.34));
    opacity: 0.74;
    transform: scale(0.98);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

body.ys .yinse-brand::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 5px;
    width: 16px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background:
        linear-gradient(135deg, transparent 0 56%, rgba(48, 38, 58, 0.42) 57% 63%, transparent 64%),
        linear-gradient(135deg, transparent 0 34%, rgba(255, 143, 209, 0.70) 35% 52%, rgba(255, 255, 255, 0.78) 53% 56%, rgba(138, 88, 246, 0.68) 57% 72%, transparent 73%);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.46;
    transform: translateY(0) rotate(-10deg) scale(0.86);
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

body.ys .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.ys .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.ys .yinse-brand-chip::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 24px;
    bottom: 3px;
    height: 5px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(138, 88, 246, 0.42), rgba(255, 103, 189, 0.58), rgba(53, 201, 213, 0.34));
    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.ys .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(--yinse-pink) 0 2.5px, transparent 3px),
        radial-gradient(circle at 11px 50%, var(--yinse-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.ys .yinse-brand-name {
    position: relative;
    z-index: 1;
    color: #30263a !important;
    background: none !important;
    background-size: auto;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    font-size: 1.1rem;
    font-weight: 900;
    -webkit-text-stroke: 0;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.90),
        0 5px 12px rgba(48, 38, 58, 0.12);
    transform: translateY(0);
    transition:
        transform 0.28s ease,
        background-position 0.38s ease,
        filter 0.28s ease,
        letter-spacing 0.28s ease;
}

body.ys .yinse-brand:hover,
body.ys .yinse-brand:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 103, 189, 0.26);
    background: rgba(255, 255, 255, 0.34);
    box-shadow:
        0 12px 28px rgba(138, 88, 246, 0.14),
        0 0 22px rgba(255, 103, 189, 0.16);
}

body.ys .yinse-brand:hover::before,
body.ys .yinse-brand:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

body.ys .yinse-brand:hover::after,
body.ys .yinse-brand:focus-visible::after {
    opacity: 0.66;
    transform: none;
}

body.ys .yinse-brand:hover .yinse-brand-mark,
body.ys .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.ys .yinse-brand:hover .yinse-brand-chip::before,
body.ys .yinse-brand:focus-visible .yinse-brand-chip::before {
    opacity: 1;
    transform: scaleX(1) translateY(0);
}

body.ys .yinse-brand:hover .yinse-brand-name,
body.ys .yinse-brand:focus-visible .yinse-brand-name {
    color: #5f3ecf !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    transform: translateY(-1px);
    filter:
        drop-shadow(0 1px 0 rgba(255, 255, 255, 0.80))
        drop-shadow(0 5px 10px rgba(95, 62, 207, 0.16));
    letter-spacing: 0;
}

@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.ys .yinse-brand-mark {
        animation: none;
    }

    body.ys .yinse-brand:hover .yinse-brand-chip::before,
    body.ys .yinse-brand:focus-visible .yinse-brand-chip::before {
        transition: none;
    }
}

body.ys .yinse-nav-link,
body.ys .yinse-button-light,
body.ys .yinse-user-chip,
body.ys .yinse-searchbox,
body.ys .yinse-search-combo,
body.ys .form-control,
body.ys .qty-group,
body.ys .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.ys .yinse-nav-link:hover,
body.ys .yinse-nav-link.is-active,
body.ys .yinse-button-dark,
body.ys .yinse-commodity-action-link,
body.ys .sku.is-primary,
body.ys .view-card-btn,
body.ys .component-popup .queryBtn,
body.ys .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.ys .yinse-button-light:hover,
body.ys .yinse-category-link:hover,
body.ys .yinse-category-link.is-active,
body.ys .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.ys .panel {
    position: relative;
    border-radius: 20px !important;
    overflow: hidden;
}

body.ys .panel::before,
body.ys .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.ys .yinse-hero-banner--notice::after {
    display: block !important;
}

body.ys .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.ys .panel-header::after,
.yinse-hero-notice-head::after {
    content: "";
    position: absolute;
    top: 15px;
    right: 18px;
    width: 38px;
    height: 16px;
    border-radius: 6px;
    background:
        linear-gradient(135deg, transparent 0 58%, rgba(48, 38, 58, 0.42) 59% 64%, transparent 65%) 0 0 / 100% 100% no-repeat,
        linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.86) 43% 46%, transparent 47%) 0 0 / 100% 100% no-repeat,
        linear-gradient(135deg, transparent 0 63%, #ffd56d 64% 72%, transparent 73%) 0 0 / 100% 100% no-repeat,
        linear-gradient(135deg, transparent 0 28%, rgba(255, 143, 209, 0.72) 29% 43%, rgba(255, 255, 255, 0.78) 44% 47%, rgba(138, 88, 246, 0.70) 48% 64%, transparent 65%) 0 0 / 100% 100% no-repeat;
    opacity: 0.82;
    transform: rotate(-8deg);
    filter: drop-shadow(0 5px 8px rgba(126, 76, 152, 0.12));
}

body.ys .yinse-catalog-heading::after {
    display: block !important;
    top: 18px;
    right: 18px;
}

body.ys .yinse-catalog-tools {
    position: absolute;
    top: 44px;
    right: 22px;
    width: min(100%, 360px);
    display: flex;
    justify-content: flex-end;
}

body.ys .yinse-catalog-tools::before {
    display: none !important;
}

body.ys .yinse-catalog-tools::after {
    display: none !important;
}

body.ys .panel-kicker,
body.ys .yinse-notice-kicker,
body.ys .yinse-commodity-muted,
body.ys .yinse-footer-copy,
body.ys .yinse-footer-icp {
    color: #607889 !important;
}

body.ys .panel-title,
body.ys .yinse-index-panel-title,
body.ys .yinse-item-inline-title,
body.ys .yinse-item-price .price,
body.ys .yinse-current-name,
body.ys .panel-title-small {
    color: var(--yinse-ink-2) !important;
    text-shadow: none !important;
}

.yinse-banner-shell {
    margin-top: var(--yinse-block-gap) !important;
}

body.ys .yinse-hero-banner {
    position: relative;
    min-height: 256px;
    padding: 0 !important;
    border: 1px solid var(--yinse-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(--yinse-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.ys .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(--yinse-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(--yinse-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(--yinse-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(--yinse-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.ys .yinse-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 18%, rgba(255, 255, 255, 0.68) 34%, rgba(255, 255, 255, 0.22) 52%, rgba(255, 255, 255, 0) 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 34%, rgba(255, 246, 252, 0.12));
}

body.ys .yinse-hero-banner:not(.yinse-hero-banner--image)::after {
    display: none !important;
}

body.ys .yinse-hero-banner--notice::after {
    display: block !important;
}

body.ys .yinse-hero-banner--notice::before {
    display: none !important;
}

.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 {
    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(53, 201, 213, 0.28);
}

.yinse-hero-title strong {
    color: #a7f7ff;
    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);
}

.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 {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(39, 174, 193, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    color: #0f6175 !important;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(26, 73, 95, 0.12);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.yinse-hero-actions .cyber-btn-item:hover {
    border-color: rgba(39, 174, 193, 0.52);
    background: rgba(255, 255, 255, 0.76);
    color: #0b7f9a !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(26, 73, 95, 0.18);
}

body.ys .yinse-news-ticker {
    border-color: rgba(39, 174, 193, 0.22) !important;
    background: transparent !important;
    color: var(--yinse-ink) !important;
    box-shadow: none !important;
}

body.ys .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.ys .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.ys .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.ys .yinse-category-link > * {
    position: relative;
    z-index: 1;
}

body.ys .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: 6px;
    background:
        linear-gradient(135deg, transparent 0 56%, rgba(48, 38, 58, 0.40) 57% 63%, transparent 64%),
        linear-gradient(135deg, transparent 0 34%, rgba(255, 143, 209, 0.68) 35% 52%, rgba(255, 255, 255, 0.78) 53% 56%, rgba(138, 88, 246, 0.66) 57% 72%, transparent 73%);
    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.ys .yinse-category-link:hover::after,
body.ys .yinse-category-link.is-active::after {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

body.ys .yinse-category-link:hover,
body.ys .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.ys .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.ys .yinse-category-link.is-active:hover::after {
    transform: translateY(-1px) rotate(10deg) scale(1.12);
}

body.ys .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.ys .yinse-category-tree.is-floating .yinse-category-row:hover,
body.ys .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.ys .yinse-commodity-table thead th,
body.ys .component-popup .bootstrap-table .fixed-table-container .table thead th {
    background: rgba(230, 247, 251, 0.46) !important;
    color: var(--yinse-ink-2) !important;
}

body.ys .item-list .yinse-commodity-row:hover,
body.ys .yinse-commodity-card:hover,
body.ys .yinse-commodity-card.is-inline-active {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 9px !important;
}

body.ys .yinse-category-icon {
    outline: 3px solid rgba(255, 255, 255, 0.52);
    outline-offset: -3px;
}

body.ys .yinse-category-icon {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

body.ys .yinse-pill,
body.ys .badge-soft,
body.ys .badge-soft-primary {
    border-color: rgba(39, 174, 193, 0.18) !important;
    background: rgba(234, 248, 251, 0.82) !important;
    color: #0f6175 !important;
}

body.ys .badge-money {
    --yinse-badge-money-bg: #eaf8fb !important;
    --yinse-badge-money-border: rgba(39, 174, 193, 0.30) !important;
    color: #0f6175 !important;
}

body.ys .status-badge.status-paid,
body.ys .badge-soft-success {
    background: rgba(35, 185, 135, 0.14) !important;
    color: #16835f !important;
}

body.ys .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.ys .yinse-item-form-wrap {
    color: var(--yinse-ink);
}

body.ys .yinse-item-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 16px;
}

body.ys .yinse-item-badges .badge-soft,
body.ys .badge-soft,
body.ys .yinse-pill,
body.ys .snap-up,
body.ys .goods-sku,
body.ys .a-badge-primary,
body.ys .a-badge-warning,
body.ys .a-badge-success,
body.ys .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(39, 174, 193, 0.24) !important;
    border-radius: 9px !important;
    background:
        radial-gradient(circle at 10px 8px, rgba(255, 79, 163, 0.08), transparent 34px),
        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: 850 !important;
    line-height: 1.2;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 5px 12px rgba(26, 73, 95, 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.ys .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: 4px;
    background:
        linear-gradient(135deg, transparent 0 56%, rgba(48, 38, 58, 0.38) 57% 63%, transparent 64%),
        linear-gradient(135deg, transparent 0 34%, rgba(255, 143, 209, 0.68) 35% 52%, rgba(255, 255, 255, 0.78) 53% 56%, rgba(138, 88, 246, 0.64) 57% 72%, transparent 73%);
    font-size: 10px;
    line-height: 1;
    transform: rotate(-8deg);
}

body.ys .yinse-item-badges .badge-soft:hover,
body.ys .yinse-pill:hover,
body.ys .goods-sku:hover,
body.ys .a-badge-primary:hover,
body.ys .a-badge-warning:hover,
body.ys .a-badge-success:hover,
body.ys .a-badge-danger:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.44) !important;
    background:
        radial-gradient(circle at 10px 8px, rgba(255, 79, 163, 0.13), transparent 38px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(212, 247, 252, 0.66)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 9px 18px rgba(26, 73, 95, 0.12),
        0 0 14px rgba(53, 201, 213, 0.10) !important;
}

body.ys .badge-soft-success {
    border-color: rgba(35, 185, 135, 0.24) !important;
    color: #16835f !important;
}

body.ys .badge-soft-danger,
body.ys .a-badge-danger {
    border-color: rgba(255, 79, 130, 0.28) !important;
    background:
        radial-gradient(circle at 10px 8px, rgba(255, 79, 163, 0.12), transparent 34px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 235, 244, 0.58)) !important;
    color: #c23f72 !important;
}

body.ys .badge-soft-info,
body.ys .shared-button {
    cursor: pointer;
}

body.ys .yinse-item-price {
    position: relative;
    margin: 8px 0 18px;
    padding: 14px 16px;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.18);
    border-radius: 14px;
    background:
        radial-gradient(circle at 24px 16px, rgba(255, 79, 163, 0.11), transparent 72px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 247, 251, 0.44));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 10px 24px rgba(26, 73, 95, 0.08);
}

body.ys .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: 0;
    border-radius: 6px;
    background:
        linear-gradient(135deg, transparent 0 58%, rgba(48, 38, 58, 0.42) 59% 64%, transparent 65%),
        linear-gradient(135deg, transparent 0 30%, rgba(255, 143, 209, 0.72) 31% 48%, rgba(255, 255, 255, 0.78) 49% 52%, rgba(138, 88, 246, 0.70) 53% 68%, transparent 69%);
    font-size: 13px;
    transform: rotate(8deg);
}

body.ys .yinse-item-price .price {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    margin: 0;
    color: #13b56f !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(19, 181, 111, 0.16) !important;
}

body.ys .yinse-item-price .unit {
    color: #0f9f9f;
    font-size: 0.48em;
    font-weight: 950;
}

body.ys .yinse-form-stack {
    gap: 14px !important;
}

body.ys .yinse-field {
    position: relative;
    padding: 13px;
    border: 1px solid rgba(39, 174, 193, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(226, 247, 251, 0.28));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

body.ys .yinse-field .form-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px !important;
    color: #315c70 !important;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

body.ys .yinse-field .form-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--yinse-hair);
    box-shadow: 0 0 0 4px rgba(53, 201, 213, 0.12);
}

body.ys .sku-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 2px !important;
}

body.ys .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(39, 174, 193, 0.24) !important;
    border-radius: 10px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.70), rgba(225, 248, 252, 0.42)) !important;
    color: var(--yinse-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(26, 73, 95, 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.ys .sku:hover {
    transform: translateY(-3px);
    border-color: rgba(53, 201, 213, 0.48) !important;
    background:
        radial-gradient(circle at 10px 9px, rgba(255, 79, 163, 0.10), transparent 36px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(212, 247, 252, 0.64)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 10px 22px rgba(26, 73, 95, 0.13),
        0 0 16px rgba(53, 201, 213, 0.12) !important;
}

body.ys .sku.is-primary {
    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),
        inset 0 1px 0 rgba(255, 255, 255, 0.24) !important;
}

body.ys .sku.is-primary:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow:
        0 16px 34px rgba(18, 158, 181, 0.32),
        0 0 20px rgba(53, 201, 213, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.30) !important;
}

body.ys .sku-label {
    position: relative;
    z-index: 1;
}

body.ys .badge-money {
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px !important;
    border: 1px solid rgba(255, 79, 163, 0.22) !important;
    border-radius: 7px !important;
    background: rgba(255, 255, 255, 0.62) !important;
    color: #e83f93 !important;
    font-size: 0.72rem !important;
    font-weight: 950 !important;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(255, 79, 163, 0.10) !important;
}

body.ys .sku.is-primary .badge-money {
    color: #0f6175 !important;
    background: rgba(255, 255, 255, 0.84) !important;
}

body.ys .yinse-form-stack .form-control,
body.ys .yinse-form-stack input.form-control,
body.ys .yinse-form-stack input.captcha-input,
body.ys .yinse-captcha-group,
body.ys .qty-group,
body.ys .password-form .input-group {
    min-height: 42px;
    border: 1px solid rgba(39, 174, 193, 0.24) !important;
    border-radius: 12px !important;
    background: rgba(248, 253, 255, 0.68) !important;
    color: var(--yinse-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 5px 14px rgba(26, 73, 95, 0.045) !important;
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

body.ys .yinse-form-stack .form-control:focus,
body.ys .yinse-form-stack input.captcha-input:focus {
    border-color: rgba(53, 201, 213, 0.56) !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(53, 201, 213, 0.12),
        0 8px 20px rgba(26, 73, 95, 0.08) !important;
    outline: 0 !important;
}

body.ys .yinse-form-stack .form-control::placeholder,
body.ys .yinse-form-stack input.captcha-input::placeholder {
    color: rgba(53, 88, 107, 0.58) !important;
}

body.ys .qty-group {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
    padding: 5px !important;
}

body.ys .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.ys .change-num-sub,
body.ys .change-num-add {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(39, 174, 193, 0.26) !important;
    border-radius: 9px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(225, 248, 252, 0.56)) !important;
    color: #0f6175 !important;
    box-shadow: 0 5px 12px rgba(26, 73, 95, 0.06) !important;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

body.ys .change-num-sub:hover,
body.ys .change-num-add:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.50) !important;
    background: linear-gradient(135deg, #129eb5, #36cbd8) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(18, 158, 181, 0.22) !important;
}

body.ys .optional-card,
body.ys .view-card-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 1px solid rgba(39, 174, 193, 0.26) !important;
    border-radius: 12px !important;
    background:
        radial-gradient(circle at 14px 10px, rgba(255, 79, 163, 0.10), transparent 42px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(222, 248, 252, 0.56)) !important;
    color: #0f6175 !important;
    font-weight: 900;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 6px 16px rgba(26, 73, 95, 0.08) !important;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

body.ys .optional-card:hover,
body.ys .view-card-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.50) !important;
    background:
        radial-gradient(circle at 14px 10px, rgba(255, 79, 163, 0.15), transparent 48px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(205, 245, 251, 0.72)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 10px 22px rgba(26, 73, 95, 0.14) !important;
}

body.ys .yinse-captcha-group {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px !important;
}

body.ys .yinse-captcha-group .form-control {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body.ys .captcha-img,
body.ys .input-group-text.captcha-img {
    min-width: 104px;
    height: 34px;
    padding: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.22) !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.66) !important;
}

body.ys .wholesale-table,
body.ys table.wholesale-table {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(39, 174, 193, 0.20) !important;
    border-radius: 14px !important;
    background: rgba(248, 253, 255, 0.66) !important;
    --bs-table-bg: transparent !important;
    --bs-table-color: var(--yinse-ink) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.70),
        0 8px 18px rgba(26, 73, 95, 0.07) !important;
}

body.ys .wholesale-table th,
body.ys .wholesale-table td {
    border-color: rgba(39, 174, 193, 0.14) !important;
    background: transparent !important;
    color: var(--yinse-ink) !important;
}

body.ys .cash-pay {
    padding: 13px;
    border: 1px solid rgba(39, 174, 193, 0.14);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(226, 247, 251, 0.28));
}

body.ys .cash-pay > .form-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #315c70 !important;
    font-weight: 900;
}

body.ys .pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

body.ys .pay-list .pay {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 12px;
    border: 1px solid rgba(39, 174, 193, 0.24);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(222, 248, 252, 0.56));
    color: #0f6175;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(26, 73, 95, 0.07);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

body.ys .pay-list .pay img {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    object-fit: cover;
}

body.ys .pay-list .pay:hover,
body.ys .pay-list .pay.active,
body.ys .pay-list .pay.pay-selected {
    transform: translateY(-2px);
    border-color: rgba(53, 201, 213, 0.50);
    background: linear-gradient(135deg, #129eb5, #36cbd8) !important;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(18, 158, 181, 0.22);
}

/* Order lookup heading. */
body.ys .yinse-query-panel {
    overflow: hidden;
}

body.ys .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(255, 212, 122, 0.18) !important;
    background:
        radial-gradient(circle at 36px 22px, rgba(116, 231, 255, 0.10), transparent 84px),
        radial-gradient(circle at calc(100% - 46px) 14px, rgba(255, 212, 122, 0.09), transparent 92px),
        linear-gradient(90deg, rgba(10, 19, 32, 0.88), rgba(6, 12, 24, 0.76) 58%, rgba(3, 7, 16, 0.82)) !important;
}

body.ys .yinse-query-heading-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(116, 231, 255, 0.36);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.14), rgba(255, 212, 122, 0.10)),
        rgba(4, 9, 18, 0.72);
    color: #74e7ff;
    font-size: 17px;
    font-weight: 900;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 18px rgba(116, 231, 255, 0.14),
        0 8px 18px rgba(0, 0, 0, 0.28);
    flex: 0 0 auto;
}

body.ys .yinse-query-heading-copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

body.ys .yinse-query-heading .panel-kicker {
    margin: 0;
    color: rgba(174, 238, 255, 0.72) !important;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
}

body.ys .yinse-query-title {
    margin: 0;
    color: #fff7d8 !important;
    font-size: clamp(1.28rem, 2.2vw, 1.72rem);
    line-height: 1.05;
    font-weight: 950;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52), 0 0 18px rgba(255, 212, 122, 0.16) !important;
}

body.ys .yinse-query-summary {
    margin: 0;
    max-width: 560px;
    color: rgba(221, 232, 255, 0.62) !important;
    font-size: 0.84rem;
    line-height: 1.45;
}

body.ys .yinse-query-form .form-control {
    border-color: rgba(116, 231, 255, 0.28) !important;
    background: rgba(3, 8, 18, 0.72) !important;
    color: rgba(245, 247, 251, 0.94) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 18px rgba(116, 231, 255, 0.08) !important;
}

body.ys .yinse-query-form .form-control::placeholder {
    color: rgba(221, 232, 255, 0.46) !important;
}

body.ys .yinse-query-form .form-control:focus {
    border-color: rgba(255, 212, 122, 0.48) !important;
    background: rgba(5, 11, 22, 0.86) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 3px rgba(255, 212, 122, 0.08),
        0 0 20px rgba(116, 231, 255, 0.12) !important;
}

/* Order lookup results. */
body.ys .order-results .panel-body {
    padding: 18px;
}

body.ys .order-list {
    display: grid;
    gap: 14px;
}

body.ys .order-item {
    position: relative;
    overflow: hidden;
    padding: 16px !important;
    border: 1px solid rgba(255, 212, 122, 0.22) !important;
    border-radius: 16px !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(116, 231, 255, 0.08), transparent 86px),
        radial-gradient(circle at calc(100% - 28px) 20px, rgba(255, 212, 122, 0.08), transparent 96px),
        linear-gradient(135deg, rgba(6, 13, 25, 0.86), rgba(3, 7, 16, 0.76)) !important;
    color: rgba(245, 247, 251, 0.90);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 28px rgba(0, 0, 0, 0.30) !important;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease;
}

body.ys .order-item::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 14px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background:
        linear-gradient(135deg, transparent 0 58%, rgba(48, 38, 58, 0.42) 59% 64%, transparent 65%),
        linear-gradient(135deg, transparent 0 30%, rgba(255, 143, 209, 0.72) 31% 48%, rgba(255, 255, 255, 0.78) 49% 52%, rgba(138, 88, 246, 0.70) 53% 68%, transparent 69%);
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    transform: rotate(8deg);
}

body.ys .order-item:hover {
    transform: translateY(-3px);
    border-color: rgba(116, 231, 255, 0.42) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(116, 231, 255, 0.12), transparent 92px),
        radial-gradient(circle at calc(100% - 28px) 20px, rgba(255, 212, 122, 0.11), transparent 96px),
        linear-gradient(135deg, rgba(8, 17, 32, 0.92), rgba(4, 9, 18, 0.86)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 16px 34px rgba(0, 0, 0, 0.34),
        0 0 24px rgba(116, 231, 255, 0.12) !important;
}

body.ys .order-header,
body.ys .goods-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
}

body.ys .order-header {
    padding: 4px 30px 14px 0;
    border-bottom: 1px solid rgba(116, 231, 255, 0.16);
}

body.ys .order-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

body.ys .order-status {
    flex: 0 0 auto;
}

body.ys .status-badge,
body.ys .shipment-badge {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 11px !important;
    border: 1px solid rgba(116, 231, 255, 0.24) !important;
    border-radius: 9px !important;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.14), rgba(255, 212, 122, 0.08)),
        rgba(5, 12, 24, 0.72) !important;
    color: #aef4ff !important;
    font-size: 0.82rem !important;
    font-weight: 900 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 14px rgba(116, 231, 255, 0.10) !important;
}

body.ys .status-badge.status-paid,
body.ys .shipment-badge.shipment-paid {
    border-color: rgba(72, 230, 164, 0.34) !important;
    background:
        linear-gradient(135deg, rgba(72, 230, 164, 0.18), rgba(116, 231, 255, 0.10)),
        rgba(5, 12, 24, 0.76) !important;
    color: #7ef0bc !important;
}

body.ys .order-basic {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: rgba(221, 232, 255, 0.70);
    font-size: 0.88rem;
    font-weight: 750;
}

body.ys .order-no {
    color: rgba(245, 247, 251, 0.94);
    font-size: 1rem;
    font-weight: 950;
    word-break: break-all;
}

body.ys .order-no::before {
    content: "Order";
    display: inline-flex;
    align-items: center;
    margin-right: 7px;
    padding: 2px 7px;
    border: 1px solid rgba(116, 231, 255, 0.24);
    border-radius: 7px;
    background: rgba(116, 231, 255, 0.13);
    color: #aef4ff;
    font-size: 0.66rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.ys .order-header .btn-copy-card,
body.ys .order-header .btn-copy-unified,
body.ys .order-header .order-copy-btn,
body.ys .order-no .btn-copy-card,
body.ys .order-no .btn-copy-unified,
body.ys .order-no .order-copy-btn {
    min-width: 24px !important;
    min-height: 24px !important;
    padding: 0 !important;
    margin-left: 6px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--yinse-hair) !important;
    font: inherit !important;
    line-height: 1 !important;
}

body.ys .order-header .btn-copy-card:hover,
body.ys .order-header .btn-copy-unified:hover,
body.ys .order-header .order-copy-btn:hover,
body.ys .order-no .btn-copy-card:hover,
body.ys .order-no .btn-copy-unified:hover,
body.ys .order-no .order-copy-btn:hover {
    transform: translateY(-1px);
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--yinse-pink) !important;
}

body.ys .order-header .order-copy-btn i,
body.ys .order-no .order-copy-btn i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: currentColor !important;
    font-size: 15px !important;
    line-height: 1 !important;
}

body.ys .payment-method {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

body.ys .payment-icon {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(26, 73, 95, 0.10);
}

body.ys .order-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
}

body.ys .order-amount {
    min-width: 118px;
    display: grid;
    gap: 5px;
    justify-items: end;
    padding: 10px 12px;
    border: 1px solid rgba(116, 231, 255, 0.24);
    border-radius: 13px;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.12), rgba(255, 212, 122, 0.08)),
        rgba(5, 12, 24, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 16px rgba(116, 231, 255, 0.10);
}

body.ys .amount-label {
    color: rgba(174, 238, 255, 0.70);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.ys .amount-value {
    color: #48e6a4;
    font-size: 1.45rem;
    font-weight: 950;
    line-height: 1;
    text-shadow: 0 0 16px rgba(72, 230, 164, 0.24), 0 8px 18px rgba(0, 0, 0, 0.34);
}

body.ys .goods-section {
    margin-top: 14px;
    padding: 13px;
    border: 1px solid rgba(116, 231, 255, 0.18);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.10), rgba(255, 212, 122, 0.06)),
        rgba(5, 12, 24, 0.54);
}

body.ys .goods-thumb {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    overflow: hidden;
    border: 1px solid rgba(255, 212, 122, 0.24);
    border-radius: 12px;
    background: rgba(3, 7, 16, 0.64);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 16px rgba(255, 212, 122, 0.10);
}

body.ys .goods-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.ys .goods-details {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 8px;
    flex: 1 1 auto;
}

body.ys .goods-name {
    margin: 0;
    color: #74e7ff;
    font-size: 1rem;
    font-weight: 950;
    line-height: 1.35;
}

body.ys .goods-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

body.ys .card-section {
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 212, 122, 0.20) !important;
    border-radius: 15px !important;
    background:
        radial-gradient(circle at 22px 18px, rgba(116, 231, 255, 0.08), transparent 78px),
        linear-gradient(135deg, rgba(6, 13, 25, 0.82), rgba(3, 7, 16, 0.72)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 9px 20px rgba(0, 0, 0, 0.22) !important;
}

body.ys .card-section .card-header {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(116, 231, 255, 0.16);
    background:
        linear-gradient(90deg, rgba(116, 231, 255, 0.10), rgba(255, 212, 122, 0.07)),
        rgba(5, 12, 24, 0.52);
}

body.ys .shipment-content,
body.ys .card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    color: rgba(245, 247, 251, 0.88);
    font-size: 1rem !important;
    font-weight: 950;
}

body.ys .shipment-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

body.ys .shipment-title i {
    color: #74e7ff;
}

body.ys .card-content-no-password,
body.ys .card-password-section,
body.ys .card-content {
    padding: 13px 14px;
    color: rgba(221, 232, 255, 0.78);
    font-weight: 750;
    line-height: 1.72;
}

body.ys .card-display {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border: 1px dashed rgba(116, 231, 255, 0.28);
    border-radius: 12px;
    background: rgba(3, 8, 18, 0.72);
    color: rgba(245, 247, 251, 0.90);
    word-break: break-word;
}

body.ys .card-section .form-control::placeholder,
body.ys .card-password-section .form-control::placeholder,
body.ys .card-content .form-control::placeholder {
    color: rgba(221, 232, 255, 0.62) !important;
}

body.ys .card-content .btn-copy-card,
body.ys .card-content-no-password .btn-copy-card,
body.ys .card-password-section .btn-copy-card {
    margin-top: 10px !important;
}

body.ys .btn-copy-unified,
body.ys .btn-unified {
    min-height: 30px;
    padding: 4px 10px !important;
    border: 1px solid rgba(116, 231, 255, 0.26);
    border-radius: 9px;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.12), rgba(255, 212, 122, 0.07)),
        rgba(5, 12, 24, 0.72);
    color: rgba(245, 247, 251, 0.92) !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.ys .btn-copy-unified:hover,
body.ys .btn-unified:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 212, 122, 0.48);
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.18), rgba(116, 231, 255, 0.10)),
        rgba(6, 13, 25, 0.84);
    box-shadow: 0 0 18px rgba(255, 212, 122, 0.12), 0 8px 18px rgba(0, 0, 0, 0.24);
}

@media (max-width: 767.98px) {
    body.ys .yinse-query-heading {
        align-items: flex-start;
        min-height: auto;
        padding: 14px !important;
    }

    body.ys .yinse-query-heading-icon {
        width: 36px;
        height: 36px;
        margin-right: 10px;
        border-radius: 10px;
        font-size: 15px;
    }

    body.ys .yinse-query-heading::after {
        right: 12px;
        top: 12px;
    }

    body.ys .yinse-query-title {
        font-size: 1.28rem;
    }

    body.ys .yinse-query-summary {
        font-size: 0.8rem;
    }

    body.ys .order-header,
    body.ys .goods-section {
        flex-direction: column;
    }

    body.ys .order-left {
        flex-direction: column;
    }

    body.ys .order-right,
    body.ys .order-amount {
        width: 100%;
        justify-items: start;
    }
}

body.ys .yinse-description-body a,
body.ys .btn-copy-card,
body.ys .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.ys .yinse-description-body a:hover,
body.ys .btn-copy-card:hover,
body.ys .cyber-back-btn:hover {
    background: #129eb5 !important;
    color: #ffffff !important;
}

body.ys .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);
    border-left: 0;
    border-radius: 14px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 247, 251, 0.46)) !important;
    color: var(--yinse-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.ys .yinse-description-body blockquote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--yinse-pink), var(--yinse-hair), #7ee8a8);
    box-shadow: 0 0 18px rgba(53, 201, 213, 0.24);
}

body.ys .yinse-description-body blockquote::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 12px;
    width: 26px;
    height: 18px;
    display: block;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.18)) 0 0 / 15px 2px no-repeat,
        linear-gradient(180deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.20)) 0 0 / 2px 11px no-repeat,
        linear-gradient(90deg, rgba(140, 240, 255, 0.98), rgba(116, 231, 255, 0.30)) 8px 7px / 17px 2px no-repeat,
        linear-gradient(90deg, rgba(255, 120, 200, 0.92), rgba(255, 103, 189, 0.20)) 12px 12px / 10px 2px no-repeat,
        radial-gradient(circle at 22px 3px, #fff8d8 0 1px, #ffd47a 1.2px 2.7px, transparent 2.9px) 0 0 / 26px 18px no-repeat;
    box-shadow: none;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%);
    filter:
        drop-shadow(0 0 8px rgba(255, 212, 122, 0.22))
        drop-shadow(0 0 8px rgba(116, 231, 255, 0.14));
}

body.ys .yinse-description-body blockquote p {
    margin: 0 0 10px !important;
}

body.ys .yinse-description-body blockquote p:last-child,
body.ys .yinse-description-body blockquote > :last-child {
    margin-bottom: 0 !important;
}

body.ys .yinse-description-body blockquote ul,
body.ys .yinse-description-body blockquote ol {
    margin: 8px 0 0 !important;
    padding-left: 18px !important;
}

body.ys .yinse-description-body a,
body.ys .btn-copy-card,
body.ys .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.ys .yinse-description-body a::after,
body.ys .btn-copy-card::after,
body.ys .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: 0;
    border-radius: 5px;
    background:
        linear-gradient(135deg, transparent 0 58%, rgba(48, 38, 58, 0.38) 59% 64%, transparent 65%),
        linear-gradient(135deg, transparent 0 30%, rgba(255, 143, 209, 0.70) 31% 48%, rgba(255, 255, 255, 0.78) 49% 52%, rgba(138, 88, 246, 0.68) 53% 68%, transparent 69%);
    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.ys .yinse-description-body a:hover,
body.ys .btn-copy-card:hover,
body.ys .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.ys .yinse-description-body a:hover::after,
body.ys .btn-copy-card:hover::after,
body.ys .cyber-back-btn:hover::after {
    border: 0;
    background:
        linear-gradient(135deg, transparent 0 58%, rgba(48, 38, 58, 0.46) 59% 64%, transparent 65%),
        linear-gradient(135deg, transparent 0 30%, rgba(255, 143, 209, 0.82) 31% 48%, rgba(255, 255, 255, 0.86) 49% 52%, rgba(138, 88, 246, 0.78) 53% 68%, transparent 69%);
    box-shadow: 0 7px 16px rgba(126, 76, 152, 0.16);
    transform: none;
}

body.ys .yinse-description-body blockquote {
    padding: 20px 22px 18px 24px !important;
    border: 1px solid rgba(39, 174, 193, 0.24);
    border-left: 1px solid rgba(39, 174, 193, 0.24);
    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.ys .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(--yinse-pink), var(--yinse-hair), #7ee8a8);
    box-shadow: 0 8px 20px rgba(53, 201, 213, 0.20);
}

body.ys .yinse-description-body blockquote::after {
    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.ys .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.ys .yinse-description-body blockquote:hover::after {
    transform: none;
    box-shadow: 0 8px 18px rgba(126, 76, 152, 0.18);
}

body.ys .yinse-description-body blockquote.red {
    --yinse-quote-accent: #c24f4a;
    --yinse-quote-accent-rgb: 194, 79, 74;
}

body.ys .yinse-description-body blockquote.blue,
body.ys .yinse-description-body blockquote.blud,
body.ys .yinse-description-body blockquote.bler {
    --yinse-quote-accent: #3b82f6;
    --yinse-quote-accent-rgb: 59, 130, 246;
}

body.ys .yinse-description-body blockquote.green {
    --yinse-quote-accent: #22c55e;
    --yinse-quote-accent-rgb: 34, 197, 94;
}

body.ys .yinse-description-body blockquote.cyan {
    --yinse-quote-accent: #22c7d8;
    --yinse-quote-accent-rgb: 34, 199, 216;
}

body.ys .yinse-description-body blockquote.red,
body.ys .yinse-description-body blockquote.blue,
body.ys .yinse-description-body blockquote.blud,
body.ys .yinse-description-body blockquote.bler,
body.ys .yinse-description-body blockquote.green,
body.ys .yinse-description-body blockquote.cyan,
body.ys .yinse-description-body blockquote.has-yinse-quote-accent {
    border-color: color-mix(in srgb, var(--yinse-quote-accent, var(--yinse-hair)) 42%, transparent) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(var(--yinse-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.ys .yinse-description-body blockquote.red::before,
body.ys .yinse-description-body blockquote.blue::before,
body.ys .yinse-description-body blockquote.blud::before,
body.ys .yinse-description-body blockquote.bler::before,
body.ys .yinse-description-body blockquote.green::before,
body.ys .yinse-description-body blockquote.cyan::before,
body.ys .yinse-description-body blockquote.has-yinse-quote-accent::before,
body.ys .yinse-description-body blockquote[style*="border-left-color"]::before,
body.ys .yinse-description-body blockquote[style*="border-color"]::before {
    background: linear-gradient(90deg, var(--yinse-quote-accent, var(--yinse-hair)), rgba(255, 255, 255, 0.72), var(--yinse-hair));
    box-shadow: 0 8px 20px rgba(var(--yinse-quote-accent-rgb, 53, 201, 213), 0.18);
}

body.ys .yinse-description-body blockquote.red::after,
body.ys .yinse-description-body blockquote.blue::after,
body.ys .yinse-description-body blockquote.blud::after,
body.ys .yinse-description-body blockquote.bler::after,
body.ys .yinse-description-body blockquote.green::after,
body.ys .yinse-description-body blockquote.cyan::after,
body.ys .yinse-description-body blockquote.has-yinse-quote-accent::after,
body.ys .yinse-description-body blockquote[style*="border-left-color"]::after,
body.ys .yinse-description-body blockquote[style*="border-color"]::after {
    border: 0;
    background:
        linear-gradient(135deg, transparent 0 58%, rgba(48, 38, 58, 0.42) 59% 64%, transparent 65%),
        linear-gradient(135deg, transparent 0 30%, rgba(var(--yinse-quote-accent-rgb, 255, 103, 189), 0.58) 31% 48%, rgba(255, 255, 255, 0.78) 49% 52%, rgba(138, 88, 246, 0.68) 53% 68%, transparent 69%);
    box-shadow: 0 6px 14px rgba(var(--yinse-quote-accent-rgb, 255, 79, 163), 0.10);
}

body.ys .yinse-description-body blockquote.red:hover,
body.ys .yinse-description-body blockquote.blue:hover,
body.ys .yinse-description-body blockquote.blud:hover,
body.ys .yinse-description-body blockquote.bler:hover,
body.ys .yinse-description-body blockquote.green:hover,
body.ys .yinse-description-body blockquote.cyan:hover,
body.ys .yinse-description-body blockquote.has-yinse-quote-accent:hover {
    border-color: color-mix(in srgb, var(--yinse-quote-accent, var(--yinse-hair)) 60%, transparent) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(var(--yinse-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(--yinse-quote-accent-rgb, 53, 201, 213), 0.12) !important;
}

body.ys .cyber-note {
    border-left-color: var(--yinse-hair) !important;
    background: rgba(241, 251, 253, 0.82) !important;
    color: var(--yinse-ink) !important;
}

body.ys .yinse-payment-notice {
    position: relative;
    margin: 2px 0 0;
    padding: 14px 16px;
    border: 1px solid rgba(39, 174, 193, 0.28);
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(9, 30, 46, 0.82), rgba(17, 65, 79, 0.76)),
        var(--yinse-page-background-image, none);
    background-size: cover;
    background-position: center;
    color: rgba(238, 252, 255, 0.86);
    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.12),
        0 12px 26px rgba(26, 73, 95, 0.12);
    overflow: hidden;
}

body.ys .yinse-payment-notice::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(53, 201, 213, 0.22), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(255, 79, 163, 0.14), transparent 30%);
    pointer-events: none;
}

body.ys .yinse-payment-notice > * {
    position: relative;
    z-index: 1;
}

body.ys .yinse-payment-notice p {
    margin: 0;
}

body.ys .yinse-payment-notice p + p {
    margin-top: 2px;
}

body.ys .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: #35e7ff !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.ys .yinse-payment-notice a::after {
    display: none !important;
}

body.ys .yinse-payment-notice a:hover {
    color: #9cf8ff !important;
    text-shadow: 0 0 12px rgba(53, 231, 255, 0.42);
}

body.ys .yinse-payment-panel {
    margin-top: var(--yinse-layout-gap);
    overflow: hidden;
}

body.ys .yinse-payment-heading {
    min-height: 96px;
    align-items: center;
}

body.ys .yinse-payment-body {
    padding: 18px;
}

body.ys .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.ys .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(--yinse-pink), var(--yinse-hair), #7ee8a8);
    box-shadow: 0 8px 20px rgba(53, 201, 213, 0.18);
}

body.ys .cash-pay--independent .pay-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.ys .cash-pay--independent .pay-list:empty {
    min-height: 38px;
}

body .yinse-layer-popup.layui-layer,
body.ys .layui-layer.layui-layer-page,
body.ys .component-popup {
    background: rgba(255, 255, 255, 0.86) !important;
    border-color: rgba(39, 174, 193, 0.24) !important;
    color: var(--yinse-ink) !important;
    box-shadow: var(--yinse-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(--yinse-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(--yinse-ink) !important;
}

.yinse-form-stack input.form-control::placeholder,
.yinse-form-stack input.captcha-input::placeholder {
    color: #7b93a1 !important;
}

body.ys .yinse-back-to-top,
#backToTop {
    border-color: rgba(116, 231, 255, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.10), rgba(255, 212, 122, 0.06)),
        rgba(4, 9, 18, 0.78) !important;
    color: #74e7ff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 18px rgba(116, 231, 255, 0.10),
        0 12px 26px rgba(0, 0, 0, 0.34) !important;
}

body.ys .yinse-back-to-top:hover,
#backToTop:hover {
    border-color: rgba(255, 212, 122, 0.56) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.22), rgba(116, 231, 255, 0.12)),
        rgba(6, 13, 25, 0.88) !important;
    color: #fff7d8 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 22px rgba(255, 212, 122, 0.18),
        0 14px 30px rgba(0, 0, 0, 0.38) !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(--yinse-hair-soft), var(--yinse-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(--yinse-pink), var(--yinse-hair)) !important;
}

/* Potato shop journal overrides */
body.ys .yinse-nav,
body.ys .panel,
body.ys .yinse-item-unified-panel,
body.ys .yinse-footer-wrap,
body.ys .yinse-layer-popup,
body.ys .component-popup {
    border-color: rgba(151, 92, 220, 0.18) !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 245, 252, 0.52)) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 18px 42px rgba(126, 76, 152, 0.13) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(112%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 20px)) saturate(112%) !important;
}

body.ys .yinse-nav-link,
body.ys .yinse-button-light,
body.ys .yinse-user-chip,
body.ys .yinse-searchbox,
body.ys .yinse-search-combo,
body.ys .form-control,
body.ys .qty-group,
body.ys .password-form .input-group {
    border-color: rgba(151, 92, 220, 0.18) !important;
    background: rgba(255, 255, 255, 0.72) !important;
}

body.ys .yinse-nav-link:hover,
body.ys .yinse-nav-link.is-active,
body.ys .yinse-button-dark,
body.ys .yinse-commodity-action-link,
body.ys .sku.is-primary,
body.ys .view-card-btn,
body.ys .component-popup .queryBtn,
body.ys .component-popup .query-button {
    border-color: rgba(138, 88, 246, 0.58) !important;
    background: linear-gradient(135deg, #8a58f6 0%, #ff67bd 62%, #ffb36b 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(255, 103, 189, 0.24) !important;
}

body.ys .yinse-button-light:hover,
body.ys .yinse-category-link:hover,
body.ys .yinse-category-link.is-active,
body.ys .yinse-dropdown-menu .dropdown-item:hover {
    border-color: rgba(255, 103, 189, 0.34) !important;
    background: rgba(255, 246, 252, 0.78) !important;
    color: #6c42d8 !important;
}

body.ys .panel::before,
body.ys .yinse-hero-banner--notice::after,
body.ys .yinse-nav::after {
    background: linear-gradient(90deg, transparent, #8a58f6, #ff67bd, #ffd56d, transparent) !important;
}

body.ys .panel-header,
.yinse-hero-notice-head {
    border-bottom-color: rgba(255, 212, 122, 0.18) !important;
    background:
        radial-gradient(circle at 34px 20px, rgba(116, 231, 255, 0.09), transparent 86px),
        linear-gradient(90deg, rgba(10, 19, 32, 0.84), rgba(5, 11, 22, 0.68)) !important;
}

body.ys .panel-header::after,
.yinse-hero-notice-head::after {
    top: 15px;
    right: 18px;
    width: 38px;
    height: 16px;
    border-radius: 6px;
    background:
        linear-gradient(135deg, transparent 0 58%, rgba(48, 38, 58, 0.42) 59% 64%, transparent 65%) 0 0 / 100% 100% no-repeat,
        linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.86) 43% 46%, transparent 47%) 0 0 / 100% 100% no-repeat,
        linear-gradient(135deg, transparent 0 63%, #ffd56d 64% 72%, transparent 73%) 0 0 / 100% 100% no-repeat,
        linear-gradient(135deg, transparent 0 28%, rgba(255, 143, 209, 0.72) 29% 43%, rgba(255, 255, 255, 0.78) 44% 47%, rgba(138, 88, 246, 0.70) 48% 64%, transparent 65%) 0 0 / 100% 100% no-repeat !important;
    transform: rotate(-8deg);
    filter: drop-shadow(0 5px 8px rgba(126, 76, 152, 0.12));
}

body.ys .panel-kicker,
body.ys .yinse-notice-kicker,
body.ys .yinse-commodity-muted,
body.ys .yinse-footer-copy,
body.ys .yinse-footer-icp {
    color: #7a6f82 !important;
}

body.ys .yinse-hero-banner {
    min-height: 256px;
    aspect-ratio: auto;
    border-color: rgba(151, 92, 220, 0.18) !important;
    border-radius: 22px !important;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 246, 252, 0.48)) !important;
}

body.ys .yinse-hero-banner--image::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 24%, rgba(255, 255, 255, 0.84) 43%, rgba(255, 255, 255, 0.48) 62%, rgba(255, 255, 255, 0.12) 80%, rgba(255, 255, 255, 0) 92%),
        radial-gradient(circle at 17% 28%, rgba(255, 255, 255, 0.86), transparent 32%),
        radial-gradient(circle at 34% 76%, rgba(255, 246, 252, 0.58), transparent 34%) !important;
}

.yinse-hero-media-image {
    left: 50%;
    top: var(--yinse-hero-bg-y, 50%);
    width: var(--yinse-hero-bg-size, 100%);
    max-width: none;
    height: auto;
    min-width: 0;
    min-height: 0;
    object-fit: initial;
    object-position: center center;
    transform: translate3d(calc(-50% + var(--yinse-hero-shift-x, 0px)), calc(var(--yinse-hero-bg-y-neg, -50%) + var(--yinse-hero-shift-y, 0px)), 0) scale(1.035);
    transform-origin: center center;
    will-change: transform;
}

.yinse-hero-title {
    left: 42px;
    top: 46px;
    bottom: auto;
    gap: 10px;
    max-width: min(58%, 760px);
}

.yinse-hero-title span {
    color: transparent;
    background: linear-gradient(100deg, #8a58f6 0%, #ff67bd 58%, #ff8a52 100%);
    -webkit-background-clip: text;
    background-clip: text;
    max-width: 100%;
    font-size: clamp(38px, 4.8vw, 66px);
    font-weight: 900;
    line-height: 0.98;
    white-space: nowrap;
    text-shadow:
        0 0 14px rgba(255, 103, 189, 0.22),
        0 10px 30px rgba(126, 76, 152, 0.10);
}

.yinse-hero-title strong {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 7px 12px;
    border: 1px solid rgba(255, 103, 189, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.70);
    color: #6c42d8;
    font-size: clamp(13px, 1.25vw, 18px);
    line-height: 1.18;
    text-shadow: none;
}

.yinse-hero-actions .cyber-btn-item,
body.ys .yinse-category-link {
    border-color: rgba(151, 92, 220, 0.18) !important;
    background:
        radial-gradient(circle at 18px 14px, rgba(255, 211, 109, 0.16), transparent 54px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 246, 252, 0.54)) !important;
    color: #5f3ecf !important;
    box-shadow: 0 10px 24px rgba(126, 76, 152, 0.10) !important;
}

.yinse-hero-actions .cyber-btn-item i,
.yinse-hero-actions .cyber-btn-item span {
    color: currentColor !important;
}

.yinse-hero-actions .cyber-btn-item:hover {
    border-color: rgba(255, 103, 189, 0.36) !important;
    background:
        radial-gradient(circle at 18px 16px, rgba(255, 103, 189, 0.12), transparent 72px),
        radial-gradient(circle at calc(100% - 18px) 20px, rgba(138, 88, 246, 0.11), transparent 82px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 244, 251, 0.66)) !important;
    color: #c8328e !important;
    box-shadow:
        0 14px 30px rgba(126, 76, 152, 0.14),
        0 0 20px rgba(255, 103, 189, 0.12) !important;
}

body.ys .yinse-commodity-table thead th,
body.ys .component-popup .bootstrap-table .fixed-table-container .table thead th {
    background: rgba(255, 246, 252, 0.62) !important;
}

body.ys .yinse-payment-notice {
    border-color: rgba(151, 92, 220, 0.18) !important;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 251, 0.76)),
        var(--yinse-page-background-image, none) !important;
    color: #44314f !important;
    background-size: cover;
}

body.ys .yinse-payment-notice::before {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 103, 189, 0.14), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(138, 88, 246, 0.12), transparent 30%) !important;
}

body.ys .yinse-payment-notice a {
    color: #7a46e8 !important;
}

body.ys .yinse-payment-notice a:hover {
    color: #ff4fa3 !important;
    text-shadow: 0 0 12px rgba(255, 103, 189, 0.24);
}

body.ys .yinse-back-to-top,
#backToTop {
    border-color: rgba(116, 231, 255, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.10), rgba(255, 212, 122, 0.06)),
        rgba(4, 9, 18, 0.78) !important;
    color: #74e7ff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 18px rgba(116, 231, 255, 0.10),
        0 12px 26px rgba(0, 0, 0, 0.34) !important;
}

body.ys .yinse-back-to-top:hover,
#backToTop:hover {
    border-color: rgba(255, 212, 122, 0.56) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.22), rgba(116, 231, 255, 0.12)),
        rgba(6, 13, 25, 0.88) !important;
    color: #fff7d8 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 22px rgba(255, 212, 122, 0.18),
        0 14px 30px rgba(0, 0, 0, 0.38) !important;
}

html::-webkit-scrollbar-track,
#yinse-category-tree::-webkit-scrollbar-track {
    background: #fff8fd !important;
}

html::-webkit-scrollbar-thumb,
#yinse-category-tree::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ffbde4, #ff67bd, #8a58f6) !important;
    border-color: #fff8fd !important;
}

body.ys .yinse-brand::after,
body.ys .panel-header::after,
.yinse-hero-notice-head::after,
body.ys .yinse-category-link::after,
body.ys .yinse-item-badges .badge-soft::after,
body.ys .yinse-item-price::after,
body.ys .order-item::after,
body.ys .yinse-description-body blockquote::after,
body.ys .yinse-description-body a::after,
body.ys .btn-copy-card::after,
body.ys .cyber-back-btn::after {
    --mark-size: 0.72;
    content: "" !important;
    width: calc(46px * var(--mark-size)) !important;
    height: calc(24px * var(--mark-size)) !important;
    display: inline-block !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
        linear-gradient(90deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.18)) 0 0 / calc(22px * var(--mark-size)) calc(2px * var(--mark-size)) no-repeat,
        linear-gradient(180deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.20)) 0 0 / calc(2px * var(--mark-size)) calc(14px * var(--mark-size)) no-repeat,
        linear-gradient(90deg, rgba(140, 240, 255, 0.98), rgba(116, 231, 255, 0.30)) calc(12px * var(--mark-size)) calc(9px * var(--mark-size)) / calc(25px * var(--mark-size)) calc(2px * var(--mark-size)) no-repeat,
        linear-gradient(90deg, rgba(255, 120, 200, 0.92), rgba(255, 103, 189, 0.20)) calc(18px * var(--mark-size)) calc(16px * var(--mark-size)) / calc(16px * var(--mark-size)) calc(2px * var(--mark-size)) no-repeat,
        radial-gradient(circle, #fff8d8 0 calc(1px * var(--mark-size)), #ffd47a calc(1.2px * var(--mark-size)) calc(2.7px * var(--mark-size)), transparent calc(2.9px * var(--mark-size))) calc(33px * var(--mark-size)) 0 / calc(8px * var(--mark-size)) calc(8px * var(--mark-size)) no-repeat !important;
    box-shadow:
        none !important;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%) !important;
    filter: none !important;
    pointer-events: none !important;
}

body.ys .panel-header::after,
.yinse-hero-notice-head::after {
    --mark-size: 0.76;
    top: 13px !important;
    right: 16px !important;
    transform: none !important;
    opacity: 0.84 !important;
}

body.ys .yinse-brand::after {
    --mark-size: 0.58;
    top: 5px !important;
    right: 6px !important;
    opacity: 0.68 !important;
    transform: none !important;
}

body.ys .yinse-category-link::after {
    --mark-size: 0.56;
    top: 5px !important;
    right: 6px !important;
}

body.ys .yinse-item-badges .badge-soft::after {
    --mark-size: 0.46;
    margin-left: 3px !important;
    transform: none !important;
}

body.ys .yinse-item-price::after,
body.ys .order-item::after,
body.ys .yinse-description-body blockquote::after {
    --mark-size: 0.62;
    width: 26px !important;
    height: 18px !important;
    min-width: 26px !important;
    min-height: 18px !important;
    transform: none !important;
}

body.ys .yinse-description-body a::after,
body.ys .btn-copy-card::after,
body.ys .cyber-back-btn::after {
    --mark-size: 0.50;
    top: 7px !important;
    right: 8px !important;
    transform: none !important;
}

body.ys .yinse-brand:hover::after,
body.ys .yinse-brand:focus-visible::after,
body.ys .yinse-category-link:hover::after,
body.ys .yinse-category-link.is-active::after,
body.ys .yinse-description-body a:hover::after,
body.ys .btn-copy-card:hover::after,
body.ys .cyber-back-btn:hover::after,
body.ys .yinse-description-body blockquote:hover::after {
    opacity: 1 !important;
    filter: brightness(1.06) !important;
    transform: none !important;
}

body.ys .yinse-brand::after,
body.ys .panel-header::after,
.yinse-hero-notice-head::after,
body.ys .yinse-category-link::after,
body.ys .yinse-item-badges .badge-soft::after,
body.ys .yinse-item-price::after,
body.ys .order-item::after,
body.ys .yinse-description-body blockquote::after,
body.ys .yinse-description-body a::after,
body.ys .btn-copy-card::after,
body.ys .cyber-back-btn::after {
    border: 0 !important;
    box-shadow: none !important;
    filter: none !important;
}

@media (max-width: 767px) {
    :root {
        --yinse-block-gap: 14px;
    }

    body.ys .yinse-nav-wrap,
    body.ys .yinse-shell,
    body.ys .yinse-shell--narrow,
    body.ys .yinse-footer-wrap {
        width: calc(100% - 20px);
    }

    body.yinse-theme.ys {
        background-image: none !important;
        background-color: #fff8fd !important;
    }

    .yinse-banner-shell {
        margin-top: var(--yinse-block-gap) !important;
    }

    body.ys .yinse-hero-banner {
        min-height: 256px;
        aspect-ratio: auto;
        border-radius: 20px !important;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 246, 252, 0.54)) !important;
    }

    body.ys .yinse-hero-banner--image::before {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0.84) 100%),
            radial-gradient(circle at 22% 82%, rgba(255, 103, 189, 0.16), transparent 36%) !important;
    }

    body.ys .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.ys .yinse-catalog-tools {
        position: static;
        width: 100%;
    }

    body.ys .yinse-catalog-tools::before,
    body.ys .yinse-catalog-tools::after {
        display: none !important;
    }

    .yinse-hero-media {
        inset: 0;
    }

    .yinse-hero-media-image {
        left: 50%;
        top: var(--yinse-hero-bg-y, 50%);
        width: var(--yinse-hero-bg-size, 100%);
        max-width: none;
        height: auto;
        min-width: 0;
        min-height: 0;
        object-fit: initial;
        object-position: center top;
        transform: translate3d(calc(-50% + var(--yinse-hero-shift-x, 0px)), calc(var(--yinse-hero-bg-y-neg, -50%) + var(--yinse-hero-shift-y, 0px)), 0) scale(1.035);
        transform-origin: center center;
        will-change: transform;
    }

    .yinse-hero-actions {
        left: 18px;
        right: 18px;
        bottom: 12px;
        padding: 0;
    }

    .yinse-hero-title {
        left: 18px;
        right: 18px;
        top: 34px;
        bottom: auto;
        gap: 4px;
        max-width: calc(100% - 36px);
    }

    .yinse-hero-title span {
        max-width: 100%;
        font-size: clamp(28px, 9.4vw, 38px);
        line-height: 0.95;
        white-space: normal;
        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.ys .yinse-hero-banner {
        min-height: 256px;
        aspect-ratio: auto;
    }

    .yinse-hero-media-image {
        left: 50%;
        top: var(--yinse-hero-bg-y, 50%);
        width: var(--yinse-hero-bg-size, 100%);
        max-width: none;
        height: auto;
        min-width: 0;
        min-height: 0;
        object-position: center top;
        transform: translate3d(calc(-50% + var(--yinse-hero-shift-x, 0px)), calc(var(--yinse-hero-bg-y-neg, -50%) + var(--yinse-hero-shift-y, 0px)), 0) scale(1.035);
        transform-origin: center center;
        will-change: transform;
    }

    .yinse-hero-title {
        top: 30px;
        bottom: auto;
    }

    .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;
    }
}


/*
 * Vegas night glass skin
 * Background image is supplied by the theme setting.
 */
body.yinse-theme.ys {
    --yinse-block-gap: 18px;
    --yinse-ink: #f5f7fb;
    --yinse-ink-2: #d9e8ff;
    --yinse-building: #070b14;
    --yinse-hair: #43d7ff;
    --yinse-hair-soft: #aeeeff;
    --yinse-sky: rgba(8, 14, 28, 0.58);
    --yinse-paper: rgba(8, 12, 22, 0.58);
    --yinse-paper-2: rgba(4, 8, 16, 0.72);
    --yinse-line: rgba(255, 202, 111, 0.22);
    --yinse-line-strong: rgba(255, 213, 128, 0.52);
    --yinse-pink: #ffd47a;
    --yinse-brick: #ff8f47;
    --yinse-success: #6af7c8;
    --yinse-warning: #ffd47a;
    --yinse-bg: rgba(4, 8, 16, 0.74);
    --yinse-surface: rgba(9, 14, 26, 0.62);
    --yinse-black: #ffd47a;
    --yinse-text: #f5f7fb;
    --yinse-muted: rgba(221, 232, 255, 0.72);
    --yinse-muted-strong: rgba(245, 247, 251, 0.88);
    --yinse-muted-soft: rgba(174, 238, 255, 0.64);
    --yinse-link: #74e7ff;
    --yinse-border: rgba(255, 202, 111, 0.18);
    --yinse-border-strong: rgba(255, 213, 128, 0.42);
    --yinse-accent: #ffd47a;
    --yinse-accent-light: #fff0b8;
    --yinse-accent-rgb: 255, 212, 122;
    --yinse-card-border: rgba(255, 212, 122, 0.18);
    --yinse-card-border-hover: rgba(116, 231, 255, 0.58);
    --yinse-card-bg: rgba(8, 13, 24, 0.48);
    --yinse-card-bg-hover: rgba(10, 22, 38, 0.66);
    --yinse-card-bg-soft: rgba(255, 255, 255, 0.045);
    --yinse-plain-tint: rgba(255, 255, 255, 0.055);
    --yinse-plain-tint-strong: rgba(255, 212, 122, 0.12);
    --yinse-dark-tint: rgba(0, 0, 0, 0.24);
    --yinse-shadow: 0 24px 60px rgba(0, 0, 0, 0.44), 0 0 34px rgba(46, 171, 255, 0.08);
    --yinse-shadow-hover: 0 28px 74px rgba(0, 0, 0, 0.56), 0 0 40px rgba(255, 212, 122, 0.12);
    --yinse-shadow-soft: var(--yinse-shadow);
    --yinse-shadow-elevated: var(--yinse-shadow-hover);
    background-color: #050912 !important;
    color: var(--yinse-text) !important;
}

body.yinse-theme.ys.yinse-bg-mask-on::before {
    background:
        radial-gradient(circle at 76% 26%, rgba(27, 91, 164, 0.28), transparent 32%),
        radial-gradient(circle at 61% 70%, rgba(255, 170, 76, 0.18), transparent 25%),
        linear-gradient(90deg, rgba(246, 251, 255, 0.10), rgba(4, 10, 22, 0.28) 36%, rgba(3, 6, 17, 0.76) 100%),
        linear-gradient(180deg, rgba(2, 5, 13, 0.08), rgba(2, 5, 13, 0.74)) !important;
}

body.yinse-theme.ys::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(116, 231, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 212, 122, 0.04) 1px, transparent 1px);
    background-size: 72px 72px, 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
    opacity: 0.45;
}

body.ys .yinse-nav,
body.ys .panel,
body.ys .yinse-item-unified-panel,
body.ys .yinse-description-panel,
body.ys .yinse-item-panel,
body.ys .yinse-footer-wrap,
body.ys .yinse-layer-popup,
body.ys .component-popup,
body.ys .yinse-table-wrap,
body.ys .yinse-card-catalog-wrap,
body.ys .yinse-inline-item-content .yinse-item-unified-panel {
    border: 1px solid rgba(255, 212, 122, 0.22) !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028) 34%, rgba(0, 0, 0, 0.28)),
        rgba(5, 10, 20, 0.58) !important;
    color: var(--yinse-text) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 212, 122, 0.06),
        0 22px 58px rgba(0, 0, 0, 0.46),
        0 0 28px rgba(66, 197, 255, 0.08) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 18px)) saturate(142%) contrast(108%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 18px)) saturate(142%) contrast(108%) !important;
}

body.ys .yinse-nav,
body.ys .yinse-footer-wrap {
    position: relative;
    overflow: hidden;
}

body.ys .yinse-nav {
    overflow: visible !important;
}

body.ys .yinse-user-dropdown {
    position: relative;
    z-index: 20;
}

body.ys .yinse-dropdown-menu {
    z-index: 3000;
    min-width: 218px;
    margin-top: 10px !important;
    padding: 9px;
    border: 1px solid rgba(255, 212, 122, 0.24) !important;
    border-radius: 16px !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035) 42%, rgba(0, 0, 0, 0.22)),
        rgba(5, 10, 20, 0.86) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 20px 48px rgba(0, 0, 0, 0.48),
        0 0 24px rgba(116, 231, 255, 0.10) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 18px)) saturate(145%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 18px)) saturate(145%) !important;
}

body.ys .yinse-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 24px;
    width: 10px;
    height: 10px;
    border-left: 1px solid rgba(255, 212, 122, 0.24);
    border-top: 1px solid rgba(255, 212, 122, 0.24);
    background: rgba(5, 10, 20, 0.88);
    transform: rotate(45deg);
}

body.ys .yinse-dropdown-menu .dropdown-item {
    border: 1px solid transparent !important;
    background: transparent !important;
    color: rgba(245, 247, 251, 0.90) !important;
}

body.ys .yinse-dropdown-menu .dropdown-item i {
    color: #ffd47a !important;
}

body.ys .yinse-dropdown-menu .dropdown-item:hover,
body.ys .yinse-dropdown-menu .dropdown-item:focus {
    border-color: rgba(116, 231, 255, 0.28) !important;
    background: linear-gradient(135deg, rgba(255, 212, 122, 0.16), rgba(116, 231, 255, 0.10)) !important;
    color: #fff7d8 !important;
}

body.ys .yinse-dropdown-menu .dropdown-divider {
    border-top-color: rgba(255, 212, 122, 0.16) !important;
}

body.ys .yinse-brand {
    position: relative;
    min-height: 50px;
    max-width: min(360px, 46vw);
    gap: 10px;
    padding: 5px 15px 5px 6px;
    border: 1px solid rgba(255, 212, 122, 0.24);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.10), rgba(116, 231, 255, 0.07) 48%, rgba(0, 0, 0, 0.18)),
        rgba(5, 10, 20, 0.54);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 0 1px rgba(116, 231, 255, 0.06),
        0 12px 30px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    isolation: isolate;
}

body.ys .yinse-brand::before {
    content: "";
    position: absolute;
    inset: 2px;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22px 50%, rgba(116, 231, 255, 0.24), transparent 24px),
        linear-gradient(90deg, rgba(255, 212, 122, 0.18), transparent 42%);
    opacity: 0.78;
}

body.ys .yinse-brand::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 8px;
    width: 26px;
    height: 18px;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.18)) 0 0 / 15px 2px no-repeat,
        linear-gradient(180deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.20)) 0 0 / 2px 11px no-repeat,
        linear-gradient(90deg, rgba(140, 240, 255, 0.98), rgba(116, 231, 255, 0.30)) 8px 7px / 17px 2px no-repeat,
        linear-gradient(90deg, rgba(255, 120, 200, 0.92), rgba(255, 103, 189, 0.20)) 12px 12px / 10px 2px no-repeat,
        radial-gradient(circle at 22px 3px, #fff8d8 0 1px, #ffd47a 1.2px 2.7px, transparent 2.9px) 0 0 / 26px 18px no-repeat;
    box-shadow: none;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%);
    filter:
        drop-shadow(0 0 8px rgba(255, 212, 122, 0.22))
        drop-shadow(0 0 8px rgba(116, 231, 255, 0.14));
    opacity: 0.74;
}

body.ys .yinse-brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    padding: 2px;
    border: 1px solid rgba(255, 212, 122, 0.50) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.92), rgba(116, 231, 255, 0.42)),
        rgba(5, 10, 20, 0.92) !important;
    box-shadow:
        0 0 0 4px rgba(255, 212, 122, 0.08),
        0 0 18px rgba(255, 212, 122, 0.24),
        0 0 22px rgba(116, 231, 255, 0.16) !important;
}

body.ys .yinse-brand-chip {
    min-width: 0;
    display: grid;
    gap: 2px;
    padding-right: 10px;
    background: transparent !important;
}

body.ys .yinse-brand-chip::before,
body.ys .yinse-brand-chip::after {
    display: none !important;
}

body.ys .yinse-brand-name {
    max-width: 230px;
    display: block;
    overflow: hidden;
    color: #fff5d0 !important;
    font-size: 0.95rem;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(255, 212, 122, 0.28), 0 2px 10px rgba(0, 0, 0, 0.62);
}

body.ys .yinse-brand-name::after {
    content: "BLACK GOLD SYSTEM";
    display: block;
    margin-top: 4px;
    color: rgba(174, 238, 255, 0.72);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    line-height: 1;
    text-shadow: 0 0 10px rgba(116, 231, 255, 0.20);
}

body.ys .yinse-brand:hover,
body.ys .yinse-brand:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 212, 122, 0.46);
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.16), rgba(116, 231, 255, 0.11) 48%, rgba(0, 0, 0, 0.16)),
        rgba(5, 10, 20, 0.64);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 0 24px rgba(255, 212, 122, 0.12),
        0 16px 36px rgba(0, 0, 0, 0.32);
}

body.ys .yinse-brand:hover .yinse-brand-mark,
body.ys .yinse-brand:focus-visible .yinse-brand-mark {
    border-color: rgba(116, 231, 255, 0.62) !important;
    box-shadow:
        0 0 0 4px rgba(116, 231, 255, 0.10),
        0 0 22px rgba(116, 231, 255, 0.24),
        0 0 26px rgba(255, 212, 122, 0.18) !important;
}

body.ys .yinse-nav::before,
body.ys .panel::before,
body.ys .yinse-footer-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(116, 231, 255, 0.12), transparent) 0 0 / 100% 1px no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
    opacity: 0.72;
}

body.ys .yinse-nav::after,
body.ys .panel-header::after,
body.ys .yinse-hero-banner::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 22px !important;
    right: 22px !important;
    bottom: 0 !important;
    height: 2px !important;
    pointer-events: none !important;
    background: linear-gradient(90deg, transparent, #74e7ff, #ffd47a, #ff9e55, transparent) !important;
    box-shadow: 0 0 16px rgba(255, 212, 122, 0.42), 0 0 22px rgba(116, 231, 255, 0.24) !important;
}

body.ys .yinse-hero-banner {
    border-color: rgba(255, 212, 122, 0.26) !important;
    background: rgba(3, 7, 16, 0.40) !important;
    box-shadow: 0 26px 74px rgba(0, 0, 0, 0.50), 0 0 42px rgba(116, 231, 255, 0.10) !important;
}

body.ys .yinse-hero-banner--image::before {
    background:
        radial-gradient(circle at 82% 22%, rgba(255, 212, 122, 0.16), transparent 30%),
        radial-gradient(circle at 72% 78%, rgba(116, 231, 255, 0.11), transparent 36%),
        linear-gradient(90deg,
            rgba(4, 8, 16, 0.92) 0%,
            rgba(5, 11, 22, 0.82) 25%,
            rgba(5, 11, 22, 0.38) 50%,
            rgba(5, 11, 22, 0.14) 74%,
            rgba(5, 11, 22, 0.42) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.34),
            transparent 34%,
            rgba(0, 0, 0, 0.38)) !important;
}

body.ys .yinse-hero-title span,
body.ys .yinse-hero-title strong {
    color: #ffffff !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72), 0 0 18px rgba(116, 231, 255, 0.22) !important;
}

body.ys .yinse-hero-title strong {
    color: #ffe6a3 !important;
}

body.ys .yinse-sidebar-panel > .panel-header,
body.ys .yinse-catalog-panel > .panel-header,
body.ys .yinse-inline-item-panel > .panel-header,
body.ys .yinse-index-heading,
body.ys .yinse-catalog-heading,
body.ys .yinse-inline-item-heading {
    position: relative;
    min-height: auto !important;
    padding: 22px 22px 18px !important;
    border-bottom: 1px solid rgba(255, 212, 122, 0.18) !important;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.09), rgba(255, 212, 122, 0.075) 44%, rgba(0, 0, 0, 0.22)),
        rgba(5, 10, 20, 0.72) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 -1px 0 rgba(116, 231, 255, 0.08),
        0 12px 32px rgba(0, 0, 0, 0.18) !important;
    overflow: hidden;
}

body.ys .yinse-sidebar-panel > .panel-header::before,
body.ys .yinse-catalog-panel > .panel-header::before,
body.ys .yinse-inline-item-panel > .panel-header::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 9% 28%, rgba(255, 212, 122, 0.15), transparent 18%),
        radial-gradient(circle at 66% 52%, rgba(116, 231, 255, 0.11), transparent 20%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 30%, rgba(255, 212, 122, 0.04));
    opacity: 0.9;
}

body.ys .yinse-sidebar-panel > .panel-header::after,
body.ys .yinse-catalog-panel > .panel-header::after,
body.ys .yinse-inline-item-panel > .panel-header::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 0 !important;
    height: 1px !important;
    pointer-events: none !important;
    background: linear-gradient(90deg, transparent, rgba(116, 231, 255, 0.78), rgba(255, 212, 122, 0.86), transparent) !important;
    box-shadow: 0 0 16px rgba(255, 212, 122, 0.28), 0 0 18px rgba(116, 231, 255, 0.18) !important;
}

body.ys .yinse-sidebar-panel > .panel-header > *,
body.ys .yinse-catalog-panel > .panel-header > *,
body.ys .yinse-inline-item-panel > .panel-header > * {
    position: relative;
    z-index: 1;
}



body.ys .yinse-news-ticker {
    margin: 0 !important;
    padding: 9px 16px !important;
    border-top: 1px solid rgba(116, 231, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 212, 122, 0.16) !important;
    background: rgba(4, 9, 18, 0.62) !important;
    color: rgba(245, 247, 251, 0.92) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.ys .yinse-news-ticker-track span[style],
body.ys .yinse-news-ticker-track font {
    background: rgba(255, 212, 122, 0.15) !important;
    color: #ffe7a6 !important;
    border-radius: 6px;
}

body.ys .yinse-news-ticker-track > span,
body.ys .yinse-news-ticker-track span[style*="background"],
body.ys .yinse-news-ticker-track span[style*="color"],
body.ys .yinse-hero-news .yinse-news-ticker-track > span,
body.ys .yinse-hero-news .yinse-news-ticker-track span[style*="background"],
body.ys .yinse-hero-news .yinse-news-ticker-track span[style*="color"] {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin: 0 4px;
    padding: 2px 9px !important;
    border: 1px solid rgba(255, 212, 122, 0.28) !important;
    border-radius: 999px !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.18), rgba(116, 231, 255, 0.09)),
        rgba(5, 11, 22, 0.68) !important;
    color: #fff1bd !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-shadow: 0 0 10px rgba(255, 212, 122, 0.18), 0 2px 8px rgba(0, 0, 0, 0.48) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 14px rgba(255, 212, 122, 0.10),
        0 0 12px rgba(116, 231, 255, 0.06) !important;
}

body.ys .yinse-news-ticker-track span[style*="background"] *,
body.ys .yinse-news-ticker-track span[style*="color"] *,
body.ys .yinse-hero-news .yinse-news-ticker-track span[style*="background"] *,
body.ys .yinse-hero-news .yinse-news-ticker-track span[style*="color"] * {
    background: transparent !important;
    color: inherit !important;
}

body.ys .yinse-news-ticker-track b,
body.ys .yinse-news-ticker-track strong,
body.ys .yinse-news-ticker-track font,
body.ys .yinse-hero-news .yinse-news-ticker-track b,
body.ys .yinse-hero-news .yinse-news-ticker-track strong,
body.ys .yinse-hero-news .yinse-news-ticker-track font {
    color: #ffe7a6 !important;
    text-shadow: 0 0 10px rgba(255, 212, 122, 0.16);
}

body.ys .yinse-brand,
body.ys .yinse-brand-name,
body.ys .yinse-nav-link,
body.ys .yinse-user-chip,
body.ys .yinse-user-name,
body.ys .yinse-user-balance,
body.ys .dropdown-item,
body.ys .form-control,
body.ys .yinse-searchbox,
body.ys .yinse-search-combo,
body.ys .yinse-category-name,
body.ys .yinse-commodity-name,
body.ys .yinse-description-body,
body.ys .yinse-notice-popup-inner,
body.ys .panel-title,
body.ys .panel-title-small,
body.ys .yinse-page-title,
body.ys .yinse-item-inline-title {
    color: var(--yinse-text) !important;
}

body.ys .yinse-eyebrow,
body.ys .panel-kicker,
body.ys .yinse-muted,
body.ys .yinse-current-meta,
body.ys .yinse-hero-summary,
body.ys .yinse-page-summary,
body.ys .yinse-footer-copy,
body.ys .yinse-footer-icp,
body.ys .yinse-commodity-muted {
    color: var(--yinse-muted) !important;
}

body.ys .yinse-button-dark,
body.ys .sku.is-primary,
body.ys .view-card-btn,
body.ys .component-popup .query-button {
    border-color: rgba(255, 212, 122, 0.68) !important;
    background: linear-gradient(135deg, #ffd47a, #ff9e55) !important;
    color: #08101d !important;
    box-shadow: 0 10px 24px rgba(255, 159, 85, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

body.ys .yinse-button-light,
body.ys .yinse-nav-link,
body.ys .yinse-user-chip,
body.ys .yinse-searchbox,
body.ys .yinse-search-combo,
body.ys .form-control,
body.ys .password-form .input-group,
body.ys .qty-group,
body.ys .sku,
body.ys .goods-sku,
body.ys .cyber-btn-item {
    border-color: rgba(116, 231, 255, 0.18) !important;
    background: rgba(6, 13, 25, 0.46) !important;
    color: var(--yinse-text) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 0 18px rgba(116, 231, 255, 0.055) !important;
}

body.ys .yinse-button-light:hover,
body.ys .yinse-nav-link:hover,
body.ys .yinse-nav-link.is-active,
body.ys .yinse-category-link:hover,
body.ys .yinse-category-link.is-active,
body.ys .sku:hover,
body.ys .cyber-btn-item:hover {
    border-color: rgba(255, 212, 122, 0.52) !important;
    background: linear-gradient(135deg, rgba(255, 212, 122, 0.18), rgba(116, 231, 255, 0.10)) !important;
    color: #fff7d8 !important;
    box-shadow: 0 0 22px rgba(255, 212, 122, 0.12), 0 10px 24px rgba(0, 0, 0, 0.26) !important;
}

body.ys .yinse-category-link,
body.ys .yinse-empty-row,
body.ys .yinse-payment-notice {
    border-color: rgba(255, 212, 122, 0.16) !important;
    background: rgba(5, 11, 22, 0.42) !important;
    color: var(--yinse-text) !important;
}

body.ys .yinse-category-row .yinse-category-link {
    border-color: rgba(116, 231, 255, 0.18) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(116, 231, 255, 0.055) 48%, rgba(0, 0, 0, 0.10)),
        rgba(5, 11, 22, 0.58) !important;
    color: rgba(245, 247, 251, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 14px rgba(116, 231, 255, 0.055) !important;
}

body.ys .yinse-category-row .yinse-category-link:hover,
body.ys .yinse-category-row .yinse-category-link:focus-visible {
    border-color: rgba(116, 231, 255, 0.54) !important;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.18), rgba(255, 212, 122, 0.10) 52%, rgba(4, 9, 18, 0.52)),
        rgba(5, 11, 22, 0.76) !important;
    color: #fff7d8 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 24px rgba(116, 231, 255, 0.16),
        0 12px 24px rgba(0, 0, 0, 0.24) !important;
}

body.ys .yinse-category-row .yinse-category-link.is-active,
body.ys .yinse-category-row:has(.yinse-category-link.is-active) .yinse-category-link {
    border-color: rgba(255, 212, 122, 0.60) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.24), rgba(116, 231, 255, 0.12) 45%, rgba(4, 9, 18, 0.56)),
        rgba(8, 13, 22, 0.82) !important;
    color: #fff1bd !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(255, 212, 122, 0.12),
        0 0 26px rgba(255, 212, 122, 0.18),
        0 0 22px rgba(116, 231, 255, 0.10),
        0 12px 26px rgba(0, 0, 0, 0.28) !important;
}

body.ys .yinse-category-row .yinse-category-link.is-active:hover,
body.ys .yinse-category-row:has(.yinse-category-link.is-active) .yinse-category-link:hover {
    border-color: rgba(255, 224, 153, 0.78) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.30), rgba(116, 231, 255, 0.16) 48%, rgba(4, 9, 18, 0.54)),
        rgba(10, 16, 28, 0.88) !important;
    color: #fff8dc !important;
}

body.ys .yinse-category-row .yinse-category-toggle {
    border-color: rgba(116, 231, 255, 0.22) !important;
    background: rgba(5, 11, 22, 0.62) !important;
    color: rgba(174, 238, 255, 0.82) !important;
    box-shadow: 0 0 14px rgba(116, 231, 255, 0.08) !important;
}

body.ys .yinse-category-row .yinse-category-toggle:hover,
body.ys .yinse-category-row .yinse-category-toggle.is-expanded {
    border-color: rgba(255, 212, 122, 0.56) !important;
    background: rgba(255, 212, 122, 0.14) !important;
    color: #ffd47a !important;
    box-shadow: 0 0 18px rgba(255, 212, 122, 0.16) !important;
}

body.ys .yinse-category-row .yinse-category-link.is-active .yinse-category-name,
body.ys .yinse-category-row .yinse-category-link:hover .yinse-category-name {
    color: #fff7d8 !important;
    text-shadow: 0 0 12px rgba(255, 212, 122, 0.18);
}

body.ys .yinse-category-row .yinse-category-link.is-active .yinse-category-icon,
body.ys .yinse-category-row .yinse-category-link:hover .yinse-category-icon {
    border-color: rgba(255, 212, 122, 0.52) !important;
    filter: drop-shadow(0 0 10px rgba(255, 212, 122, 0.26)) drop-shadow(0 0 12px rgba(116, 231, 255, 0.16));
}

body.ys .yinse-commodity-grid .yinse-commodity-card .yinse-commodity-name {
    color: rgba(245, 247, 251, 0.94) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.52);
}

body.ys .yinse-commodity-grid .yinse-commodity-card .yinse-commodity-stock,
body.ys .yinse-commodity-grid .yinse-commodity-card .yinse-commodity-muted {
    color: rgba(221, 232, 255, 0.76) !important;
}

body.ys .yinse-commodity-price,
body.ys .yinse-commodity-price-main,
body.ys .badge-money,
body.ys .yinse-pill.yinse-pill-mobile-price {
    color: #ffd47a !important;
}

body.ys .yinse-pill,
body.ys .badge-soft,
body.ys .status-badge,
body.ys .shipment-badge,
body.ys .yinse-category-count,
body.ys .yinse-result-count {
    border: 1px solid rgba(255, 212, 122, 0.20) !important;
    background: rgba(255, 212, 122, 0.11) !important;
    color: #ffe7a6 !important;
}

body.ys .yinse-brand-mark,
body.ys .yinse-user-avatar,
body.ys .yinse-category-icon,
body.ys .item-cover {
    border-color: rgba(255, 212, 122, 0.36) !important;
    box-shadow: 0 0 0 1px rgba(116, 231, 255, 0.16), 0 0 18px rgba(255, 212, 122, 0.12) !important;
}

body.ys .yinse-table-loading,
body.ys .component-popup .layui-layer-content,
body.ys .yinse-layer-popup .layui-layer-content,
body.ys .layui-layer-content {
    background: rgba(5, 10, 20, 0.72) !important;
    color: var(--yinse-text) !important;
}

body.ys .yinse-atmosphere-particle {
    color: var(--atmosphere-primary, #ffd47a);
    text-shadow: 0 0 10px currentColor, 0 0 18px rgba(116, 231, 255, 0.18) !important;
    filter: drop-shadow(0 0 10px currentColor) !important;
}

body .yinse-layer-popup.layui-layer,
body.ys .layui-layer.yinse-layer-popup {
    overflow: hidden !important;
    border: 1px solid rgba(255, 212, 122, 0.32) !important;
    border-radius: 28px !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(116, 231, 255, 0.04) 34%, rgba(0, 0, 0, 0.32)),
        rgba(4, 9, 18, 0.82) !important;
    color: var(--yinse-text) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 30px 80px rgba(0, 0, 0, 0.60),
        0 0 36px rgba(116, 231, 255, 0.12),
        0 0 28px rgba(255, 212, 122, 0.10) !important;
    backdrop-filter: blur(var(--yinse-container-blur, 18px)) saturate(146%) !important;
    -webkit-backdrop-filter: blur(var(--yinse-container-blur, 18px)) saturate(146%) !important;
}

body .yinse-layer-popup .layui-layer-content,
body.ys .yinse-layer-popup .layui-layer-content {
    background: transparent !important;
    color: var(--yinse-text) !important;
}

body .yinse-layer-popup .yinse-notice-modal {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 74% 18%, rgba(116, 231, 255, 0.13), transparent 28%),
        radial-gradient(circle at 18% 88%, rgba(255, 212, 122, 0.10), transparent 24%),
        rgba(4, 9, 18, 0.36) !important;
}

body .yinse-layer-popup .yinse-notice-modal::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(116, 231, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 212, 122, 0.030) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.48;
}

body .yinse-layer-popup .yinse-notice-modal > * {
    position: relative;
    z-index: 1;
}

body .yinse-layer-popup .yinse-notice-modal-head {
    padding: 24px 26px 18px !important;
    border-bottom: 1px solid rgba(255, 212, 122, 0.18) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.13), rgba(116, 231, 255, 0.08) 52%, rgba(0, 0, 0, 0.18)),
        rgba(5, 11, 22, 0.74) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 12px 30px rgba(0, 0, 0, 0.22) !important;
}

body .yinse-layer-popup .yinse-notice-modal-head::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(116, 231, 255, 0.82), rgba(255, 212, 122, 0.92), transparent);
    box-shadow: 0 0 16px rgba(255, 212, 122, 0.26), 0 0 16px rgba(116, 231, 255, 0.18);
}

body .yinse-layer-popup .yinse-notice-kicker {
    color: rgba(174, 238, 255, 0.76) !important;
    letter-spacing: 0.14em;
    text-shadow: 0 0 10px rgba(116, 231, 255, 0.16);
}

body .yinse-layer-popup .yinse-notice-title,
body .yinse-layer-popup .yinse-notice-title span,
body .yinse-layer-popup .yinse-notice-title i {
    color: #fff1bd !important;
    text-shadow: 0 0 14px rgba(255, 212, 122, 0.22), 0 2px 10px rgba(0, 0, 0, 0.58);
}

body .yinse-layer-popup .yinse-notice-popup-inner {
    padding: 24px 28px 20px !important;
    background: transparent !important;
    color: rgba(245, 247, 251, 0.92) !important;
}

body .yinse-layer-popup .yinse-notice-popup-inner hr {
    border-top-color: rgba(255, 212, 122, 0.22) !important;
}

body .yinse-layer-popup .yinse-notice-popup-inner a {
    color: #74e7ff !important;
}

body .yinse-layer-popup .yinse-notice-popup-inner b,
body .yinse-layer-popup .yinse-notice-popup-inner strong {
    color: #fff1bd;
}

body .yinse-layer-popup .yinse-notice-actions {
    padding: 10px 28px 10px !important;
    background: rgba(4, 9, 18, 0.40) !important;
}

body .yinse-layer-popup .yinse-notice-tip {
    margin: 0 !important;
    padding: 0 28px 24px !important;
    background: rgba(4, 9, 18, 0.40) !important;
    color: rgba(221, 232, 255, 0.74) !important;
}

body .yinse-layer-popup .yinse-notice-cancel {
    border-color: rgba(116, 231, 255, 0.22) !important;
    background: rgba(6, 13, 25, 0.58) !important;
    color: rgba(245, 247, 251, 0.88) !important;
}

body .yinse-layer-popup .yinse-notice-confirm {
    border-color: rgba(255, 212, 122, 0.72) !important;
    background: linear-gradient(135deg, #ffd47a, #ff9e55) !important;
    color: #08101d !important;
    box-shadow: 0 12px 26px rgba(255, 159, 85, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

@media (max-width: 767.98px) {
    body.yinse-theme.ys {
        background-position: center top !important;
    }

    body.ys .yinse-brand {
        max-width: calc(100vw - 98px);
        padding-right: 12px;
    }

    body.ys .yinse-brand-name {
        max-width: calc(100vw - 170px);
        font-size: 0.88rem;
    }

    body.ys .yinse-brand-name::after {
        font-size: 0.50rem;
        letter-spacing: 0.07em;
    }

    body.ys .yinse-nav,
    body.ys .panel,
    body.ys .yinse-footer-wrap {
        background: rgba(5, 10, 20, 0.70) !important;
                overflow: hidden !important;
    }
}

/* Item page final night-glass pass */
body.ys .yinse-hero-banner,
body.ys .yinse-hero-banner--image {
    border-radius: 20px !important;
    overflow: hidden !important;
    overflow: clip !important;
    background-clip: padding-box !important;
    isolation: isolate;
}

body.ys .yinse-hero-banner::before,
body.ys .yinse-hero-banner::after,
body.ys .yinse-hero-banner--image::before,
body.ys .yinse-hero-banner--image::after,
body.ys .yinse-hero-media {
    border-radius: inherit !important;
}

body.ys .yinse-hero-media {
    inset: 0 !important;
    overflow: hidden !important;
    clip-path: inset(0 round 20px);
}

body.ys .yinse-hero-banner--image::after {
    content: "" !important;
    position: absolute;
    inset: 11px;
    z-index: 2;
    display: block !important;
    pointer-events: none;
    border-radius: 17px;
    background:
        linear-gradient(90deg, transparent, rgba(255, 212, 122, 0.82), rgba(116, 231, 255, 0.56), transparent) left top / 100% 1px no-repeat,
        linear-gradient(90deg, transparent, rgba(116, 231, 255, 0.38), rgba(255, 103, 189, 0.46), transparent) left bottom / 100% 1px no-repeat,
        linear-gradient(180deg, rgba(255, 212, 122, 0.58), transparent 36%, rgba(116, 231, 255, 0.34), transparent) left top / 1px 100% no-repeat,
        linear-gradient(180deg, rgba(116, 231, 255, 0.46), transparent 42%, rgba(255, 103, 189, 0.32), transparent) right top / 1px 100% no-repeat;
    opacity: 0.74;
}

body.ys .yinse-hero-mark {
    position: absolute;
    right: clamp(28px, 5vw, 82px);
    top: 24px;
    z-index: 3;
    width: min(38vw, 500px);
    height: 184px;
    pointer-events: none;
    opacity: 0.92;
    filter:
        drop-shadow(0 0 12px rgba(255, 212, 122, 0.20))
        drop-shadow(0 0 18px rgba(116, 231, 255, 0.14));
}

body.ys .yinse-hero-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent, rgba(255, 212, 122, 0.86), rgba(116, 231, 255, 0.42), transparent) 4% 16px / 68% 1px no-repeat,
        linear-gradient(90deg, transparent, rgba(116, 231, 255, 0.74), rgba(255, 103, 189, 0.34), transparent) 34% 46px / 52% 1px no-repeat,
        linear-gradient(90deg, transparent, rgba(255, 212, 122, 0.50), transparent) 12% 78px / 42% 1px no-repeat,
        linear-gradient(90deg, transparent, rgba(116, 231, 255, 0.52), transparent) 58% 106px / 34% 1px no-repeat,
        linear-gradient(90deg, transparent, rgba(255, 103, 189, 0.46), transparent) 28% 138px / 28% 1px no-repeat,
        radial-gradient(circle at 84% 16px, #fff7d8 0 1px, #ffd47a 1.2px 3px, transparent 3.4px),
        radial-gradient(circle at 62% 58px, rgba(116, 231, 255, 0.95) 0 1px, transparent 2.8px),
        radial-gradient(circle at 92% 92px, rgba(255, 103, 189, 0.88) 0 1px, transparent 2.6px),
        radial-gradient(circle at 74% 132px, rgba(255, 212, 122, 0.84) 0 1px, transparent 2.6px);
    animation: yinseHeroHudBreath 4.8s ease-in-out infinite;
}

body.ys .yinse-hero-mark::after {
    content: "";
    position: absolute;
    right: 26px;
    top: 24px;
    width: 142px;
    height: 92px;
    background:
        linear-gradient(90deg, rgba(255, 212, 122, 0.95), rgba(255, 212, 122, 0.08)) 0 0 / 46px 2px no-repeat,
        linear-gradient(180deg, rgba(255, 212, 122, 0.92), rgba(255, 212, 122, 0.06)) 0 0 / 2px 34px no-repeat,
        linear-gradient(90deg, rgba(116, 231, 255, 0.84), rgba(116, 231, 255, 0.08)) 60px 20px / 58px 2px no-repeat,
        linear-gradient(180deg, rgba(116, 231, 255, 0.70), rgba(116, 231, 255, 0.04)) 128px 12px / 2px 54px no-repeat,
        linear-gradient(90deg, rgba(255, 103, 189, 0.68), rgba(255, 103, 189, 0.06)) 82px 48px / 34px 2px no-repeat,
        radial-gradient(circle at 134px 7px, #fff7d8 0 1px, #ffd47a 1.2px 2.9px, transparent 3.2px);
    opacity: 0.88;
}

body.ys .yinse-hero-mark i {
    position: absolute;
    right: var(--hero-mark-x);
    top: var(--hero-mark-y);
    width: var(--hero-mark-w);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 212, 122, 0.92), rgba(116, 231, 255, 0.60), transparent);
    opacity: var(--hero-mark-o);
    transform-origin: right center;
    animation: yinseHeroMarkSlide 3.8s ease-in-out infinite;
    animation-delay: var(--hero-mark-delay);
}

body.ys .yinse-hero-mark i:nth-child(1) {
    --hero-mark-x: 218px;
    --hero-mark-y: 30px;
    --hero-mark-w: 118px;
    --hero-mark-o: 0.90;
    --hero-mark-delay: 0s;
}

body.ys .yinse-hero-mark i:nth-child(2) {
    --hero-mark-x: 84px;
    --hero-mark-y: 72px;
    --hero-mark-w: 164px;
    --hero-mark-o: 0.68;
    --hero-mark-delay: 0.24s;
}

body.ys .yinse-hero-mark i:nth-child(3) {
    --hero-mark-x: 184px;
    --hero-mark-y: 130px;
    --hero-mark-w: 92px;
    --hero-mark-o: 0.56;
    --hero-mark-delay: 0.48s;
}

@keyframes yinseHeroHudBreath {
    0%, 100% {
        opacity: 0.70;
        transform: translate3d(0, 0, 0);
    }
    50% {
        opacity: 1;
        transform: translate3d(-5px, 1px, 0);
    }
}

@keyframes yinseHeroMarkSlide {
    0%, 100% {
        transform: scaleX(0.84);
        opacity: calc(var(--hero-mark-o) * 0.62);
    }
    48% {
        transform: scaleX(1.08);
        opacity: var(--hero-mark-o);
    }
}

body.ys .yinse-hero-media-image {
    min-width: 100% !important;
    min-height: 100% !important;
    border-radius: inherit !important;
    object-fit: cover !important;
    object-position: center center !important;
    background-color: transparent !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-title {
    left: 42px !important;
    top: 44px !important;
    bottom: auto !important;
    gap: 10px !important;
    max-width: min(760px, 62%) !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-title span {
    color: #fff4d3 !important;
    background: linear-gradient(100deg, #ffffff 0%, #fff1bd 38%, #ffd47a 70%, #74e7ff 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent;
    font-size: clamp(42px, 5.2vw, 72px) !important;
    font-weight: 950 !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    text-shadow:
        0 3px 16px rgba(0, 0, 0, 0.70),
        0 0 24px rgba(255, 212, 122, 0.20) !important;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.46));
}

body.ys .yinse-hero-banner--image .yinse-hero-title strong {
    display: inline-flex !important;
    align-items: center;
    width: fit-content !important;
    max-width: min(100%, 560px) !important;
    min-height: 34px;
    padding: 6px 14px !important;
    border: 1px solid rgba(255, 212, 122, 0.34) !important;
    border-radius: 999px !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.18), rgba(116, 231, 255, 0.10)),
        rgba(5, 11, 22, 0.54) !important;
    color: #fff1bd !important;
    font-size: clamp(13px, 1.15vw, 17px) !important;
    font-weight: 900 !important;
    line-height: 1.18 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-text-fill-color: currentColor;
    text-shadow: 0 0 12px rgba(255, 212, 122, 0.22), 0 2px 10px rgba(0, 0, 0, 0.50) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 18px rgba(255, 212, 122, 0.12),
        0 0 16px rgba(116, 231, 255, 0.08) !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-actions {
    left: 42px !important;
    right: 42px !important;
    bottom: 24px !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-actions .cyber-nav-buttons {
    gap: 12px !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item {
    min-height: 40px !important;
    padding: 0 18px !important;
    border: 1px solid rgba(255, 212, 122, 0.26) !important;
    border-radius: 999px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(116, 231, 255, 0.060) 45%, rgba(0, 0, 0, 0.18)),
        rgba(5, 11, 22, 0.62) !important;
    color: rgba(245, 247, 251, 0.92) !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 16px rgba(116, 231, 255, 0.08),
        0 10px 22px rgba(0, 0, 0, 0.28) !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item:hover {
    border-color: rgba(255, 212, 122, 0.56) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.20), rgba(116, 231, 255, 0.12)),
        rgba(8, 14, 26, 0.80) !important;
    color: #fff7d8 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 24px rgba(255, 212, 122, 0.16),
        0 12px 28px rgba(0, 0, 0, 0.36) !important;
}

body.ys .yinse-item-form-wrap,
body.ys .yinse-description-body {
    color: rgba(245, 247, 251, 0.92) !important;
}

body.ys .yinse-item-badges .badge-soft,
body.ys .badge-soft,
body.ys .yinse-pill,
body.ys .snap-up,
body.ys .goods-sku,
body.ys .a-badge-primary,
body.ys .a-badge-warning,
body.ys .a-badge-success,
body.ys .a-badge-danger {
    border-color: rgba(116, 231, 255, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.15), rgba(255, 212, 122, 0.09)),
        rgba(5, 11, 22, 0.66) !important;
    color: #dff8ff !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 16px rgba(116, 231, 255, 0.08) !important;
}

body.ys .yinse-item-badges .badge-soft::after {
    width: calc(46px * var(--mark-size, 0.46)) !important;
    height: calc(24px * var(--mark-size, 0.46)) !important;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.18)) 0 0 / calc(22px * var(--mark-size, 0.46)) calc(2px * var(--mark-size, 0.46)) no-repeat,
        linear-gradient(180deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.20)) 0 0 / calc(2px * var(--mark-size, 0.46)) calc(14px * var(--mark-size, 0.46)) no-repeat,
        linear-gradient(90deg, rgba(140, 240, 255, 0.98), rgba(116, 231, 255, 0.30)) calc(12px * var(--mark-size, 0.46)) calc(9px * var(--mark-size, 0.46)) / calc(25px * var(--mark-size, 0.46)) calc(2px * var(--mark-size, 0.46)) no-repeat,
        linear-gradient(90deg, rgba(255, 120, 200, 0.92), rgba(255, 103, 189, 0.20)) calc(18px * var(--mark-size, 0.46)) calc(16px * var(--mark-size, 0.46)) / calc(16px * var(--mark-size, 0.46)) calc(2px * var(--mark-size, 0.46)) no-repeat,
        radial-gradient(circle, #fff8d8 0 calc(1px * var(--mark-size, 0.46)), #ffd47a calc(1.2px * var(--mark-size, 0.46)) calc(2.7px * var(--mark-size, 0.46)), transparent calc(2.9px * var(--mark-size, 0.46))) calc(33px * var(--mark-size, 0.46)) 0 / calc(8px * var(--mark-size, 0.46)) calc(8px * var(--mark-size, 0.46)) no-repeat !important;
    box-shadow: none;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%);
    transform: none;
}

body.ys .yinse-item-price,
body.ys .yinse-field,
body.ys .cash-pay,
body.ys .yinse-payment-notice {
    border: 1px solid rgba(255, 212, 122, 0.22) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.070), rgba(116, 231, 255, 0.050) 46%, rgba(0, 0, 0, 0.18)),
        rgba(5, 11, 22, 0.66) !important;
    color: rgba(245, 247, 251, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 -1px 0 rgba(255, 212, 122, 0.06),
        0 0 0 1px rgba(116, 231, 255, 0.04),
        0 12px 28px rgba(0, 0, 0, 0.22) !important;
}

body.ys .yinse-item-price::after {
    background:
        linear-gradient(90deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.18)) 0 0 / 15px 2px no-repeat,
        linear-gradient(180deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.20)) 0 0 / 2px 11px no-repeat,
        linear-gradient(90deg, rgba(140, 240, 255, 0.98), rgba(116, 231, 255, 0.30)) 8px 7px / 17px 2px no-repeat,
        linear-gradient(90deg, rgba(255, 120, 200, 0.92), rgba(255, 103, 189, 0.20)) 12px 12px / 10px 2px no-repeat,
        radial-gradient(circle at 22px 3px, #fff8d8 0 1px, #ffd47a 1.2px 2.7px, transparent 2.9px) 0 0 / 26px 18px no-repeat !important;
    height: 18px;
    top: 16px;
    right: 14px;
    width: 26px;
    border-radius: 0;
    box-shadow: none;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%);
    transform: none;
}

body.ys .yinse-item-price .price {
    color: #14d18e !important;
    text-shadow: 0 0 20px rgba(20, 209, 142, 0.22), 0 8px 28px rgba(0, 0, 0, 0.48) !important;
}

body.ys .yinse-item-price .unit {
    color: #74e7ff !important;
}

body.ys .yinse-field .form-label,
body.ys .cash-pay > .form-label {
    color: rgba(174, 238, 255, 0.86) !important;
    text-shadow: 0 0 10px rgba(116, 231, 255, 0.14);
}

body.ys .yinse-field .form-label::before {
    background: #74e7ff !important;
    box-shadow: 0 0 0 4px rgba(116, 231, 255, 0.10), 0 0 14px rgba(116, 231, 255, 0.26) !important;
}

body.ys .sku,
body.ys .optional-card,
body.ys .view-card-btn,
body.ys .pay-list .pay,
body.ys .payment-method {
    border-color: rgba(116, 231, 255, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(116, 231, 255, 0.13), rgba(255, 212, 122, 0.075)),
        rgba(6, 13, 25, 0.70) !important;
    color: rgba(245, 247, 251, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 16px rgba(116, 231, 255, 0.07) !important;
}

body.ys .sku:hover,
body.ys .optional-card:hover,
body.ys .view-card-btn:hover,
body.ys .pay-list .pay:hover,
body.ys .pay-list .pay.active,
body.ys .pay-list .pay.pay-selected {
    border-color: rgba(255, 212, 122, 0.58) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.22), rgba(116, 231, 255, 0.12)),
        rgba(8, 14, 26, 0.82) !important;
    color: #fff7d8 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 24px rgba(255, 212, 122, 0.14),
        0 0 22px rgba(116, 231, 255, 0.10) !important;
}

body.ys .sku.is-primary {
    border-color: rgba(255, 212, 122, 0.70) !important;
    background: linear-gradient(135deg, #ffd47a, #ff9e55) !important;
    color: #08101d !important;
    box-shadow: 0 12px 28px rgba(255, 159, 85, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

body.ys .badge-money,
body.ys .sku.is-primary .badge-money {
    border-color: rgba(116, 231, 255, 0.28) !important;
    background: rgba(6, 13, 25, 0.72) !important;
    color: #ffe7a6 !important;
    box-shadow: 0 0 12px rgba(255, 212, 122, 0.12) !important;
}

body.ys .yinse-form-stack .form-control,
body.ys .yinse-form-stack input.form-control,
body.ys .yinse-form-stack input.captcha-input,
body.ys .yinse-captcha-group,
body.ys .qty-group,
body.ys .password-form .input-group {
    border-color: rgba(116, 231, 255, 0.26) !important;
    background: rgba(5, 11, 22, 0.62) !important;
    color: rgba(245, 247, 251, 0.94) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 18px rgba(116, 231, 255, 0.07) !important;
}

body.ys .yinse-form-stack .form-control:focus,
body.ys .yinse-form-stack input.captcha-input:focus {
    border-color: rgba(255, 212, 122, 0.58) !important;
    background: rgba(8, 14, 26, 0.78) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 0 4px rgba(255, 212, 122, 0.10),
        0 0 22px rgba(116, 231, 255, 0.10) !important;
}

body.ys .yinse-form-stack .form-control::placeholder,
body.ys .yinse-form-stack input.captcha-input::placeholder {
    color: rgba(221, 232, 255, 0.58) !important;
}

body.ys .qty-group .form-control {
    background: rgba(255, 255, 255, 0.10) !important;
    color: rgba(245, 247, 251, 0.92) !important;
}

body.ys .change-num-sub,
body.ys .change-num-add {
    border-color: rgba(116, 231, 255, 0.28) !important;
    background: rgba(116, 231, 255, 0.12) !important;
    color: #dff8ff !important;
}

body.ys .change-num-sub:hover,
body.ys .change-num-add:hover {
    border-color: rgba(255, 212, 122, 0.58) !important;
    background: linear-gradient(135deg, #ffd47a, #ff9e55) !important;
    color: #08101d !important;
}

body.ys .yinse-description-body blockquote,
body.ys .yinse-description-body blockquote[style],
body.ys .yinse-description-body p[style*="background"],
body.ys .yinse-description-body div[style*="background"] {
    border-color: rgba(255, 212, 122, 0.24) !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.070), rgba(116, 231, 255, 0.050) 45%, rgba(0, 0, 0, 0.18)),
        rgba(5, 11, 22, 0.66) !important;
    color: rgba(245, 247, 251, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 12px 28px rgba(0, 0, 0, 0.20) !important;
}

body.ys .yinse-description-body [style*="background"] {
    background-color: transparent !important;
}

body.ys .yinse-description-body [style*="color"] {
    color: inherit;
}

@media (max-width: 767.98px) {
    body.ys .yinse-hero-banner--image .yinse-hero-title {
        left: 18px !important;
        right: 18px !important;
        top: 30px !important;
        max-width: calc(100% - 36px) !important;
    }

    body.ys .yinse-hero-banner--image .yinse-hero-title span {
        font-size: clamp(30px, 9vw, 42px) !important;
    }

    body.ys .yinse-hero-banner--image .yinse-hero-title strong {
        max-width: 100% !important;
        font-size: 12px !important;
    }

    body.ys .yinse-hero-banner--image .yinse-hero-actions {
        left: 18px !important;
        right: 18px !important;
        bottom: 14px !important;
    }

    body.ys .yinse-hero-banner--image .yinse-hero-actions .cyber-nav-buttons {
        gap: 8px !important;
        max-width: 100% !important;
        max-height: 74px !important;
        overflow: hidden !important;
    }

    body.ys .yinse-hero-banner--image .yinse-hero-actions .cyber-btn-item {
        min-height: 32px !important;
        padding: 0 12px !important;
        gap: 6px !important;
        font-size: 12px !important;
    }
}

body.ys .yinse-hero-banner--notice {
    border-color: rgba(255, 212, 122, 0.18) !important;
    border-radius: 12px !important;
    background:
        linear-gradient(180deg, rgba(5, 10, 20, 0.40), rgba(2, 5, 12, 0.52)),
        rgba(3, 7, 16, 0.38) !important;
    background-color: rgba(3, 7, 16, 0.38) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 10px 24px rgba(0, 0, 0, 0.18) !important;
    backdrop-filter: blur(4px) saturate(106%) !important;
    -webkit-backdrop-filter: blur(4px) saturate(106%) !important;
}

body.ys .yinse-hero-banner--notice .yinse-hero-notice-head {
    border-bottom-color: rgba(255, 212, 122, 0.18) !important;
    background:
        linear-gradient(90deg, rgba(5, 10, 20, 0.40), rgba(2, 5, 12, 0.52)),
        rgba(3, 7, 16, 0.38) !important;
}

body.ys .yinse-hero-banner--notice .yinse-hero-notice-body {
    background:
        linear-gradient(180deg, rgba(5, 10, 20, 0.18), rgba(2, 5, 12, 0.30)) !important;
}

/* Product detail links and quote hover final pass */
body.ys .yinse-description-body a,
body.ys .yinse-description-body a[style],
body.ys .yinse-description-body .btn,
body.ys .yinse-description-body button,
body.ys .btn-copy-card,
body.ys .cyber-back-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    margin: 5px 6px;
    padding: 8px 44px 8px 16px !important;
    border: 1px solid rgba(255, 212, 122, 0.28) !important;
    border-radius: 10px !important;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(116, 231, 255, 0.060) 46%, rgba(0, 0, 0, 0.18)),
        rgba(5, 11, 22, 0.68) !important;
    color: rgba(245, 247, 251, 0.94) !important;
    font-weight: 900;
    line-height: 1.35;
    text-decoration: none !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.46) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 16px rgba(116, 231, 255, 0.08),
        0 10px 22px rgba(0, 0, 0, 0.22) !important;
}

body.ys .yinse-description-body a::after,
body.ys .yinse-description-body .btn::after,
body.ys .yinse-description-body button::after,
body.ys .btn-copy-card::after,
body.ys .cyber-back-btn::after {
    content: "";
    --mark-size: 0.50;
    width: calc(46px * var(--mark-size));
    height: calc(24px * var(--mark-size));
    margin-left: 4px;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.18)) 0 0 / calc(22px * var(--mark-size)) calc(2px * var(--mark-size)) no-repeat,
        linear-gradient(180deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.20)) 0 0 / calc(2px * var(--mark-size)) calc(14px * var(--mark-size)) no-repeat,
        linear-gradient(90deg, rgba(140, 240, 255, 0.98), rgba(116, 231, 255, 0.30)) calc(12px * var(--mark-size)) calc(9px * var(--mark-size)) / calc(25px * var(--mark-size)) calc(2px * var(--mark-size)) no-repeat,
        linear-gradient(90deg, rgba(255, 120, 200, 0.92), rgba(255, 103, 189, 0.20)) calc(18px * var(--mark-size)) calc(16px * var(--mark-size)) / calc(16px * var(--mark-size)) calc(2px * var(--mark-size)) no-repeat,
        radial-gradient(circle, #fff8d8 0 calc(1px * var(--mark-size)), #ffd47a calc(1.2px * var(--mark-size)) calc(2.7px * var(--mark-size)), transparent calc(2.9px * var(--mark-size))) calc(33px * var(--mark-size)) 0 / calc(8px * var(--mark-size)) calc(8px * var(--mark-size)) no-repeat !important;
    box-shadow: none;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%);
    transform: none !important;
}

body.ys .yinse-description-body a:hover,
body.ys .yinse-description-body a[style]:hover,
body.ys .yinse-description-body .btn:hover,
body.ys .yinse-description-body button:hover,
body.ys .btn-copy-card:hover,
body.ys .cyber-back-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 212, 122, 0.58) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.22), rgba(116, 231, 255, 0.12)),
        rgba(8, 14, 26, 0.82) !important;
    color: #fff7d8 !important;
    text-shadow: 0 0 12px rgba(255, 212, 122, 0.18), 0 2px 10px rgba(0, 0, 0, 0.54) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 0 24px rgba(255, 212, 122, 0.16),
        0 0 22px rgba(116, 231, 255, 0.10),
        0 14px 28px rgba(0, 0, 0, 0.28) !important;
}

body.ys .yinse-description-body a:hover::after,
body.ys .yinse-description-body .btn:hover::after,
body.ys .yinse-description-body button:hover::after,
body.ys .btn-copy-card:hover::after,
body.ys .cyber-back-btn:hover::after {
    width: calc(46px * var(--mark-size, 0.50));
    height: calc(24px * var(--mark-size, 0.50));
    background: linear-gradient(90deg, #74e7ff, #ffd47a, #ff9e55) !important;
    box-shadow: 0 0 16px rgba(255, 212, 122, 0.24), 0 0 14px rgba(116, 231, 255, 0.16);
}

body.ys .yinse-description-body blockquote {
    border: 1px solid color-mix(in srgb, var(--yinse-quote-accent, #ffd47a) 34%, transparent);
    background:
        radial-gradient(circle at 24px 20px, rgba(var(--yinse-quote-accent-rgb, 255, 212, 122), 0.10), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.070), rgba(116, 231, 255, 0.050) 45%, rgba(0, 0, 0, 0.18)),
        rgba(5, 11, 22, 0.66) !important;
    color: rgba(245, 247, 251, 0.92) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 -1px 0 rgba(255, 212, 122, 0.06),
        0 12px 28px rgba(0, 0, 0, 0.20) !important;
}

body.ys .yinse-description-body blockquote::before,
body.ys .yinse-description-body blockquote.has-yinse-quote-accent::before,
body.ys .yinse-description-body blockquote[style*="border-left-color"]::before,
body.ys .yinse-description-body blockquote[style*="border-color"]::before {
    background: linear-gradient(90deg, var(--yinse-quote-accent, #ffd47a), #74e7ff, rgba(var(--yinse-quote-accent-rgb, 255, 103, 189), 0.82)) !important;
    box-shadow: 0 0 18px rgba(var(--yinse-quote-accent-rgb, 255, 212, 122), 0.16), 0 0 16px rgba(116, 231, 255, 0.12) !important;
}

body.ys .yinse-description-body blockquote.red,
body.ys .yinse-description-body blockquote.blue,
body.ys .yinse-description-body blockquote.blud,
body.ys .yinse-description-body blockquote.bler,
body.ys .yinse-description-body blockquote.green,
body.ys .yinse-description-body blockquote.cyan,
body.ys .yinse-description-body blockquote.has-yinse-quote-accent {
    border-color: color-mix(in srgb, var(--yinse-quote-accent, #ffd47a) 48%, transparent) !important;
    background:
        radial-gradient(circle at 24px 20px, rgba(var(--yinse-quote-accent-rgb, 255, 212, 122), 0.12), transparent 78px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.070), rgba(116, 231, 255, 0.050) 45%, rgba(0, 0, 0, 0.18)),
        rgba(5, 11, 22, 0.66) !important;
}

body.ys .yinse-description-body blockquote::after,
body.ys .yinse-description-body blockquote.has-yinse-quote-accent::after,
body.ys .yinse-description-body blockquote[style*="border-left-color"]::after,
body.ys .yinse-description-body blockquote[style*="border-color"]::after {
    width: 26px;
    height: 18px;
    border-radius: 0;
    background:
        linear-gradient(90deg, var(--yinse-quote-accent, rgba(255, 230, 160, 0.98)), rgba(var(--yinse-quote-accent-rgb, 255, 212, 122), 0.18)) 0 0 / 15px 2px no-repeat,
        linear-gradient(180deg, var(--yinse-quote-accent, rgba(255, 230, 160, 0.98)), rgba(var(--yinse-quote-accent-rgb, 255, 212, 122), 0.20)) 0 0 / 2px 11px no-repeat,
        linear-gradient(90deg, rgba(140, 240, 255, 0.98), rgba(116, 231, 255, 0.30)) 8px 7px / 17px 2px no-repeat,
        linear-gradient(90deg, rgba(var(--yinse-quote-accent-rgb, 255, 120, 200), 0.92), rgba(var(--yinse-quote-accent-rgb, 255, 103, 189), 0.20)) 12px 12px / 10px 2px no-repeat,
        radial-gradient(circle at 22px 3px, #fff8d8 0 1px, var(--yinse-quote-accent, #ffd47a) 1.2px 2.7px, transparent 2.9px) 0 0 / 26px 18px no-repeat !important;
    box-shadow: none !important;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%);
    filter:
        drop-shadow(0 0 8px rgba(255, 212, 122, 0.22))
        drop-shadow(0 0 8px rgba(116, 231, 255, 0.14));
    transform: none !important;
}

body.ys .yinse-description-body blockquote:hover,
body.ys .yinse-description-body blockquote[style]:hover,
body.ys .yinse-description-body blockquote.has-yinse-quote-accent:hover,
body.ys .yinse-description-body blockquote[style*="border-left-color"]:hover,
body.ys .yinse-description-body blockquote[style*="border-color"]:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--yinse-quote-accent, #ffd47a) 58%, transparent);
    background:
        radial-gradient(circle at 24px 20px, rgba(var(--yinse-quote-accent-rgb, 255, 212, 122), 0.14), transparent 86px),
        linear-gradient(135deg, rgba(var(--yinse-quote-accent-rgb, 255, 212, 122), 0.12), rgba(116, 231, 255, 0.10) 45%, rgba(0, 0, 0, 0.18)),
        rgba(8, 14, 26, 0.82) !important;
    color: #fff7d8 !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(255, 212, 122, 0.10),
        0 0 28px rgba(255, 212, 122, 0.14),
        0 0 24px rgba(116, 231, 255, 0.10),
        0 16px 34px rgba(0, 0, 0, 0.30) !important;
}

body.ys .yinse-description-body blockquote:hover::after,
body.ys .yinse-description-body blockquote.has-yinse-quote-accent:hover::after,
body.ys .yinse-description-body blockquote[style*="border-left-color"]:hover::after,
body.ys .yinse-description-body blockquote[style*="border-color"]:hover::after {
    box-shadow: 0 0 18px rgba(var(--yinse-quote-accent-rgb, 255, 212, 122), 0.24), 0 0 16px rgba(116, 231, 255, 0.16) !important;
}

/* Brand hover final pass */
body.ys .yinse-brand:hover,
body.ys .yinse-brand:focus-visible {
    transform: translateY(-1px) !important;
    border-color: rgba(255, 212, 122, 0.52) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.12), rgba(116, 231, 255, 0.08) 44%, rgba(0, 0, 0, 0.22)),
        rgba(4, 9, 18, 0.82) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        inset 0 -1px 0 rgba(255, 212, 122, 0.08),
        0 0 22px rgba(255, 212, 122, 0.12),
        0 0 24px rgba(116, 231, 255, 0.08),
        0 14px 28px rgba(0, 0, 0, 0.30) !important;
}

body.ys .yinse-brand:hover::before,
body.ys .yinse-brand:focus-visible::before {
    opacity: 0.62 !important;
    background:
        radial-gradient(circle at 24% 50%, rgba(255, 212, 122, 0.13), transparent 34%),
        linear-gradient(90deg, rgba(116, 231, 255, 0.08), transparent 58%) !important;
    transform: none !important;
}

body.ys .yinse-brand:hover::after,
body.ys .yinse-brand:focus-visible::after {
    opacity: 0.88 !important;
    background: linear-gradient(90deg, #ffd47a, #74e7ff, #ff67bd) !important;
    box-shadow: 0 0 14px rgba(255, 212, 122, 0.18), 0 0 12px rgba(116, 231, 255, 0.10) !important;
    transform: none !important;
}

body.ys .yinse-brand:hover .yinse-brand-mark,
body.ys .yinse-brand:focus-visible .yinse-brand-mark {
    border-color: rgba(255, 212, 122, 0.62) !important;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 246, 214, 0.92), rgba(201, 231, 238, 0.58) 58%, rgba(6, 13, 24, 0.22)) !important;
    box-shadow:
        0 0 0 3px rgba(255, 212, 122, 0.14),
        0 0 0 7px rgba(116, 231, 255, 0.06),
        0 0 22px rgba(255, 212, 122, 0.20),
        0 0 20px rgba(116, 231, 255, 0.12) !important;
    filter: saturate(1.02) contrast(1.03) !important;
}

body.ys .yinse-brand:hover .yinse-brand-name,
body.ys .yinse-brand:focus-visible .yinse-brand-name {
    color: #fff4ce !important;
    background: none !important;
    text-shadow:
        0 0 12px rgba(255, 212, 122, 0.20),
        0 2px 8px rgba(0, 0, 0, 0.48) !important;
    transform: none !important;
}

body.ys .yinse-brand:hover .yinse-brand-name::after,
body.ys .yinse-brand:focus-visible .yinse-brand-name::after {
    color: rgba(174, 238, 255, 0.82) !important;
    text-shadow: 0 0 10px rgba(116, 231, 255, 0.16) !important;
}

/* Remove the hidden light shell from commodity card root */
body.ys article.yinse-commodity-card,
body.ys .yinse-commodity-card,
body.ys .yinse-commodity-card.yinse-inline-item-trigger,
body.ys .yinse-commodity-card.yinse-inline-trigger {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

body.ys article.yinse-commodity-card::before,
body.ys article.yinse-commodity-card::after,
body.ys .yinse-commodity-card.yinse-inline-item-trigger::before,
body.ys .yinse-commodity-card.yinse-inline-item-trigger::after,
body.ys .yinse-commodity-card.yinse-inline-trigger::before,
body.ys .yinse-commodity-card.yinse-inline-trigger::after {
    content: none !important;
    display: none !important;
}

body.ys .yinse-card-catalog-wrap,
body.ys .yinse-commodity-grid.item-list {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Notice modal body uses full modal width */
body .yinse-layer-popup .layui-layer-content,
body .yinse-layer-popup .yinse-notice-modal,
body .yinse-layer-popup .yinse-notice-popup-inner {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

body .yinse-layer-popup .yinse-notice-popup-inner {
    display: block !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
}

body .yinse-layer-popup .yinse-notice-popup-inner > * {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

/* Purchase badge hover final pass */
body.ys .yinse-item-badges .badge-soft:hover,
body.ys .yinse-item-badges .yinse-pill:hover,
body.ys .yinse-item-badges .snap-up:hover,
body.ys .yinse-item-badges .goods-sku:hover,
body.ys .yinse-item-badges .a-badge-primary:hover,
body.ys .yinse-item-badges .a-badge-warning:hover,
body.ys .yinse-item-badges .a-badge-success:hover,
body.ys .yinse-item-badges .a-badge-danger:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(255, 212, 122, 0.44) !important;
    background:
        linear-gradient(135deg, rgba(255, 212, 122, 0.18), rgba(116, 231, 255, 0.10) 48%, rgba(0, 0, 0, 0.12)),
        rgba(6, 13, 25, 0.82) !important;
    color: #fff1bd !important;
    text-shadow: 0 0 12px rgba(255, 212, 122, 0.16), 0 2px 8px rgba(0, 0, 0, 0.46) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 18px rgba(255, 212, 122, 0.12),
        0 10px 22px rgba(0, 0, 0, 0.24) !important;
}

/* HUD mark hover should brighten, not turn into a color block */
body.ys .yinse-brand:hover::after,
body.ys .yinse-brand:focus-visible::after,
body.ys .yinse-item-badges .badge-soft:hover::after,
body.ys .order-item:hover::after,
body.ys .yinse-query-heading:hover::after,
body.ys .yinse-description-body a:hover::after,
body.ys .yinse-description-body .btn:hover::after,
body.ys .yinse-description-body button:hover::after,
body.ys .btn-copy-card:hover::after,
body.ys .cyber-back-btn:hover::after {
    border: 0 !important;
    border-radius: 0 !important;
    background:
        linear-gradient(90deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.18)) 0 0 / calc(22px * var(--mark-size, 0.58)) calc(2px * var(--mark-size, 0.58)) no-repeat,
        linear-gradient(180deg, rgba(255, 230, 160, 0.98), rgba(255, 212, 122, 0.20)) 0 0 / calc(2px * var(--mark-size, 0.58)) calc(14px * var(--mark-size, 0.58)) no-repeat,
        linear-gradient(90deg, rgba(140, 240, 255, 0.98), rgba(116, 231, 255, 0.30)) calc(12px * var(--mark-size, 0.58)) calc(9px * var(--mark-size, 0.58)) / calc(25px * var(--mark-size, 0.58)) calc(2px * var(--mark-size, 0.58)) no-repeat,
        linear-gradient(90deg, rgba(255, 120, 200, 0.92), rgba(255, 103, 189, 0.20)) calc(18px * var(--mark-size, 0.58)) calc(16px * var(--mark-size, 0.58)) / calc(16px * var(--mark-size, 0.58)) calc(2px * var(--mark-size, 0.58)) no-repeat,
        radial-gradient(circle, #fff8d8 0 calc(1px * var(--mark-size, 0.58)), #ffd47a calc(1.2px * var(--mark-size, 0.58)) calc(2.7px * var(--mark-size, 0.58)), transparent calc(2.9px * var(--mark-size, 0.58))) calc(33px * var(--mark-size, 0.58)) 0 / calc(8px * var(--mark-size, 0.58)) calc(8px * var(--mark-size, 0.58)) no-repeat !important;
    opacity: 1 !important;
    box-shadow: none !important;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 78% 100%, 0 100%) !important;
    filter:
        drop-shadow(0 0 8px rgba(255, 212, 122, 0.30))
        drop-shadow(0 0 8px rgba(116, 231, 255, 0.18)) !important;
}

/* Quantity control vertical alignment */
body.ys .qty-group {
    display: inline-grid !important;
    grid-template-columns: 34px minmax(54px, 80px) 34px !important;
    align-items: center !important;
    justify-items: center !important;
    gap: 8px !important;
    min-height: 50px !important;
    padding: 7px 10px !important;
    line-height: 1 !important;
}

body.ys .qty-group .form-control,
body.ys .qty-group input[name="num"],
body.ys .qty-group .change-num-sub,
body.ys .qty-group .change-num-add {
    align-self: center !important;
    justify-self: center !important;
    width: 100% !important;
    height: 34px !important;
    min-height: 34px !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 34px !important;
    vertical-align: middle !important;
}

body.ys .qty-group .change-num-sub,
body.ys .qty-group .change-num-add {
    width: 34px !important;
    min-width: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

body.ys .qty-group .change-num-sub i,
body.ys .qty-group .change-num-add i {
    display: block !important;
    line-height: 1 !important;
}

body.ys .qty-group .change-num-sub:hover,
body.ys .qty-group .change-num-add:hover {
    transform: none !important;
}

/* Catalog glass depth absolute final pass */
body.ys .yinse-catalog-panel .panel-body,
body.ys .yinse-catalog-body {
    background:
        linear-gradient(180deg, rgba(4, 9, 18, 0.18), rgba(3, 7, 16, 0.08)) !important;
}

body.ys .yinse-table-wrap.yinse-card-catalog-wrap,
body.ys .yinse-card-catalog-wrap {
    border-color: rgba(255, 212, 122, 0.20) !important;
    background:
        radial-gradient(circle at 9% 10%, rgba(255, 212, 122, 0.055), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(116, 231, 255, 0.045), transparent 30%),
        linear-gradient(180deg, rgba(4, 9, 18, 0.36), rgba(2, 5, 12, 0.48)) !important;
    background-color: transparent !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -1px 0 rgba(255, 212, 122, 0.05),
        0 22px 58px rgba(0, 0, 0, 0.34) !important;
    backdrop-filter: blur(8px) saturate(126%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(126%) !important;
}

body.ys .yinse-card-catalog-wrap .yinse-commodity-grid,
body.ys .yinse-commodity-grid.item-list {
    background: transparent !important;
    background-color: transparent !important;
}

body.ys .yinse-commodity-grid .yinse-commodity-card.is-soldout .row-inner {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(116, 231, 255, 0.035), rgba(0, 0, 0, 0.10)),
        rgba(5, 10, 20, 0.38) !important;
}
/* Restore container marks and split card marks true final append */
body.ys .panel:not(.yinse-query-panel)::after,
body.ys .yinse-card-catalog-wrap::after,
body.ys .yinse-table-wrap::after,
body.ys .yinse-item-unified-panel::after,
body.ys .yinse-description-panel::after,
body.ys .yinse-item-panel::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 18px !important;
    right: 20px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 8 !important;
    width: 34px !important;
    height: 20px !important;
    min-width: 34px !important;
    min-height: 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
        linear-gradient(90deg, #ffd27a, #56eaff) 0 0 / 17px 2px no-repeat,
        linear-gradient(180deg, #ffd27a, rgba(86, 234, 255, 0.05)) 0 0 / 2px 12px no-repeat,
        linear-gradient(90deg, rgba(255, 210, 122, 0.12), #ff5fd2 64%, transparent) 11px 8px / 21px 2px no-repeat,
        linear-gradient(90deg, #56eaff, rgba(86, 234, 255, 0)) 16px 13px / 13px 2px no-repeat,
        radial-gradient(circle at 29px 3px, #fff7d3 0 1px, #ffc66d 1.2px 2.3px, transparent 2.6px) 0 0 / 34px 20px no-repeat,
        radial-gradient(circle at 6px 16px, rgba(86, 234, 255, 0.8) 0 1px, transparent 2.2px) 0 0 / 34px 20px no-repeat !important;
    clip-path: polygon(0 0, 100% 0, 100% 68%, 80% 100%, 0 100%) !important;
    opacity: 0.72 !important;
    pointer-events: none !important;
    transform: none !important;
    transform-origin: right top !important;
    filter: drop-shadow(0 0 8px rgba(255, 212, 122, 0.22)) drop-shadow(0 0 10px rgba(116, 231, 255, 0.14)) !important;
}

body.ys .yinse-category-link::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 7px !important;
    right: 8px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 6 !important;
    width: 22px !important;
    height: 14px !important;
    min-width: 22px !important;
    min-height: 14px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
        linear-gradient(90deg, rgba(255, 222, 138, 0.98), rgba(255, 212, 122, 0.14)) 0 0 / 11px 1.5px no-repeat,
        linear-gradient(180deg, rgba(255, 222, 138, 0.98), rgba(255, 212, 122, 0.10)) 0 0 / 1.5px 8px no-repeat,
        linear-gradient(90deg, rgba(118, 236, 255, 0.90), rgba(116, 231, 255, 0.12)) 8px 5px / 13px 1.5px no-repeat,
        linear-gradient(90deg, rgba(255, 103, 189, 0.72), rgba(255, 103, 189, 0.10)) 12px 10px / 8px 1.5px no-repeat,
        radial-gradient(circle at 19px 2px, #fff8d8 0 0.7px, #ffd47a 0.9px 1.8px, transparent 2px) 0 0 / 22px 14px no-repeat !important;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(1px, -1px, 0) scale(0.9) !important;
    transform-origin: right top !important;
    filter: drop-shadow(0 0 7px rgba(255, 212, 122, 0.24)) !important;
}

body.ys .yinse-category-row:hover .yinse-category-link::after,
body.ys .yinse-category-link:hover::after,
body.ys .yinse-category-link:focus-visible::after,
body.ys .yinse-category-link.is-active::after,
body.ys .yinse-category-link.active::after,
body.ys .yinse-category-link[aria-current="true"]::after,
body.ys .yinse-category-link[aria-selected="true"]::after {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(0.9) !important;
}

body.ys .yinse-commodity-card .row-inner::after,
body.ys .yinse-card-catalog-wrap .yinse-commodity-card .row-inner::after,
body.ys .yinse-card-guren-mode .yinse-commodity-card .row-inner::after,
body.ys .yinse-commodity-grid .yinse-commodity-card .row-inner::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 8px !important;
    right: 9px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 30 !important;
    width: 30px !important;
    height: 18px !important;
    min-width: 30px !important;
    min-height: 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
        linear-gradient(90deg, rgba(255, 222, 138, 1), rgba(255, 212, 122, 0.16)) 0 0 / 15px 2px no-repeat,
        linear-gradient(180deg, rgba(255, 222, 138, 1), rgba(255, 212, 122, 0.12)) 0 0 / 2px 11px no-repeat,
        linear-gradient(90deg, rgba(118, 236, 255, 0.96), rgba(116, 231, 255, 0.14)) 10px 7px / 18px 2px no-repeat,
        linear-gradient(90deg, rgba(255, 103, 189, 0.86), rgba(255, 103, 189, 0.12)) 16px 13px / 10px 2px no-repeat,
        radial-gradient(circle at 26px 3px, #fff8d8 0 1px, #ffd47a 1.2px 2.5px, transparent 2.7px) 0 0 / 30px 18px no-repeat !important;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(2px, -2px, 0) scale(0.9) !important;
    transform-origin: right top !important;
    filter: drop-shadow(0 0 9px rgba(255, 212, 122, 0.34)) drop-shadow(0 0 9px rgba(116, 231, 255, 0.22)) !important;
}

body.ys .yinse-commodity-card:hover .row-inner::after,
body.ys .yinse-commodity-card:focus-within .row-inner::after,
body.ys .yinse-commodity-card.active .row-inner::after,
body.ys .yinse-commodity-card.is-active .row-inner::after,
body.ys .yinse-commodity-card.yinse-active .row-inner::after,
body.ys .yinse-commodity-card.is-inline-active .row-inner::after,
body.ys .yinse-commodity-card .row-inner:hover::after {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(0.9) !important;
}

/* Remove catalog list wrapper corner mark; keep panel and cards marked */
body.ys .yinse-table-wrap.yinse-card-catalog-wrap::after,
body.ys .yinse-card-catalog-wrap::after,
body.ys .yinse-card-catalog-wrap:hover::after,
body.ys .yinse-commodity-grid.item-list::after,
body.ys .yinse-commodity-grid::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
}
/* Product article card hover/selected mark */
body.ys article.yinse-commodity-card > .row-inner::after,
body.ys article.yinse-commodity-row > .row-inner::after,
body.ys .item-list article.yinse-commodity-card > .row-inner::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    top: 8px !important;
    right: 9px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 30 !important;
    width: 30px !important;
    height: 18px !important;
    min-width: 30px !important;
    min-height: 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background:
        linear-gradient(90deg, rgba(255, 222, 138, 1), rgba(255, 212, 122, 0.16)) 0 0 / 15px 2px no-repeat,
        linear-gradient(180deg, rgba(255, 222, 138, 1), rgba(255, 212, 122, 0.12)) 0 0 / 2px 11px no-repeat,
        linear-gradient(90deg, rgba(118, 236, 255, 0.96), rgba(116, 231, 255, 0.14)) 10px 7px / 18px 2px no-repeat,
        linear-gradient(90deg, rgba(255, 103, 189, 0.86), rgba(255, 103, 189, 0.12)) 16px 13px / 10px 2px no-repeat,
        radial-gradient(circle at 26px 3px, #fff8d8 0 1px, #ffd47a 1.2px 2.5px, transparent 2.7px) 0 0 / 30px 18px no-repeat !important;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 80% 100%, 0 100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translate3d(2px, -2px, 0) scale(0.9) !important;
    transform-origin: right top !important;
    filter:
        drop-shadow(0 0 9px rgba(255, 212, 122, 0.34))
        drop-shadow(0 0 9px rgba(116, 231, 255, 0.22)) !important;
    transition: opacity 0.16s ease, transform 0.16s ease !important;
}

body.ys article.yinse-commodity-card:hover > .row-inner::after,
body.ys article.yinse-commodity-row:hover > .row-inner::after,
body.ys article.yinse-commodity-card:focus-within > .row-inner::after,
body.ys article.yinse-commodity-card.is-inline-active > .row-inner::after,
body.ys article.yinse-commodity-card.active > .row-inner::after,
body.ys article.yinse-commodity-card.is-active > .row-inner::after,
body.ys article.yinse-commodity-card.yinse-active > .row-inner::after,
body.ys .item-list article.yinse-commodity-card:hover > .row-inner::after,
body.ys .item-list article.yinse-commodity-card.is-inline-active > .row-inner::after {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(0.9) !important;
}

/* 公共提取样式，减少重复代码 */
.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;
    }
}

/* Hero title brighter text final pass */
body.ys .yinse-hero-banner--image .yinse-hero-title {
    gap: 8px !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-title span {
    color: #ffffff !important;
    background: linear-gradient(100deg, #ffffff 0%, #fffdf2 34%, #fff2c8 62%, #dffcff 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow:
        0 4px 16px rgba(0, 0, 0, 0.68),
        0 0 14px rgba(255, 255, 255, 0.20),
        0 0 18px rgba(116, 231, 255, 0.12) !important;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.42)) !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-title strong {
    display: block !important;
    width: auto !important;
    max-width: min(100%, 680px) !important;
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff8dc !important;
    -webkit-text-fill-color: #fff8dc !important;
    font-size: clamp(20px, 2.15vw, 32px) !important;
    font-weight: 950 !important;
    line-height: 1.12 !important;
    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.72),
        0 0 12px rgba(255, 255, 255, 0.16),
        0 0 16px rgba(255, 212, 122, 0.16) !important;
}

@media (max-width: 767.98px) {
    body.ys .yinse-hero-banner--image .yinse-hero-title strong {
        font-size: clamp(15px, 4.5vw, 20px) !important;
        line-height: 1.15 !important;
    }
}

body.ys article.yinse-commodity-card,
body.ys .yinse-commodity-grid .yinse-commodity-card {
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
}

/* Ultra-light commodity hover: prioritize frame rate over animated effects */
body.ys article.yinse-commodity-card,
body.ys .yinse-commodity-grid .yinse-commodity-card {
    transform: none !important;
    backface-visibility: visible !important;
    will-change: auto !important;
}

body.ys article.yinse-commodity-card > .row-inner,
body.ys article.yinse-commodity-row > .row-inner,
body.ys .yinse-card-catalog-wrap .yinse-commodity-grid .yinse-commodity-card .row-inner,
body.ys .yinse-commodity-grid .yinse-commodity-card .row-inner,
body.ys .yinse-commodity-card .row-inner {
    position: relative !important;
    border-color: rgba(255, 212, 122, 0.20) !important;
    box-shadow: none !important;
    filter: none !important;
    transform: none !important;
    will-change: auto !important;
    transition: background-color 0.18s ease !important;
}

body.ys article.yinse-commodity-card > .row-inner::before,
body.ys article.yinse-commodity-row > .row-inner::before,
body.ys .yinse-card-catalog-wrap .yinse-commodity-grid .yinse-commodity-card .row-inner::before,
body.ys .yinse-commodity-grid .yinse-commodity-card .row-inner::before,
body.ys .yinse-commodity-card .row-inner::before {
    content: none !important;
    display: none !important;
}

body.ys article.yinse-commodity-card > .row-inner > *,
body.ys article.yinse-commodity-row > .row-inner > *,
body.ys .yinse-commodity-card .row-inner > * {
    position: relative !important;
    z-index: 2 !important;
}

body.ys article.yinse-commodity-card:hover > .row-inner,
body.ys article.yinse-commodity-row:hover > .row-inner,
body.ys article.yinse-commodity-card:focus-within > .row-inner,
body.ys article.yinse-commodity-card.is-inline-active > .row-inner,
body.ys article.yinse-commodity-card.active > .row-inner,
body.ys article.yinse-commodity-card.is-active > .row-inner,
body.ys article.yinse-commodity-card.yinse-active > .row-inner,
body.ys .yinse-card-catalog-wrap .yinse-commodity-grid .yinse-commodity-card:hover .row-inner,
body.ys .yinse-card-catalog-wrap .yinse-commodity-grid .yinse-commodity-card.is-inline-active .row-inner,
body.ys .yinse-commodity-grid .yinse-commodity-card:hover .row-inner,
body.ys .yinse-commodity-grid .yinse-commodity-card.is-inline-active .row-inner,
body.ys .yinse-commodity-card:hover .row-inner,
body.ys .yinse-commodity-card.is-inline-active .row-inner {
    border-color: rgba(116, 231, 255, 0.54) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 24px rgba(116, 231, 255, 0.16),
        0 12px 24px rgba(0, 0, 0, 0.24) !important;
    filter: none !important;
    transform: none !important;
}

body.ys article.yinse-commodity-card.is-inline-active > .row-inner,
body.ys article.yinse-commodity-card.active > .row-inner,
body.ys article.yinse-commodity-card.is-active > .row-inner,
body.ys article.yinse-commodity-card.yinse-active > .row-inner,
body.ys .yinse-card-catalog-wrap .yinse-commodity-grid .yinse-commodity-card.is-inline-active .row-inner,
body.ys .yinse-commodity-grid .yinse-commodity-card.is-inline-active .row-inner,
body.ys .yinse-commodity-card.is-inline-active .row-inner {
    border-color: rgba(255, 212, 122, 0.60) !important;
}

body.ys article.yinse-commodity-card:hover > .row-inner::before,
body.ys article.yinse-commodity-row:hover > .row-inner::before,
body.ys article.yinse-commodity-card.is-inline-active > .row-inner::before,
body.ys .yinse-card-catalog-wrap .yinse-commodity-grid .yinse-commodity-card:hover .row-inner::before,
body.ys .yinse-card-catalog-wrap .yinse-commodity-grid .yinse-commodity-card.is-inline-active .row-inner::before,
body.ys .yinse-commodity-grid .yinse-commodity-card:hover .row-inner::before,
body.ys .yinse-commodity-grid .yinse-commodity-card.is-inline-active .row-inner::before,
body.ys .yinse-commodity-card:hover .row-inner::before,
body.ys .yinse-commodity-card.is-inline-active .row-inner::before {
    opacity: 0 !important;
}

/* Commodity article shell must stay transparent; row-inner owns the card surface */
body.ys article.yinse-commodity-card,
body.ys article.yinse-commodity-row,
body.ys .yinse-commodity-grid article.yinse-commodity-card,
body.ys .yinse-card-catalog-wrap article.yinse-commodity-card,
body.ys .yinse-commodity-card:hover,
body.ys .yinse-commodity-card:focus-within,
body.ys .yinse-commodity-card.is-inline-active,
body.ys .yinse-commodity-card.active,
body.ys .yinse-commodity-card.is-active,
body.ys .yinse-commodity-card.yinse-active {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    outline: 0 !important;
}

body.ys article.yinse-commodity-card::before,
body.ys article.yinse-commodity-card::after,
body.ys article.yinse-commodity-row::before,
body.ys article.yinse-commodity-row::after {
    content: none !important;
    display: none !important;
}

/* Remove the commodity article layout shell entirely */
body.ys .yinse-commodity-grid > article.yinse-commodity-card,
body.ys .yinse-commodity-grid > article.yinse-commodity-row {
    display: contents !important;
}

body.ys .yinse-commodity-grid > article.yinse-commodity-card > .row-inner,
body.ys .yinse-commodity-grid > article.yinse-commodity-row > .row-inner {
    display: flex !important;
    min-width: 0 !important;
}

/* Hero title final: clean white title and no clipped descenders */
body.ys .yinse-hero-banner--image {
    overflow: visible !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-title {
    overflow: visible !important;
    padding-bottom: 8px !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-title span {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    position: relative !important;
    line-height: 1.04 !important;
    padding-bottom: 4px !important;
    filter: none !important;
    text-shadow:
        0 3px 12px rgba(0, 0, 0, 0.72),
        0 0 16px rgba(255, 255, 255, 0.18) !important;
}

body.ys .yinse-hero-banner--image .yinse-hero-title span::after {
    content: "";
    display: block;
    width: min(64%, 320px);
    height: 3px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd47a, rgba(116, 231, 255, 0.72), transparent);
    box-shadow:
        0 0 14px rgba(255, 212, 122, 0.24),
        0 0 20px rgba(116, 231, 255, 0.16);
}

/* Mobile search final: single-line controls without warped pill overlap */
@media (max-width: 767px) {
    body.yinse-theme.ys.yinse-bg-mask-on::before {
        background:
            radial-gradient(circle at 76% 26%, rgba(27, 91, 164, 0.28), transparent 32%),
            radial-gradient(circle at 61% 70%, rgba(255, 170, 76, 0.18), transparent 25%),
            linear-gradient(90deg, rgba(246, 251, 255, 0.10), rgba(4, 10, 22, 0.28) 36%, rgba(3, 6, 17, 0.76) 100%),
            linear-gradient(180deg, rgba(2, 5, 13, 0.08), rgba(2, 5, 13, 0.74)),
            var(--yinse-page-background-image, none) !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        transform: translateZ(0);
    }

    body.ys .yinse-catalog-heading {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
        min-height: 220px !important;
        padding: 18px 18px 20px !important;
        overflow: visible !important;
    }

    body.ys .yinse-catalog-tools {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
    }

    body.ys .yinse-catalog-body {
        padding-top: 12px !important;
    }

    body.ys .yinse-catalog-tools .yinse-search-combo {
        display: flex !important;
        grid-template-columns: none !important;
        position: relative !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 46px !important;
        height: 46px !important;
        padding: 0 48px 0 14px !important;
        border: 1px solid rgba(var(--yinse-accent-rgb), 0.28) !important;
        border-radius: 24px !important;
        background: rgba(3, 10, 22, 0.56) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.06),
            0 0 0 1px rgba(0, 0, 0, 0.18) !important;
    }

    body.ys .yinse-catalog-tools .yinse-searchbox-combo {
        display: flex !important;
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        min-height: 46px !important;
        height: 46px !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body.ys .yinse-catalog-tools .yinse-searchbox-combo input {
        min-width: 0 !important;
        height: 100% !important;
    }

    body.ys .yinse-catalog-tools .yinse-search-combo .yinse-button {
        position: absolute !important;
        top: 4px !important;
        right: 4px !important;
        flex: 0 0 38px !important;
        width: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        height: 38px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        border-width: 0 !important;
        transform: none !important;
    }

    body.ys .yinse-catalog-tools .yinse-search-combo .yinse-button span {
        display: none !important;
    }
}

/* Mobile nav final: tighter brand shell and theme-colored menu icon */
@media (max-width: 767px) {
    body.ys header.yinse-nav-shell .yinse-nav-wrap {
        width: calc(100% - 28px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.ys header.yinse-nav-shell .yinse-nav {
        padding: 8px !important;
        border-radius: 18px !important;
    }

    body.ys header.yinse-nav-shell .yinse-brand-wrap {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 48px !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    body.ys header.yinse-nav-shell .yinse-brand {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: 5px 12px 5px 6px !important;
        border-radius: 15px !important;
    }

    body.ys header.yinse-nav-shell .yinse-brand-chip {
        min-width: 0 !important;
    }

    body.ys header.yinse-nav-shell .yinse-brand-name {
        max-width: 100% !important;
    }

    body.ys header.yinse-nav-shell .yinse-nav-toggle {
        width: 48px !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 !important;
        border-color: rgba(var(--yinse-accent-rgb), 0.54) !important;
        background: rgba(3, 10, 22, 0.34) !important;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.10),
            0 0 16px rgba(var(--yinse-accent-rgb), 0.10) !important;
        color: rgb(var(--yinse-accent-rgb)) !important;
    }

    body.ys header.yinse-nav-shell .yinse-nav-toggle .navbar-toggler-icon {
        width: 22px !important;
        height: 16px !important;
        background-image:
            linear-gradient(90deg, rgba(var(--yinse-accent-rgb), 0.82), rgba(116, 231, 255, 0.72)),
            linear-gradient(90deg, rgba(var(--yinse-accent-rgb), 0.54), rgba(116, 231, 255, 0.46)),
            linear-gradient(90deg, rgba(var(--yinse-accent-rgb), 0.32), rgba(116, 231, 255, 0.30)) !important;
        background-repeat: no-repeat !important;
        background-size: 22px 1px, 18px 1px, 14px 1px !important;
        background-position: 0 2px, 0 8px, 0 14px !important;
        filter: drop-shadow(0 0 6px rgba(var(--yinse-accent-rgb), 0.30)) !important;
    }
}

/* Mobile nav brand should hug its content, not fill the whole left lane */
@media (max-width: 767px) {
    body.ys header.yinse-nav-shell .yinse-brand-wrap {
        grid-template-columns: minmax(0, max-content) 48px !important;
        justify-content: space-between !important;
    }

    body.ys header.yinse-nav-shell .yinse-brand {
        width: fit-content !important;
        max-width: min(72vw, 280px) !important;
        justify-self: start !important;
    }
}
