@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --c-primary: #243b53;
    --c-primary-700: #1f3146;
    --c-primary-600: #2d4b6b;
    --c-primary-500: #3e6288;
    --c-accent: #6366f1;
    --c-accent-hover: #4f46e5;
    --c-accent-muted: rgba(99, 102, 241, .12);
    --c-accent-light: rgba(99, 102, 241, .06);
    --c-white: #ffffff;
    --c-surface: #eff0f5;
    --c-text: #111827;
    --c-text-muted: #6b7280;
    --c-text-soft: #9ca3af;
    --c-placeholder: #b0b7c3;
    --c-error: #dc2626;
    --c-success: #059669;
    --c-warning: #d97706;
    --border-color: #e2e3f0;
    --border-light: #ebebf5;
    --shadow-xs: 0 1px 2px rgba(36, 59, 83, .04);
    --shadow-sm: 0 1px 4px rgba(36, 59, 83, .06);
    --shadow-md: 0 4px 16px rgba(36, 59, 83, .08);
    --shadow-lg: 0 10px 28px rgba(36, 59, 83, .12);
    --shadow-xl: 0 18px 48px rgba(36, 59, 83, .14);
    --ease: .2s ease;
    --ease-out: .2s cubic-bezier(.2, 0, 0, 1);
    --ease-spring: .38s cubic-bezier(.34, 1.56, .64, 1);

    --mkt-primary: var(--c-primary);
    --mkt-primary-700: var(--c-primary-700);
    --mkt-primary-600: var(--c-primary-600);
    --mkt-primary-500: var(--c-primary-500);
    --mkt-accent: var(--c-accent);
    --mkt-accent-hover: var(--c-accent-hover);
    --mkt-accent-soft: var(--c-accent-muted);
    --mkt-accent-light: var(--c-accent-light);
    --mkt-white: var(--c-white);
    --mkt-surface: #fcfcff;
    --mkt-surface-2: #f7f7fb;
    --mkt-text: var(--c-text);
    --mkt-text-muted: var(--c-text-muted);
    --mkt-text-soft: var(--c-text-soft);
    --mkt-border: var(--border-color);
    --mkt-border-light: var(--border-light);
    --mkt-shadow-xs: var(--shadow-xs);
    --mkt-shadow-sm: var(--shadow-sm);
    --mkt-shadow-md: var(--shadow-md);
    --mkt-shadow-lg: var(--shadow-lg);
    --mkt-radius-xl: 20px;
    --mkt-radius-lg: 16px;
    --mkt-radius-md: 14px;
    --mkt-radius-sm: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

* {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}


body.marketplace_body {
    background: #f5f5f5;
    color: var(--mkt-text);
    padding-inline: 6rem;
    font-size: 15px;
    overflow-x: hidden;
    max-width: 100vw;
}

body.marketplace_body.is-featured-products-page {
    background: #09111f;
    padding-inline: 0;
    overflow: hidden;
}

body.marketplace_body.is-smart-search-page {
    background: #09111f;
    padding-inline: 0;
    overflow: hidden;
}

.marketplace_main_shell {
    min-height: calc(100vh - 160px);
    padding-top: 58px;
}

.is-featured-products-page .marketplace_main_shell {
    min-height: 100vh;
    padding-top: 0;
}

.is-smart-search-page .marketplace_main_shell {
    min-height: 100vh;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 0;
}

.marketplace_navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
    border-bottom: 1px solid rgba(36, 59, 83, .08);
    transition: background .22s ease, box-shadow .22s ease, border-color .22s ease, backdrop-filter .22s ease;
    margin-inline: 0;
    padding-inline: 6rem;
}

.marketplace_navbar.is_scrolled {
    background: rgba(255, 255, 255, .66);
    backdrop-filter: blur(22px) saturate(165%);
    -webkit-backdrop-filter: blur(22px) saturate(165%);
    border-bottom-color: rgba(36, 59, 83, .1);
    box-shadow: var(--mkt-shadow-sm);
}

.is-featured-products-page .marketplace_navbar,
.is-smart-search-page .marketplace_navbar {
    position: fixed;
    inset: 0 0 auto;
    margin-inline: 0;
    padding-inline: 6rem;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background .22s ease, border-color .22s ease, backdrop-filter .22s ease;
}

.is-featured-products-page .marketplace_navbar.is_scrolled {
    box-shadow: none;
}

.is-smart-search-page .marketplace_navbar.is_scrolled {
    background: rgba(9, 17, 31, .52);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: none;
}

.marketplace_navbar_inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.is-featured-products-page .marketplace_navbar_inner {
    width: auto;
    min-height: 58px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.is-smart-search-page .marketplace_navbar_inner {
    width: auto;
    min-height: 58px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: background .22s ease, border-color .22s ease, backdrop-filter .22s ease;
}

.is-smart-search-page .marketplace_navbar.is_scrolled .marketplace_navbar_inner {
    position: relative;
}

.is-smart-search-page .marketplace_navbar.is_scrolled .marketplace_navbar_inner::after {
    content: '';
    position: absolute;
    inset: calc(100% + 1px) 0 auto;
    height: 24px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(9, 17, 31, .28), rgba(9, 17, 31, 0));
}

.marketplace_brand {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    text-decoration: none;
    flex-shrink: 0;
}

.marketplace_brand_mark {
    width: 39px;
    height: 36px;
    border-radius: 12px;
    background: var(--mkt-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.is-featured-products-page .marketplace_brand_mark,
.is-featured-products-page .marketplace_nav_links a.is_active,
.is-featured-products-page .marketplace_nav_join_btn {
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff;
}

.is-smart-search-page .marketplace_brand_mark,
.is-smart-search-page .marketplace_nav_links a.is_active,
.is-smart-search-page .marketplace_nav_join_btn {
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff;
}

.marketplace_brand_text {
    display: flex;
    flex-direction: column;
    gap: .12rem;
}

.marketplace_brand_text strong {
    color: var(--mkt-text);
    font-size: 1rem;
    font-weight: 600;
}

.is-featured-products-page .marketplace_brand_text strong,
.is-featured-products-page .marketplace_nav_links a,
.is-featured-products-page .marketplace_lang_btn,
.is-featured-products-page .marketplace_account_chip,
.is-featured-products-page .marketplace_nav_signin_btn {
    color: #f8fbff;
}

.is-smart-search-page .marketplace_brand_text strong,
.is-smart-search-page .marketplace_nav_links a,
.is-smart-search-page .marketplace_lang_btn,
.is-smart-search-page .marketplace_account_chip,
.is-smart-search-page .marketplace_nav_signin_btn {
    color: #f8fbff;
}

.is-featured-products-page .marketplace_account_name {
    color: rgba(255, 255, 255, .7);
}

.is-smart-search-page .marketplace_account_name {
    color: rgba(255, 255, 255, .7);
}

.is-featured-products-page .marketplace_lang_btn,
.is-featured-products-page .marketplace_account_chip,
.is-featured-products-page .marketplace_nav_signin_btn {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .14);
}

.is-smart-search-page .marketplace_lang_btn,
.is-smart-search-page .marketplace_account_chip,
.is-smart-search-page .marketplace_nav_signin_btn {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .14);
}

.marketplace_brand_mark svg {
    --aous-aw-icon-size: 1rem;
}

.marketplace_nav_links {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-inline-start: 0.5rem;
    margin-inline-end: auto;
}

.marketplace_nav_links a {
    text-decoration: none;
    font-weight: 500;
    font-size: .86rem;
    padding: .6rem .92rem;
    border-radius: 12px;
    transition: background var(--ease), color var(--ease);
}

.marketplace_nav_links a:hover,
.marketplace_nav_links a.is_active {
    background: var(--mkt-surface-2);
    color: var(--mkt-primary);
}

.marketplace_nav_actions {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.marketplace_lang_dropdown {
    position: relative;
}

.marketplace_lang_btn,
.marketplace_nav_toggle {
    min-width: 46px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    background: var(--mkt-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-primary);
    padding: 0 .75rem;
    font-size: .84rem;
    font-weight: 500;
    gap: .45rem;
    transition: border-color var(--ease), background var(--ease), color var(--ease);
}

.marketplace_lang_btn:hover {
    border-color: var(--mkt-accent);
    color: var(--mkt-accent);
    background: var(--mkt-surface-2);
}

.marketplace_lang_dropdown.is_open .marketplace_lang_btn .icon {
    transform: rotate(180deg);
}

.marketplace_lang_dropdown.is_open .marketplace_lang_btn {
    border-color: var(--mkt-accent);
    background: var(--mkt-surface-2);
    color: var(--mkt-accent);
}

.marketplace_lang_btn .icon {
    transition: transform var(--ease);
}

.marketplace_lang_btn_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: inherit;
}

.marketplace_lang_btn_icon svg {
    width: 16px;
    height: 16px;
}

.marketplace_lang_btn_code {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.marketplace_lang_menu {
    position: absolute;
    top: calc(100% + .55rem);
    inset-inline-end: 0;
    width: 240px;
    padding: .45rem;
    border: 1px solid var(--mkt-border);
    border-radius: 18px;
    background: color-mix(in srgb, var(--mkt-white) 96%, transparent);
    box-shadow: var(--mkt-shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}

.marketplace_lang_dropdown.is_open .marketplace_lang_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.marketplace_lang_option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    text-decoration: none;
    color: var(--mkt-text);
    border-radius: 12px;
    padding: .82rem .9rem;
    font-size: .84rem;
    font-weight: 500;
    transition: background var(--ease), color var(--ease);
}

.marketplace_lang_option_name {
    color: inherit;
}

.marketplace_lang_option_code {
    color: var(--mkt-text-soft);
    font-size: .72rem;
    letter-spacing: .08em;
}

.marketplace_lang_option:hover,
.marketplace_lang_option.is_active {
    background: var(--mkt-surface-2);
    color: var(--mkt-accent);
}

.marketplace_lang_option:hover .marketplace_lang_option_code,
.marketplace_lang_option.is_active .marketplace_lang_option_code {
    color: var(--mkt-accent);
}

.marketplace_lang_option:hover,
.marketplace_lang_option.is_active {
    background: var(--mkt-accent-light);
    color: var(--mkt-primary);
}

.marketplace_lang_option.is_active small {
    color: var(--mkt-accent);
}

.marketplace_nav_icon_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: var(--mkt-text);
    text-decoration: none;
    transition: background .16s, color .16s;
}

.marketplace_nav_icon_btn:hover {
    background: var(--mkt-surface);
    color: var(--mkt-accent);
}

.marketplace_nav_icon_btn .icon {
    width: 22px;
    height: 22px;
}

.marketplace_nav_icon_badge {
    position: absolute;
    top: 2px;
    inset-inline-end: 2px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: .62rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid var(--mkt-bg, #fff);
}

.marketplace_account_chip {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: var(--mkt-text);
    padding: .3rem .35rem;
    border-radius: 12px;
}

.marketplace_account_avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--mkt-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 600;
}

.marketplace_account_name {
    font-size: .9rem;
    font-weight: 500;
}

.marketplace_nav_signin_btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 1rem;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--mkt-text);
    text-decoration: none;
    border: 1px solid var(--mkt-border);
    background: transparent;
    transition: background var(--ease), color var(--ease);
}

.marketplace_nav_signin_btn:hover {
    background: var(--mkt-surface-2);
    color: var(--mkt-text);
}

.marketplace_nav_join_btn {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 1.1rem;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background: var(--mkt-accent);
    transition: background var(--ease);
}

.marketplace_nav_join_btn:hover {
    background: var(--mkt-accent-hover);
    color: #fff;
}

.marketplace_nav_cta {
    text-decoration: none;
    color: #fff;
    background: var(--mkt-primary);
    padding: .82rem 1.15rem;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 600;
    box-shadow: var(--mkt-shadow-sm);
}

.marketplace_nav_toggle {
    display: none;
}

.marketplace_mobile_menu {
    position: fixed;
    top: 72px;
    left: 1rem;
    right: 1rem;
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    pointer-events: none;
}

.marketplace_mobile_menu.is_open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.marketplace_mobile_menu_inner {
    padding: .75rem 1rem 1rem;
    display: grid;
    gap: .45rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(36, 59, 83, .08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
}

.marketplace_mobile_menu_inner a {
    text-decoration: none;
    color: var(--mkt-text);
    background: var(--mkt-white);
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    padding: .9rem 1rem;
    font-weight: 500;
}

.marketplace_mobile_menu_inner a.is_active {
    background: var(--mkt-primary);
    color: #fff;
    border-color: var(--mkt-primary);
}

.marketplace_mobile_menu_label {
    font-size: .67rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mkt-text-soft);
    padding: .3rem .25rem .1rem;
}

.marketplace_mobile_menu_divider {
    height: 1px;
    background: var(--mkt-border-light);
    margin: .15rem 0;
}

.marketplace_mobile_menu_inner .marketplace_mobile_menu_auth_btn {
    background: linear-gradient(135deg, var(--mkt-accent), var(--mkt-accent-hover));
    border-color: var(--mkt-accent);
    color: #fff;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    display: flex;
    letter-spacing: .01em;
}

.mkt_ai_fixed_btn {
    position: fixed;
    inset-inline-end: 1.35rem;
    bottom: 1.35rem;
    z-index: 103;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(99, 102, 241, .18);
    background: linear-gradient(135deg, #6a6ef6 0%, #dc67cf 100%);
    color: #fff;
    box-shadow: 0 18px 38px rgba(36, 59, 83, .24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.mkt_ai_fixed_btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 22px 44px rgba(36, 59, 83, .28);
}

.mkt_ai_fixed_btn.is_active {
    background: linear-gradient(135deg, #6a6ef6 0%, #dc67cf 100%);
    border-color: rgba(99, 102, 241, .28);
}

.mkt_ai_fixed_btn svg {
    width: 25px;
    height: 25px;
}

.mkt_page {
    padding: 0.5rem 0 2rem;
    min-height: 100vh;
}

.mkt_page_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .85rem 0 1.45rem;
    border-bottom: 1px solid var(--mkt-border-light);
}

.mkt_page_title {
    margin: 0 0 .35rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--mkt-primary);
}

.mkt_page_sub {
    margin: 0;
    color: var(--mkt-text-muted);
    font-size: .86rem;
}

.mkt_page_header_actions {
    flex-shrink: 0;
}

.mkt_search_box {
    width: min(420px, 42vw);
    display: flex;
    align-items: center;
    gap: .78rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
    border: 1.5px solid var(--mkt-border);
    border-radius: 30px;
    padding: .85rem 1rem;
    box-shadow: var(--mkt-shadow-xs);
    transition: border-color var(--ease), box-shadow var(--ease);
}

.mkt_search_box svg {
    color: var(--mkt-text-muted);
    flex-shrink: 0;
}

.mkt_search_box:focus-within {
    border-color: rgba(99, 101, 241, 0.919);
    box-shadow: unset;
}

.mkt_search_box input {
    border: 0;
    outline: none;
    background: transparent;
    width: 100%;
    color: var(--mkt-text);
    font-size: .86rem;
}

.mkt_nav_bar {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--mkt-border-light);
}

.mkt_nav_cluster {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.mkt_nav_chip {
    border: 1px solid var(--mkt-border);
    background: var(--mkt-white);
    color: var(--mkt-text-muted);
    padding: .66rem .95rem;
    border-radius: 12px;
    font-size: .82rem;
    font-weight: 500;
    transition: all var(--ease);
}

.mkt_nav_chip:hover,
.mkt_nav_chip.is_active {
    color: #fff;
    background: var(--mkt-accent);
    border-color: var(--mkt-accent);
}

.mkt_nav_dropdown {
    position: relative;
    padding: .6rem 0;
}

.mkt_nav_dropdown_btn {
    min-width: 250px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: .9rem;
    color: var(--mkt-primary);
    border-radius: 14px;
    box-shadow: var(--mkt-shadow-xs);
}

.mkt_nav_dropdown_prefix {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mkt_nav_dropdown_label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mkt_nav_dropdown_caret {
    width: 10px;
    height: 10px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--ease);
    flex-shrink: 0;
}

.mkt_nav_dropdown.is_open .mkt_nav_dropdown_caret {
    transform: rotate(225deg) translateY(-1px);
}

.mkt_nav_dropdown_menu {
    position: absolute;
    top: calc(100% + .1rem);
    left: 0;
    width: min(260px, calc(100vw - 2rem));
    max-height: 420px;
    overflow: auto;
    padding: .45rem;
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--mkt-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
    z-index: 20;
    scrollbar-width: thin;
}

.mkt_nav_dropdown.is_open .mkt_nav_dropdown_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mkt_nav_dropdown_item {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    text-align: start;
    border: 0;
    background: transparent;
    color: var(--mkt-text);
    border-radius: 14px;
    padding: .72rem .82rem;
    font-size: .81rem;
    font-weight: 500;
    transition: background var(--ease), color var(--ease);
}

.mkt_nav_dropdown_item small {
    color: var(--mkt-text-soft);
    font-size: .72rem;
}

.mkt_nav_dropdown_sublist {
    margin: 0 0 .45rem;
}

.mkt_nav_dropdown_item.is_subcat {
    min-height: 40px;
    padding: .58rem .82rem;
    font-size: .77rem;
    color: var(--mkt-text-muted);
}

.mkt_nav_dropdown_item.is_subcat span::before {
    content: '';
    width: 8px;
    height: 1px;
    background: currentColor;
    display: inline-block;
    margin-inline-end: .55rem;
    vertical-align: middle;
    opacity: .55;
}

.mkt_nav_dropdown_item:hover,
.mkt_nav_dropdown_item.is_active {
    background: var(--c-surface);
    color: var(--mkt-primary);
}

.mkt_nav_dropdown_item:hover small,
.mkt_nav_dropdown_item.is_active small {
    color: rgba(255, 255, 255, .78);
}

.mkt_view_switcher {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .25rem 0 .65rem 1rem;
    border-inline-start: 1px solid var(--mkt-border-light);
}

.mkt_view_tab {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-height: 42px;
    padding: 0 1.05rem;
    background: var(--mkt-white);
    border: 1px solid var(--mkt-border);
    color: var(--mkt-text-muted);
    border-radius: 12px;
    font-size: .82rem;
    font-weight: 500;
    transition: all var(--ease);
}

.mkt_view_tab.is_active,
.mkt_view_tab:hover {
    background: var(--mkt-accent);
    border-color: var(--mkt-accent);
    color: #fff;
}

.mkt_page_body {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-top: 1.35rem;
    min-height: 100vh;
}

.mkt_filter_sidebar {
    width: 16rem;
    min-width: 16rem;
    background: var(--mkt-white);
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius-lg);
    overflow: hidden;
    position: sticky;
    top: 5rem;
}

.mkt_filter_head {
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--mkt-border-light);
}

.mkt_filter_sidebar_handle,
.mkt_filter_sheet_close_btn,
.mkt_filter_fab,
.mkt_filter_sheet_backdrop {
    display: none;
}

.mkt_filter_sidebar_handle {
    padding: .75rem 0 .2rem;
}

.mkt_filter_sidebar_handle_bar {
    width: 3.6rem;
    height: .32rem;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(99, 102, 241, .22);
}

.mkt_filter_head_actions {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

.mkt_filter_head_title {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mkt-primary);
}

.mkt_filter_clear {
    border: 0;
    background: transparent;
    color: var(--mkt-accent);
    font-size: .72rem;
    font-weight: 500;
}

.mkt_filter_sheet_close_btn {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(99, 102, 241, .14);
    border-radius: 999px;
    background: rgba(99, 102, 241, .08);
    color: var(--mkt-primary);
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mkt_filter_sheet_close_btn svg {
    width: 1rem;
    height: 1rem;
}

.mkt_filter_section {
    padding: 0.6rem 1.2rem;
    border-bottom: 1px solid var(--mkt-border-light);
}

.mkt_filter_section:last-child {
    border-bottom: 0;
}

.mkt_filter_section_title {
    font-size: .75rem;
    font-weight: 500;
    color: var(--mkt-primary);
    margin-bottom: .5rem;
}

.mkt_range_fields {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .8rem;
}

.mkt_range_field {
    flex: 1;
    min-width: 0;
}

.mkt_range_input {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    padding: 0 1rem;
    font-size: .84rem;
    color: var(--mkt-text);
    outline: none;
    background-color: var(--c-surface);
}

.mkt_range_input:focus {
    border-color: var(--mkt-accent);
    background: #fff;
}

.mkt_range_sep {
    font-weight: 600;
    color: var(--mkt-text-muted);
}

.mkt_apply_btn {
    width: 100%;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid var(--mkt-accent);
    background: transparent;
    color: var(--mkt-accent);
    font-size: .9rem;
    font-weight: 600;
    transition: all var(--ease);
}

.mkt_apply_btn:hover {
    background: var(--mkt-accent);
    color: #fff;
}

.mkt_filter_chips {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.mkt_filter_chip {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    border: 1px solid var(--mkt-border);
    background: var(--c-surface);
    color: var(--mkt-text);
    border-radius: 12px;
    padding: .5rem .85rem;
    font-size: .76rem;
    font-weight: 500;
    transition: all var(--ease);
}

.mkt_filter_chip:hover,
.mkt_filter_chip.is_active {
    background: var(--mkt-primary);
    border-color: var(--mkt-primary);
    color: #fff;
}

.mkt_chip_hidden {
    display: none !important;
}

.mkt_filter_show_more {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    margin-top: .35rem;
    padding: 0;
    background: none;
    border: none;
    color: var(--mkt-primary);
    font-size: .8rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.mkt_filter_show_more:hover { opacity: .75; }

.mkt_content_area {
    flex: 1;
    min-width: 0;
}

.mkt_content_topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

.mkt_filter_sheet_backdrop {
    position: fixed;
    inset: 0;
    background: rgba(9, 17, 31, .38);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
    z-index: 1200;
}

.mkt_filter_sheet_backdrop.is_open {
    opacity: 1;
    pointer-events: auto;
}

.mkt_filter_fab {
    position: fixed;
    left: 50%;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    gap: .65rem;
    min-height: 3.35rem;
    padding: 0 1.2rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    font-size: .94rem;
    font-weight: 600;
    z-index: 120;
    transition: opacity .22s ease, transform .22s ease;
}

.mkt_filter_fab svg {
    width: 1.05rem;
    height: 1.05rem;
}

.mkt_filter_fab_badge {
    min-width: 1.3rem;
    height: 1.3rem;
    padding: 0 .28rem;
    border-radius: 999px;
    background: #fff;
    color: #4f46e5;
    font-size: .72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mkt_export_bar {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.mkt_export_btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border: 1px solid var(--mkt-border);
    background: #fff;
    border-radius: 10px;
    min-height: 40px;
    padding: 0 .85rem;
    font-size: .74rem;
    font-weight: 500;
    color: var(--mkt-primary);
}

.mkt_export_count {
    margin-inline-start: auto;
    color: var(--mkt-text-muted);
    font-size: .76rem;
    font-weight: 500;
}

.mkt_sort_select {
    min-width: 220px;
    min-height: 46px;
    border-radius: 12px;
    border-color: var(--mkt-border);
    font-size: .84rem;
}

.mkt_product_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.mkt_product_card {
    border: 1px solid var(--mkt-border-light);
    border-radius: 18px;
    overflow: hidden;
    background: var(--c-white);
    box-shadow: 0 1px 4px rgba(13, 27, 42, .05), 0 4px 16px rgba(13, 27, 42, .04);
    transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mkt_product_card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, .2);
    box-shadow: 0 20px 44px rgba(99, 102, 241, .1), 0 8px 20px rgba(15, 23, 42, .07);
}

.mkt_product_card:focus-within {
    border-color: rgba(99, 102, 241, .22);
}

.mkt_product_card_image_link {
    display: block;
    text-decoration: none;
}

.mkt_product_card_image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.mkt_product_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_product_card_placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafaff;
}

.mkt_product_card_placeholder svg {
    width: 46px;
    height: 46px;
    stroke-width: 1.2;
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, .1));
}

.mkt_product_pip {
    position: absolute;
    top: .85rem;
    left: .85rem;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 .8rem;
    border-radius: 12px;
    font-size: .78rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.mkt_product_pip.pip_in {
    background: rgba(5, 150, 105, .12);
    color: var(--c-success);
}

.mkt_product_pip.pip_low {
    background: rgba(99, 102, 241, .12);
    color: var(--mkt-accent);
}

.mkt_product_pip.pip_out {
    background: rgba(220, 38, 38, .12);
    color: var(--c-error);
}

.mkt_product_pip.pip_wait {
    background: rgba(107, 114, 128, .12);
    color: var(--mkt-text-muted);
}

.mkt_product_card_body {
    padding: 1rem 1.05rem 1.1rem;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.mkt_product_card_category {
    font-size: .76rem;
    font-weight: 500;
    color: var(--mkt-accent);
    margin-bottom: .6rem;
}

.mkt_product_card_title {
    margin: 0 0 .55rem;
    font-size: .94rem;
    min-height: 3.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mkt_product_card_title a {
    text-decoration: none;
    color: var(--mkt-primary);
}

.mkt_product_card_specs {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem;
    color: var(--mkt-text-muted);
    font-size: .78rem;
    min-height: 2.25rem;
    align-content: flex-start;
}

.mkt_product_card_specs span:not(:last-child)::after {
    content: '|';
    margin-inline-start: .32rem;
    color: var(--mkt-text-soft);
}

.mkt_product_card_seller {
    color: var(--mkt-text-muted);
    font-size: .78rem;
    margin-top: .55rem;
    min-height: 1.45rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mkt_product_card_footer {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid var(--mkt-border-light);
}

.mkt_product_card_price {
    color: var(--mkt-accent);
    font-size: 1rem;
    font-weight: 600;
}

.mkt_product_card_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 12px;
    width: 100%;
    background: linear-gradient(135deg, #243b53, #2f4964);
    color: #fff;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.mkt_product_card_btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(36, 59, 83, .18);
    background: linear-gradient(135deg, #2b4662, #365473);
    color: #fff;
    text-decoration: none;
}

.mkt_pagination_shell {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 0 0;
}

.mkt_pagination_mobile {
    width: 100%;
}

.mkt_pagination_info {
    display: inline-flex;
    align-items: center;
    padding: .85rem 1.1rem;
    border: 1px solid rgba(99, 102, 241, .1);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(245, 247, 255, .96));
}

.mkt_pagination_info p {
    color: #6b7280;
    font-size: .95rem;
}

.mkt_pagination_info span {
    color: #111827;
    font-weight: 600;
}

.mkt_pagination_track_wrap {
    display: flex;
    justify-content: flex-end;
    flex: 1 1 auto;
}

.mkt_pagination_list {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    margin: 0;
    padding: .55rem;
    border: 1px solid rgba(99, 102, 241, .1);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(243, 245, 255, .98));
    list-style: none;
    margin-top: 0 !important;
}

.mkt_pagination_list .page-item {
    margin: 0;
}

.mkt_pagination_list .page-link {
    border: 0;
    background: transparent;
    min-width: 32px;
    height: 32px;
    padding: 0 .85rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #667085;
    font-size: .85rem;
    font-weight: 600;
    box-shadow: none;
    text-decoration: none;
    transition: transform var(--ease), color var(--ease), background var(--ease), box-shadow var(--ease);
}

.mkt_pagination_page:hover,
.mkt_pagination_arrow:hover,
.mkt_pagination_nav:hover {
    color: #4f46e5;
    background: rgba(99, 102, 241, .08);
    transform: translateY(-1px);
}

.mkt_pagination_list .page-item.active .page-link {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    box-shadow: 0 14px 26px rgba(99, 102, 241, .25);
}

.mkt_pagination_list .page-item.disabled .page-link {
    color: #c0c8d6;
    background: transparent;
    pointer-events: none;
}

.mkt_pagination_arrow {
    min-width: 48px;
    color: #5b6474;
}

.mkt_pagination_ellipsis .page-link {
    min-width: 28px;
    padding: 0 .15rem;
}

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

.mkt_pagination_mobile_status .page-link {
    min-width: 74px;
    font-weight: 600;
    color: #4f46e5;
    background: rgba(99, 102, 241, .08);
}

.mkt_pagination_shell_compact {
    padding-top: .5rem;
}

.mkt_pagination_list_compact {
    gap: .4rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mkt_pagination_list_compact .page-link {
    min-width: 42px;
    height: 42px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #667085;
    background: transparent;
}

.mkt_pagination_list_compact .mkt_pagination_page:hover,
.mkt_pagination_list_compact .mkt_pagination_arrow:hover,
.mkt_pagination_list_compact .mkt_pagination_nav:hover {
    color: #4f46e5;
    background: rgba(99, 102, 241, .08);
    border-color: rgba(99, 102, 241, .14);
    box-shadow: none;
}

.mkt_pagination_list_compact .page-item.active .page-link {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
    box-shadow: none;
}

.mkt_pagination_list_compact .page-item.disabled .page-link {
    color: #c7cfdb;
    background: transparent;
    border-color: transparent;
}

.mkt_table_wrap {
    background: var(--mkt-white);
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    overflow: auto;
}

.mkt_products_table {
    width: 100%;
    border-collapse: collapse;
}

.mkt_products_table thead th {
    background: var(--c-surface);
    padding: .65rem 1rem;
    text-align: start;
    font-size: .67rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-text-muted);
    border-bottom: 1px solid var(--c-border);
    white-space: nowrap;
}

.mkt_products_table tbody td {
    padding: .6rem 1rem;
    border-bottom: 1px solid var(--mkt-border-light);
    vertical-align: middle;
    color: var(--mkt-text);
    font-size: .84rem;
}

.mkt_products_table tbody tr:last-child td {
    border-bottom: 0;
}

.mkt_products_table tbody tr:hover {
    background: #fcfcff;
}

.mkt_tbl_product {
    display: flex;
    align-items: center;
    gap: .9rem;
    min-width: 260px;
}

.mkt_tbl_thumb,
.mkt_tbl_thumb_placeholder {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--mkt-surface-2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_tbl_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_tbl_name {
    font-weight: 500;
    color: var(--mkt-primary);
    font-size: .9rem;
}

.mkt_tbl_meta {
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
    color: var(--mkt-text-muted);
    font-size: .72rem;
    margin-top: .2rem;
}

.mkt_tbl_meta span:not(:last-child)::after {
    content: '|';
    margin-inline-start: .25rem;
}

.mkt_tbl_badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 12px;
    padding: 0 .75rem;
    background: var(--mkt-accent-light);
    color: var(--mkt-accent);
    font-size: .72rem;
    font-weight: 500;
}

.mkt_tbl_price {
    color: var(--mkt-primary);
    font-weight: 600;
    white-space: nowrap;
}

.mkt_tbl_action_cell {
    width: 120px;
}

.mkt_tbl_action_btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--mkt-primary);
    background: var(--mkt-white);
}

html[dir="rtl"] .mkt_tbl_action_btn svg {
    rotate: 180deg;
}

.mkt_empty {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--mkt-white);
    border: 1px solid var(--mkt-border);
    border-radius: var(--mkt-radius-lg);
}

.mkt_empty_marketplace {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mkt_empty_icon {
    color: var(--mkt-text-soft);
    margin-bottom: 1rem;
}

.mkt_empty_title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--mkt-primary);
    margin-bottom: .35rem;
}

.mkt_empty_desc {
    color: var(--mkt-text-muted);
    font-size: .82rem;
}

.mkt_detail_page {
    max-width: 1180px;
    margin: 1rem auto;
    padding: 1rem 2rem;
    background-color: white;
    border-radius: 12px;
}

.mkt_detail_top_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.mkt_back_btn,
.mkt_share_btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 42px;
    padding: 0 0.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 500;
}

.mkt_back_btn {
    color: var(--mkt-text-muted);
    border: 1px solid var(--mkt-border);
    background: var(--mkt-white);
}

.mkt_share_btn {
    background: transparent;
    border: 1px solid var(--mkt-accent);
    color: var(--mkt-accent);
    min-height: 38px;
}

.mkt_breadcrumb {
    display: flex;
    align-items: center;
    gap: .45rem;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
    color: var(--mkt-text-muted);
    font-size: .82rem;
}

.mkt_breadcrumb a {
    color: var(--mkt-text-muted);
    text-decoration: none;
}

.mkt_breadcrumb strong {
    color: var(--mkt-primary);
}

.mkt_detail_body {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: 2.35rem;
    align-items: flex-start;
}

.mkt_detail_gallery,
.mkt_detail_info,
.mkt_detail_section {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.mkt_detail_gallery {
    padding: 0;
}

.mkt_detail_stage {
    position: relative;
    background: var(--c-surface);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_detail_main_img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.mkt_detail_placeholder {
    color: var(--mkt-text-soft);
}

.mkt_detail_placeholder svg {
    --aous-aw-icon-size: 5.25rem;
}

.mkt_detail_stock_badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 .85rem;
    border-radius: 12px;
    font-size: .76rem;
    font-weight: 500;
}

.mkt_detail_stock_badge.is_in_stock {
    background: rgba(5, 150, 105, .12);
    color: var(--c-success);
}

.mkt_detail_stock_badge.is_limited {
    background: rgba(99, 102, 241, .12);
    color: var(--mkt-accent);
}

.mkt_detail_stock_badge.is_out_of_stock {
    background: rgba(220, 38, 38, .12);
    color: var(--c-error);
}

.mkt_detail_stock_badge.is_on_request {
    background: rgba(107, 114, 128, .12);
    color: var(--mkt-text-muted);
}

.mkt_detail_thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: .9rem;
}

.mkt_detail_thumb {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    background: var(--mkt-surface-2);
}

.mkt_detail_thumb.is_active {
    border-color: var(--mkt-accent);
}

.mkt_detail_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_detail_info {
    padding: .35rem 0 0;
}

.mkt_detail_kicker {
    color: var(--mkt-accent);
    font-size: .75rem;
    font-weight: 500;
    margin-bottom: .9rem;
}

.mkt_detail_title {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    color: var(--mkt-primary);
    font-weight: 600;
}

.mkt_detail_meta {
    margin: 0 0 0.5rem;
    color: var(--mkt-text-muted);
    font-size: .84rem;
}

.mkt_detail_price_block {
    margin-bottom: 1.25rem;
}

.mkt_detail_price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--mkt-accent);
    margin-bottom: .5rem;
}

.mkt_detail_stock_line {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 .9rem;
    border-radius: 12px;
    background: var(--mkt-accent-light);
    color: var(--mkt-accent);
    font-size: .76rem;
    font-weight: 500;
}

.mkt_detail_spec_chips {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.3rem;
}

.mkt_detail_spec_chip {
    border: 1px solid var(--mkt-border);
    background: var(--c-surface);
    border-radius: 14px;
    padding: .65rem 1rem;
    min-width: 140px;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}

.mkt_detail_spec_chip:hover {
    border-color: var(--mkt-accent);
    box-shadow: 0 4px 14px rgba(99, 102, 241, .08);
    transform: translateY(-1px);
}

.mkt_detail_spec_chip span {
    display: block;
    color: var(--mkt-accent);
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .3rem;
}

html[dir="rtl"] .mkt_detail_spec_chip span {
    font-size: .68rem;
}

.mkt_detail_spec_chip strong {
    display: block;
    color: var(--mkt-primary);
    font-size: .88rem;
    font-weight: 600;
}

html[dir="rtl"] .mkt_detail_spec_chip strong {
    font-size: .92rem;
}

/* ── Video badge ─────────────────────────────────────── */
.mkt_detail_video_badge {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .85rem 1.1rem;
    margin-bottom: 1.3rem;
    border-radius: 16px;
    background: linear-gradient(135deg,
            color-mix(in srgb, var(--mkt-accent) 8%, transparent),
            color-mix(in srgb, var(--mkt-accent) 4%, transparent));
    border: 1.5px solid color-mix(in srgb, var(--mkt-accent) 22%, transparent);
    text-decoration: none;
    transition: border-color .18s, box-shadow .18s, transform .18s;
}

.mkt_detail_video_badge:hover {
    border-color: var(--mkt-accent);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--mkt-accent) 14%, transparent);
    transform: translateY(-1px);
}

.mkt_detail_video_badge_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--mkt-accent);
    color: #fff;
    flex-shrink: 0;
}

.mkt_detail_video_badge_icon .icon {
    width: 20px;
    height: 20px;
}

.mkt_detail_video_badge_text {
    flex: 1;
    min-width: 0;
}

.mkt_detail_video_badge_text strong {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin-bottom: .15rem;
}

.mkt_detail_video_badge_text span {
    font-size: .75rem;
    color: var(--mkt-accent);
    font-weight: 600;
}

.mkt_detail_video_badge_cta {
    color: var(--mkt-accent);
    flex-shrink: 0;
    opacity: .7;
    transition: opacity .15s;
}

.mkt_detail_video_badge:hover .mkt_detail_video_badge_cta {
    opacity: 1;
}

.mkt_detail_actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
    margin-bottom: 1.3rem;
}

.mkt_detail_primary_btn,
.mkt_detail_secondary_btn {
    min-height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 600;
}

.mkt_detail_primary_btn {
    background: var(--mkt-accent);
    border: 1px solid var(--mkt-accent);
    color: #fff;
}

.mkt_detail_secondary_btn {
    background: var(--mkt-white);
    color: var(--mkt-primary);
    border: 1px solid var(--mkt-border);
}

.mkt_detail_codes {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.3rem;
}

.mkt_detail_code_tag {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 40px;
    padding: 0 .9rem;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    background: var(--c-surface);
    color: var(--mkt-primary);
    font-size: .8rem;
    font-weight: 500;
}

.mkt_detail_code_tag em {
    font-style: normal;
    color: var(--mkt-text-muted);
    font-size: .64rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mkt_detail_seller {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--mkt-border-light);
    background: var(--c-surface);
    padding: 1rem;
    border-radius: 12px;
}

.mkt_detail_seller_avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--mkt-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.mkt_detail_seller_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_detail_seller_text strong {
    display: block;
    color: var(--mkt-primary);
    font-size: .9rem;
    font-weight: 500;
}

.mkt_detail_seller_text span {
    display: block;
    color: var(--mkt-text-muted);
    font-size: .78rem;
    margin-top: .15rem;
}

.mkt_detail_visit_store_btn {
    display: inline-flex;
    align-items: center;
    margin-inline-start: auto;
    height: 32px;
    padding: 0 .9rem;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--mkt-accent);
    text-decoration: none;
    border: 1px solid var(--mkt-accent-soft);
    background: var(--mkt-accent-light);
    white-space: nowrap;
    transition: background var(--ease), border-color var(--ease);
}

.mkt_detail_visit_store_btn:hover {
    background: var(--mkt-accent-soft);
    border-color: var(--mkt-accent);
    color: var(--mkt-accent);
}

.mkt_detail_section {
    margin-top: 1.6rem;
    padding: 1.4rem 0 0;
    border-top: 1px solid var(--mkt-border-light);
}

.mkt_detail_section_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.mkt_detail_section_head_group {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.mkt_detail_section_head_icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--mkt-accent-light);
    color: var(--mkt-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mkt_detail_section_head h2 {
    margin: 0;
    color: var(--mkt-primary);
    font-size: 1.05rem;
    font-weight: 500;
}

.mkt_detail_section_head span {
    min-width: 30px;
    height: 30px;
    border-radius: 12px;
    background: var(--mkt-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .74rem;
    font-weight: 500;
}

.mkt_detail_description {
    white-space: pre-wrap;
    color: var(--mkt-text-muted);
    font-size: .84rem;
}

.mkt_detail_data_list {
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(249, 250, 255, .92) 100%);
}

.mkt_detail_data_row {
    display: grid;
    grid-template-columns: 74px minmax(180px, 280px) 1fr;
    align-items: stretch;
    background: var(--mkt-white);
}

.mkt_detail_data_row+.mkt_detail_data_row {
    border-top: 1px solid var(--mkt-border-light);
}

.mkt_detail_data_index,
.mkt_detail_data_key,
.mkt_detail_data_value {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.mkt_detail_data_index {
    justify-content: center;
    color: var(--mkt-accent);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .06em;
    background: linear-gradient(180deg, rgba(244, 245, 255, .96) 0%, rgba(250, 250, 255, .92) 100%);
}

.mkt_detail_data_key {
    color: #556275;
    font-weight: 600;
    font-size: .82rem;
    border-inline-start: 1px solid var(--mkt-border-light);
}

.mkt_detail_data_value {
    color: var(--mkt-primary);
    font-weight: 600;
    border-inline-start: 1px solid var(--mkt-border-light);
    font-size: .84rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(250, 251, 255, .9) 100%);
}

.mkt_detail_specs_table {
    margin: 0;
    border: 1px solid var(--mkt-border);
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(249, 250, 255, .92) 100%);
}

.mkt_detail_specs_table tbody tr+tr td {
    border-top: 1px solid var(--mkt-border-light);
}

.mkt_detail_specs_table td {
    padding: .6rem 1rem;
    vertical-align: middle;
    background: transparent;
}

.mkt_detail_specs_key {
    width: 34%;
    color: #556275;
    font-weight: 600;
}

.mkt_detail_specs_value {
    color: var(--mkt-primary);
    font-weight: 700;
}

.mkt_attached_videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
}

.mkt_attached_video_card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--mkt-border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.mkt_attached_video_wrap {
    background: #000;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_attached_video_wrap .plyr,
.mkt_attached_video_wrap video {
    width: 100%;
    height: 100%;
    display: block;
}

.mkt_attached_video_wrap video {
    object-fit: contain;
}

.mkt_attached_video_card .plyr {
    --plyr-color-main: var(--mkt-accent);
}

.mkt_attached_video_title {
    padding: .7rem .85rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--mkt-primary);
    border-top: 1px solid var(--mkt-border-light);
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(248, 249, 255, .92) 100%);
}

.mkt_related_grid {
    display: grid;
    gap: 1rem;
}

.mkt_sheet_file_switcher {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-bottom: 1rem;
}

.mkt_sheet_file_btn {
    min-width: 220px;
    max-width: 100%;
    padding: .8rem .95rem;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    background: var(--mkt-white);
    color: var(--mkt-primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .22rem;
    cursor: pointer;
    transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.mkt_sheet_file_btn strong {
    font-size: .79rem;
    font-weight: 600;
    color: inherit;
}

.mkt_sheet_file_btn span {
    font-size: .71rem;
    color: var(--mkt-text-muted);
}

.mkt_sheet_file_btn:hover,
.mkt_sheet_file_btn.is_active {
    border-color: rgba(99, 102, 241, .28);
    background: rgba(99, 102, 241, .04);
    box-shadow: var(--mkt-shadow-xs);
}

.mkt_sheet_viewer {
    margin-top: 1.35rem;
    border: 1px solid #d7dfd9;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(246, 249, 246, .96) 0%, rgba(255, 255, 255, .96) 100%);
    box-shadow: 0 28px 50px rgba(24, 39, 29, .08);
    overflow: hidden;
}

.mkt_sheet_toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, #f7faf7 0%, #eef8f2 100%);
    border-bottom: 1px solid #dce8de;
}

.mkt_sheet_toolbar_title {
    display: flex;
    align-items: center;
    gap: .85rem;
    color: #204830;
}

.mkt_sheet_toolbar_title svg {
    --aous-aw-icon-size: 1.15rem;
}

.mkt_sheet_toolbar_title strong,
.mkt_sheet_toolbar_title span {
    display: block;
}

.mkt_sheet_toolbar_title strong {
    font-size: .9rem;
    font-weight: 600;
}

.mkt_sheet_toolbar_title span {
    font-size: .72rem;
    color: #5b6f61;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .15rem;
}

.mkt_sheet_toolbar_actions {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.mkt_sheet_toolbar_btn {
    min-width: 110px;
    height: 42px;
    padding: 0 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #89ebac 0%, #8af3b0 100%);
    color: #173822;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--ease), filter var(--ease), border-color var(--ease);
}

.mkt_sheet_toolbar_btn:hover {
    filter: brightness(.98);
    transform: translateY(-1px);
}

.mkt_sheet_toolbar_btn.is_muted {
    min-width: 94px;
    background: var(--mkt-white);
    border-color: #d7dfd9;
    color: #53675a;
}

.mkt_sheet_tabs {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .75rem .95rem 0;
    background: #f2f4f2;
    overflow-x: auto;
}

.mkt_sheet_tab {
    height: 40px;
    padding: 0 1rem;
    border-radius: 12px 12px 0 0;
    border: 1px solid transparent;
    border-bottom: none;
    background: transparent;
    color: #68796d;
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.mkt_sheet_tab:hover,
.mkt_sheet_tab.is_active {
    background: #fff;
    color: #205336;
    border-color: #d7dfd9;
}

.mkt_sheet_surface {
    background: #fff;
}

.mkt_sheet_formula_bar {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    border-top: 1px solid #d7dfd9;
    border-bottom: 1px solid #d7dfd9;
    background: #fafcf9;
}

.mkt_sheet_formula_bar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-size: .86rem;
    font-weight: 600;
    color: #2c6f46;
    border-inline-end: 1px solid #d7dfd9;
}

.mkt_sheet_formula_bar div {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: #5f6f63;
    font-size: .78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_sheet_loading,
.mkt_sheet_empty {
    padding: 2.25rem 1.5rem;
    color: #66756a;
    text-align: center;
    font-size: .84rem;
}

.mkt_sheet_grid_shell {
    overflow: auto;
    max-height: 760px;
    background:
        linear-gradient(90deg, rgba(229, 235, 230, .4) 1px, transparent 1px),
        linear-gradient(rgba(229, 235, 230, .42) 1px, transparent 1px);
    background-size: 108px 100%, 100% 34px;
}

.mkt_sheet_grid {
    border-collapse: separate;
    border-spacing: 0;
    min-width: 100%;
    table-layout: fixed;
    font-size: .82rem;
}

.mkt_sheet_corner,
.mkt_sheet_col_head,
.mkt_sheet_row_head {
    position: sticky;
    z-index: 3;
    background: #f3f6f2;
    color: #5a6f60;
    font-weight: 600;
}

.mkt_sheet_corner {
    inset-inline-start: 0;
    top: 0;
    width: 56px;
    min-width: 56px;
    border-inline-end: 1px solid #d7dfd9;
    border-bottom: 1px solid #d7dfd9;
}

.mkt_sheet_col_head {
    top: 0;
    min-width: 128px;
    height: 38px;
    padding: 0 .75rem;
    text-align: center;
    border-bottom: 1px solid #d7dfd9;
    border-inline-end: 1px solid #e5ebe6;
}

.mkt_sheet_row_head {
    inset-inline-start: 0;
    width: 56px;
    min-width: 56px;
    height: 34px;
    text-align: center;
    border-inline-end: 1px solid #d7dfd9;
    border-bottom: 1px solid #e5ebe6;
}

.mkt_sheet_cell {
    min-width: 128px;
    height: 34px;
    padding: .42rem .72rem;
    border-bottom: 1px solid #e5ebe6;
    border-inline-end: 1px solid #e5ebe6;
    color: #1d2d24;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(255, 255, 255, .92);
}

.mkt_sheet_cell.is_numeric {
    text-align: end;
    font-variant-numeric: tabular-nums;
}

.mkt_sheet_cell.is_empty {
    background: rgba(251, 252, 251, .88);
}

.mkt_price_tiers_table {
    display: grid;
    gap: .7rem;
}

.mkt_tier_row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    border: 1px solid var(--mkt-border);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    background: var(--c-surface);
    color: var(--mkt-text-muted);
    font-weight: 500;
    font-size: .82rem;
}

.mkt_tier_row strong {
    color: var(--mkt-accent);
    text-align: end;
}

.mkt_related_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mkt_related_card {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--mkt-border);
    border-radius: 18px;
    background: #f0f0f5;
    padding: .95rem;
    text-decoration: none;
}

.mkt_related_thumb,
.mkt_related_placeholder {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--mkt-surface-2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_related_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_related_body span {
    display: block;
    color: var(--mkt-accent);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .45rem;
}

.mkt_related_body strong {
    display: block;
    color: var(--mkt-primary);
    font-size: .88rem;
    font-weight: 600;
    margin-bottom: .35rem;
}

.mkt_related_body em {
    font-style: normal;
    color: var(--mkt-accent);
    font-size: .84rem;
    font-weight: 500;
}


.mkt_inquiry_sheet {
    position: fixed;
    inset: 0;
    z-index: 150;
    pointer-events: none;
}

.mkt_inquiry_sheet_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .4);
    opacity: 0;
    transition: opacity var(--ease);
}

.mkt_inquiry_sheet_panel {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    margin: 0 auto;
    width: min(890px, calc(100vw - 20px));
    max-height: 90vh;
    background: #fff;
    border-radius: 24px 24px 0 0;
    border: 1px solid var(--mkt-border-light);
    border-bottom: none;
    transform: translateY(104%);
    transition: transform var(--ease-spring);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -8px 48px rgba(15, 23, 42, .12);
}

.mkt_inquiry_sheet.is_open {
    pointer-events: auto;
}

.mkt_inquiry_sheet.is_open .mkt_inquiry_sheet_backdrop {
    opacity: 1;
}

.mkt_inquiry_sheet.is_open .mkt_inquiry_sheet_panel {
    transform: translateY(0);
}

body.mkt_inquiry_open {
    overflow: hidden;
}


.mkt_inq_sticky {
    flex-shrink: 0;
    background: #fff;
    border-bottom: 1px solid var(--mkt-border-light);
    padding: .9rem 1.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 2;
}

.mkt_inquiry_sheet_handle {
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: var(--mkt-border);
    margin: 0 auto .85rem;
}

.mkt_msg_trigger_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    position: relative;
}

.mkt_msg_trigger_badge {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: #fff;
    color: var(--mkt-accent);
    font-size: .72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mkt_msg_sheet {
    position: fixed;
    inset: 0;
    z-index: 155;
    pointer-events: none;
}

.mkt_msg_sheet_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .44);
    opacity: 0;
    transition: opacity var(--ease);
}

.mkt_msg_sheet_panel {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    margin: 0 auto;
    width: min(760px, calc(100vw - 24px));
    height: min(78vh, 760px);
    background: #fff;
    border: 1px solid var(--mkt-border-light);
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -18px 60px rgba(15, 23, 42, .18);
    transform: translateY(104%);
    transition: transform var(--ease-spring);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mkt_msg_sheet.is_open {
    pointer-events: auto;
}

.mkt_msg_sheet.is_open .mkt_msg_sheet_backdrop {
    opacity: 1;
}

.mkt_msg_sheet.is_open .mkt_msg_sheet_panel {
    transform: translateY(0);
}

body.mkt_msg_sheet_open {
    overflow: hidden;
}

.mkt_msg_sheet_head {
    flex-shrink: 0;
    padding: .95rem 1.1rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--mkt-border-light);
}

.mkt_msg_sheet_handle {
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: var(--mkt-border);
    margin: 0 auto .85rem;
}

.mkt_msg_sheet_head_row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.mkt_msg_sheet_identity {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 0;
}

.mkt_msg_sheet_avatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--mkt-surface-2);
    color: var(--mkt-accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_msg_sheet_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_msg_sheet_identity_body {
    min-width: 0;
}

.mkt_msg_sheet_kicker {
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mkt-accent);
    font-weight: 600;
    margin-bottom: .12rem;
}

.mkt_msg_sheet_name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mkt-primary);
    line-height: 1.25;
}

.mkt_msg_sheet_sub {
    font-size: .82rem;
    color: var(--mkt-muted);
    margin-top: .12rem;
}

.mkt_msg_sheet_head_actions {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex-shrink: 0;
}

.mkt_msg_auto_reply_chip,
.mkt_msg_open_link {
    height: 34px;
    padding: 0 .8rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.mkt_msg_auto_reply_chip {
    background: rgba(99, 102, 241, .1);
    color: var(--mkt-accent);
}

.mkt_msg_open_link {
    background: var(--mkt-surface-2);
    color: var(--mkt-primary);
    border: 1px solid var(--mkt-border-light);
}

.mkt_msg_sheet_close_btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--mkt-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mkt_msg_auto_reply_note {
    margin-top: .8rem;
    padding: .7rem .85rem;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--mkt-muted);
    font-size: .8rem;
    border: 1px solid var(--mkt-border-light);
}

.mkt_msg_sheet_body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 1rem 1rem 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.mkt_msg_thread {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.mkt_msg_row {
    display: flex;
}

.mkt_msg_row.is_mine {
    justify-content: flex-end;
}

.mkt_msg_row.is_other {
    justify-content: flex-start;
}

.mkt_msg_bubble {
    max-width: min(82%, 520px);
    border-radius: 18px;
    padding: .82rem .95rem .75rem;
}

.mkt_msg_bubble.is_mine {
    background: linear-gradient(135deg, var(--mkt-accent) 0%, #4f46e5 100%);
    color: #fff;
    border-bottom-right-radius: 8px;
}

.mkt_msg_bubble.is_other {
    background: #fff;
    color: var(--mkt-primary);
    border: 1px solid var(--mkt-border-light);
    border-bottom-left-radius: 8px;
}

.mkt_msg_auto_tag {
    display: inline-flex;
    margin-bottom: .45rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, .1);
    color: var(--mkt-accent);
    font-size: .68rem;
    font-weight: 600;
}

.mkt_msg_text {
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.5;
    font-size: .9rem;
}

.mkt_msg_time {
    margin-top: .4rem;
    font-size: .7rem;
    opacity: .72;
    text-align: end;
}

.mkt_msg_empty {
    margin: auto;
    max-width: 320px;
    text-align: center;
    padding: 2.5rem 1rem;
}

.mkt_msg_empty_title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin-bottom: .35rem;
}

.mkt_msg_empty_desc {
    font-size: .84rem;
    color: var(--mkt-muted);
}

.mkt_msg_sheet_foot {
    flex-shrink: 0;
    padding: .9rem 1rem 1rem;
    border-top: 1px solid var(--mkt-border-light);
    background: #fff;
}

.mkt_msg_compose_wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .75rem;
    align-items: center;
}

.mkt_msg_compose_input {
    min-height: 50px;
    border-radius: 16px;
    border: 1px solid var(--mkt-border-light);
    padding: 0 1rem;
    font-size: .92rem;
    outline: none;
}

.mkt_msg_compose_btn {
    min-height: 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 0 1rem;
    border: none;
    background: linear-gradient(135deg, var(--mkt-accent) 0%, #4f46e5 100%);
    color: #fff;
    font-weight: 600;
}

.mkt_msg_error {
    color: #dc2626;
    font-size: .8rem;
    margin-top: .55rem;
}

.mkt_inq_head_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mkt_inq_product_mini {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
}

.mkt_inq_product_thumb {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--mkt-surface-2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mkt-border-light);
}

.mkt_inq_product_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_inq_kicker {
    font-size: .63rem;
    font-weight: 600;
    color: var(--mkt-accent);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .15rem;
}

.mkt_inq_product_name {
    font-size: .875rem;
    font-weight: 500;
    color: var(--mkt-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 500px;
}

.mkt_inquiry_close_btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid var(--mkt-border-light);
    background: var(--mkt-surface-2);
    color: var(--mkt-text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background var(--ease), color var(--ease);
}

.mkt_inquiry_close_btn:hover {
    background: var(--mkt-border);
    color: var(--mkt-primary);
}


.mkt_inq_body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem 2rem;
    -webkit-overflow-scrolling: touch;
}


.mkt_inq_smart_bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .65rem;
    margin-bottom: 1rem;
}

.mkt_inq_smart_item {
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border-light);
    border-radius: 14px;
    padding: .8rem 1rem;
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    column-gap: .75rem;
    row-gap: .08rem;
    align-items: center;
}

.mkt_inq_smart_item.is_accent {
    background: linear-gradient(135deg, color-mix(in srgb, var(--mkt-accent) 7%, #fff), #fff);
    border-color: color-mix(in srgb, var(--mkt-accent) 22%, var(--mkt-border-light));
}

.mkt_inq_smart_icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--mkt-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-text-muted);
    align-self: center;
    flex-shrink: 0;
}

.mkt_inq_smart_item.is_accent .mkt_inq_smart_icon {
    background: color-mix(in srgb, var(--mkt-accent) 12%, #fff);
    color: var(--mkt-accent);
}

.mkt_inq_smart_label {
    grid-column: 2;
    grid-row: 1;
    font-size: .63rem;
    color: var(--mkt-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.mkt_inq_smart_value {
    grid-column: 2;
    grid-row: 2;
    font-size: .88rem;
    font-weight: 600;
    color: var(--mkt-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_inq_smart_item.is_accent .mkt_inq_smart_value {
    color: var(--mkt-accent);
}


.mkt_inq_tiers_note {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem .9rem;
    border-radius: 10px;
    background: color-mix(in srgb, var(--mkt-accent) 6%, #fff);
    border: 1px solid color-mix(in srgb, var(--mkt-accent) 18%, var(--mkt-border-light));
    font-size: .775rem;
    color: var(--mkt-accent);
    font-weight: 500;
    margin-bottom: 1rem;
}


.mkt_inq_suggestions {
    margin-bottom: 1.1rem;
}

.mkt_inq_suggestions_label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .5rem;
}

.mkt_inquiry_suggestion_list {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.mkt_inquiry_suggestion_btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    height: 34px;
    padding: 0 .85rem;
    border-radius: 999px;
    border: 1px solid var(--mkt-border);
    background: var(--mkt-surface-2);
    color: var(--mkt-primary);
    font-size: .76rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--ease);
}

.mkt_inquiry_suggestion_btn:hover,
.mkt_inquiry_suggestion_btn.is_active {
    border-color: var(--mkt-accent);
    background: var(--mkt-accent);
    color: #fff;
    transform: translateY(-1px);
}


.mkt_inq_form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-bottom: 1rem;
}

.mkt_inq_field {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border-light);
    border-radius: 14px;
    padding: .75rem .9rem;
    transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.mkt_inq_field:focus-within {
    border-color: var(--mkt-accent);
    background: #fff;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--mkt-accent) 10%, transparent);
}

.mkt_inq_field_icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--mkt-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-text-muted);
    flex-shrink: 0;
    margin-top: .1rem;
    transition: background var(--ease), color var(--ease);
}

.mkt_inq_field:focus-within .mkt_inq_field_icon {
    background: color-mix(in srgb, var(--mkt-accent) 11%, transparent);
    color: var(--mkt-accent);
}

.mkt_inq_field_inner {
    flex: 1;
    min-width: 0;
}

.mkt_inq_field_inner label {
    display: block;
    font-size: .65rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .22rem;
}

.mkt_inq_field_inner input,
.mkt_inq_field_inner textarea {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-size: .875rem;
    color: var(--mkt-primary);
    font-family: inherit;
    padding: 0;
}

.mkt_inq_field_inner input::placeholder,
.mkt_inq_field_inner textarea::placeholder {
    color: var(--mkt-text-soft);
}

.mkt_inq_field_inner textarea {
    resize: none;
}

.mkt_inq_field_full {
    grid-column: 1 / -1;
}


.mkt_inq_form_actions {
    display: flex;
    gap: .75rem;
    justify-content: flex-end;
}

.mkt_inquiry_cancel_btn {
    height: 48px;
    padding: 0 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    background: var(--mkt-surface-2);
    color: var(--mkt-text-muted);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--ease);
}

.mkt_inquiry_cancel_btn:hover {
    background: var(--mkt-border-light);
    color: var(--mkt-primary);
}

.mkt_inquiry_submit_btn {
    height: 48px;
    padding: 0 1.75rem;
    border-radius: 12px;
    border: none;
    background: var(--mkt-accent);
    color: #fff;
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--ease), transform var(--ease);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.mkt_inquiry_submit_btn:hover {
    background: var(--mkt-accent-hover);
    transform: translateY(-1px);
}

.marketplace_footer {
    margin-top: 2rem;
    border-top: 1px solid var(--mkt-border-light);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin-inline: -6rem;
    padding-inline: 6rem;
}

.marketplace_footer_inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: .75rem;
}


.marketplace_footer_left {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    flex-shrink: 0;
}

.marketplace_footer_brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
}

.marketplace_footer_brand_mark {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--mkt-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.marketplace_footer_brand_mark svg {
    --aous-aw-icon-size: .85rem;
}

.marketplace_footer_brand_name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--mkt-primary);
}

.marketplace_footer_tagline {
    margin: 0;
    font-size: .75rem;
    color: var(--mkt-text-soft);
    padding-inline-start: .05rem;
}

.marketplace_footer_legal {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding-inline-start: .05rem;
    margin-top: .15rem;
}

.marketplace_footer_legal span ,
.marketplace_footer_legal a {
    font-size: .74rem;
    color: var(--mkt-text-muted);
    text-decoration: none;
}

.marketplace_footer_legal a:hover {
    color: var(--mkt-primary-700);
    text-decoration: underline;
}


.marketplace_footer_right {
    flex-shrink: 0;
}

.marketplace_footer_account {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: var(--mkt-text);
    font-size: .82rem;
    font-weight: 500;
    padding: .3rem .5rem;
    border-radius: 10px;
    transition: background var(--ease);
}

.marketplace_footer_account:hover {
    background: var(--mkt-surface-2);
}

.marketplace_footer_avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--mkt-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.marketplace_footer_account_name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.marketplace_footer_cta {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 1rem;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--mkt-accent);
    text-decoration: none;
    border: 1px solid rgba(99, 102, 241, .22);
    background: rgba(99, 102, 241, .06);
    white-space: nowrap;
    transition: background var(--ease), border-color var(--ease);
}

.marketplace_footer_cta:hover {
    background: rgba(99, 102, 241, .12);
    border-color: var(--mkt-accent);
    color: var(--mkt-accent);
}

@media print {

    .marketplace_navbar,
    .marketplace_footer,
    .mkt_filter_sidebar,
    .mkt_view_switcher,
    .mkt_search_box,
    .mkt_detail_top_bar,
    .btn,
    .pagination {
        display: none !important;
    }

    .mkt_page_body,
    .mkt_detail_body {
        display: block !important;
    }
}

.mkt_featured_section {
    max-width: 100%;
    margin: 1.5rem auto 0;
}

.mkt_featured_label {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .65rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--c-accent) 12%, transparent);
    color: var(--c-accent);
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    flex-shrink: 0;
}

.mkt_featured_title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin: 0;
}


.mkt_fp_wrap {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding-bottom: .85rem;
}

.mkt_fp_inner {
    will-change: transform;
    gap: 0;
}


.mkt_fp_item {
    padding: 0 .6rem;
}

.mkt_fp_card {
    min-height: 280px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #172554 0%, #1f2937 48%, color-mix(in srgb, var(--c-accent) 24%, #111827) 100%);
    border: 1px solid rgba(99, 102, 241, .14);
}

.mkt_fp_card_link {
    position: absolute;
    inset: 0;
    z-index: 6;
}

.mkt_fp_card_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform .65s cubic-bezier(.2, 0, 0, 1);
    will-change: transform;
}

.mkt_fp_card_bg--empty {
    background:
        radial-gradient(circle at 28% 24%, rgba(99, 102, 241, .24), transparent 30%),
        radial-gradient(circle at 72% 76%, rgba(99, 102, 241, .18), transparent 32%),
        linear-gradient(135deg, #243b53 0%, #1f2937 100%);
}

.mkt_fp_card:hover .mkt_fp_card_bg {
    transform: scale(1.06);
}

.mkt_fp_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 23, 42, .86) 0%,
            rgba(15, 23, 42, .56) 42%,
            rgba(99, 102, 241, .18) 100%);
    z-index: 1;
}

.mkt_fp_card_glow {
    position: absolute;
    inset-block-end: -82px;
    inset-inline-end: -82px;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(99, 102, 241, .42) 0%, transparent 66%);
    z-index: 2;
    pointer-events: none;
}

.mkt_fp_card_inner {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 16px 18px 18px;
}

.mkt_fp_no_img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .72);
    z-index: 0;
}

.mkt_fp_badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    min-height: 30px;
    padding: 0 .82rem;
    border-radius: 999px;
    background: var(--c-accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(99, 102, 241, .28);
}

.mkt_fp_card_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.mkt_fp_brand {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 40%;
    text-align: end;
}

.mkt_fp_card_body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mkt_fp_meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 2px;
}

.mkt_fp_cat {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(191, 219, 254, .9);
    font-weight: 600;
}

.mkt_fp_name {
    font-size: 1.04rem;
    font-weight: 600;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mkt_fp_sku {
    color: rgba(255, 255, 255, .92);
}

.mkt_fp_specs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0;
    margin: 2px 0 0;
}

.mkt_fp_spec_item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 12px;
    color: rgba(255, 255, 255, .86);
}

.mkt_fp_spec_key {
    color: rgba(191, 219, 254, .96);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 10px;
}

.mkt_fp_spec_val {
    color: rgba(255, 255, 255, .95);
    font-weight: 500;
}

.mkt_fp_footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.mkt_fp_price_block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mkt_fp_price_label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.mkt_fp_price {
    font-size: 1.02rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
}

.mkt_fp_seller {
    font-size: .76rem;
    color: rgba(255, 255, 255, .68);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 190px;
}

.mkt_fp_cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 13px;
    border-radius: 12px;
    background: var(--c-accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(99, 102, 241, .32);
}

.mkt_fp_cta svg {
    flex-shrink: 0;
}


.mkt_fp_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-top: .9rem;
}

.mkt_fp_arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--c-accent) 24%, var(--mkt-border));
    background: color-mix(in srgb, var(--c-accent) 6%, var(--c-white));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--c-accent);
    transition: background .15s, border-color .15s, color .15s;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(99, 102, 241, .16);
}

.mkt_fp_arrow:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
}

.mkt_fp_dots {
    display: flex;
    gap: .35rem;
    align-items: center;
}

.mkt_fp_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mkt-border);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}

.mkt_fp_dot.is_active {
    background: var(--c-accent);
    transform: scale(1.4);
}

[dir="rtl"] .mkt_fp_card_inner,
[dir="rtl"] .mkt_fp_card_body,
[dir="rtl"] .mkt_fp_card_top,
[dir="rtl"] .mkt_fp_meta,
[dir="rtl"] .mkt_fp_footer,
[dir="rtl"] .mkt_fp_specs,
[dir="rtl"] .mkt_fp_price_block {
    direction: rtl;
}

[dir="rtl"] .mkt_fp_name {
    direction: rtl;
    text-align: start;
}

[dir="rtl"] .mkt_fp_brand {
    text-align: start;
}

[dir="rtl"] .mkt_fp_cta svg {
    transform: scaleX(-1);
}

[dir="rtl"] .mkt_fp_card_overlay {
    background: linear-gradient(225deg,
            rgba(15, 23, 42, .86) 0%,
            rgba(15, 23, 42, .56) 42%,
            rgba(99, 102, 241, .18) 100%);
}

══════════════════════════════════════════════════════════ */:root {
    --c-success-bg: #ecfdf5;
    --c-warning-bg: #fffbeb;
    --c-surface-2: #eef2ff;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}


.sp_theme_shell {
    --c-accent: var(--sp-accent, #6366f1);
    --c-accent-hover: color-mix(in srgb, var(--c-accent) 82%, #111827);
    --c-accent-muted: color-mix(in srgb, var(--c-accent) 12%, transparent);
    --c-accent-light: color-mix(in srgb, var(--c-accent) 6%, #ffffff);
}

.sp_theme_slate {
    --c-primary: #172033;
    --c-primary-700: #243148;
    --border-color: #dde5ef;
    --border-light: #e9eef5;
}

.sp_theme_sand {
    --c-primary: #453326;
    --c-primary-700: #5d4635;
    --c-surface: #fbf7f1;
    --border-color: #eadfce;
    --border-light: #f1e8da;
}


.sp_navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 2rem;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sp_navbar_brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: var(--c-primary);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: -.01em;
}

.sp_navbar_brand_mark {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.sp_navbar_actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}


.sp_cover {
    height: 20rem;
    background: linear-gradient(135deg, var(--c-primary) 0%, color-mix(in srgb, var(--c-accent) 70%, var(--c-primary)) 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.sp_cover_img,
.sp_cover_solid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sp_cover_img {
    object-fit: cover;
    display: block;
    overflow: hidden;
}

.sp_cover_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .05) 0%,
            rgba(0, 0, 0, .20) 45%,
            rgba(0, 0, 0, .72) 100%);
    z-index: 2;
}


.sp_cover_hero {
    position: relative;
    z-index: 5;
}

.sp_cover_hero_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 1.75rem;
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
}

.sp_cover_hero_text {
    flex: 1;
    min-width: 0;
    padding-bottom: .1rem;
}

.sp_cover_pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 25%, color-mix(in srgb, var(--c-accent) 40%, transparent) 0%, transparent 55%),
        radial-gradient(circle at 78% 70%, color-mix(in srgb, var(--c-primary) 60%, var(--c-accent)) 0%, transparent 50%),
        radial-gradient(circle at 55% 15%, color-mix(in srgb, var(--c-accent) 20%, transparent) 0%, transparent 40%);
}


.sp_logo {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, .85);
    background: var(--c-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--c-accent);
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .28);
    margin-bottom: -40px;
    position: relative;
    z-index: 6;
}

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

.sp_logo_actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
    padding-bottom: .15rem;
}


.sp_hero_strip {
    background: var(--c-white);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(30, 27, 75, .06);
    position: relative;
    z-index: 4;
    padding-top: 40px;
    border-radius: 0 0 12px 12px;
}

.sp_hero_strip_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


.sp_cat_tabs {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .65rem 0 .85rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sp_cat_tabs::-webkit-scrollbar {
    display: none;
}

.sp_cat_tab {
    display: inline-flex;
    align-items: center;
    padding: .32rem .9rem;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    background: var(--c-surface);
    color: var(--c-text-muted);
    font-size: .78rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .15s, background .15s, color .15s;
    flex-shrink: 0;
}

.sp_cat_tab:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    background: var(--c-white);
}

.sp_cat_tab.active {
    background: var(--c-accent-muted);
    border-color: transparent;
    color: var(--c-accent);
    font-weight: 600;
}

.sp_business_name {
    font-size: 2.1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -.025em;
    margin: 0 0 .35rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .25);
}

.sp_verified_badge {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    background: rgba(255, 255, 255, .22);
    color: #fff;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 600;
    padding: .18rem .55rem;
    vertical-align: middle;
    margin-left: .35rem;
    backdrop-filter: blur(4px);
}

.sp_store_tagline {
    display: inline-flex;
    align-items: center;
    padding: .26rem .75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .95);
    font-size: .76rem;
    font-weight: 500;
    margin-bottom: .5rem;
    backdrop-filter: blur(4px);
}

.sp_business_meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .28rem .65rem;
    color: rgba(255, 255, 255, .75);
    font-size: .79rem;
}

.sp_business_meta_item {
    display: flex;
    align-items: center;
    gap: .28rem;
}


/* ── Legacy stat row (kept for any older includes) ── */
.sp_stats_row {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-light);
}

.sp_stat {
    flex: 1;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    padding: 1rem;
    text-align: center;
    border-right: 1px solid var(--border-light);
    transition: background .15s;
}

.sp_stat:last-child {
    border-right: none;
}

.sp_stat:hover {
    background: color-mix(in srgb, var(--sp-accent, var(--c-accent)) 4%, transparent);
}

.sp_stat_value {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--sp-accent, var(--c-accent));
    display: flex;
    align-items: center;
    gap: .3rem;
    letter-spacing: -.02em;
}

.sp_stat_label {
    font-size: .67rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 500;
}

/* ── Stats chips (new design) ── */
.sp_stats_chips {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    padding: 1rem 0 .75rem;
}

.sp_stat_chip {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    padding: .42rem .9rem;
    border-radius: 999px;
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border);
    color: var(--mkt-text);
    font-size: .82rem;
    transition: border-color .15s, background .15s;
}

.sp_stat_chip svg {
    color: var(--c-text-muted);
    flex-shrink: 0;
}

.sp_stat_chip_value {
    font-weight: 600;
    color: var(--sp-accent, var(--c-accent));
    font-size: .88rem;
    letter-spacing: -.01em;
}

.sp_stat_chip_label {
    color: var(--c-text-muted);
    font-size: .78rem;
}

.sp_stat_chip_link {
    text-decoration: none;
    cursor: pointer;
}

.sp_stat_chip_link:hover {
    border-color: var(--sp-accent, var(--c-accent));
    background: var(--c-white);
}

.sp_stat_chip_star {
    width: 14px;
    height: 14px;
    color: var(--c-warning);
    flex-shrink: 0;
}

/* ── Store section nav tabs ── */
.sp_store_nav {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid var(--mkt-border);
    margin-top: .1rem;
}

.sp_store_nav_tab {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .72rem 1.1rem;
    font-size: .84rem;
    font-weight: 500;
    color: var(--c-text-muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .15s, border-color .15s;
    white-space: nowrap;
}

.sp_store_nav_tab svg {
    width: 13px;
    height: 13px;
}

.sp_store_nav_tab_icon {
    width: 13px;
    height: 13px;
}

.sp_store_nav_tab:hover {
    color: var(--sp-accent, var(--c-accent));
}

.sp_store_nav_tab.is_active {
    color: var(--sp-accent, var(--c-accent));
    border-bottom-color: var(--sp-accent, var(--c-accent));
    font-weight: 600;
}

.sp_store_nav_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 18px;
    padding: 0 .4rem;
    border-radius: 999px;
    background: var(--c-accent-muted);
    color: var(--c-accent);
    font-size: .7rem;
    font-weight: 600;
}

/* Sub strip for category filter tabs */
.sp_sub_strip {
    background: var(--c-white);
    border-bottom: 1px solid var(--border-light);
}

/* See all link in section head */
.sp_section_see_all {
    font-size: .8rem;
    color: var(--sp-accent, var(--c-accent));
    text-decoration: none;
    font-weight: 500;
    transition: opacity .15s;
}

.sp_section_see_all:hover {
    opacity: .75;
}

.sp_section_title_icon {
    width: 15px;
    height: 15px;
}


.sp_store_intro {
    padding: .85rem 0 1rem;
    border-top: 1px solid var(--border-light);
    font-size: .85rem;
    color: var(--c-text-muted);
}


.sp_stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.sp_star_icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.sp_star_filled {
    color: var(--c-warning);
}

.sp_star_empty {
    color: var(--c-placeholder);
}

.sp_stat_rating {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.sp_stat_star {
    width: 14px;
    height: 14px;
    color: var(--c-warning);
    flex-shrink: 0;
}

.sp_bar_star {
    width: 11px;
    height: 11px;
    color: var(--c-warning);
    flex-shrink: 0;
}


.sp_body {
    max-width: 100%;
    margin: 1.75rem auto 4rem;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    align-items: start;
}

.sp_main {
    min-width: 0;
}


.sp_section_head {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.sp_section_title {
    font-size: .95rem;
    font-weight: 600;
    color: var(--c-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: .45rem;
    flex: 1;
}

.sp_section_title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border-light), transparent);
}

.sp_section_title.mt-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1rem;
}

.sp_count_badge {
    background: var(--c-accent-muted);
    color: var(--c-accent);
    font-size: .68rem;
    font-weight: 600;
    padding: .15em .55em;
    border-radius: 20px;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp_view_toggle {
    display: flex;
    gap: .2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2px;
    background: var(--c-surface);
    flex-shrink: 0;
}

.sp_view_btn {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    cursor: pointer;
    transition: all .15s;
}

.sp_view_btn.active {
    background: var(--c-white);
    color: var(--c-accent);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.sp_view_btn:hover:not(.active) {
    color: var(--c-text);
}


.sp_products_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sp_product_card {
    background: var(--c-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.sp_product_card:hover {
    box-shadow: 0 12px 36px rgba(30, 27, 75, .12);
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--c-accent) 28%, var(--border-light));
    color: inherit;
}

.sp_product_card_image {
    height: 310px;
    background: var(--c-surface);
    overflow: hidden;
    position: relative;
}

.sp_product_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.sp_product_card:hover .sp_product_card_image img {
    transform: scale(1.05);
}

.sp_product_card_no_img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-placeholder);
}

.sp_product_card_badge {
    position: absolute;
    top: .5rem;
    left: .5rem;
}

.sp_product_card_body {
    padding: .9rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.sp_product_card_cat {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--c-accent);
    font-weight: 600;
}

.sp_product_card_title {
    font-size: .88rem;
    font-weight: 600;
    color: var(--c-primary);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp_product_card_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: .5rem;
    gap: .4rem;
}

.sp_product_card_price {
    font-size: .9rem;
    font-weight: 600;
    color: var(--c-accent);
}

.sp_product_card_moq {
    font-size: .65rem;
    color: var(--c-text-muted);
    white-space: nowrap;
}


.sp_badge {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    padding: .2rem .5rem;
    border-radius: 100px;
    font-size: .67rem;
    font-weight: 500;
}

.sp_badge_success {
    background: var(--c-success-bg);
    color: var(--c-success);
}

.sp_badge_warning {
    background: var(--c-warning-bg);
    color: var(--c-warning);
}

.sp_badge_accent {
    background: var(--c-accent-muted);
    color: var(--c-accent);
}

.sp_badge_muted {
    background: var(--c-surface-2);
    color: var(--c-text-muted);
}


.sp_products_list {
    background: var(--c-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.sp_product_list_item {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .85rem 1.1rem;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}

.sp_product_list_item:last-child {
    border-bottom: none;
}

.sp_product_list_item:hover {
    background: var(--c-surface);
    color: inherit;
}

.sp_product_list_thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--c-surface);
}

.sp_product_list_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp_product_list_no_img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-placeholder);
}

.sp_product_list_body {
    flex: 1;
    min-width: 0;
}

.sp_product_list_title {
    font-size: .85rem;
    font-weight: 500;
    color: var(--c-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sp_product_list_meta {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .25rem;
    font-size: .73rem;
    color: var(--c-text-muted);
}

.sp_product_list_meta span+span::before {
    content: '·';
    margin-right: .5rem;
}

.sp_list_in_stock {
    color: var(--c-success);
}

.sp_list_out_stock {
    color: var(--c-error);
}

.sp_product_list_right {
    text-align: right;
    flex-shrink: 0;
}

.sp_product_list_price {
    font-size: .88rem;
    font-weight: 600;
    color: var(--c-accent);
}

.sp_product_list_moq {
    font-size: .7rem;
    color: var(--c-text-muted);
    margin-top: .1rem;
}


.sp_about_text {
    font-size: .83rem;
    color: var(--c-text-muted);
    margin: 0;
}


.sp_offer_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.sp_offer_card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    background: var(--c-white);
    color: inherit;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s, border-color .18s;
}

.sp_offer_card:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--c-accent) 30%, var(--border-light));
    box-shadow: 0 8px 24px rgba(30, 27, 75, .1);
    color: inherit;
}

.sp_offer_thumb {
    height: 150px;
    background: radial-gradient(circle at top right, color-mix(in srgb, var(--c-accent) 18%, transparent), transparent 45%), var(--c-surface);
    overflow: hidden;
}

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

.sp_offer_body {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: .85rem 1rem .95rem;
}

.sp_offer_body strong {
    font-size: .85rem;
    color: var(--c-text);
}

.sp_offer_body span {
    font-size: .8rem;
    color: var(--c-accent);
    font-weight: 600;
}


.sp_request_list {
    display: grid;
    gap: .75rem;
}

.sp_request_item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--c-white);
    transition: border-color .15s, box-shadow .15s;
}

.sp_request_item:hover {
    border-color: color-mix(in srgb, var(--c-accent) 25%, var(--border-light));
    box-shadow: var(--shadow-xs);
}

.sp_request_item>div {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.sp_request_item strong {
    font-size: .85rem;
    color: var(--c-text);
}

.sp_request_item span {
    font-size: .75rem;
    color: var(--c-text-muted);
}


.sp_reviews_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
}

.sp_review_card {
    background: var(--c-white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 1.1rem;
    transition: box-shadow .15s;
}

.sp_review_card:hover {
    box-shadow: var(--shadow-sm);
}

.sp_review_author {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .6rem;
}

.sp_review_avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-accent-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-accent);
    flex-shrink: 0;
    overflow: hidden;
}

.sp_review_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp_review_name {
    font-size: .83rem;
    font-weight: 500;
    color: var(--c-text);
}

.sp_review_company {
    font-size: .7rem;
    color: var(--c-text-muted);
}

.sp_review_text {
    font-size: .8rem;
    color: var(--c-text-muted);
    margin-top: .4rem;
}

.sp_review_date {
    font-size: .7rem;
    color: var(--c-text-soft);
    margin-top: .4rem;
}


.sp_card {
    background: var(--c-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 2px 14px rgba(30, 27, 75, .07);
}

.sp_card_header {
    padding: .8rem 1.1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: .72rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: .45rem;
    background: var(--c-surface);
}

.sp_card_header svg {
    color: var(--c-accent);
    flex-shrink: 0;
}

.sp_card_body {
    padding: 1rem 1.1rem;
}


.sp_info_row {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .55rem 1.1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: .82rem;
}

.sp_info_row:last-child {
    border-bottom: none;
}

.sp_info_icon {
    width: 15px;
    height: 15px;
    color: var(--c-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.sp_info_label {
    font-size: .68rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .08rem;
}

.sp_info_value {
    color: var(--c-text);
    font-size: .82rem;
}

.sp_info_link {
    color: var(--c-accent);
    text-decoration: none;
}

.sp_info_link:hover {
    text-decoration: underline;
    color: var(--c-accent-hover);
}


.sp_social_links {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: .75rem 1rem;
}

.sp_social_link {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .5rem .7rem;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    background: var(--c-surface);
    text-decoration: none;
    color: var(--c-text-muted);
    font-size: .8rem;
    transition: border-color .15s, background .15s, color .15s;
}

.sp_social_link:hover {
    border-color: var(--sp-social-color, var(--c-accent));
    color: var(--sp-social-color, var(--c-accent));
    background: var(--c-white);
}

.sp_social_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: color-mix(in srgb, var(--sp-social-color, #666) 12%, transparent);
    color: var(--sp-social-color, var(--c-text-muted));
    flex-shrink: 0;
    transition: background .15s;
}

.sp_social_link:hover .sp_social_icon {
    background: color-mix(in srgb, var(--sp-social-color, #666) 18%, transparent);
}

.sp_social_name {
    flex: 1;
    font-weight: 500;
}

.sp_social_arrow {
    color: var(--c-text-muted);
    opacity: .35;
    transition: opacity .15s, transform .15s;
}

.sp_social_link:hover .sp_social_arrow {
    opacity: .85;
    transform: translate(1px, -1px);
}


.sp_hours_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .38rem 0;
    font-size: .79rem;
    border-bottom: 1px solid var(--border-light);
}

.sp_hours_row:last-child {
    border-bottom: none;
}

.sp_hours_day {
    color: var(--c-text-muted);
    min-width: 80px;
}

.sp_hours_day.is_today {
    color: var(--c-accent);
    font-weight: 600;
}

.sp_hours_time {
    color: var(--c-text);
    text-align: right;
}

.sp_hours_closed {
    color: var(--c-error);
    font-size: .73rem;
}

.sp_hours_open24 {
    color: var(--c-success);
    font-size: .73rem;
}


.sp_rating_bar_row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .28rem;
    font-size: .73rem;
}

.sp_rating_bar_track {
    flex: 1;
    height: 5px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}

.sp_rating_bar_fill {
    height: 100%;
    background: var(--c-warning);
    border-radius: 3px;
}


.sp_public_metrics {
    display: grid;
    gap: .6rem;
}

.sp_public_metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem .9rem;
    border-radius: 10px;
    background: var(--c-surface);
    border: 1px solid var(--border-light);
}

.sp_public_metric span {
    font-size: .73rem;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.sp_public_metric strong {
    font-size: .95rem;
    color: var(--c-primary);
    font-weight: 600;
}


.sp_section_card {
    background: var(--c-white);
    border-radius: 18px;
    border: 1px solid var(--border-light);
    padding: 1.35rem;
    margin-bottom: 1.15rem;
    box-shadow: 0 2px 14px rgba(30, 27, 75, .07);
}

.sp_section_card .sp_products_grid,
.sp_section_card .sp_products_list,
.sp_section_card .sp_offer_grid,
.sp_section_card .sp_reviews_grid,
.sp_section_card .sp_request_list {
    margin-bottom: 0;
}


.sp_empty {
    padding: 3.5rem 1rem;
    text-align: center;
    color: var(--c-text-muted);
    background: var(--c-white);
    border-radius: 16px;
    border: 1px dashed var(--border-color);
}

.sp_empty_icon {
    width: 52px;
    height: 52px;
    margin: 0 auto .85rem;
    color: var(--c-placeholder);
}

.sp_empty_text {
    font-size: .85rem;
}


.sp_btn_primary {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.25rem;
    background: var(--sp-accent, var(--c-accent));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, transform .1s, box-shadow .15s;
    white-space: nowrap;
    box-shadow: 0 3px 14px color-mix(in srgb, var(--sp-accent, var(--c-accent)) 35%, transparent);
}

.sp_btn_primary:hover {
    background: var(--c-accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--sp-accent, var(--c-accent)) 40%, transparent);
}

.sp_btn_ghost {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .9rem;
    background: rgba(255, 255, 255, .85);
    color: var(--c-text-muted);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
}

.sp_btn_ghost:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    background: var(--c-accent-light);
}

.sp_btn_icon_ghost {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    backdrop-filter: blur(4px);
    flex-shrink: 0;
}

.sp_btn_icon_ghost:hover {
    background: rgba(255, 255, 255, .28);
    border-color: rgba(255, 255, 255, .5);
}

.sp_btn_outline {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    background: transparent;
    color: var(--c-accent);
    border: 1px solid var(--c-accent);
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
}

.sp_btn_outline:hover {
    background: var(--c-accent);
    color: #fff;
}


.sp_footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-light);
    background: var(--c-white);
    text-align: center;
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-top: 2rem;
}

.sp_footer a {
    color: var(--c-accent);
    text-decoration: none;
}


.mkt_detail_compact_featured_section {
    margin-top: 1.25rem;
}

.mkt_detail_compact_featured_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1rem;
}

.mkt_detail_compact_featured_card {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: .875rem;
    padding: .9rem;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
    border: 1px solid var(--c-accent-muted);
    text-decoration: none;
    color: inherit;
}

.mkt_detail_compact_featured_thumb {
    height: 4.5rem;
    border-radius: .9rem;
    overflow: hidden;
    background: #f2f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_detail_compact_featured_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_detail_compact_featured_body {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.mkt_detail_compact_featured_body em {
    font-style: normal;
    font-size: .72rem;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mkt_detail_compact_featured_body strong {
    font-size: .95rem;
}

.mkt_detail_compact_featured_body span {
    color: var(--c-accent);
    font-weight: 600;
}

.mkt_detail_inline_link {
    text-decoration: none;
    color: var(--c-accent);
    font-weight: 600;
}

.mkt_floating_featured {
    position: fixed;
    right: 0.25rem;
    bottom: 1.25rem;
    z-index: 50;
}

.mkt_floating_featured_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff;
    box-shadow: 0 1rem 2rem rgba(79, 70, 229, .24);
}

.mkt_featured_modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: .24s ease;
}

.mkt_featured_modal.is_open {
    opacity: 1;
    visibility: visible;
}

.mkt_featured_modal_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 21, 24, .58);
}

.mkt_featured_modal_panel {
    position: relative;
    width: min(64rem, calc(100% - 2rem));
    margin: 4rem auto;
    padding: 1.4rem;
    border-radius: 1.75rem;
    background: linear-gradient(180deg, #fcfcff 0%, #fff 100%);
    box-shadow: 0 1.5rem 4rem rgba(79, 70, 229, .14);
}

.mkt_featured_modal_head,
.mkt_featured_modal_actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mkt_featured_modal_title_icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
    background: var(--c-accent-light);
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_featured_modal_kicker,
.mkt_featured_page_kicker,
.mkt_ai_hero_copy span {
    display: inline-flex;
    padding: .3rem .7rem;
    border-radius: 999px;
    background: var(--c-accent-light);
    color: var(--c-accent);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mkt_featured_modal_close {
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: .9rem;
    background: #f3f4ff;
}

.mkt_featured_slider {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    margin: 1.2rem 0;
}

.mkt_featured_slider_track {
    display: flex;
    transition: transform .35s ease;
    min-width: 0;
}

.mkt_featured_slider_slide {
    flex: 0 0 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.mkt_featured_flip_card {
    perspective: 1200px;
    text-decoration: none;
    color: inherit;
    min-height: 23rem;
}

.mkt_featured_flip_inner {
    position: relative;
    display: block;
    min-height: 23rem;
    transform-style: preserve-3d;
    transition: transform .55s ease;
}

.mkt_featured_flip_card:hover .mkt_featured_flip_inner {
    transform: rotateY(180deg);
}

.mkt_featured_flip_face {
    position: absolute;
    inset: 0;
    border-radius: 1.35rem;
    overflow: hidden;
    backface-visibility: hidden;
}

.mkt_featured_flip_front {
    background: #1b1f48;
    color: #fff;
}

.mkt_featured_flip_media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.mkt_featured_flip_media.is_empty {
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.mkt_featured_flip_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 17, .06), rgba(7, 14, 17, .78));
}

.mkt_featured_flip_front_body,
.mkt_featured_flip_back {
    position: absolute;
    inset-inline: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.mkt_featured_flip_front_body em {
    font-style: normal;
    opacity: .92;
    color: rgba(255, 255, 255, .92);
    font-size: .84rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mkt_featured_flip_back {
    inset: 0;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
    background: linear-gradient(145deg, #eef0ff 0%, #ffffff 100%);
    transform: rotateY(180deg);
}

.mkt_featured_flip_back::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--featured-image);
    background-repeat: no-repeat;
    background-position: center right 1rem;
    background-size: 58%;
    opacity: .12;
    pointer-events: none;
}

.mkt_featured_flip_back>* {
    position: relative;
    z-index: 1;
}

.mkt_featured_flip_badge {
    padding: .28rem .55rem;
    border-radius: 999px;
    background: var(--c-accent-light);
    color: var(--c-accent);
    font-size: .72rem;
    font-weight: 600;
}

.mkt_featured_modal_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 1.1rem;
    border-radius: .95rem;
    background: var(--c-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.mkt_featured_modal_link.is_secondary {
    background: #f3f4ff;
    color: var(--c-accent);
}

.mkt_featured_page,
.mkt_ai_page {
    width: min(78rem, calc(100% - 2rem));
    margin: 1.25rem auto 2rem;
}

.mkt_ai_stage_page {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible;
}

.mkt_ai_stage {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.mkt_ai_stage_backdrop,
.mkt_ai_stage_glow {
    position: absolute;
    inset: 0;
}

.mkt_ai_stage_backdrop {
    position: fixed;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(4, 9, 20, .66) 0%, rgba(5, 10, 22, .82) 54%, rgba(4, 9, 20, .94) 100%),
        radial-gradient(circle at 18% 18%, rgba(99, 102, 241, .14), transparent 30%),
        radial-gradient(circle at 82% 74%, rgba(79, 70, 229, .12), transparent 24%),
        url('/style/shared/img/2148688528.webp') center/cover fixed no-repeat;
}

.mkt_ai_stage_glow {
    border-radius: 999px;
    filter: blur(18px);
}

.mkt_ai_stage_glow.is_primary {
    inset: auto auto 10% 8%;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, rgba(99, 102, 241, .24) 0%, transparent 66%);
    animation: mktStageFloat 10s ease-in-out infinite;
}

.mkt_ai_stage_glow.is_secondary {
    inset: 18% 10% auto auto;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(79, 70, 229, .18) 0%, transparent 68%);
    animation: mktStageFloat 12s ease-in-out infinite reverse;
}


.mkt_ai_stage_shell {
    position: relative;
    z-index: 2;
    width: min(86rem, calc(100% - 2rem));
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    padding: clamp(7.25rem, 10vw, 9rem) 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mkt_ai_ref_shell {
    position: relative;
    z-index: 2;
    width: min(74rem, calc(100% - 2rem));
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    padding: clamp(7.5rem, 10vw, 9rem) 0 2rem;
    display: grid;
    gap: 1.5rem;
}

.mkt_ai_ref_header {
    text-align: center;
    max-width: 52rem;
    margin: 0 auto;
}

.mkt_ai_ref_kicker {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: #c7d2fe;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.mkt_ai_ref_kicker::before {
    content: "";
    width: 2.6rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
}

.mkt_ai_ref_header h1 {
    margin: 1rem 0 0;
    color: #fff;
    font-size: clamp(3rem, 8vw, 3.7rem);
    letter-spacing: -.06em;
}

.mkt_ai_ref_header p {
    margin: 1.15rem auto 0;
    max-width: 44rem;
    color: rgba(226, 232, 240, .86);
    font-size: clamp(1rem, 1.6vw, 0.9rem);
}

.mkt_ai_ref_console {
    max-width: 68rem;
    margin: 0 auto;
    padding: 1.35rem;
    border-radius: 1.9rem;
    background: rgb(4 10 22 / 8%);
    border: 1px solid rgba(148, 163, 184, .16);
    box-shadow: 0 28px 70px rgba(2, 6, 23, .24);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.mkt_ai_ref_console.is_hidden {
    display: none;
}

.mkt_ai_ref_console_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .95rem;
}

.mkt_ai_ref_console_top label {
    color: #f8fafc;
    font-size: .94rem;
    font-weight: 600;
}

.mkt_ai_ref_console_top span {
    color: #c7d2fe;
    font-size: .85rem;
}

.mkt_ai_ref_console_bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
}

.mkt_ai_ref_console_bar textarea {
    width: 100%;
    min-height: 6rem;
    border-radius: 1.15rem;
    border: 1px solid rgba(148, 163, 184, .14);
    background: rgba(2, 6, 23, .24);
    color: #fff;
    padding: 1rem 1.1rem;
    resize: none;
}

.mkt_ai_ref_console_bar textarea::placeholder {
    color: rgba(226, 232, 240, .46);
}

.mkt_ai_ref_console_btn {
    align-self: stretch;
    min-width: 7.1rem;
    padding: 0 .95rem;
    border-radius: 1.15rem;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff;
    font-size: .95rem;
    font-weight: 600;
    box-shadow: 0 18px 36px rgba(79, 70, 229, .26);
}

.mkt_ai_ref_quick_prompts {
    display: flex;
    gap: .75rem;
    margin-top: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: .35rem;
    scrollbar-width: thin;
}

.mkt_ai_ref_quick_prompts .mkt_ai_prompt_chip {
    flex: 0 0 auto;
}

.mkt_ai_ref_feedback {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1.5rem;
    align-items: start;
    transition: grid-template-columns .45s ease, gap .45s ease;
}

.mkt_ai_ref_feedback_single {
    display: none;
}

.mkt_ai_ref_feedback_single .mkt_ai_ref_products {
    opacity: 0;
    visibility: hidden;
    transform: translateX(28px) scale(.98);
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    margin: 0;
}

.mkt_ai_ref_feedback_has_results {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.mkt_ai_ref_feedback_has_results .mkt_ai_ref_products {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    max-height: 1400px;
    overflow: visible;
}

.mkt_ai_ref_answer,
.mkt_ai_ref_products {
    padding: 1.4rem;
    border-radius: 1.9rem;
    background: rgba(4, 10, 22, .5);
    border: 1px solid rgba(148, 163, 184, .14);
    box-shadow: 0 24px 60px rgba(2, 6, 23, .18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: opacity .35s ease, transform .45s ease, max-height .45s ease, padding .35s ease, border-width .35s ease;
}

.mkt_ai_ref_answer {
    min-height: 26rem;
    display: flex;
    flex-direction: column;
}

.mkt_ai_ref_chat_scroll {
    flex: 1 1 auto;
    min-height: 18rem;
    max-height: 31rem;
    overflow-y: auto;
    padding-inline-end: 6px;
}

.mkt_ai_ref_chat_thread {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.mkt_ai_ref_chat_msg {
    display: flex;
}

.mkt_ai_ref_chat_msg_user {
    justify-content: flex-end;
}

.mkt_ai_ref_chat_msg_assistant {
    justify-content: flex-start;
}

.mkt_ai_ref_chat_bubble {
    max-width: 86%;
    padding: .9rem 1rem;
    border-radius: 1.1rem;
    font-size: .95rem;
    box-shadow: 0 14px 34px rgba(2, 6, 23, .08);
}

.mkt_ai_ref_chat_msg_user .mkt_ai_ref_chat_bubble {
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff;
    border-bottom-right-radius: .4rem;
}

.mkt_ai_ref_chat_msg_assistant .mkt_ai_ref_chat_bubble {
    background: rgba(2, 6, 23, .54);
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, .12);
    border-bottom-left-radius: .4rem;
}

.mkt_ai_ref_chat_author {
    display: block;
    margin-bottom: .35rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .72;
}

.mkt_ai_ref_chat_input_wrap {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, .12);
}

.mkt_ai_ref_chat_form {
    display: grid;
    gap: .75rem;
}

.mkt_ai_ref_chat_bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .8rem;
}

.mkt_ai_ref_chat_bar textarea {
    width: 100%;
    min-height: 4rem;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, .14);
    background: rgba(2, 6, 23, .54);
    color: #fff;
    padding: .9rem 1rem;
    resize: none;
}

.mkt_ai_ref_chat_bar textarea::placeholder {
    color: rgba(226, 232, 240, .46);
}

.mkt_ai_ref_chat_btn {
    min-width: 7.5rem;
    border: 0;
    border-radius: 1rem;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff;
    font-weight: 600;
}

.mkt_ai_ref_feedback_head {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.mkt_ai_ref_feedback_head h2 {
    margin: 0;
    color: #fff;
    font-size: 1.15rem;
}

.mkt_ai_ref_feedback_head span {
    margin-top: .3rem;
    color: #94a3b8;
    font-size: .84rem;
}

.mkt_ai_ref_answer_body {
    flex: 1 1 auto;
    min-height: 18rem;
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(2, 6, 23, .54);
    border: 1px solid rgba(148, 163, 184, .12);
    color: #eff6ff;
    overflow-y: auto;
}

.mkt_ai_ref_product_grid {
    display: grid;
    gap: .8rem;
}

.mkt_ai_ref_product_card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: .9rem;
    padding: .55rem;
    border-radius: 1.15rem;
    background: rgba(2, 6, 23, .48);
    border: 1px solid rgba(148, 163, 184, .12);
    text-decoration: none;
    color: inherit;
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.mkt_ai_ref_product_card:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, .32);
    background: rgba(6, 11, 25, .72);
}

.mkt_ai_ref_product_media,
.mkt_ai_product_placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: .95rem;
    overflow: hidden;
    background: rgba(15, 23, 42, .88);
}

.mkt_ai_ref_product_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_ai_ref_product_body {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    min-width: 0;
    justify-content: center;
}

.mkt_ai_ref_product_body span {
    font-style: normal;
    color: #c7d2fe;
    font-size: .74rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mkt_ai_ref_product_body strong {
    color: #fff;
}

.mkt_ai_ref_product_body span:last-child {
    color: #c7d2fe;
    font-weight: 600;
}

.mkt_ai_stage_hero {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(18rem, .56fr);
    align-items: center;
    gap: 2rem;
}

.mkt_ai_stage_copy {
    max-width: 40rem;
}

.mkt_ai_stage_kicker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: #c7d2fe;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.mkt_ai_stage_kicker::before {
    content: "";
    width: 2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
}

.mkt_ai_stage_copy h1 {
    margin: 1rem 0 0;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: -.06em;
}

.mkt_ai_stage_copy p {
    margin: 1.25rem 0 0;
    max-width: 34rem;
    color: rgba(226, 232, 240, .86);
    font-size: clamp(1rem, 1.55vw, 1.18rem);
}

.mkt_ai_stage_points {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.5rem;
}

.mkt_ai_stage_points span {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    min-height: 2.8rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(6, 11, 25, .42);
    border: 1px solid rgba(148, 163, 184, .16);
    color: #eff6ff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mkt_ai_stage_points span svg {
    color: #c7d2fe;
    flex-shrink: 0;
}

.mkt_ai_stage_orb {
    position: relative;
    width: min(28rem, 100%);
    height: 24rem;
    justify-self: end;
}

.mkt_ai_stage_orb_glow {
    position: absolute;
    inset: 18% 16%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(99, 102, 241, .34) 0%, rgba(79, 70, 229, .08) 50%, transparent 74%);
    filter: blur(18px);
}

.mkt_ai_stage_orb_ring,
.mkt_ai_stage_orb_core {
    position: absolute;
    inset: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
}

.mkt_ai_stage_orb_ring {
    border: 1px solid rgba(148, 163, 184, .18);
    animation: mktStageSpin 14s linear infinite;
}

.mkt_ai_stage_orb_ring.is_one {
    width: 9rem;
    height: 9rem;
}

.mkt_ai_stage_orb_ring.is_two {
    width: 13rem;
    height: 13rem;
    animation-duration: 18s;
    animation-direction: reverse;
}

.mkt_ai_stage_orb_ring.is_three {
    width: 17rem;
    height: 17rem;
    border-style: dashed;
    animation-duration: 22s;
}

.mkt_ai_stage_orb_core {
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(79, 70, 229, .34);
}

.mkt_ai_stage_orb_chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 3rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(6, 11, 25, .5);
    border: 1px solid rgba(148, 163, 184, .16);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 32px rgba(2, 6, 23, .2);
}

.mkt_ai_stage_orb_chip svg {
    color: #c7d2fe;
    flex-shrink: 0;
}

.mkt_ai_stage_orb_chip.is_top {
    top: 8%;
    left: 6%;
}

.mkt_ai_stage_orb_chip.is_right {
    top: 40%;
    right: 0;
}

.mkt_ai_stage_orb_chip.is_bottom {
    bottom: 8%;
    left: 20%;
}

.mkt_ai_console_shell {
    border-radius: 2rem;
    padding: 1.15rem;
    background: rgba(4, 10, 22, .48);
    border: 1px solid rgba(148, 163, 184, .16);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 24px 70px rgba(2, 6, 23, .22);
}

.mkt_ai_console {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mkt_ai_console_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mkt_ai_console_top label,
.mkt_ai_console_top span {
    color: #e2e8f0;
}

.mkt_ai_console_top label {
    font-size: .88rem;
    font-weight: 600;
}

.mkt_ai_console_top span {
    font-size: .82rem;
    color: #c7d2fe;
}

.mkt_ai_console_bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.mkt_ai_console_bar textarea {
    width: 100%;
    min-height: 5.1rem;
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 1.4rem;
    background: rgba(2, 6, 23, .58);
    padding: 1rem 1.1rem;
    color: #fff;
    resize: vertical;
}

.mkt_ai_console_bar textarea::placeholder {
    color: rgba(226, 232, 240, .52);
}

.mkt_ai_console_submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 5.1rem;
    padding: 0 1.4rem;
    border: 0;
    border-radius: 1.3rem;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 18px 36px rgba(79, 70, 229, .26);
}

.mkt_ai_quick_prompts {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.mkt_ai_prompt_chip {
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 999px;
    padding: .75rem 1rem;
    background: rgba(2, 6, 23, .48);
    color: #e2e8f0;
    text-align: left;
}

.mkt_ai_stage_results {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 1.25rem;
    min-height: 0;
    flex: 1;
}

.mkt_ai_stage_answer,
.mkt_ai_stage_products {
    display: flex;
    flex-direction: column;
    min-height: 22rem;
    border-radius: 2rem;
    padding: 1.15rem;
    background: rgba(4, 10, 22, .72);
    border: 1px solid rgba(148, 163, 184, .16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(2, 6, 23, .18);
}

.mkt_ai_stage_panel_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mkt_ai_stage_panel_head h2 {
    margin: 0;
    color: #fff;
    font-size: 1.15rem;
}

.mkt_ai_stage_panel_head p {
    margin: .25rem 0 0;
    color: rgba(226, 232, 240, .72);
}

.mkt_ai_stage_head_icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(2, 6, 23, .56);
    color: #c7d2fe;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mkt_ai_answer_body {
    flex: 1;
    min-height: 16rem;
    padding: 1rem 1.1rem;
    border-radius: 1.4rem;
    background: rgba(2, 6, 23, .54);
    border: 1px solid rgba(148, 163, 184, .12);
    color: #eff6ff;
    overflow: auto;
}

.mkt_ai_product_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
    gap: .9rem;
}

.mkt_ai_stage_products .mkt_ai_product_grid {
    overflow: auto;
    padding-inline-end: .15rem;
}

.mkt_ai_product_card {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: .85rem;
    padding: .9rem;
    border-radius: 1.3rem;
    background: rgba(2, 6, 23, .5);
    border: 1px solid rgba(148, 163, 184, .12);
    text-decoration: none;
    color: inherit;
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.mkt_ai_product_card:hover {
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, .32);
    background: rgba(6, 11, 25, .72);
}

.mkt_ai_product_media,
.mkt_ai_product_placeholder {
    height: 5.5rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, .9);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_ai_product_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_ai_product_body {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    min-width: 0;
}

.mkt_ai_product_body em {
    font-style: normal;
    color: #c7d2fe;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mkt_ai_product_body strong,
.mkt_ai_product_body span {
    color: #fff;
}

.mkt_ai_product_body span:last-child {
    color: #c7d2fe;
    font-weight: 600;
}

.mkt_ai_empty_state {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(2, 6, 23, .48);
    border: 1px solid rgba(148, 163, 184, .12);
    color: #cbd5e1;
}

@keyframes mktStageSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes mktStageFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -18px, 0);
    }
}

.mkt_featured_hero_page {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.mkt_featured_hero_slider,
.mkt_featured_hero_track {
    height: 100%;
}

.mkt_featured_hero_slider {
    position: relative;
}

.mkt_featured_hero_track {
    display: flex;
    transition: transform .65s cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.mkt_featured_hero_slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
}

.mkt_featured_hero_bg_wrap,
.mkt_featured_hero_bg,
.mkt_featured_hero_overlay,
.mkt_featured_hero_blur {
    position: absolute;
    inset: 0;
}

.mkt_featured_hero_bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 7s ease;
    filter: saturate(1.05);
}

.mkt_featured_hero_slide.is_active .mkt_featured_hero_bg {
    transform: scale(1.12);
}

.mkt_featured_hero_bg--empty {
    background:
        radial-gradient(circle at 20% 24%, rgba(99, 102, 241, .42), transparent 28%),
        radial-gradient(circle at 78% 68%, rgba(79, 70, 229, .28), transparent 30%),
        linear-gradient(135deg, #0f172a 0%, #172554 48%, #0b1120 100%);
}

.mkt_featured_hero_overlay {
    background:
        linear-gradient(to right, rgba(6, 11, 25, .92) 0%, rgba(7, 14, 31, .68) 42%, rgba(7, 14, 31, .12) 100%),
        linear-gradient(to bottom, rgba(7, 14, 31, .38) 0%, rgba(7, 14, 31, .08) 48%, rgba(7, 14, 31, .82) 100%);
}

[dir="rtl"] .mkt_featured_hero_overlay {
    background:
        linear-gradient(to left, rgba(6, 11, 25, .92) 0%, rgba(7, 14, 31, .68) 42%, rgba(7, 14, 31, .12) 100%),
        linear-gradient(to bottom, rgba(7, 14, 31, .38) 0%, rgba(7, 14, 31, .08) 48%, rgba(7, 14, 31, .82) 100%);
}

.mkt_featured_hero_blur {
    background:
        radial-gradient(circle at 70% 72%, rgba(99, 102, 241, .28), transparent 20%),
        radial-gradient(circle at 40% 88%, rgba(79, 70, 229, .2), transparent 18%);
}

.mkt_featured_hero_inner {
    position: relative;
    z-index: 2;
    width: min(88rem, calc(100% - 4rem));
    height: 100%;
    margin: 0 auto;
    padding: clamp(6rem, 9vw, 8rem) 0 clamp(4.5rem, 6vw, 5.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(22rem, .52fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 4.5rem);
}

.mkt_featured_hero_copy {
    max-width: 46rem;
    align-self: center;
    transform: translateY(22px);
    opacity: .25;
    transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .6s ease;
}

.mkt_featured_hero_slide.is_active .mkt_featured_hero_copy {
    transform: translateY(0);
    opacity: 1;
}

.mkt_featured_hero_kicker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    color: #c7d2fe;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.mkt_featured_hero_kicker::before {
    content: "";
    width: 2rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
}

.mkt_featured_hero_copy h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2.4rem, 5.2vw, 4.8rem);
    letter-spacing: -.05em;
    line-height: 1.07;
}

.mkt_featured_hero_copy p {
    margin: 1.25rem 0 0;
    max-width: 36rem;
    color: rgba(226, 232, 240, .88);
    font-size: clamp(.95rem, 1.45vw, 1.18rem);
    line-height: 1.7;
}

.mkt_featured_hero_meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.35rem;
}

.mkt_featured_hero_meta span {
    display: inline-flex;
    align-items: center;
    min-height: 2.7rem;
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #f8fafc;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mkt_featured_hero_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.mkt_featured_hero_price {
    color: #fff;
    font-size: clamp(1.5rem, 2.7vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -.05em;
}

.mkt_featured_hero_cta {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-height: 3.5rem;
    padding: 0 1.35rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 18px 40px rgba(79, 70, 229, .28);
}

.mkt_featured_hero_cta svg {
    flex-shrink: 0;
}

[dir="rtl"] .mkt_featured_hero_cta svg {
    transform: scaleX(-1);
}

[dir="rtl"] .mkt_featured_hero_kicker::before {
    background: linear-gradient(270deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
}

.mkt_featured_hero_preview {
    align-self: center;
    justify-self: end;
}

.mkt_featured_hero_preview_card {
    width: min(26rem, 100%);
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    align-items: center;
    gap: 1.1rem;
    padding: 1.1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 28px 70px rgba(2, 6, 23, .35), inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.mkt_featured_hero_preview_card:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-3px);
    box-shadow: 0 36px 80px rgba(2, 6, 23, .42), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.mkt_featured_hero_preview_media,
.mkt_featured_hero_preview_placeholder {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, .12);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_featured_hero_preview_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_featured_hero_preview_body {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    min-width: 0;
}

.mkt_featured_hero_preview_body strong {
    font-size: 1.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_featured_hero_preview_body span {
    color: #c7d2fe;
    font-size: 1.2rem;
    font-weight: 600;
}

.mkt_featured_hero_controls {
    position: absolute;
    inset-inline: 0;
    bottom: clamp(1.2rem, 3vw, 2.6rem);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
}

.mkt_featured_hero_arrow {
    width: 3.4rem;
    height: 3.4rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mkt_featured_hero_dots {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.mkt_featured_hero_dot {
    width: .55rem;
    height: .55rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .32);
    transition: transform .24s ease, background .24s ease, width .24s ease;
}

.mkt_featured_hero_dot.is_active {
    width: 1.75rem;
    background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
}

.mkt_featured_hero_empty {
    position: relative;
    z-index: 2;
    width: min(50rem, calc(100% - 2rem));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
}

.mkt_featured_page_group {
    margin-top: 1rem;
    padding: 1.2rem;
    border-radius: 1.5rem;
    background: #fff;
    border: 1px solid var(--border-light);
}

.mkt_featured_page_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.mkt_featured_page_head h1 {
    margin: 0;
}

.mkt_featured_page_group_head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mkt_featured_page_group_nav {
    display: flex;
    gap: .6rem;
}

.mkt_featured_page_card {
    display: grid;
    grid-template-columns: 12rem 1fr;
    align-items: center;
    min-height: 15rem;
    border-radius: 1.6rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
}

.mkt_featured_page_card_media,
.mkt_featured_page_card_placeholder {
    height: 15rem;
    background: #f3f4ff;
}

.mkt_featured_page_card_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_featured_page_card_placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_featured_page_card_body,
.mkt_featured_page_card_footer {
    padding: 1rem;
}

.mkt_featured_page_card_body {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    padding: 1.25rem 1.6rem 1.45rem;
}

.mkt_featured_page_card_body em {
    font-style: normal;
    color: var(--c-accent);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.mkt_featured_page_card_body strong {
    font-size: 1.5rem;
    color: var(--c-primary);
}

.mkt_featured_page_card_body span {
    font-size: 1.6rem;
    color: var(--c-accent);
    font-weight: 600;
}

.mkt_featured_slider_arrow {
    width: 2.8rem;
    height: 2.8rem;
    border: 0;
    border-radius: 999px;
    background: #f3f4ff;
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_featured_slider_arrow[disabled] {
    opacity: .45;
}

.mkt_ai_layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 1.25rem;
}

.mkt_ai_panel,
.mkt_ai_answer_card,
.mkt_ai_products_card {
    padding: 1.2rem;
    border-radius: 1.5rem;
    background: #fff;
}

.mkt_ai_hero {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 1.4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f6f7ff 100%);
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.mkt_ai_hero_copy h1 {
    font-size: 1.55rem;
    margin: .35rem 0;
    color: var(--c-primary);
}

.mkt_ai_hero_copy p {
    margin: 0;
    color: var(--c-text-muted);
}

.mkt_ai_hero_orbit {
    position: relative;
    min-height: 5.5rem;
    min-width: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_ai_hero_orbit_core {
    position: absolute;
    border-radius: 999px;
}

.mkt_ai_hero_orbit_core {
    width: 4rem;
    height: 4rem;
    background: var(--c-accent-light);
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_ai_form,
.mkt_ai_results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mkt_ai_input_shell textarea,
.mkt_ai_select {
    width: 100%;
    border: 1px solid var(--c-accent-muted);
    border-radius: 1rem;
    background: #f7f8ff;
    padding: .95rem 1rem;
    color: var(--c-primary);
}

.mkt_ai_prompt_list,
.mkt_ai_product_grid {
    display: grid;
    gap: .85rem;
}

.mkt_ai_prompt_list {
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
}

.mkt_ai_prompt_chip,
.mkt_ai_submit_btn {
    border: 0;
    border-radius: .95rem;
    padding: .85rem 1rem;
}

.mkt_ai_prompt_chip {
    background: rgba(2, 6, 23, .48);
    text-align: left;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, .14);
}

.mkt_ai_form_actions,
.mkt_ai_products_head,
.mkt_ai_answer_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mkt_ai_submit_btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--c-accent);
    color: #fff;
    font-weight: 600;
}

.mkt_ai_answer_body {
    min-height: 12rem;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    white-space: normal;
}

.mkt_ai_product_grid {
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

.mkt_ai_product_card {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: .8rem;
    padding: .8rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid var(--c-accent-light);
    text-decoration: none;
    color: inherit;
}

.mkt_ai_product_media,
.mkt_ai_product_placeholder {
    height: 5rem;
    border-radius: .8rem;
    background: #eef0ff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mkt_ai_product_media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_ai_product_body {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.mkt_ai_product_body em {
    font-style: normal;
    color: var(--c-accent);
    font-size: .74rem;
}

.mkt_ai_empty_state {
    padding: 1rem;
    border-radius: 1rem;
    background: #f5f6ff;
    color: #4c5877;
}

body.mkt_featured_modal_open {
    overflow: hidden;
}

.mkt_inq_product_mini_body {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    min-width: 0;
    flex: 1;
}

.mkt_inq_product_seller {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .72rem;
    color: var(--mkt-text-soft);
    margin-top: .1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_inq_product_seller svg {
    flex-shrink: 0;
    opacity: .65;
}


.mkt_inq_auth_gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem 1.75rem;
    gap: .85rem;
}

.mkt_inq_auth_gate_icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--mkt-accent) 10%, #fff), color-mix(in srgb, var(--mkt-accent) 4%, #fff));
    border: 1.5px solid color-mix(in srgb, var(--mkt-accent) 18%, var(--mkt-border-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-accent);
    flex-shrink: 0;
}

.mkt_inq_auth_gate_icon svg {
    --aous-aw-icon-size: 1.6rem;
}

.mkt_inq_auth_gate_title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin: 0;
    line-height: 1.3;
}

.mkt_inq_auth_gate_desc {
    font-size: .85rem;
    color: var(--mkt-text-soft);
    margin: 0;
    max-width: 300px;
    line-height: 1.55;
}

.mkt_inq_auth_gate_actions {
    display: flex;
    gap: .65rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.mkt_inq_auth_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    height: 46px;
    padding: 0 1.5rem;
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
    flex: 1;
    min-width: 140px;
}

.mkt_inq_auth_btn.is-primary {
    background: var(--mkt-accent);
    color: #fff;
    border: 1px solid transparent;
}

.mkt_inq_auth_btn.is-primary:hover {
    background: var(--mkt-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--mkt-accent) 35%, transparent);
}

.mkt_inq_auth_btn.is-outline {
    background: var(--mkt-surface-2);
    color: var(--mkt-primary);
    border: 1px solid var(--mkt-border);
}

.mkt_inq_auth_btn.is-outline:hover {
    background: var(--mkt-border-light);
    border-color: var(--mkt-border);
    transform: translateY(-1px);
}

.mkt_inq_auth_btn svg {
    --aous-aw-icon-size: 1rem;
    flex-shrink: 0;
}


.mkt_inq_auth_gate_product_preview {
    width: 100%;
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border-light);
    border-radius: 14px;
    padding: .85rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: .25rem;
}

.mkt_inq_auth_preview_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.mkt_inq_auth_preview_row span {
    font-size: .76rem;
    color: var(--mkt-text-muted);
    font-weight: 500;
}

.mkt_inq_auth_preview_row strong {
    font-size: .88rem;
    font-weight: 600;
    color: var(--mkt-primary);
    text-align: end;
}


.mkt_inq_sender_card {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--mkt-accent) 5%, #fff), #fff);
    border: 1.5px solid color-mix(in srgb, var(--mkt-accent) 15%, var(--mkt-border-light));
    margin-bottom: 1.1rem;
    position: relative;
}

.mkt_inq_sender_avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--mkt-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.mkt_inq_sender_avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mkt_inq_sender_info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .06rem;
}

.mkt_inq_sender_label {
    font-size: .63rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .1rem;
}

.mkt_inq_sender_name {
    font-size: .92rem;
    font-weight: 600;
    color: var(--mkt-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_inq_sender_company {
    font-size: .78rem;
    color: var(--mkt-text-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_inq_sender_badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    height: 26px;
    padding: 0 .7rem;
    border-radius: 999px;
    background: color-mix(in srgb, #10b981 10%, #fff);
    border: 1px solid color-mix(in srgb, #10b981 22%, var(--mkt-border-light));
    color: #059669;
    font-size: .68rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.mkt_inq_sender_badge svg {
    --aous-aw-icon-size: .75rem;
    flex-shrink: 0;
}


.mkt_inq_field_error {
    display: block;
    font-size: .7rem;
    color: #ef4444;
    margin-top: .25rem;
    font-weight: 500;
    line-height: 1.3;
}


.mkt_inq_sent_state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: .85rem;
}

.mkt_inq_sent_icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: color-mix(in srgb, #10b981 10%, #fff);
    border: 1.5px solid color-mix(in srgb, #10b981 22%, var(--mkt-border-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
}

.mkt_inq_sent_icon svg {
    --aous-aw-icon-size: 1.5rem;
}

.mkt_inq_sent_title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mkt-primary);
}

.mkt_inq_sent_desc {
    font-size: .85rem;
    color: var(--mkt-text-soft);
    max-width: 290px;
    line-height: 1.55;
}

.mkt_inq_sent_meta {
    font-size: .75rem;
    color: var(--mkt-text-muted);
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border-light);
    border-radius: 8px;
    padding: .35rem .8rem;
}


.mkt_detail_secondary_btn.is_inquiry_sent {
    opacity: .75;
    cursor: default;
    gap: .4rem;
}

.mkt_detail_secondary_btn.is_inquiry_sent svg {
    --aous-aw-icon-size: .9rem;
    flex-shrink: 0;
}






.mkt_sourcing_card_image {
    background: linear-gradient(145deg, #f4f5ff 0%, #eef0ff 50%, #f8f8ff 100%) !important;
}

.mkt_sourcing_placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(99, 102, 241, .35);
}

.mkt_sourcing_placeholder svg {
    width: 52px;
    height: 52px;
    stroke-width: 1.2;
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, .12));
}


.mkt_product_pip.pip_wanted_open {
    background: rgba(99, 102, 241, .12);
    color: var(--mkt-accent);
}

.mkt_product_pip.pip_wanted_soon {
    background: rgba(217, 119, 6, .12);
    color: #b45309;
}

.mkt_product_pip.pip_wanted_expired {
    background: rgba(107, 114, 128, .12);
    color: var(--mkt-text-muted);
}


.mkt_sourcing_subcat {
    font-weight: 400;
    color: var(--mkt-text-muted);
}


.mkt_sourcing_card_info_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.mkt_sourcing_card_budget {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mkt-accent);
}

.mkt_sourcing_card_budget_empty {
    color: var(--mkt-text-muted);
    font-size: .82rem;
    font-weight: 500;
}

.mkt_sourcing_card_qty {
    font-size: .75rem;
    font-weight: 600;
    color: var(--mkt-text-soft);
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border-light);
    border-radius: 20px;
    padding: .18rem .6rem;
    white-space: nowrap;
}


.mkt_sourcing_card_offers {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--mkt-accent);
    margin-top: -.15rem;
}

.mkt_sourcing_card_offers svg {
    width: .88rem;
    height: .88rem;
    stroke-width: 2;
    flex-shrink: 0;
}



.mkt_sourcing_detail_page {
    max-width: 1200px;
}

.mkt_sourcing_detail_layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: start;
}


.mkt_sourcing_detail_card {
    background: var(--mkt-white);
    border: 1px solid var(--mkt-border-light);
    border-radius: var(--mkt-radius-xl);
    box-shadow: var(--mkt-shadow-sm);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mkt_sourcing_detail_hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 1rem;
    padding: 1.3rem;
    border-radius: calc(var(--mkt-radius-xl) - 4px);
    border: 1px solid rgba(36, 59, 83, .08);
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, .12), transparent 34%),
        linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
}

.mkt_sourcing_detail_header {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.mkt_sourcing_detail_eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
}

.mkt_sourcing_detail_kicker {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0 .8rem;
    border-radius: 999px;
    background: rgba(36, 59, 83, .08);
    color: #243b53;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mkt_sourcing_detail_status {
    display: inline-flex;
    align-items: center;
    min-height: 1.9rem;
    padding: 0 .8rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.mkt_sourcing_detail_status.is_open {
    background: rgba(14, 165, 233, .12);
    color: #0369a1;
}

.mkt_sourcing_detail_status.is_soon {
    background: rgba(245, 158, 11, .14);
    color: #b45309;
}

.mkt_sourcing_detail_status.is_expired {
    background: rgba(239, 68, 68, .12);
    color: #b91c1c;
}

.mkt_sourcing_detail_cats {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.mkt_sourcing_detail_cat_badge {
    font-size: .72rem;
    font-weight: 600;
    color: var(--mkt-accent);
    background: var(--mkt-accent-soft);
    border-radius: 20px;
    padding: .22rem .75rem;
}

.mkt_sourcing_detail_cat_badge_sub {
    color: var(--mkt-text-muted);
    background: var(--mkt-surface-2);
}

.mkt_sourcing_detail_title {
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--mkt-primary);
    line-height: 1.3;
    margin: 0;
}

.mkt_sourcing_detail_code {
    font-size: .72rem;
    color: var(--mkt-text-muted);
    font-family: monospace;
    letter-spacing: .03em;
}

.mkt_sourcing_detail_meta_strip {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .25rem;
}

.mkt_sourcing_detail_meta_item {
    display: inline-flex;
    flex-direction: column;
    gap: .18rem;
    min-width: 136px;
    padding: .7rem .85rem;
    border-radius: 1rem;
    border: 1px solid rgba(36, 59, 83, .08);
    background: rgba(255, 255, 255, .74);
}

.mkt_sourcing_detail_meta_item strong {
    font-size: .68rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.mkt_sourcing_detail_meta_item span {
    font-size: .86rem;
    font-weight: 600;
    color: var(--mkt-primary);
    line-height: 1.35;
}

.mkt_sourcing_detail_snapshot {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .95rem;
    padding: 1rem;
    border-radius: 1.2rem;
    background: linear-gradient(160deg, #243b53 0%, #32506f 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(36, 59, 83, .18);
}

.mkt_sourcing_detail_snapshot_label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.mkt_sourcing_detail_snapshot_value {
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.15;
}

.mkt_sourcing_detail_snapshot_value span {
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .78);
}

.mkt_sourcing_detail_snapshot_list {
    display: grid;
    gap: .75rem;
}

.mkt_sourcing_detail_snapshot_list div {
    display: flex;
    flex-direction: column;
    gap: .18rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.mkt_sourcing_detail_snapshot_list span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .72);
}

.mkt_sourcing_detail_snapshot_list strong {
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
}


.mkt_sourcing_detail_description {
    font-size: .9rem;
    color: var(--mkt-text-soft);
    line-height: 1.75;
    padding: 1.1rem 1.2rem;
    background: var(--mkt-surface-2);
    border-radius: var(--mkt-radius-sm);
    border: 1px solid var(--mkt-border-light);
}

.mkt_sourcing_detail_description p {
    margin: 0;
}

.mkt_sourcing_key_stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}

.mkt_sourcing_stat_item {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: 1rem 1.1rem;
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border-light);
    border-radius: var(--mkt-radius-sm);
}

.mkt_sourcing_stat_val {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mkt-primary);
    line-height: 1.3;
}

.mkt_sourcing_stat_val_accent {
    color: var(--mkt-accent);
    font-size: 1.05rem;
}

.mkt_sourcing_detail_specs_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    margin-top: .25rem;
}

.mkt_sourcing_spec_item {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: .9rem 1rem;
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border-light);
    border-radius: var(--mkt-radius-sm);
}

.mkt_sourcing_spec_icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--mkt-white);
    border: 1px solid var(--mkt-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-text-muted);
    margin-bottom: .2rem;
    flex-shrink: 0;
}

.mkt_sourcing_spec_icon svg {
    width: .88rem;
    height: .88rem;
}

.mkt_sourcing_spec_icon_accent {
    background: var(--mkt-accent-soft);
    border-color: color-mix(in srgb, var(--mkt-accent) 20%, var(--mkt-border-light));
    color: var(--mkt-accent);
}

.mkt_sourcing_spec_label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.mkt_sourcing_spec_value {
    font-size: .92rem;
    font-weight: 600;
    color: var(--mkt-primary);
    line-height: 1.3;
}


.mkt_sourcing_spec_currency {
    font-size: .8rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
}



.mkt_sourcing_offer_panel {
    background: var(--mkt-white);
    border: 1px solid var(--mkt-border-light);
    border-radius: var(--mkt-radius-xl);
    box-shadow: var(--mkt-shadow-sm);
    overflow: hidden;
    position: sticky;
    top: 80px;
}

.mkt_sourcing_offer_panel_head {
    padding: 1.3rem 1.4rem 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.mkt_sourcing_offer_panel form {
    padding: 0 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mkt_sourcing_offer_panel_title {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin: 0;
}

.mkt_sourcing_offer_panel_sub {
    font-size: .8rem;
    color: var(--mkt-text-soft);
    margin: 0 0 1rem;
    line-height: 1.55;
}

.mkt_sourcing_offer_panel_note {
    display: grid;
    gap: .55rem;
    padding: .9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(36, 59, 83, .08);
    background: linear-gradient(180deg, #f8fbfe 0%, #f1f6fb 100%);
    font-size: .76rem;
    color: var(--mkt-text-soft);
}

.mkt_sourcing_offer_panel_note strong {
    color: var(--mkt-primary);
}

.mkt_sourcing_offer_panel_success_msg {
    margin: 0 1.4rem;
    padding: .7rem 1rem;
    background: rgba(5, 150, 105, .08);
    border: 1px solid rgba(5, 150, 105, .2);
    border-radius: var(--mkt-radius-sm);
    font-size: .82rem;
    color: var(--c-success);
    font-weight: 600;
}

.mkt_sourcing_offer_panel_error_msg {
    margin: 0 1.4rem;
    padding: .8rem 1rem;
    background: rgba(220, 38, 38, .08);
    border: 1px solid rgba(220, 38, 38, .18);
    border-radius: var(--mkt-radius-sm);
    font-size: .82rem;
    color: #b91c1c;
    font-weight: 600;
    display: grid;
    gap: .25rem;
}

.mkt_sourcing_offer_fields {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    padding-top: .2rem;
}

.mkt_sourcing_offer_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
}

.mkt_sourcing_offer_field {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.mkt_sourcing_offer_field_full {
    grid-column: 1 / -1;
}

.mkt_sourcing_offer_field label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--mkt-text-soft);
}


.mkt_sourcing_offer_divider {
    height: 1px;
    background: var(--mkt-border-light);
    margin: 1.25rem 0 1.1rem;
}

.mkt_sourcing_offer_submit_btn {
    width: 100%;
    min-height: 46px;
    border-radius: var(--mkt-radius-sm);
    background: linear-gradient(135deg, #243b53, #2f4964);
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.mkt_sourcing_offer_submit_btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(36, 59, 83, .18);
    background: linear-gradient(135deg, #2b4662, #365473);
}


.mkt_sourcing_offer_panel_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .85rem;
    padding: 2.2rem 1.4rem;
}

.mkt_sourcing_offer_panel_info p {
    font-size: .85rem;
    color: var(--mkt-text-soft);
    margin: 0;
    line-height: 1.6;
    max-width: 240px;
}

.mkt_sourcing_offer_panel_icon {
    width: 52px;
    height: 52px;
    border-radius: var(--mkt-radius-sm);
    background: var(--mkt-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-accent);
}

.mkt_sourcing_offer_panel_icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.mkt_sourcing_offer_panel_success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .85rem;
    padding: 2rem 1.4rem;
}

.mkt_sourcing_offer_panel_success .mkt_sourcing_offer_panel_icon {
    background: rgba(5, 150, 105, .1);
    color: var(--c-success);
}

.mkt_sourcing_offer_panel_success strong {
    font-size: .96rem;
    font-weight: 600;
    color: var(--c-success);
}

.mkt_sourcing_offer_summary {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    font-size: .8rem;
    color: var(--mkt-text-soft);
    padding: .85rem 1rem;
    background: var(--mkt-surface-2);
    border-radius: var(--mkt-radius-sm);
    border: 1px solid var(--mkt-border-light);
    width: 100%;
    text-align: start;
}

.mkt_sourcing_offer_summary b {
    color: var(--mkt-primary);
}


.mkt_sourcing_panel_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: var(--mkt-radius-sm);
    background: linear-gradient(135deg, #243b53, #2f4964);
    color: #fff;
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0 1.4rem;
    transition: transform var(--ease), box-shadow var(--ease);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.mkt_sourcing_panel_cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(36, 59, 83, .18);
    color: #fff;
}

.mkt_sourcing_share_panel {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: .9rem 1.1rem;
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border-light);
    border-radius: var(--mkt-radius-xl);
    margin-top: .75rem;
}

.mkt_sourcing_share_panel_icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--mkt-accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--mkt-accent) 20%, var(--mkt-border-light));
    color: var(--mkt-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_sourcing_share_panel_icon svg {
    width: .9rem;
    height: .9rem;
}

.mkt_sourcing_share_panel_body {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
    min-width: 0;
}

.mkt_sourcing_share_panel_label {
    font-size: .78rem;
    color: var(--mkt-text-soft);
    line-height: 1.45;
}

.mkt_sourcing_share_form {
    margin: 0;
}

.mkt_sourcing_share_btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .42rem .95rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--mkt-accent);
    background: color-mix(in srgb, var(--mkt-accent) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--mkt-accent) 25%, var(--mkt-border-light));
    border-radius: var(--mkt-radius-sm);
    cursor: pointer;
    transition: background .18s, border-color .18s, color .18s;
}

.mkt_sourcing_share_btn:hover {
    background: color-mix(in srgb, var(--mkt-accent) 14%, transparent);
    border-color: var(--mkt-accent);
}

.mkt_sourcing_share_sent_badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    font-weight: 600;
    color: #16a34a;
}

.mkt_sourcing_share_sent_badge svg {
    width: .85rem;
    height: .85rem;
}

/* Recommended badge — search_top featured products */
.mkt_recommended_pip {
    position: absolute;
    top: .85rem;
    right: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    min-height: 28px;
    padding: 0 .72rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(217, 119, 6, .32);
    z-index: 2;
    pointer-events: none;
}

.mkt_recommended_pip svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    fill: #fff;
    stroke: none;
}

.mkt_product_card.is_recommended {
    outline: 2px solid rgba(245, 158, 11, .4);
    outline-offset: -2px;
}

.mkt_recommended_badge_inline {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .18rem .52rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    vertical-align: middle;
    margin-inline-start: .4rem;
    white-space: nowrap;
}

.mkt_recommended_badge_inline svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    fill: #fff;
    stroke: none;
}

tr.is_recommended td {
    background: rgba(245, 158, 11, .04);
}

/* ──────────────────────────────────────────
   Follow button  (store profile)
────────────────────────────────────────── */
.sp_follow_btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: 0 1.2rem;
    min-height: 40px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s, border-color .18s, transform .12s;
    backdrop-filter: blur(6px);
    text-decoration: none;
    white-space: nowrap;
}

.sp_follow_btn:hover {
    background: rgba(255, 255, 255, .22);
    border-color: #fff;
    transform: translateY(-1px);
    color: #fff;
}

.sp_follow_btn.is_following {
    background: rgba(255, 255, 255, .28);
    border-color: #fff;
}

.sp_follow_btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

.sp_follow_icon_plus {
    display: block;
}

.sp_follow_icon_check {
    display: none;
}

.sp_follow_btn.is_following .sp_follow_icon_plus {
    display: none;
}

.sp_follow_btn.is_following .sp_follow_icon_check {
    display: block;
}

.sp_chat_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    transition: background .18s, border-color .18s;
    backdrop-filter: blur(6px);
    text-decoration: none;
}

.sp_chat_btn:hover {
    background: rgba(255, 255, 255, .22);
    border-color: #fff;
    color: #fff;
}

/* Clickable stat (reviews link in hero strip) */
.sp_stat_link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 10px;
    padding: 0 .5rem;
    transition: background .15s;
}

.sp_stat_link:hover {
    background: rgba(255, 255, 255, .12);
}

/* ──────────────────────────────────────────
   Reviews page  (/store/{slug}/reviews)
────────────────────────────────────────── */
.sp_reviews_page {
    max-width: 820px;
    margin: 2rem auto 4rem;
    padding: 0 1.25rem;
}

.sp_reviews_page_header {
    margin-bottom: 1.75rem;
}

.sp_reviews_back_link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .82rem;
    color: var(--mkt-text-muted);
    text-decoration: none;
    margin-bottom: .75rem;
    transition: color .15s;
}

.sp_reviews_back_link:hover {
    color: var(--mkt-accent);
}

.sp_reviews_page_title_row {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.sp_reviews_page_title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--mkt-text);
    margin: 0;
}

.sp_reviews_page_count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 0 .5rem;
    height: 24px;
    border-radius: 999px;
    background: var(--c-accent-muted);
    color: var(--mkt-accent);
    font-size: .75rem;
    font-weight: 600;
}

.sp_reviews_summary_card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--mkt-surface);
    border: 1px solid var(--mkt-border);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.sp_reviews_summary_score {
    text-align: center;
    min-width: 90px;
}

.sp_reviews_big_number {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--mkt-text);
    line-height: 1;
    margin-bottom: .4rem;
}

.sp_reviews_total_label {
    font-size: .75rem;
    color: var(--mkt-text-muted);
    margin-top: .35rem;
}

.sp_reviews_distribution {
    flex: 1;
    min-width: 200px;
}

.sp_rating_bar_num {
    color: var(--mkt-text-muted);
    width: 10px;
    text-align: right;
    font-size: .82rem;
}

.sp_rating_bar_count {
    color: var(--mkt-text-muted);
    width: 26px;
    text-align: right;
    font-size: .78rem;
}

.sp_reviews_page_grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.mkt_tbl_save_btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mkt-white);
    color: var(--mkt-text-muted);
    cursor: pointer;
    transition: color .15s, border-color .15s, background .15s;
}

.mkt_tbl_save_btn:hover,
.mkt_tbl_save_btn.is_saved {
    color: #e03e52;
    border-color: #e03e52;
    background: rgba(224, 62, 82, .07);
}

.mkt_tbl_save_btn.is_saved svg {
    color: #e03e52;
}

/* ── Grid card save button ── */
.mkt_product_card_footer_actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.mkt_product_card_footer_actions .mkt_product_card_btn {
    flex: 1;
}

.mkt_product_card_save_btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mkt-white);
    color: var(--mkt-text-muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: color .15s, border-color .15s, background .15s;
}

.mkt_product_card_save_btn:hover,
.mkt_product_card_save_btn.is_saved {
    color: #e03e52;
    border-color: #e03e52;
    background: rgba(224, 62, 82, .07);
}

.mkt_product_card_save_btn.is_saved svg {
    color: #e03e52;
}

/* ── Detail page top bar save button ── */
.mkt_detail_top_bar_actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.mkt_detail_save_btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: 38px;
    padding: 0 .75rem;
    border-radius: 12px;
    border: 1px solid var(--mkt-border);
    background: var(--mkt-white);
    color: var(--mkt-text-muted);
    font-size: .84rem;
    font-weight: 500;
    cursor: pointer;
    transition: color .15s, border-color .15s, background .15s;
}

.mkt_detail_save_btn:hover,
.mkt_detail_save_btn.is_saved {
    color: #e03e52;
    border-color: #e03e52;
    background: rgba(224, 62, 82, .07);
}

.mkt_detail_save_btn.is_saved svg {
    color: #e03e52;
}


/* =========================================================
   HOME / LANDING PAGE
   ========================================================= */

/* ── Hero ──────────────────────────────────────────────── */
.mkt_hp_hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-inline: -6rem;
    overflow: hidden;
    background: #0c1524;
}

.mkt_hp_hero_bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: .38;
    transition: opacity .6s ease;
}

.mkt_hp_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            #0c1524 45%,
            rgba(12, 21, 36, .82) 68%,
            rgba(12, 21, 36, .42) 100%);
    pointer-events: none;
}

.mkt_hp_hero_inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin-inline: auto;
    padding: 7rem 6rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    gap: 4rem;
    align-items: center;
}

.mkt_hp_hero_copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mkt_hp_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(99, 102, 241, .15);
    border: 1px solid rgba(99, 102, 241, .3);
    color: #a5b4fc;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .38rem .9rem;
    border-radius: 999px;
    width: fit-content;
}

.mkt_hp_eyebrow_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6366f1;
    flex-shrink: 0;
    animation: mkt_hp_pulse 2s ease-in-out infinite;
}

@keyframes mkt_hp_pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.75);
    }
}

.mkt_hp_h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: #f1f5f9;
    margin: 0;
}

.mkt_hp_h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #818cf8, #6366f1, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mkt_hp_sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 520px;
    margin: 0;
}

.mkt_hp_hero_actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .25rem;
}

.mkt_hp_btn_primary {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #6366f1;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    padding: .82rem 1.65rem;
    border-radius: 14px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, .35);
    flex-shrink: 0;
}

.mkt_hp_btn_primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.mkt_hp_btn_primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, .45);
}

.mkt_hp_btn_ghost {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #e2e8f0;
    font-weight: 600;
    font-size: .95rem;
    padding: .82rem 1.65rem;
    border-radius: 14px;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
}

.mkt_hp_btn_ghost:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}

.mkt_hp_trust {
    display: flex;
    align-items: center;
    gap: .85rem;
    flex-wrap: wrap;
    margin-top: .35rem;
}

.mkt_hp_trust_item {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    color: #64748b;
    font-size: .8rem;
    font-weight: 500;
}

.mkt_hp_trust_item svg {
    width: 14px;
    height: 14px;
    color: #6366f1;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Hero visual — right side floating cards */
.mkt_hp_hero_visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.mkt_hp_hero_glow {
    position: absolute;
    inset: -30%;
    background: radial-gradient(ellipse at 60% 50%, rgba(99, 102, 241, .2), transparent 65%);
    pointer-events: none;
}

.mkt_hp_float_card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 1.1rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    animation: mkt_hp_float 5s ease-in-out infinite;
    position: relative;
}

.mkt_hp_float_card:nth-child(1) {
    margin-inline-start: 1.5rem;
}

.mkt_hp_float_card:nth-child(2) {
    animation-delay: -1.5s;
    margin-inline-start: 2.5rem;
}

.mkt_hp_float_card:nth-child(3) {
    animation-delay: -3s;
    margin-inline-end: 2.5rem;
}

@keyframes mkt_hp_float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.mkt_hp_card_badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: .28rem .7rem;
    border-radius: 999px;
    width: fit-content;
}

.mkt_hp_card_badge.is_green {
    background: rgba(5, 150, 105, .18);
    color: #34d399;
}

.mkt_hp_card_badge.is_indigo {
    background: rgba(99, 102, 241, .18);
    color: #a5b4fc;
}

.mkt_hp_card_badge.is_amber {
    background: rgba(217, 119, 6, .18);
    color: #fbbf24;
}

.mkt_hp_card_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mkt_hp_card_label {
    font-size: .78rem;
    color: #94a3b8;
    font-weight: 500;
}

.mkt_hp_card_val {
    font-size: 1.55rem;
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: -.03em;
    line-height: 1;
}

.mkt_hp_card_trend {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font-size: .75rem;
    font-weight: 600;
    color: #34d399;
}

.mkt_hp_card_trend svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mkt_hp_card_text {
    font-size: .84rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.mkt_hp_card_dot_row {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.mkt_hp_card_avatar {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

/* ── Stats Bar ─────────────────────────────────────────── */
.mkt_hp_stats {
    margin-top: -1.5rem;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.mkt_hp_stats_inner {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(36, 59, 83, .1);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.mkt_hp_stat {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    border-inline-end: 1px solid var(--border-light);
}

.mkt_hp_stat:last-child {
    border-inline-end: none;
}

.mkt_hp_stat_val {
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--mkt-primary);
    letter-spacing: -.04em;
    line-height: 1;
}

.mkt_hp_stat_val span {
    color: var(--mkt-accent);
}

.mkt_hp_stat_lbl {
    font-size: .8rem;
    color: var(--mkt-text-muted);
    font-weight: 500;
}

/* ── Generic Section ───────────────────────────────────── */
.mkt_hp_section {
    padding: 5rem 0;
}

.mkt_hp_section.is_tinted {
    background: var(--mkt-surface-2);
    margin-inline: -6rem;
    padding-inline: 6rem;
}

.mkt_hp_section_head {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: center;
}

.mkt_hp_tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--c-accent-muted);
    color: var(--mkt-accent);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem .85rem;
    border-radius: 999px;
    width: fit-content;
}

.mkt_hp_section_title {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 600;
    color: var(--mkt-primary);
    letter-spacing: -.03em;
    line-height: 1.2;
    margin: 0;
}

.mkt_hp_section_sub {
    font-size: .98rem;
    color: var(--mkt-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Features Grid ─────────────────────────────────────── */
.mkt_hp_feat_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.mkt_hp_feat_card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    transition: box-shadow .22s ease, border-color .22s ease, transform .22s ease;
    cursor: default;
}

.mkt_hp_feat_card:hover {
    box-shadow: 0 12px 32px rgba(36, 59, 83, .1);
    border-color: rgba(99, 102, 241, .22);
    transform: translateY(-3px);
}

.mkt_hp_feat_icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--c-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .22s ease;
}

.mkt_hp_feat_card:hover .mkt_hp_feat_icon {
    background: var(--c-accent-muted);
}

.mkt_hp_feat_icon svg {
    width: 22px;
    height: 22px;
    color: var(--mkt-accent);
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mkt_hp_feat_title {
    font-size: .95rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin: 0;
    line-height: 1.35;
}

.mkt_hp_feat_desc {
    font-size: .84rem;
    color: var(--mkt-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── How It Works ──────────────────────────────────────── */
.mkt_hp_how {
    background: #0f172a;
    margin-inline: -6rem;
    padding: 5rem 6rem;
}

.mkt_hp_how .mkt_hp_section_title {
    color: #f1f5f9;
}

.mkt_hp_how .mkt_hp_section_sub {
    color: #94a3b8;
}

.mkt_hp_how .mkt_hp_tag {
    background: rgba(99, 102, 241, .2);
    color: #a5b4fc;
}

.mkt_hp_steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
}

.mkt_hp_step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 0 2rem;
    position: relative;
}

.mkt_hp_step_num {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 24px rgb(99 102 241 / 16%);
}

.mkt_hp_step_body {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.mkt_hp_step_title {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
}

.mkt_hp_step_desc {
    font-size: .85rem;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0;
}

/* ── For Buyers ────────────────────────────────────────── */
.mkt_hp_buyers {
    padding: 5rem 0;
}

.mkt_hp_buyers_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
    margin-top: 0;
}

.mkt_hp_buyers_img_wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.mkt_hp_buyers_img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.mkt_hp_buyers_img_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 21, 36, .55), transparent);
    border-radius: 24px;
}

.mkt_hp_buyers_cards {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mkt_hp_buyer_card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.mkt_hp_buyer_card:hover {
    box-shadow: 0 8px 24px rgba(36, 59, 83, .09);
    border-color: rgba(99, 102, 241, .2);
}

.mkt_hp_buyer_icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--c-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_hp_buyer_icon svg {
    width: 21px;
    height: 21px;
    color: var(--mkt-accent);
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mkt_hp_buyer_body {
    flex: 1 1 0;
    min-width: 0;
}

.mkt_hp_buyer_title {
    font-size: .93rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin: 0 0 .38rem;
}

.mkt_hp_buyer_desc {
    font-size: .83rem;
    color: var(--mkt-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Plans Section ─────────────────────────────────────── */
.mkt_hp_plans {
    padding: 5rem 0;
    background: var(--mkt-surface-2);
    margin-inline: -6rem;
    padding-inline: 6rem;
}

.mkt_hp_plans_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 0;
}

.mkt_hp_plan_card {
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: 22px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: box-shadow .22s ease, border-color .22s ease;
}

.mkt_hp_plan_card:hover {
    box-shadow: 0 16px 40px rgba(36, 59, 83, .1);
}

.mkt_hp_plan_card.is_featured {
    background: linear-gradient(160deg, #1e1b4b 0%, #312e81 100%);
    border-color: #4f46e5;
    box-shadow: 0 20px 50px rgba(99, 102, 241, .25);
    position: relative;
    overflow: hidden;
}

.mkt_hp_plan_card.is_featured::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(129, 140, 248, .2), transparent 65%);
    pointer-events: none;
}

.mkt_hp_plan_header {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.mkt_hp_plan_top_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.mkt_hp_plan_name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin: 0;
    letter-spacing: -.02em;
}

.mkt_hp_plan_card.is_featured .mkt_hp_plan_name {
    color: #f1f5f9;
}

.mkt_hp_plan_popular {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, .18);
    color: #a5b4fc;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .28rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(99, 102, 241, .25);
}

.mkt_hp_plan_desc {
    font-size: .84rem;
    color: var(--mkt-text-muted);
    line-height: 1.6;
    margin: 0;
}

.mkt_hp_plan_card.is_featured .mkt_hp_plan_desc {
    color: #94a3b8;
}

.mkt_hp_plan_feats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    flex: 1;
}

.mkt_hp_plan_feat {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .85rem;
    color: var(--mkt-text);
    line-height: 1.5;
}

.mkt_hp_plan_card.is_featured .mkt_hp_plan_feat {
    color: #cbd5e1;
}

.mkt_hp_plan_feat_icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(99, 102, 241, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .05rem;
}

.mkt_hp_plan_card.is_featured .mkt_hp_plan_feat_icon {
    background: rgba(99, 102, 241, .25);
}

.mkt_hp_plan_feat_icon svg {
    width: 10px;
    height: 10px;
    color: var(--mkt-accent);
    stroke: currentColor;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mkt_hp_plan_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .82rem 1.5rem;
    border-radius: 13px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    border: 1.5px solid var(--border-color);
    color: var(--mkt-primary);
    background: transparent;
}

.mkt_hp_plan_cta:hover {
    background: var(--mkt-surface);
    border-color: var(--mkt-accent);
    color: var(--mkt-accent);
}

.mkt_hp_plan_card.is_featured .mkt_hp_plan_cta {
    background: #6366f1;
    border-color: #6366f1;
    color: #fff;
    box-shadow: 0 8px 20px rgba(99, 102, 241, .35);
}

.mkt_hp_plan_card.is_featured .mkt_hp_plan_cta:hover {
    background: #4f46e5;
    border-color: #4f46e5;
}

.mkt_hp_plans_footer {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
}

.mkt_hp_plans_trial {
    font-size: .82rem;
    color: var(--mkt-text-muted);
}

.mkt_hp_plans_link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--mkt-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.mkt_hp_plans_link:hover {
    text-decoration: underline;
}

.mkt_hp_plans_link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Final CTA Section ─────────────────────────────────── */
.mkt_hp_cta_section {
    margin-inline: -6rem;
    background: linear-gradient(135deg, #0c1524 0%, #1a2740 50%, #1e1b4b 100%);
    padding: 5.5rem 6rem;
    position: relative;
    overflow: hidden;
}

.mkt_hp_cta_glow_1 {
    position: absolute;
    top: -30%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, .18), transparent 60%);
    pointer-events: none;
}

.mkt_hp_cta_glow_2 {
    position: absolute;
    bottom: -40%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(79, 70, 229, .15), transparent 60%);
    pointer-events: none;
}

.mkt_hp_cta_inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mkt_hp_cta_title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    color: #f1f5f9;
    letter-spacing: -.04em;
    line-height: 1.15;
    margin: 0;
}

.mkt_hp_cta_sub {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
    max-width: 540px;
}

.mkt_hp_cta_actions {
    display: flex;
    align-items: center;
    gap: .9rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mkt_hp_cta_btn_primary {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #6366f1;
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
    padding: .75rem;
    border-radius: 14px;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 24px rgba(99, 102, 241, .4);
}

.mkt_hp_cta_btn_primary:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(99, 102, 241, .5);
}

.mkt_hp_cta_btn_ghost {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: #cbd5e1;
    font-weight: 600;
    font-size: .85rem;
    padding: .75rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all .2s ease;
}

.mkt_hp_cta_btn_ghost:hover {
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

/* ── Home page body adjustments ────────────────────────── */
body.marketplace_body.is-home-page {
    background: #f5f5f5;
}

body.marketplace_body.is-home-page .marketplace_main_shell {
    padding-top: 0;
}

body.marketplace_body.is-home-page .marketplace_navbar {
    inset: 0 0 auto;
    padding: 1.15rem 2rem 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.marketplace_body.is-home-page .marketplace_navbar.is_scrolled {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

body.marketplace_body.is-home-page .marketplace_navbar_inner {
    width: min(100%, 1380px);
    min-height: 60px;
    margin: 0 auto;
    padding: 0 1.15rem 0 1.45rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 23, 42, .78) 0%, rgba(51, 65, 85, .66) 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    box-shadow: 0 18px 42px rgba(2, 8, 23, .18);
    transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

body.marketplace_body.is-home-page .marketplace_navbar.is_scrolled .marketplace_navbar_inner {
    background: linear-gradient(135deg, rgba(15, 23, 42, .88) 0%, rgba(30, 41, 59, .8) 100%);
    border-color: rgba(255, 255, 255, .1);
    box-shadow: 0 18px 46px rgba(2, 8, 23, .24);
}

body.marketplace_body.is-home-page .marketplace_brand {
    gap: .7rem;
}

body.marketplace_body.is-home-page .marketplace_brand_mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
}

body.marketplace_body.is-home-page .marketplace_brand_text strong,
body.marketplace_body.is-home-page .marketplace_nav_links a,
body.marketplace_body.is-home-page .marketplace_lang_btn,
body.marketplace_body.is-home-page .marketplace_account_chip,
body.marketplace_body.is-home-page .marketplace_nav_signin_btn,
body.marketplace_body.is-home-page .marketplace_nav_icon_btn {
    color: #f8fbff;
}

body.marketplace_body.is-home-page .marketplace_account_name {
    color: rgba(255, 255, 255, .74);
}

body.marketplace_body.is-home-page .marketplace_nav_links {
    justify-content: center;
    gap: .45rem;
    margin-inline-start: 1rem;
}

body.marketplace_body.is-home-page .marketplace_nav_links a {
    position: relative;
    padding: .72rem 1rem;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 600;
}

body.marketplace_body.is-home-page .marketplace_nav_links a:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

body.marketplace_body.is-home-page .marketplace_nav_links a.is_active {
    background: transparent;
    color: #fff;
}

body.marketplace_body.is-home-page .marketplace_nav_links a.is_active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: .28rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fbbf24;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, .14);
}

body.marketplace_body.is-home-page .marketplace_nav_actions {
    gap: .55rem;
}

body.marketplace_body.is-home-page .marketplace_lang_btn,
body.marketplace_body.is-home-page .marketplace_nav_signin_btn,
body.marketplace_body.is-home-page .marketplace_account_chip,
body.marketplace_body.is-home-page .marketplace_nav_icon_btn {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .12);
}

body.marketplace_body.is-home-page .marketplace_lang_btn:hover,
body.marketplace_body.is-home-page .marketplace_nav_signin_btn:hover,
body.marketplace_body.is-home-page .marketplace_account_chip:hover,
body.marketplace_body.is-home-page .marketplace_nav_icon_btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

body.marketplace_body.is-home-page .marketplace_nav_signin_btn {
    height: 42px;
    border-radius: 999px;
    padding: 0 1.2rem;
}

body.marketplace_body.is-home-page .marketplace_nav_join_btn {
    height: 44px;
    padding: 0 1.25rem;
    border-radius: 999px;
    background: #6366f1;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(251, 191, 36, .22);
    opacity: 0.9;
}

body.marketplace_body.is-home-page .marketplace_nav_join_btn:hover {
    background: #6366f1;
    color: #ffffff;
    opacity: 1;
}

body.marketplace_body.is-home-page .marketplace_lang_menu {
    border-color: rgba(255, 255, 255, .09);
    background: rgba(15, 23, 42, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 18px 40px rgba(2, 8, 23, .26);
}

body.marketplace_body.is-home-page .marketplace_lang_option {
    color: #f8fbff;
}

body.marketplace_body.is-home-page .marketplace_lang_option_code {
    color: rgba(255, 255, 255, .48);
}

body.marketplace_body.is-home-page .marketplace_lang_option:hover,
body.marketplace_body.is-home-page .marketplace_lang_option.is_active {
    background: rgba(99, 102, 241, .16);
    color: #fff;
}

body.marketplace_body.is-home-page .marketplace_lang_option:hover .marketplace_lang_option_code,
body.marketplace_body.is-home-page .marketplace_lang_option.is_active .marketplace_lang_option_code {
    color: #c7d2fe;
}

body.marketplace_body.is-home-page .marketplace_nav_toggle {
    color: #f8fbff;
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .12);
}

/* Scrollbar in home page hero */
.mkt_hp_hero+.mkt_hp_stats {
    margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — WHY B2BMARKET SECTION
═══════════════════════════════════════════════════════════════ */
.mkt_hp_why {
    padding-block: 6rem;
}

.mkt_hp_why_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 3rem;
}

.mkt_hp_why_card {
    position: relative;
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    overflow: hidden;
}

.mkt_hp_why_card::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mkt-accent), #818cf8);
    opacity: 0;
    transition: opacity .25s;
}

.mkt_hp_why_card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 8px 32px rgba(99, 102, 241, .10);
    transform: translateY(-3px);
}

.mkt_hp_why_card:hover::before {
    opacity: 1;
}

.mkt_hp_why_icon_wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-accent);
    margin-bottom: 1.25rem;
}

.mkt_hp_why_icon_wrap svg {
    width: 22px;
    height: 22px;
}

.mkt_hp_why_num {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--mkt-accent);
    opacity: .55;
    margin-bottom: .5rem;
}

.mkt_hp_why_card_title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin-bottom: .625rem;
    line-height: 1.35;
}

.mkt_hp_why_card_desc {
    font-size: .875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — FOR SUPPLIERS SECTION
═══════════════════════════════════════════════════════════════ */
.mkt_hp_sup {
    padding-block: 6rem;
}

.mkt_hp_sup_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
    margin-top: 3rem;
}

.mkt_hp_sup_card {
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.mkt_hp_sup_card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 8px 32px rgba(99, 102, 241, .10);
    transform: translateY(-3px);
}

.mkt_hp_sup_icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--mkt-accent), #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.mkt_hp_sup_icon svg {
    width: 24px;
    height: 24px;
}

.mkt_hp_sup_card_title {
    font-size: 1.025rem;
    font-weight: 600;
    color: var(--mkt-primary);
    margin-bottom: .625rem;
    line-height: 1.35;
}

.mkt_hp_sup_card_desc {
    font-size: .875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.mkt_hp_sup_cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — FAQ ACCORDION
═══════════════════════════════════════════════════════════════ */
.mkt_hp_faq {
    padding-block: 6rem;
}

.mkt_hp_faq_list {
    max-width: 780px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.mkt_hp_faq_item {
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.mkt_hp_faq_item[open] {
    border-color: #c7d2fe;
    box-shadow: 0 4px 20px rgba(99, 102, 241, .08);
}

.mkt_hp_faq_item[open] .mkt_hp_faq_chevron {
    transform: rotate(180deg);
}

.mkt_hp_faq_q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: .975rem;
    font-weight: 600;
    color: var(--mkt-primary);
    cursor: pointer;
    user-select: none;
    transition: background .15s;
}

.mkt_hp_faq_q::-webkit-details-marker {
    display: none;
}

.mkt_hp_faq_item[open] .mkt_hp_faq_q {
    background: #ffffff;
    color: var(--mkt-accent);
}

.mkt_hp_faq_chevron {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform .25s ease, color .2s;
}

.mkt_hp_faq_item[open] .mkt_hp_faq_chevron {
    color: var(--mkt-accent);
}

.mkt_hp_faq_a {
    padding: 0 1.5rem 1.25rem;
    border-top: 1px solid #eef2ff;
}

.mkt_hp_faq_a p {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.7;
    margin: 1rem 0 0;
}

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — SMART MATCHING SECTION
═══════════════════════════════════════════════════════════════ */

/* ── Keyframe animations ── */
@keyframes mkt_match_ring_pulse {
    0% {
        transform: scale(1);
        opacity: .55;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes mkt_match_orb_spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes mkt_match_dot_flow {
    0% {
        left: -10px;
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    92% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 10px);
        opacity: 0;
    }
}

@keyframes mkt_match_scan_bar {
    0% {
        width: 0%;
        left: 0;
    }

    45% {
        width: 80%;
        left: 0;
    }

    55% {
        width: 80%;
        left: 20%;
    }

    100% {
        width: 0%;
        left: 100%;
    }
}

@keyframes mkt_match_card_in {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mkt_match_bar_grow {
    from {
        width: 0%;
    }

    to {
        width: var(--score, 0%);
    }
}

@keyframes mkt_match_orb_glow {

    0%,
    100% {
        box-shadow: 0 0 24px rgba(99, 102, 241, .6), 0 0 48px rgba(99, 102, 241, .25);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, .9), 0 0 80px rgba(99, 102, 241, .4);
    }
}

@keyframes mkt_match_buyer_float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ── Section shell ── */
.mkt_hp_match {
    position: relative;
    background: #080f1c;
    margin-inline: -6rem;
    padding: 6rem 6rem 5rem;
    overflow: hidden;
}

.mkt_hp_match_bg_glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 20%, rgba(99, 102, 241, .18) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(79, 70, 229, .12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 80% 70%, rgba(129, 140, 248, .10) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Section head overrides for dark bg ── */
.mkt_hp_match_head {
    position: relative;
    z-index: 1;
}

.mkt_hp_match .mkt_hp_tag_light {
    background: rgba(99, 102, 241, .18);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, .25);
}

.mkt_hp_match .mkt_hp_title_light {
    color: #f1f5f9;
}

.mkt_hp_match .mkt_hp_sub_light {
    color: #94a3b8;
}

/* ── Animated visual wrapper ── */
.mkt_hp_match_visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 3.5rem;
}

/* ── Generic panel ── */
.mkt_hp_match_panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
}

.mkt_hp_match_panel_lbl {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: .25rem;
}

.mkt_hp_match_panel_lbl svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* ── BUYER CARD ── */
.mkt_hp_match_buyer_card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1rem;
    width: 100%;
    max-width: 340px;
    height: 10rem;
    display: flex;
    flex-direction: column;
    gap: .875rem;
    animation: mkt_match_buyer_float 3.5s ease-in-out infinite;
    backdrop-filter: blur(12px);
}

.mkt_hp_match_bcr_badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(99, 102, 241, .25);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, .3);
    border-radius: 100px;
    padding: .25rem .7rem;
    width: fit-content;
}

.mkt_hp_match_bcr_badge svg {
    width: 11px;
    height: 11px;
}

.mkt_hp_match_bcr_item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 600;
    color: #e2e8f0;
    line-height: 1.3;
}

.mkt_hp_match_bcr_item svg {
    width: 18px;
    height: 18px;
    color: #6366f1;
    flex-shrink: 0;
}

.mkt_hp_match_bcr_tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.mkt_hp_match_bcr_tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    font-weight: 500;
    color: #94a3b8;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 100px;
    padding: .2rem .6rem;
}

.mkt_hp_match_bcr_tag svg {
    width: 11px;
    height: 11px;
}

.mkt_hp_match_bcr_tag_budget {
    color: #6ee7b7;
    border-color: rgba(110, 231, 183, .2);
    background: rgba(110, 231, 183, .07);
}

/* ── CONNECTOR ── */
.mkt_hp_match_connector {
    flex: 0 0 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 1.75rem;
}

.mkt_hp_match_conn_track {
    width: 100%;
    height: 2px;
    background: rgba(99, 102, 241, .25);
    position: relative;
    border-radius: 2px;
    overflow: visible;
}

.mkt_hp_match_conn_dot {
    position: absolute;
    width: 9px;
    height: 9px;
    background: #818cf8;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -9px;
    animation: mkt_match_dot_flow 1.35s linear infinite;
    box-shadow: 0 0 8px rgba(129, 140, 248, .8);
}

.mkt_hp_match_conn_arr {
    position: absolute;
    right: -12px;
    width: 18px;
    height: 18px;
    color: #6366f1;
}

/* ── ENGINE PANEL & ORB ── */
.mkt_hp_match_panel_engine {
    flex: 0 0 180px;
}

.mkt_hp_match_orb_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .875rem;
}

.mkt_hp_match_orb {
    position: relative;
    width: 108px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_hp_match_orb_ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, .45);
    animation: mkt_match_ring_pulse 2.1s cubic-bezier(.4, 0, .6, 1) infinite;
}

.mkt_hp_match_orb_spin {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: mkt_match_orb_spin 3.5s linear infinite;
}

.mkt_hp_match_orb_dot {
    position: absolute;
    width: 7px;
    height: 7px;
    background: #818cf8;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin: -3.5px;
    box-shadow: 0 0 6px #818cf8;
    transform: rotate(var(--deg, 0deg)) translateX(48px);
}

.mkt_hp_match_orb_core {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    animation: mkt_match_orb_glow 2.8s ease-in-out infinite;
}

.mkt_hp_match_orb_core svg {
    width: 28px;
    height: 28px;
}

/* Scanning progress bar */
.mkt_hp_match_scan_track {
    width: 140px;
    height: 4px;
    background: rgba(255, 255, 255, .1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.mkt_hp_match_scan_bar {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #818cf8);
    border-radius: 4px;
    animation: mkt_match_scan_bar 2s ease-in-out infinite;
}

.mkt_hp_match_engine_sub {
    font-size: .7rem;
    color: #64748b;
    text-align: center;
    letter-spacing: .04em;
    margin: 0;
}

/* ── SUPPLIER RESULT CARDS ── */
.mkt_hp_match_results_list {
    width: 100%;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.mkt_hp_match_sup_card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: .875rem 1rem;
    opacity: 0;
    animation: mkt_match_card_in .5s ease forwards;
    backdrop-filter: blur(10px);
}

.mkt_hp_match_sup_row {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-bottom: .625rem;
}

.mkt_hp_match_sup_av {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_hp_match_sup_meta {
    flex: 1;
    min-width: 0;
}

.mkt_hp_match_sup_name {
    font-size: .8rem;
    font-weight: 600;
    color: #e2e8f0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_hp_match_sup_ver {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .65rem;
    color: #34d399;
    font-weight: 600;
    margin-top: .15rem;
}

.mkt_hp_match_sup_ver svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.mkt_hp_match_sup_pct {
    font-size: .95rem;
    font-weight: 600;
    color: #a5b4fc;
    flex-shrink: 0;
}

.mkt_hp_match_sup_bar_bg {
    height: 5px;
    background: rgba(255, 255, 255, .1);
    border-radius: 5px;
    overflow: hidden;
}

.mkt_hp_match_sup_bar_fill {
    height: 100%;
    width: var(--score, 0%);
    background: linear-gradient(90deg, #4f46e5, #a78bfa);
    border-radius: 5px;
    animation: mkt_match_bar_grow .8s ease forwards;
}

/* ── FEATURE EXPLANATION CARDS (below visual) ── */
.mkt_hp_match_feats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
}

.mkt_hp_match_feat {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 1rem;
    transition: border-color .2s, background .2s;
}

.mkt_hp_match_feat:hover {
    background: rgba(99, 102, 241, .1);
    border-color: rgba(99, 102, 241, .35);
}

.mkt_hp_match_feat_icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(99, 102, 241, .2);
    border: 1px solid rgba(99, 102, 241, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    margin-bottom: 1rem;
}

.mkt_hp_match_feat_icon svg {
    width: 22px;
    height: 22px;
}

.mkt_hp_match_feat_title {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: .5rem;
    line-height: 1.35;
}

.mkt_hp_match_feat_desc {
    font-size: .8rem;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}

/* ── Bottom CTA ── */
.mkt_hp_match_bottom_cta {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 2.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   HOME PAGE — DASHBOARD SHOWCASE SECTION
═══════════════════════════════════════════════════════════════ */

/* ── Keyframes ── */
@keyframes mkt_db_bar_in {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes mkt_db_bar_breathe {

    0%,
    100% {
        opacity: .75;
    }

    50% {
        opacity: 1;
    }
}

@keyframes mkt_db_stat_pop {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mkt_db_inq_slide {
    from {
        opacity: 0;
        transform: translateX(14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mkt_db_float_cycle {

    0%,
    5% {
        opacity: 0;
        transform: translateY(10px) scale(.93);
    }

    10%,
    28% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    33% {
        opacity: 0;
        transform: translateY(-8px) scale(.96);
    }

    34%,
    100% {
        opacity: 0;
        transform: translateY(10px) scale(.93);
    }
}

@keyframes mkt_db_notif_ping {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes mkt_db_nav_cycle {

    0%,
    14% {
        background: rgba(99, 102, 241, .18);
        color: #818cf8;
    }

    16%,
    100% {
        background: transparent;
        color: rgba(255, 255, 255, .35);
    }
}

@keyframes mkt_db_browser_breathe {

    0%,
    100% {
        box-shadow: 0 20px 64px rgba(99, 102, 241, .10), 0 4px 20px rgba(0, 0, 0, .08);
    }

    50% {
        box-shadow: 0 28px 80px rgba(99, 102, 241, .18), 0 4px 20px rgba(0, 0, 0, .08);
    }
}

@keyframes mkt_db_cursor_move {
    0% {
        top: 38%;
        left: 30%;
    }

    20% {
        top: 55%;
        left: 60%;
    }

    40% {
        top: 70%;
        left: 45%;
    }

    60% {
        top: 48%;
        left: 75%;
    }

    80% {
        top: 62%;
        left: 30%;
    }

    100% {
        top: 38%;
        left: 30%;
    }
}

@keyframes mkt_db_cursor_click {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(.8);
    }
}

/* ── Section wrapper ── */
.mkt_hp_db_section {
    background: #fff;
    padding-block: 6rem;
    padding-inline: 1rem;
    margin-block: 2rem;
    position: relative;
    z-index: 0;
}

/* ── Visual container ── */
.mkt_hp_db_visual {
    position: relative;
    margin-top: 3rem;
    padding: 1.5rem 3.5rem 2rem;
}

/* ── Floating badges ── */
.mkt_hp_db_float {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: .625rem;
    background: #fff;
    border: 1px solid #e5e9f2;
    border-radius: 14px;
    padding: .7rem .95rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
}

.mkt_hp_db_float_1 {
    top: 14%;
    right: .5rem;
    animation: mkt_db_float_cycle 9s ease-in-out infinite;
    animation-delay: 0s;
}

.mkt_hp_db_float_2 {
    bottom: 22%;
    left: .5rem;
    animation: mkt_db_float_cycle 9s ease-in-out infinite;
    animation-delay: 3s;
}

.mkt_hp_db_float_3 {
    bottom: 8%;
    right: .5rem;
    animation: mkt_db_float_cycle 9s ease-in-out infinite;
    animation-delay: 6s;
}

.mkt_hp_db_float_icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_hp_db_float_icon svg {
    width: 16px;
    height: 16px;
}

.mkt_hp_db_fi_blue {
    background: #dbeafe;
    color: #2563eb;
}

.mkt_hp_db_fi_green {
    background: #d1fae5;
    color: #059669;
}

.mkt_hp_db_fi_indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.mkt_hp_db_float_title {
    font-size: .78rem;
    font-weight: 600;
    color: #1e293b;
}

.mkt_hp_db_float_sub {
    font-size: .68rem;
    color: #64748b;
}

/* ── Browser chrome ── */
.mkt_hp_db_browser {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    animation: mkt_db_browser_breathe 4s ease-in-out infinite;
    position: relative;
}

.mkt_hp_db_browser_bar {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: .6rem 1rem;
}

.mkt_hp_db_browser_dots {
    display: flex;
    gap: .35rem;
}

.mkt_hp_db_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mkt_hp_db_dot_r {
    background: #fc8181;
}

.mkt_hp_db_dot_y {
    background: #f6ad55;
}

.mkt_hp_db_dot_g {
    background: #68d391;
}

.mkt_hp_db_url_bar {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .4rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: .3rem .65rem;
    font-size: .71rem;
    color: #64748b;
    max-width: 300px;
    margin: 0 auto;
}

.mkt_hp_db_browser_spacer {
    width: 66px;
}

/* ── Dashboard shell (sidebar + main) ── */
.mkt_hp_db_shell {
    display: flex;
    background: #f1f5f9;
    min-height: 420px;
}

/* ── Sidebar ── */
.mkt_hp_db_sidebar {
    width: 58px;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    padding: .875rem 0;
    flex-shrink: 0;
}

.mkt_hp_db_sb_brand {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius: 8px;
    color: #fff;
    font-weight: 900;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
}

.mkt_hp_db_sb_nav {
    display: flex;
    flex-direction: column;
    gap: .125rem;
    width: 100%;
    padding-inline: .375rem;
}

.mkt_hp_db_sb_item {
    width: 100%;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .35);
    cursor: pointer;
    animation: mkt_db_nav_cycle 7.5s ease infinite;
}

.mkt_hp_db_sb_item svg {
    width: 17px;
    height: 17px;
}

/* Stagger nav highlight cycle */
.mkt_hp_db_sb_item:nth-child(1) {
    animation-delay: 0s;
}

.mkt_hp_db_sb_item:nth-child(2) {
    animation-delay: 1.5s;
}

.mkt_hp_db_sb_item:nth-child(3) {
    animation-delay: 3s;
}

.mkt_hp_db_sb_item:nth-child(4) {
    animation-delay: 4.5s;
}

.mkt_hp_db_sb_item:nth-child(5) {
    animation-delay: 6s;
}

/* ── Main content area ── */
.mkt_hp_db_main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    overflow: hidden;
}

/* Top bar */
.mkt_hp_db_topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .7rem 1.125rem;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.mkt_hp_db_topbar_title {
    font-size: .82rem;
    font-weight: 600;
    color: #1e293b;
}

.mkt_hp_db_topbar_right {
    display: flex;
    align-items: center;
    gap: .625rem;
}

.mkt_hp_db_notif_btn {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.mkt_hp_db_notif_ping {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
    border: 1.5px solid #fff;
    animation: mkt_db_notif_ping 1.8s ease-in-out infinite;
}

.mkt_hp_db_avatar_sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
    font-weight: 600;
    font-size: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stat cards row */
.mkt_hp_db_stats_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5rem;
    padding: .75rem .875rem;
}

.mkt_hp_db_stat {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .75rem .875rem;
    opacity: 0;
    animation: mkt_db_stat_pop .4s ease forwards;
}

.mkt_hp_db_stat_ico {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .5rem;
}

.mkt_hp_db_stat_ico svg {
    width: 14px;
    height: 14px;
}

.mkt_hp_db_stat_blue .mkt_hp_db_stat_ico {
    background: #dbeafe;
    color: #2563eb;
}

.mkt_hp_db_stat_indigo .mkt_hp_db_stat_ico {
    background: #e0e7ff;
    color: #4f46e5;
}

.mkt_hp_db_stat_purple .mkt_hp_db_stat_ico {
    background: #ede9fe;
    color: #7c3aed;
}

.mkt_hp_db_stat_green .mkt_hp_db_stat_ico {
    background: #d1fae5;
    color: #059669;
}

.mkt_hp_db_stat_val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: .2rem;
}

.mkt_hp_db_stat_lbl {
    font-size: .65rem;
    color: #94a3b8;
    margin-bottom: .25rem;
}

.mkt_hp_db_stat_trend {
    font-size: .65rem;
    font-weight: 600;
    color: #10b981;
}

/* Body row: chart + inquiry list */
.mkt_hp_db_body_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: 0 .875rem .875rem;
    flex: 1;
}

/* Chart card */
.mkt_hp_db_chart_card,
.mkt_hp_db_inq_card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: .875rem;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.mkt_hp_db_card_hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mkt_hp_db_card_title {
    font-size: .73rem;
    font-weight: 600;
    color: #1e293b;
}

.mkt_hp_db_card_badge {
    font-size: .62rem;
    font-weight: 600;
    padding: .15rem .45rem;
    border-radius: 100px;
}

.mkt_hp_db_badge_up {
    background: #d1fae5;
    color: #059669;
}

.mkt_hp_db_badge_count {
    background: #e0e7ff;
    color: #4f46e5;
}

/* Bar chart */
.mkt_hp_db_chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
    flex: 1;
}

.mkt_hp_db_bar_col {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.mkt_hp_db_bar {
    width: 100%;
    height: var(--bh, 50%);
    background: linear-gradient(to top, #6366f1, #818cf8);
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
    transform: scaleY(0);
    animation:
        mkt_db_bar_in .5s cubic-bezier(.34, 1.56, .64, 1) forwards,
        mkt_db_bar_breathe 2.5s ease-in-out infinite;
    animation-delay: var(--bdi, 0s), calc(var(--bdi, 0s) + .5s);
}

/* set --bdi via animation-delay on .mkt_hp_db_bar directly */
.mkt_hp_db_chart_labels {
    display: flex;
    justify-content: space-between;
    font-size: .58rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Inquiry list */
.mkt_hp_db_inq_list {
    display: flex;
    flex-direction: column;
    gap: .375rem;
    flex: 1;
    overflow: hidden;
}

.mkt_hp_db_inq_item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem .5rem;
    border-radius: 8px;
    opacity: 0;
    animation: mkt_db_inq_slide .35s ease forwards;
    transition: background .15s;
}

.mkt_hp_db_inq_item:hover {
    background: #f8fafc;
}

.mkt_hp_db_inq_av {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4f46e5;
    font-weight: 800;
    font-size: .72rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_hp_db_inq_body {
    flex: 1;
    min-width: 0;
}

.mkt_hp_db_inq_name {
    font-size: .72rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_hp_db_inq_msg {
    font-size: .65rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_hp_db_inq_badge {
    font-size: .58rem;
    font-weight: 600;
    background: #fef3c7;
    color: #d97706;
    padding: .12rem .4rem;
    border-radius: 100px;
    flex-shrink: 0;
}

/* ── 4 Feature cards below visual ── */
.mkt_hp_db_feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.mkt_hp_db_feat {
    border: 1px solid #e5e9f2;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    background: #fff;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06) !important;
}

.mkt_hp_db_feat::before {
    content: '';
    position: absolute;
    inset-block-start: 0;
    inset-inline: 0;
    height: 3px;
    opacity: 0;
    transition: opacity .25s;
    border-radius: 3px 3px 0 0;
}

.mkt_hp_db_feat_icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.mkt_hp_db_feat_icon svg {
    width: 22px;
    height: 22px;
}

.mkt_hp_db_feat_blue .mkt_hp_db_feat_icon {
    background: #dbeafe;
    color: #2563eb;
}

.mkt_hp_db_feat_indigo .mkt_hp_db_feat_icon {
    background: #e0e7ff;
    color: #4f46e5;
}

.mkt_hp_db_feat_purple .mkt_hp_db_feat_icon {
    background: #ede9fe;
    color: #7c3aed;
}

.mkt_hp_db_feat_green .mkt_hp_db_feat_icon {
    background: #d1fae5;
    color: #059669;
}

.mkt_hp_db_feat_title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: .5rem;
    line-height: 1.35;
}

.mkt_hp_db_feat_desc {
    font-size: .875rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

.mkt_hp_db_merge {
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(99, 102, 241, .05) 0%, #ffffff 100%);
    color: #142033;
    border: 1px solid #e6eaf2;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}

.mkt_hp_db_merge_head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.mkt_hp_db_merge .mkt_hp_tag {
    background: rgba(99, 102, 241, .14);
    border-color: rgba(129, 140, 248, .22);
    color: #6366f1;
}

.mkt_hp_db_merge_title {
    font-size: 1.25rem;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin: .65rem 0 .35rem;
    color: #1f3552;
}

.mkt_hp_db_merge_sub {
    max-width: 720px;
    color: #6b7280;
    line-height: 1.7;
    font-size: .92rem;
}

.mkt_hp_db_merge_top {
    min-width: 220px;
    padding: .95rem 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(99, 102, 241, .12);
    display: flex;
    flex-direction: column;
    gap: .22rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.mkt_hp_db_merge_top_icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(99, 102, 241, .1);
    color: #6366f1;
    margin-bottom: .5rem;
}

.mkt_hp_db_merge_top_icon svg {
    width: 16px;
    height: 16px;
}

.mkt_hp_db_merge_top_lbl {
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6366f1;
}

.mkt_hp_db_merge_top strong {
    font-size: .9rem;
    font-weight: 600;
    color: #1f3552;
}

.mkt_hp_db_merge_top small {
    color: #7b8495;
    font-size: .74rem;
}

.mkt_hp_db_merge_stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}

.mkt_hp_db_merge_stat {
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #edf0f5;
}

.mkt_hp_db_merge_stat_icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(99, 102, 241, .08);
    color: #6366f1;
    margin-bottom: .65rem;
}

.mkt_hp_db_merge_stat_icon svg {
    width: 16px;
    height: 16px;
}

.mkt_hp_db_merge_stat_val {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f3552;
    line-height: 1;
    margin-bottom: .3rem;
}

.mkt_hp_db_merge_stat_lbl {
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: .2rem;
    color: #223551;
}

.mkt_hp_db_merge_stat_meta {
    font-size: .72rem;
    color: #7b8495;
}

.mkt_hp_latest {
    margin-top: 5rem;
}

.mkt_hp_latest_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mkt_hp_latest_head_copy {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.mkt_hp_latest_link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #6366f1;
    font-size: .92rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, color .2s ease;
}

.mkt_hp_latest_link svg {
    width: 15px;
    height: 15px;
}

.mkt_hp_latest_link:hover {
    color: #4f46e5;
    transform: translateX(3px);
}

.mkt_hp_latest_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.mkt_hp_latest_card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border: 1px solid #e6eaf2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.mkt_hp_latest_card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, .3);
    box-shadow: 0 16px 32px rgba(15, 23, 42, .1);
}

.mkt_hp_latest_media {
    position: relative;
    display: block;
    aspect-ratio: 1 / .82;
    background: #f6f6fd;
    overflow: hidden;
}

.mkt_hp_latest_media img,
.mkt_hp_latest_placeholder {
    width: 100%;
    height: 100%;
}

.mkt_hp_latest_media img {
    display: block;
    object-fit: cover;
}

.mkt_hp_latest_placeholder {
    display: grid;
    place-items: center;
    color: #94a3b8;
}

.mkt_hp_latest_placeholder svg {
    width: 42px;
    height: 42px;
}

.mkt_hp_latest_badge {
    position: absolute;
    top: .8rem;
    left: .8rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: .42rem .7rem;
    border-radius: 10px;
    background: var(--c-accent-muted);
    color: var(--mkt-accent);
    font-size: .82rem;
    font-weight: 600;
}

.mkt_hp_latest_body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem 1rem .85rem;
}

.mkt_hp_latest_store {
    color: #6366f1;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: .55rem;
}

.mkt_hp_latest_name {
    margin: 0 0 .75rem;
    min-height: 52px;
    font-size: .88rem;
    line-height: 1.38;
    letter-spacing: -.02em;
}

.mkt_hp_latest_name a {
    color: #162338;
    text-decoration: none;
}

.mkt_hp_latest_specs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .8rem;
}

.mkt_hp_latest_specs span {
    display: inline-flex;
    align-items: center;
    padding: .34rem .55rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, .09);
    border: 1px solid rgba(99, 102, 241, .14);
    color: #4f46e5;
    font-size: .67rem;
    font-weight: 600;
}

.mkt_hp_latest_specs span small {
    color: #6366f1;
    font-size: .64rem;
    margin-left: .28rem;
}

.mkt_hp_latest_meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .8rem;
    color: #7b8495;
    font-size: .72rem;
}

.mkt_hp_latest_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1rem 1rem;
    border-top: 1px solid #edf0f5;
}

.mkt_hp_latest_price {
    color: #142033;
    font-size: .95rem;
    font-weight: 600;
}

.mkt_hp_latest_action {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(99, 102, 241, .1);
    color: #6366f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.mkt_hp_latest_action svg {
    width: 16px;
    height: 16px;
}

.mkt_hp_latest_action:hover {
    background: #6366f1;
    color: #fff;
    transform: translateX(3px);
}

.mkt_hp_latest_empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    padding: 1.5rem;
    border: 1px dashed #cdd6e2;
    border-radius: 20px;
    color: #64748b;
    background: #fff;
}

/* ═══════════════════════════════════════════════════════
   ANALYTICS SECTION
═══════════════════════════════════════════════════════ */
@keyframes mkt_ana_stat_in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mkt_ana_item_slide {
    from {
        opacity: 0;
        transform: translateX(-16px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mkt_ana_bar_rise {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@keyframes mkt_ana_top_bar_grow {
    from {
        width: 0%;
    }

    to {
        width: var(--tbw, 0%);
    }
}

.mkt_hp_ana {
    background: #080f1c;
    margin-inline: -6rem;
    padding: 6rem 6rem 5rem;
    overflow: hidden;
    position: relative;
}

.mkt_hp_ana_glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 30% 30%, rgba(99, 102, 241, .12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 75% 70%, rgba(16, 185, 129, .08) 0%, transparent 60%);
    pointer-events: none;
}

.mkt_hp_ana_head {
    position: relative;
    z-index: 1;
}

/* Stats row */
.mkt_hp_ana_stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2.5rem;
}

.mkt_hp_ana_stat {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    animation: mkt_ana_stat_in .6s ease both;
}

.mkt_hp_ana_stat_val {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1;
    margin-bottom: .35rem;
}

.mkt_hp_ana_stat_lbl {
    font-size: .75rem;
    color: rgba(255, 255, 255, .45);
    margin-bottom: .6rem;
    letter-spacing: .04em;
}

.mkt_hp_ana_stat_trend {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .8rem;
    color: #10b981;
    font-weight: 600;
}

.mkt_hp_ana_stat_trend svg {
    stroke: #10b981;
}

/* Chart + activity layout */
.mkt_hp_ana_visual {
    display: grid;
    grid-template-columns: 1fr .52fr;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.mkt_hp_ana_chart_card,
.mkt_hp_ana_act_card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 1.5rem;
}

.mkt_hp_ana_chart_hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.mkt_hp_ana_chart_title {
    font-size: .875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
}

.mkt_hp_ana_period {
    font-size: .75rem;
    color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .06);
    padding: .2rem .6rem;
    border-radius: 20px;
}

/* Grouped bar chart */
.mkt_hp_ana_chart {
    display: flex;
    align-items: flex-end;
    gap: .5rem;
    height: 110px;
    margin-bottom: 1rem;
}

.mkt_hp_ana_bar_grp {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 100%;
}

.mkt_hp_ana_bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    height: var(--bh, 50%);
    transform-origin: bottom;
    transform: scaleY(0);
    animation: mkt_ana_bar_rise .55s cubic-bezier(.34, 1.56, .64, 1) both;
}

.mkt_hp_ana_bar.is_sv {
    background: #6366f1;
}

.mkt_hp_ana_bar.is_pv {
    background: #818cf8;
    opacity: .8;
}

.mkt_hp_ana_bar.is_inq {
    background: #f59e0b;
}

/* Legend */
.mkt_hp_ana_legend {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mkt_hp_ana_legend span {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .45);
}

.mkt_hp_ana_dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mkt_hp_ana_dot.is_sv {
    background: #6366f1;
}

.mkt_hp_ana_dot.is_pv {
    background: #818cf8;
}

.mkt_hp_ana_dot.is_inq {
    background: #f59e0b;
}

/* Activity feed */
.mkt_hp_ana_act_hdr,
.mkt_hp_ana_top_hdr {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .3);
    margin-bottom: .75rem;
    font-weight: 600;
}

.mkt_hp_ana_top_hdr {
    margin-top: 1.25rem;
}

.mkt_hp_ana_act_item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    animation: mkt_ana_item_slide .5s ease both;
}

.mkt_hp_ana_act_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.mkt_hp_ana_act_dot.is_view {
    background: #818cf8;
}

.mkt_hp_ana_act_dot.is_inq {
    background: #f59e0b;
}

.mkt_hp_ana_act_body {
    flex: 1;
    font-size: .8rem;
}

.mkt_hp_ana_act_name {
    color: rgba(255, 255, 255, .8);
    font-weight: 500;
    margin-bottom: .2rem;
}

.mkt_hp_ana_act_badge {
    font-size: .65rem;
    padding: .15rem .45rem;
    border-radius: 20px;
    font-weight: 600;
}

.mkt_hp_ana_act_badge.is_view {
    background: rgba(129, 140, 248, .2);
    color: #a5b4fc;
}

.mkt_hp_ana_act_badge.is_inq {
    background: rgba(245, 158, 11, .18);
    color: #fbbf24;
}

.mkt_hp_ana_act_from {
    font-size: .7rem;
    color: rgba(255, 255, 255, .3);
    margin-left: .25rem;
}

.mkt_hp_ana_act_time {
    font-size: .7rem;
    color: rgba(255, 255, 255, .3);
    white-space: nowrap;
}

.mkt_hp_ana_top_item {
    display: flex;
    align-items: center;
    gap: .75rem;
    animation: mkt_ana_item_slide .5s .5s ease both;
}

.mkt_hp_ana_top_rank {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(245, 158, 11, .18);
    color: #fbbf24;
    font-size: .7rem;
    font-weight: 600;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.mkt_hp_ana_top_body {
    flex: 1;
}

.mkt_hp_ana_top_name {
    font-size: .8rem;
    color: rgba(255, 255, 255, .75);
    margin-bottom: .35rem;
    font-weight: 500;
}

.mkt_hp_ana_top_bar_wrap {
    height: 5px;
    background: rgba(255, 255, 255, .07);
    border-radius: 3px;
    overflow: hidden;
}

.mkt_hp_ana_top_bar {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #818cf8);
    border-radius: 3px;
    width: 0%;
    animation: mkt_ana_top_bar_grow .7s ease both;
}

.mkt_hp_ana_top_nums {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .1rem;
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
}

.mkt_hp_ana_top_nums small {
    font-weight: 400;
    color: rgba(255, 255, 255, .35);
    font-size: .6rem;
}

/* Feature cards */
.mkt_hp_ana_feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.mkt_hp_ana_feat {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color .25s;
}

.mkt_hp_ana_feat:hover {
    border-color: rgba(99, 102, 241, .4);
}

.mkt_hp_ana_feat_icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}

.mkt_hp_ana_feat_icon svg {
    width: 20px;
    height: 20px;
}

.mkt_hp_ana_feat_title {
    font-size: .9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin: 0 0 .5rem;
}

.mkt_hp_ana_feat_desc {
    font-size: .8375rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   WANTED BOARD SECTION
═══════════════════════════════════════════════════════ */
@keyframes mkt_wnt_req_in {
    from {
        opacity: 0;
        transform: scale(.93) translateX(-12px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes mkt_wnt_offer_in {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mkt_wnt_dot_flow {
    0% {
        left: -8px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 8px);
        opacity: 0;
    }
}

.mkt_hp_wnt {
    padding-block: 6rem;
    padding-inline: 1rem;
    margin-top: 2rem;
    border-radius: 12px;
}

.mkt_hp_wnt_visual {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.mkt_hp_wnt_panel {
    flex: 1;
}

.mkt_hp_wnt_panel_lbl {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: .75rem;
}

/* Request card */
.mkt_hp_wnt_req_card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    animation: mkt_wnt_req_in .6s ease both;
}

.mkt_hp_wnt_req_cat {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    color: #6366f1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .65rem;
}

.mkt_hp_wnt_req_name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
}

.mkt_hp_wnt_req_details {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}

.mkt_hp_wnt_req_chip {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .72rem;
    padding: .3rem .7rem;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 500;
}

.mkt_hp_wnt_req_chip.is_budget {
    background: rgba(16, 185, 129, .1);
    color: #059669;
}

.mkt_hp_wnt_req_chip.is_ship {
    background: rgba(99, 102, 241, .1);
    color: #4f46e5;
}

.mkt_hp_wnt_req_badge {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    font-weight: 600;
    color: #10b981;
}

.mkt_hp_wnt_badge_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}

/* Flow connector */
.mkt_hp_wnt_connector {
    flex-shrink: 0;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    position: relative;
}

.mkt_hp_wnt_conn_track {
    width: 100%;
    height: 3px;
    background: rgba(99, 102, 241, .15);
    border-radius: 3px;
    position: relative;
    overflow: visible;
}

.mkt_hp_wnt_conn_dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6366f1;
    animation: mkt_wnt_dot_flow 1.8s linear infinite;
}

.mkt_hp_wnt_conn_arr {
    width: 22px;
    color: #6366f1;
    flex-shrink: 0;
}

/* Offer cards */
.mkt_hp_wnt_offers_wrap {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.mkt_hp_wnt_offer {
    display: flex;
    align-items: center;
    gap: .875rem;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: .9rem 1.1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    animation: mkt_wnt_offer_in .5s ease both;
}

.mkt_hp_wnt_offer_av {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.mkt_hp_wnt_offer_av svg {
    width: 18px;
    height: 18px;
}

.mkt_hp_wnt_offer_body {
    flex: 1;
}

.mkt_hp_wnt_offer_name {
    font-size: .8375rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: .15rem;
}

.mkt_hp_wnt_offer_price {
    font-size: .75rem;
    color: #64748b;
}

.mkt_hp_wnt_score_ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2.5px solid;
    display: grid;
    place-items: center;
    font-size: .7rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Process steps */
.mkt_hp_wnt_process {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 2rem;
    align-items: start;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.mkt_hp_wnt_step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mkt_hp_wnt_step_num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid;
    display: grid;
    place-items: center;
    font-size: .9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.mkt_hp_wnt_step_title {
    font-size: .9375rem;
    font-weight: 600;
    color: #0f172a;
    margin: .25rem 0 .4rem;
}

.mkt_hp_wnt_step_desc {
    font-size: .8125rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.mkt_hp_wnt_cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #6366f1;
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
    padding: .8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    align-self: center;
    transition: background .2s, transform .2s;
}

.mkt_hp_wnt_cta:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

.mkt_hp_wnt_cta svg {
    width: 15px;
    height: 15px;
}

/* ═══════════════════════════════════════════════════════
   SMART ALERTS SECTION
═══════════════════════════════════════════════════════ */
@keyframes mkt_alt_ch_in {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes mkt_alt_badge_pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.25);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes mkt_alt_notif_slide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mkt_alt_dot_flow {
    0% {
        left: -8px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: calc(100% + 8px);
        opacity: 0;
    }
}

@keyframes mkt_alt_active_pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

@keyframes mkt_alt_notif_float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.mkt_hp_alt {
    background: #080f1c;
    margin-inline: -6rem;
    padding: 6rem 6rem 5rem;
    overflow: hidden;
    position: relative;
}

.mkt_hp_alt_glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(99, 102, 241, .13) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 20% 70%, rgba(0, 136, 204, .08) 0%, transparent 60%);
    pointer-events: none;
}

.mkt_hp_alt_head {
    position: relative;
    z-index: 1;
}

/* Visual layout */
.mkt_hp_alt_visual {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

/* Filter card */
.mkt_hp_alt_filter_card {
    flex: 0 0 260px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 1.5rem;
    animation: mkt_wnt_req_in .6s ease both;
    width: 20rem;
}

.mkt_hp_alt_filter_hdr {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 1.25rem;
}

.mkt_hp_alt_filter_hdr svg {
    width: 16px;
    height: 16px;
    color: #6366f1;
}

.mkt_hp_alt_filter_rows {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.25rem;
}

.mkt_hp_alt_filter_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    font-size: .78rem;
}

.mkt_hp_alt_fkey {
    color: rgba(255, 255, 255, .35);
    font-size: .72rem;
    flex-shrink: 0;
}

.mkt_hp_alt_fval {
    color: rgba(255, 255, 255, .75);
    font-weight: 500;
    font-size: .78rem;
    text-align: right;
}

.mkt_hp_alt_fchip {
    background: rgba(99, 102, 241, .25);
    color: #a5b4fc;
    padding: .18rem .55rem;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 600;
}

.mkt_hp_alt_filter_foot {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    color: #6366f1;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.mkt_hp_alt_active_dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6366f1;
    animation: mkt_alt_active_pulse 1.5s ease infinite;
}

/* Connector */
.mkt_hp_alt_connector {
    flex-shrink: 0;
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

.mkt_hp_alt_conn_track {
    width: 100%;
    height: 3px;
    background: rgba(99, 102, 241, .15);
    border-radius: 3px;
    position: relative;
    overflow: visible;
}

.mkt_hp_alt_conn_dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6366f1;
    animation: mkt_alt_dot_flow 1.6s linear infinite;
}

.mkt_hp_alt_conn_arr {
    width: 20px;
    color: #6366f1;
}

/* Channels */
.mkt_hp_alt_channels {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.mkt_hp_alt_ch {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: .9rem 1.1rem;
    animation: mkt_alt_ch_in .5s ease both;
}

.mkt_hp_alt_ch_icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.mkt_hp_alt_ch_icon svg {
    width: 18px;
    height: 18px;
}

.mkt_hp_alt_ch_body {
    flex: 1;
}

.mkt_hp_alt_ch_title {
    font-size: .8375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin-bottom: .2rem;
}

.mkt_hp_alt_ch_sub {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.5;
}

.mkt_hp_alt_ch_badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    animation: mkt_alt_badge_pop .5s ease both;
}

/* Notification preview */
.mkt_hp_alt_notif {
    display: flex;
    align-items: center;
    gap: .875rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, .2) 0%, rgba(99, 102, 241, .08) 100%);
    border: 1px solid rgba(99, 102, 241, .35);
    border-radius: 12px;
    padding: .9rem 1.1rem;
    animation: mkt_alt_notif_slide .6s 1s ease both, mkt_alt_notif_float 3s 1.6s ease-in-out infinite;
}

.mkt_hp_alt_notif_icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(99, 102, 241, .3);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #a5b4fc;
}

.mkt_hp_alt_notif_icon svg {
    width: 18px;
    height: 18px;
}

.mkt_hp_alt_notif_title {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
    margin-bottom: .2rem;
}

.mkt_hp_alt_notif_text {
    font-size: .73rem;
    color: rgba(255, 255, 255, .5);
}

/* Feature cards */
.mkt_hp_alt_feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.mkt_hp_alt_feat {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: border-color .25s;
}

.mkt_hp_alt_feat:hover {
    border-color: rgba(99, 102, 241, .35);
}

.mkt_hp_alt_feat_accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
    opacity: .7;
}

.mkt_hp_alt_feat_title {
    font-size: .9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    margin: .35rem 0 .5rem;
}

.mkt_hp_alt_feat_desc {
    font-size: .8375rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   GLOBAL LIGHT THEME — all sections except Hero
   Hero keeps its dark look. Everything else → white/#f5f5f5
═══════════════════════════════════════════════════════ */

/* ── Shared: _light utility classes inside light sections ─ */
.mkt_hp_match .mkt_hp_title_light,
.mkt_hp_ana .mkt_hp_title_light,
.mkt_hp_alt .mkt_hp_title_light {
    color: #0f172a !important;
}

.mkt_hp_match .mkt_hp_sub_light,
.mkt_hp_ana .mkt_hp_sub_light,
.mkt_hp_alt .mkt_hp_sub_light {
    color: #64748b !important;
}

.mkt_hp_match .mkt_hp_tag_light,
.mkt_hp_ana .mkt_hp_tag_light,
.mkt_hp_alt .mkt_hp_tag_light {
    background: rgba(99, 102, 241, .1) !important;
    color: #6366f1 !important;
    border: 1px solid rgba(99, 102, 241, .2) !important;
}

/* ══════════════════════════════════════════════════════
   SMART MATCHING → light
══════════════════════════════════════════════════════ */
.mkt_hp_match {
    background: #ffffff !important;
}

.mkt_hp_match_bg_glow {
    display: none !important;
}

.mkt_hp_match_panel_lbl {
    color: #94a3b8 !important;
}

.mkt_hp_match_buyer_card {
    background: #fff !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07) !important;
}

.mkt_hp_match_bcr_badge {
    background: rgba(99, 102, 241, .1) !important;
    color: #6366f1 !important;
}

.mkt_hp_match_bcr_item span:first-child {
    color: #94a3b8 !important;
}

.mkt_hp_match_bcr_item span:last-child {
    color: #0f172a !important;
}

.mkt_hp_match_bcr_tag {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

.mkt_hp_match_bcr_tag_budget {
    background: rgba(99, 102, 241, .1) !important;
    color: #6366f1 !important;
}

.mkt_hp_match_panel_engine {
    background: transparent !important;
    border: none !important;
}

.mkt_hp_match_orb_core {
    background: radial-gradient(circle, #6366f1 0%, #4f46e5 100%) !important;
    box-shadow: 0 0 24px rgba(99, 102, 241, .5), 0 0 48px rgba(99, 102, 241, .2) !important;
}

.mkt_hp_match_sup_card {
    background: #fff !important;
    border: 1.5px solid #e2e8f0 !important;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06) !important;
}

.mkt_hp_match_sup_name {
    color: #0f172a !important;
}

.mkt_hp_match_sup_loc {
    color: #94a3b8 !important;
}

.mkt_hp_match_sup_bar_track {
    background: #f1f5f9 !important;
}

.mkt_hp_match_feat {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
}

.mkt_hp_match_feat:hover {
    border-color: rgba(99, 102, 241, .4) !important;
}

.mkt_hp_match_feat_icon {
    background: rgba(99, 102, 241, .08) !important;
}

.mkt_hp_match_feat_title {
    color: #0f172a !important;
}

.mkt_hp_match_feat_desc {
    color: #64748b !important;
}

.mkt_hp_match_bottom_cta_title {
    color: #0f172a !important;
}

.mkt_hp_match_bottom_cta_sub {
    color: #64748b !important;
}

/* ══════════════════════════════════════════════════════
   HOW IT WORKS → light
══════════════════════════════════════════════════════ */
.mkt_hp_how {
    background: #f5f5f5 !important;
}

.mkt_hp_how .mkt_hp_section_title {
    color: #0f172a !important;
}

.mkt_hp_how .mkt_hp_section_sub {
    color: #64748b !important;
}

.mkt_hp_how .mkt_hp_tag {
    background: rgba(99, 102, 241, .1) !important;
    color: #6366f1 !important;
    border: 1px solid rgba(99, 102, 241, .2) !important;
}

.mkt_hp_step {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .05) !important;
}

.mkt_hp_step_num {
    background: rgba(99, 102, 241, .1) !important;
    color: #6366f1 !important;
    border-color: rgba(99, 102, 241, .25) !important;
}

.mkt_hp_step_title {
    color: #0f172a !important;
}

.mkt_hp_step_desc {
    color: #64748b !important;
}

/* ══════════════════════════════════════════════════════
   ANALYTICS → white
══════════════════════════════════════════════════════ */
.mkt_hp_ana {
    background: #fff !important;
}

.mkt_hp_ana_glow {
    display: none !important;
}

/* Stat cards */
.mkt_hp_ana_stat {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06) !important;
    position: relative;
    overflow: hidden;
}

.mkt_hp_ana_stat_lbl {
    color: #94a3b8 !important;
}

/* Spark area */
.mkt_hp_ana_stat_spark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55px;
    overflow: hidden;
}

.mkt_hp_ana_stat_spark svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Chart + activity cards */
.mkt_hp_ana_chart_card,
.mkt_hp_ana_act_card {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06) !important;
}

.mkt_hp_ana_chart_title {
    color: #0f172a !important;
}

.mkt_hp_ana_period {
    color: #94a3b8 !important;
    background: #f1f5f9 !important;
}

.mkt_hp_ana_legend span {
    color: #64748b !important;
}

.mkt_hp_ana_act_hdr,
.mkt_hp_ana_top_hdr {
    color: #94a3b8 !important;
}

.mkt_hp_ana_act_item {
    border-bottom-color: #f1f5f9 !important;
}

.mkt_hp_ana_act_name {
    color: #0f172a !important;
}

.mkt_hp_ana_act_from,
.mkt_hp_ana_act_time {
    color: #94a3b8 !important;
}

.mkt_hp_ana_top_name {
    color: #0f172a !important;
}

.mkt_hp_ana_top_bar_wrap {
    background: #f1f5f9 !important;
}

.mkt_hp_ana_top_nums {
    color: #475569 !important;
}

.mkt_hp_ana_top_nums small {
    color: #94a3b8 !important;
}

/* Feature cards */
.mkt_hp_ana_feat {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04) !important;
}

.mkt_hp_ana_feat:hover {
    border-color: rgba(99, 102, 241, .4) !important;
}

.mkt_hp_ana_feat_title {
    color: #0f172a !important;
}

.mkt_hp_ana_feat_desc {
    color: #64748b !important;
}

/* ══════════════════════════════════════════════════════
   SMART ALERTS → light + hub styles
══════════════════════════════════════════════════════ */
.mkt_hp_alt {
    background: #f5f5f5 !important;
}

.mkt_hp_alt_glow {
    display: none !important;
}

/* Visual layout — now 5 items */
.mkt_hp_alt_visual {
    align-items: center;
    gap: 3rem;
}

.mkt_hp_alt_left {
    flex: 0 0 auto;
    min-width: 220px;
}

/* Filter card */
.mkt_hp_alt_filter_card {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07) !important;
}

.mkt_hp_alt_filter_hdr {
    color: #0f172a !important;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: .875rem;
    margin-bottom: .875rem;
}

.mkt_hp_alt_fkey {
    color: #94a3b8 !important;
}

.mkt_hp_alt_fval {
    color: #475569 !important;
}

.mkt_hp_alt_fchip {
    background: rgba(99, 102, 241, .1) !important;
    color: #6366f1 !important;
}

.mkt_hp_alt_filter_foot {
    color: #6366f1 !important;
    border-top-color: #f1f5f9 !important;
}

/* Connector on light bg */
.mkt_hp_alt_conn_track {
    background: rgba(99, 102, 241, .2) !important;
}

.mkt_hp_alt_conn_arr {
    color: #6366f1 !important;
}

/* B2BMarket Hub */
@keyframes mkt_alt_hub_ring {
    0% {
        transform: scale(1);
        opacity: .5;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@keyframes mkt_alt_hub_glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, .4), 0 0 40px rgba(99, 102, 241, .15);
    }

    50% {
        box-shadow: 0 0 32px rgba(99, 102, 241, .65), 0 0 64px rgba(99, 102, 241, .25);
    }
}

.mkt_hp_alt_hub {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
}

.mkt_hp_alt_hub_orb {
    position: relative;
    width: 80px;
    height: 80px;
}

.mkt_hp_alt_hub_ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, .4);
    animation: mkt_alt_hub_ring 2.2s ease-out infinite;
}

.mkt_hp_alt_hub_core {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    display: grid;
    place-items: center;
    color: #fff;
    animation: mkt_alt_hub_glow 2.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(99, 102, 241, .45);
}

.mkt_hp_alt_hub_name {
    font-size: .8rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -.01em;
}

.mkt_hp_alt_hub_sub {
    font-size: .65rem;
    color: #94a3b8;
    text-align: center;
}

/* Channel cards */
.mkt_hp_alt_ch {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05) !important;
}

.mkt_hp_alt_ch_title {
    color: #0f172a !important;
}

.mkt_hp_alt_ch_sub {
    color: #64748b !important;
}

/* Notification */
.mkt_hp_alt_notif {
    background: linear-gradient(135deg, rgba(99, 102, 241, .08), rgba(99, 102, 241, .04)) !important;
    border: 1px solid rgba(99, 102, 241, .2) !important;
    animation: mkt_alt_notif_slide .6s 1s ease both, mkt_alt_notif_float 3s 1.6s ease-in-out infinite !important;
}

.mkt_hp_alt_notif_icon {
    background: rgba(99, 102, 241, .15) !important;
    color: #6366f1 !important;
}

.mkt_hp_alt_notif_title {
    color: #0f172a !important;
}

.mkt_hp_alt_notif_text {
    color: #64748b !important;
}

/* Feature cards */
.mkt_hp_alt_feat {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04) !important;
}

.mkt_hp_alt_feat:hover {
    border-color: rgba(99, 102, 241, .35) !important;
}

.mkt_hp_alt_feat_title {
    color: #0f172a !important;
}

.mkt_hp_alt_feat_desc {
    color: #64748b !important;
}

/* ══════════════════════════════════════════════════════
   WANTED BOARD (Wnt) — already light, fine-tune shadows
══════════════════════════════════════════════════════ */
.mkt_hp_wnt {
    background: #fff;
}

/* ══════════════════════════════════════════════════════
   PLANS → keep but set light bg if dark
══════════════════════════════════════════════════════ */
.mkt_hp_plans {
    background: #f5f5f5 !important;
}

/* ── Analytics stat card spark ── */
.mkt_hp_ana_stat {
    padding-bottom: calc(1.5rem + 55px);
}

/* ── Smart Alerts hub responsive ── */
@media (max-width: 1199px) {
    .mkt_hp_alt_visual {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mkt_hp_alt_left {
        flex: 0 0 280px;
    }

    .mkt_hp_alt_hub {
        order: -1;
        flex: 0 0 100%;
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .mkt_hp_alt_hub_orb {
        width: 56px;
        height: 56px;
    }

    .mkt_hp_alt_hub_name,
    .mkt_hp_alt_hub_sub {
        text-align: left;
    }

    .mkt_hp_db_merge_head,
    .mkt_hp_latest_head {
        flex-direction: column;
        align-items: flex-start;
    }

    .mkt_hp_db_merge_stats,
    .mkt_hp_latest_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .mkt_hp_alt_hub {
        order: 0;
    }

    .mkt_hp_db_section {
        padding-block: 4rem;
    }

    .mkt_hp_db_visual {
        padding-inline: 0;
    }

    .mkt_hp_db_float {
        display: none;
    }

    .mkt_hp_db_shell {
        min-height: 0;
    }

    .mkt_hp_db_stats_row,
    .mkt_hp_db_body_row,
    .mkt_hp_db_feats,
    .mkt_hp_db_merge_stats,
    .mkt_hp_latest_grid {
        grid-template-columns: 1fr;
    }

    .mkt_hp_db_browser_bar {
        gap: .45rem;
        padding: .55rem .7rem;
    }

    .mkt_hp_db_url_bar {
        max-width: none;
        font-size: .62rem;
    }

    .mkt_hp_db_merge {
        padding: 1.35rem;
        border-radius: 20px;
    }

    .mkt_hp_db_merge_title {
        font-size: 1.3rem;
    }

    .mkt_hp_latest_title {
        font-size: 1.8rem;
    }

    .mkt_hp_latest_card {
        border-radius: 22px;
    }

    .mkt_hp_latest_body,
    .mkt_hp_latest_footer {
        padding-inline: 1rem;
    }

    .mkt_hp_latest_name {
        min-height: 0;
    }

    .mkt_hp_latest_action {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
}

/* ── How It Works step card ── */
.mkt_hp_step {
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
}

/* ── Product attributes form ── */
.product_attr_intro {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .08), rgba(16, 185, 129, .06));
}

.product_attr_intro strong {
    display: block;
    font-size: .98rem;
    color: #0f172a;
}

.product_attr_field {
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .04);
    height: 100%;
}

.product_attr_field .form-label {
    font-weight: 700;
}

.product_attr_field_checkbox {
    display: flex;
    align-items: center;
    min-height: 100%;
}

@media (max-width: 767px) {
    .product_attr_intro {
        align-items: flex-start;
    }

    .product_attr_field {
        padding: .9rem;
        border-radius: 16px;
    }
}

/* ═══════════════════════════════════════════════
   AUCTION — card pip & inline badge
═══════════════════════════════════════════════ */
.mkt_auction_pip {
    position: absolute;
    top: .85rem;
    right: .85rem;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 .72rem;
    border-radius: 999px;
    background: var(--mkt-accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(91, 33, 182, .32);
    z-index: 2;
    pointer-events: none;
}

.mkt_auction_badge_inline {
    display: inline-flex;
    align-items: center;
    padding: .16rem .5rem;
    border-radius: 999px;
    background: var(--mkt-accent);
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .04em;
    vertical-align: middle;
    margin-inline-start: .35rem;
}

/* ═══════════════════════════════════════════════
   AUCTION BLOCK — product detail page
═══════════════════════════════════════════════ */
.mkt_auction_block {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1.5px solid rgba(124, 58, 237, .18);
    background: linear-gradient(135deg, rgba(124, 58, 237, .05), rgba(91, 33, 182, .03));
    margin-bottom: 0.7rem;
}

.mkt_auction_badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .85rem;
    border-radius: 999px;
    background: var(--mkt-accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(91, 33, 182, .25);
}

.mkt_auction_current_bid_label {
    font-size: .8rem;
    color: var(--mkt-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.mkt_auction_current_bid_value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mkt-accent);
    line-height: 1.1;
}

.mkt_auction_current_bid_currency {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
    margin-inline-start: .2rem;
}

.mkt_auction_price_row {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.mkt_auction_price_label {
    font-size: .78rem;
    font-weight: 500;
    color: var(--mkt-text-muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.mkt_auction_price_value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--mkt-accent);
    line-height: 1.1;
}

.mkt_auction_price_value span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
    margin-inline-start: .2rem;
}

.mkt_auction_meta_row {
    display: flex;
    align-items: stretch;
    gap: .6rem;
    flex-wrap: wrap;
}

.mkt_auction_meta_item {
    flex: 1;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: .6rem .75rem;
    background: rgba(124, 58, 237, .05);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, .1);
}

.mkt_auction_meta_label {
    font-size: .6rem;
    font-weight: 500;
    color: var(--mkt-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.mkt_auction_meta_val {
    font-size: .95rem;
    font-weight: 700;
    color: var(--mkt-text);
}

.mkt_auction_bid_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .82rem 1.6rem;
    border-radius: 14px;
    border: none;
    background: var(--mkt-accent);
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .18s, transform .12s;
    width: 100%;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(91, 33, 182, .3);
}

.mkt_auction_bid_btn:hover {
    opacity: .92;
    color: #fff;
    transform: translateY(-1px);
}

.mkt_auction_owner_note {
    padding: .7rem 1rem;
    border-radius: 12px;
    background: rgba(124, 58, 237, .06);
    border: 1px solid rgba(124, 58, 237, .15);
    font-size: .85rem;
    font-weight: 500;
    color: var(--mkt-accent);
    text-align: center;
}

.mkt_auction_closed_note {
    padding: .7rem 1rem;
    border-radius: 12px;
    background: rgba(100, 116, 139, .07);
    border: 1px solid rgba(100, 116, 139, .15);
    font-size: .85rem;
    color: var(--mkt-text-muted);
    text-align: center;
}

.mkt_auction_timer {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: #dc2626;
}

.mkt_auction_timer.is_expired {
    color: var(--mkt-text-muted);
}

.mkt_bid_open_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .82rem 1.6rem;
    border-radius: 14px;
    border: none;
    background: var(--mkt-accent);
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .18s, transform .12s;
    width: 100%;
    box-shadow: 0 8px 24px rgba(91, 33, 182, .3);
}

.mkt_bid_open_btn:hover {
    opacity: .92;
    transform: translateY(-1px);
}

.mkt_bid_open_btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

/* ═══════════════════════════════════════════════
   AUCTION HISTORY SECTION — product detail page
═══════════════════════════════════════════════ */
.mkt_auction_history_section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, .07);
    background: #fff;
}

/* ── History chips (Auto-refresh · Asset ID · Bids count) ── */
.mkt_auction_history_chips {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.mkt_ahc_item {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: rgba(100, 116, 139, .08);
    border: 1px solid rgba(100, 116, 139, .14);
    font-size: .78rem;
    font-weight: 500;
    color: var(--mkt-text-muted);
    white-space: nowrap;
}

.mkt_ahc_item svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: .7;
}



.mkt_ahc_bids {
    background: rgba(5, 150, 105, .07);
    border-color: rgba(5, 150, 105, .15);
    color: #047857;
}

.mkt_ahc_bids strong {
    font-weight: 700;
    color: #047857;
}

/* ── Bid rows ── */
.mkt_auction_bid_list {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 14px;
    overflow: hidden;
}

.mkt_auction_bid_row {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .8rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    transition: background .15s;
}

.mkt_auction_bid_row:last-child {
    border-bottom: none;
}

.mkt_auction_bid_row:hover {
    background: rgba(124, 58, 237, .03);
}

.mkt_auction_bid_row.is_top {
    background: linear-gradient(90deg, rgba(5, 150, 105, .05), transparent);
    border-left: 3px solid #059669;
}

.mkt_abr_rank {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(100, 116, 139, .1);
    color: var(--mkt-text-muted);
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.is_top .mkt_abr_rank {
    background: rgba(5, 150, 105, .12);
    color: #047857;
}

.mkt_abr_user {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 1;
    min-width: 0;
}

.mkt_abr_avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--mkt-accent);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_abr_info {
    min-width: 0;
}

.mkt_abr_name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--mkt-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_abr_time {
    font-size: .73rem;
    color: var(--mkt-text-muted);
    margin-top: .05rem;
}

.mkt_abr_amount {
    font-size: .92rem;
    font-weight: 700;
    color: var(--mkt-text);
    white-space: nowrap;
    flex-shrink: 0;
    text-align: end;
}

.mkt_abr_amount.is_top {
    color: #059669;
}

.mkt_abr_currency {
    font-size: .72rem;
    font-weight: 500;
    color: var(--mkt-text-muted);
    margin-inline-start: .1rem;
}

.mkt_abr_top_badge {
    display: inline-flex;
    padding: .12rem .45rem;
    border-radius: 999px;
    background: rgba(5, 150, 105, .12);
    color: #047857;
    font-size: .68rem;
    font-weight: 600;
    margin-inline-start: .35rem;
}

.mkt_auction_bids_empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1rem;
    color: var(--mkt-text-muted);
}

.mkt_auction_bids_empty svg {
    width: 36px;
    height: 36px;
    opacity: .3;
    margin-bottom: .6rem;
}

.mkt_auction_bids_empty p {
    font-size: .85rem;
    margin: 0;
}

.mkt_auction_show_more_wrap {
    display: flex;
    justify-content: center;
    margin-top: .85rem;
}

.mkt_auction_show_more_btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    border: none;
    background: none;
    color: var(--mkt-accent);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    padding: .4rem .75rem;
    border-radius: 8px;
    transition: background .15s;
}

.mkt_auction_show_more_btn:hover {
    background: rgba(124, 58, 237, .07);
}

/* ═══════════════════════════════════════════════
   BID BOTTOM SHEET
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   BID BOTTOM SHEET — full rewrite to match blade structure
   mkt_bid_sheet > mkt_bid_sheet_backdrop + mkt_bid_sheet_panel
═══════════════════════════════════════════════ */

/* Container — full screen, invisible/inert when closed */
.mkt_bid_sheet {
    position: fixed;
    inset: 0;
    z-index: 1400;
    pointer-events: none;
}

.mkt_bid_sheet.is_open {
    pointer-events: auto;
}

/* Dark backdrop */
.mkt_bid_sheet_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .52);
    opacity: 0;
    transition: opacity .28s;
}

.mkt_bid_sheet.is_open .mkt_bid_sheet_backdrop {
    opacity: 1;
}

/* Sliding panel */
.mkt_bid_sheet_panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -24px 64px rgba(15, 23, 42, .2);
    transform: translateY(100%);
    transition: transform .32s cubic-bezier(.32, .72, 0, 1);
    max-height: 92dvh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mkt_bid_sheet.is_open .mkt_bid_sheet_panel {
    transform: translateY(0);
}

/* Drag handle */
.mkt_bid_sheet_handle_wrap {
    display: flex;
    justify-content: center;
    padding: .9rem 1.5rem .4rem;
    flex-shrink: 0;
}

.mkt_bid_sheet_handle {
    width: 40px;
    height: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .13);
}

/* Header: product info + close btn */
.mkt_bid_sheet_head {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, .07);
    flex-shrink: 0;
}

.mkt_bid_sheet_product {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex: 1;
    min-width: 0;
}

/* Product thumbnail — small & clean */
.mkt_bid_sheet_thumb {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(15, 23, 42, .08);
    background: var(--mkt-bg-card, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.mkt_bid_sheet_thumb svg {
    width: 22px;
    height: 22px;
    opacity: .25;
}

.mkt_bid_sheet_product_body {
    min-width: 0;
    flex: 1;
}

.mkt_bid_sheet_kicker {
    font-size: .68rem;
    font-weight: 700;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .08rem;
}

.mkt_bid_sheet_product_name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--mkt-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.mkt_bid_sheet_product_seller {
    font-size: .73rem;
    color: var(--mkt-text-muted);
    margin-top: .05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Close button */
.mkt_bid_sheet_close_btn {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: var(--mkt-bg-card, #f8fafc);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-text-muted);
    transition: background .15s, color .15s, border-color .15s;
}

.mkt_bid_sheet_close_btn svg {
    width: 15px;
    height: 15px;
}

.mkt_bid_sheet_close_btn:hover {
    background: rgba(220, 38, 38, .08);
    color: #dc2626;
    border-color: rgba(220, 38, 38, .2);
}

/* Body */
.mkt_bid_sheet_body {
    padding: 1.1rem 1.25rem 2rem;
    flex: 1;
}

/* Info bar */
.mkt_bid_info_bar {
    display: flex;
    gap: .45rem;
    margin-bottom: 1.1rem;
    padding: .8rem .75rem;
    background: var(--mkt-bg-card, #f8fafc);
    border-radius: 14px;
}

.mkt_bid_info_item {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.mkt_bid_info_label {
    font-size: .65rem;
    color: var(--mkt-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .12rem;
}

.mkt_bid_info_val {
    font-size: .88rem;
    font-weight: 700;
    color: var(--mkt-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mkt_bid_timer {
    font-variant-numeric: tabular-nums;
    color: #dc2626;
}

/* My bid note */
.mkt_bid_my_bid_note {
    font-size: .8rem;
    color: #059669;
    background: rgba(5, 150, 105, .08);
    border: 1px solid rgba(5, 150, 105, .15);
    border-radius: 10px;
    padding: .5rem .85rem;
    margin-bottom: .85rem;
    font-weight: 500;
}

/* Input section */
.mkt_bid_input_section {
    margin-bottom: .85rem;
}

.mkt_bid_min_note {
    font-size: .8rem;
    color: var(--mkt-text-muted);
    margin-bottom: .6rem;
}

.mkt_bid_min_note strong {
    color: var(--mkt-text);
    font-weight: 700;
}

/* Stepper: [−] [input + currency] [+] */
.mkt_bid_stepper {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.mkt_bid_step_btn {
    width: 46px;
    height: 54px;
    border-radius: 12px;
    border: 1.5px solid rgba(15, 23, 42, .15);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mkt-text);
    transition: background .15s, border-color .15s, color .15s;
    flex-shrink: 0;
}

.mkt_bid_step_btn:hover {
    background: rgba(124, 58, 237, .06);
    border-color: #7c3aed;
    color: #7c3aed;
}

.mkt_bid_input_wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: .4rem;
    border: 1.5px solid rgba(15, 23, 42, .15);
    border-radius: 12px;
    padding: 0 .9rem;
    background: #fff;
    transition: border-color .2s;
    height: 54px;
}

.mkt_bid_input_wrap:focus-within {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, .1);
}

.mkt_bid_amount_input {
    flex: 1;
    height: 100%;
    border: none;
    background: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mkt-text);
    text-align: center;
    outline: none;
    min-width: 0;
}

.mkt_bid_currency_label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--mkt-text-muted);
    flex-shrink: 0;
}

/* Error & Success */
.mkt_bid_error {
    font-size: .82rem;
    color: #dc2626;
    background: rgba(220, 38, 38, .07);
    border: 1px solid rgba(220, 38, 38, .15);
    border-radius: 10px;
    padding: .55rem .85rem;
    margin-bottom: .7rem;
    line-height: 1.45;
}

.mkt_bid_success {
    font-size: .85rem;
    color: #059669;
    background: rgba(5, 150, 105, .08);
    border: 1px solid rgba(5, 150, 105, .15);
    border-radius: 10px;
    padding: .6rem .85rem;
    margin-bottom: .7rem;
    text-align: center;
    font-weight: 500;
}

/* Submit button */
.mkt_bid_submit_btn {
    width: 100%;
    padding: .9rem;
    border-radius: 14px;
    border: none;
    background: var(--mkt-accent);
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .18s, transform .12s;
    box-shadow: 0 8px 24px rgba(91, 33, 182, .28);
    margin-bottom: .6rem;
}

.mkt_bid_submit_btn:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.mkt_bid_submit_btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

.mkt_bid_disclaimer {
    font-size: .72rem;
    color: var(--mkt-text-muted);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

body.mkt_bid_sheet_open {
    overflow: hidden;
}

@media (max-width: 575px) {
    .mkt_bid_sheet_head {
        padding: .5rem 1rem 1rem;
    }

    .mkt_bid_sheet_body {
        padding: 1rem 1rem 1.75rem;
    }

    .mkt_bid_info_bar {
        gap: .3rem;
        padding: .7rem .55rem;
    }

    .mkt_bid_info_val {
        font-size: .8rem;
    }

    .mkt_bid_info_label {
        font-size: .6rem;
    }
}

/* ===== Info Pages (Privacy Policy / Imprint) ===== */
.mkt_info_page {
    padding-bottom: 4rem;
}

.mkt_info_header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid var(--mkt-border-light);
    margin-bottom: 2rem;
}

.mkt_info_header_icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--mkt-radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mkt-primary-500), var(--mkt-primary-700));
    color: #fff;
    box-shadow: var(--mkt-shadow-sm);
}

.mkt_info_header_icon svg {
    width: 26px;
    height: 26px;
}

.mkt_info_title {
    margin: 0 0 .3rem;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--mkt-text);
    letter-spacing: -.01em;
}

.mkt_info_meta {
    margin: 0;
    font-size: .85rem;
    color: var(--mkt-text-muted);
}

.mkt_info_layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
}

.mkt_info_toc {
    position: sticky;
    top: 90px;
}

.mkt_info_toc_inner {
    background: var(--mkt-surface-2);
    border: 1px solid var(--mkt-border-light);
    border-radius: var(--mkt-radius-lg);
    padding: 1.1rem 1rem;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}

.mkt_info_toc_label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--mkt-text-muted);
    margin-bottom: .7rem;
    padding-inline-start: .75rem;
}

.mkt_info_toc_nav {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    border-inline-start: 2px solid var(--mkt-border-light);
}

.mkt_info_toc_link {
    display: block;
    padding: .45rem .75rem;
    margin-inline-start: -2px;
    border-inline-start: 2px solid transparent;
    font-size: .82rem;
    line-height: 1.4;
    color: var(--mkt-text-muted);
    text-decoration: none;
    transition: color var(--ease), border-color var(--ease), background var(--ease);
    border-radius: 0 8px 8px 0;
}

.mkt_info_toc_link:hover {
    color: var(--mkt-primary-700);
    background: rgba(99, 102, 241, .06);
}

.mkt_info_toc_link.is_active {
    color: var(--mkt-primary-700);
    border-inline-start-color: var(--mkt-primary-600);
    font-weight: 600;
    background: rgba(99, 102, 241, .08);
}

.mkt_info_content {
    background: var(--mkt-white);
    border: 1px solid var(--mkt-border-light);
    border-radius: var(--mkt-radius-lg);
    box-shadow: var(--mkt-shadow-xs);
    padding: 2.25rem clamp(1.25rem, 3vw, 3rem);
    min-width: 0;
}

.mkt_info_section {
    scroll-margin-top: 90px;
}

.mkt_info_section + .mkt_info_section {
    margin-top: 2.1rem;
    padding-top: 2.1rem;
    border-top: 1px solid var(--mkt-border-light);
}

.mkt_info_body h2 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--mkt-text);
    margin: 0 0 .9rem;
    letter-spacing: -.005em;
}

.mkt_info_body h3 {
    font-size: .96rem;
    font-weight: 600;
    color: var(--mkt-text);
    margin: 1.25rem 0 .6rem;
}

.mkt_info_body p {
    font-size: .92rem;
    line-height: 1.75;
    color: var(--mkt-text-muted);
    margin: 0 0 .9rem;
}

.mkt_info_body ul,
.mkt_info_body ol {
    margin: 0 0 .9rem;
    padding-inline-start: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.mkt_info_body li {
    font-size: .92rem;
    line-height: 1.65;
    color: var(--mkt-text-muted);
}

.mkt_info_body li strong {
    color: var(--mkt-text);
}

.mkt_info_body a {
    color: var(--mkt-primary-700);
    text-decoration: underline;
    text-decoration-color: rgba(99, 102, 241, .35);
    text-underline-offset: 2px;
}

.mkt_info_body a:hover {
    text-decoration-color: currentColor;
}

@media (max-width: 991px) {
    .mkt_info_layout {
        grid-template-columns: 1fr;
    }

    .mkt_info_toc {
        position: static;
        margin-bottom: 1.5rem;
    }

    .mkt_info_toc_inner {
        max-height: none;
    }

    .mkt_info_toc_nav {
        flex-direction: row;
        flex-wrap: wrap;
        border-inline-start: 0;
        gap: .4rem;
    }

    .mkt_info_toc_link {
        border-inline-start: 0;
        border: 1px solid var(--mkt-border);
        border-radius: 20px;
        padding: .35rem .8rem;
    }

    .mkt_info_toc_link.is_active {
        border-color: var(--mkt-primary-600);
    }

    .mkt_info_content {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 575px) {
    .mkt_info_header {
        gap: .75rem;
    }

    .mkt_info_header_icon {
        width: 44px;
        height: 44px;
    }

    .mkt_info_header_icon svg {
        width: 22px;
        height: 22px;
    }

    .mkt_info_title {
        font-size: 1.25rem;
    }
}

/* ─── Contact Page ───────────────────────────────────────── */
.mkt_contact_page {
    padding-bottom: 4rem;
}

.mkt_contact_layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.75rem;
    align-items: start;
    padding: 1.5rem 0;
}

.mkt_contact_info {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.mkt_contact_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mkt-accent);
}

.mkt_contact_eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--mkt-accent);
    border-radius: 2px;
    flex-shrink: 0;
}

.mkt_contact_title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mkt-text);
    letter-spacing: -.02em;
    line-height: 1.15;
}

.mkt_contact_desc {
    font-size: .92rem;
    color: var(--mkt-text-muted);
    line-height: 1.65;
}

.mkt_contact_channels {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-top: .5rem;
}

.mkt_contact_channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.05rem;
    background: var(--mkt-white);
    border-radius: var(--mkt-radius-md);
    border: 1px solid var(--mkt-border-light);
    text-decoration: none;
    transition: border-color var(--ease), transform var(--ease);
}

.mkt_contact_channel:hover {
    border-color: var(--mkt-accent);
    transform: translateX(4px);
}

.mkt_contact_channel_icon {
    width: 48px;
    height: 48px;
    border-radius: var(--mkt-radius-sm);
    background: var(--mkt-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mkt_contact_channel_icon svg {
    width: 22px;
    height: 22px;
    color: var(--mkt-accent);
}

.mkt_contact_channel_copy {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.mkt_contact_channel_label {
    font-size: .72rem;
    color: var(--mkt-text-muted);
    font-weight: 500;
    letter-spacing: .03em;
}

.mkt_contact_channel_value {
    font-size: .92rem;
    color: var(--mkt-text);
    font-weight: 600;
}

.mkt_contact_form_card {
    background: var(--mkt-white);
    border-radius: var(--mkt-radius-xl);
    border: 1px solid var(--mkt-border-light);
    padding: 2.25rem;
    box-shadow: var(--mkt-shadow-lg);
}

.mkt_contact_form_title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mkt-text);
    margin-bottom: 1.6rem;
}

.mkt_contact_field_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
}

.mkt_contact_field {
    margin-bottom: 1.05rem;
}

.mkt_contact_field label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--mkt-text);
    margin-bottom: .4rem;
}

.mkt_contact_required {
    color: var(--mkt-accent);
}

.mkt_contact_input,
.mkt_contact_textarea {
    width: 100%;
    border: 1.5px solid var(--mkt-border);
    border-radius: var(--mkt-radius-sm);
    padding: .7rem 1rem;
    font-size: .88rem;
    color: var(--mkt-text);
    transition: border-color var(--ease), box-shadow var(--ease);
    outline: none;
}

.mkt_contact_input {
    height: 46px;
}

.mkt_contact_textarea {
    height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.mkt_contact_input:focus,
.mkt_contact_textarea:focus {
    border-color: var(--mkt-accent);
    box-shadow: 0 0 0 3px var(--mkt-accent-soft);
}

.mkt_contact_submit_btn {
    width: 100%;
    height: 52px;
    background: var(--mkt-accent);
    color: var(--mkt-white);
    border: none;
    border-radius: var(--mkt-radius-sm);
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}

.mkt_contact_submit_btn:hover {
    background: var(--mkt-accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--mkt-accent) 30%, transparent);
}

.mkt_contact_submit_btn svg {
    width: 18px;
    height: 18px;
    color: currentColor;
}
