/**
 * Taaycoon Pro UI — Global Design System
 * Loads after brand.css & marketplace.css
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');
:root {
    --ui-font: 'Inter', system-ui, sans-serif;
    --ui-font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --ui-navy: #0B1634;
    --ui-navy-mid: #152248;
    --ui-navy-soft: #1E3A6E;
    --ui-gold: #FFCC00;
    --ui-gold-dark: #E6B800;
    --ui-gold-glow: rgba(255, 204, 0, 0.25);
    --ui-surface: #FFFFFF;
    --ui-bg: #F4F7FB;
    --ui-bg-alt: #EEF2F7;
    --ui-border: #E2E8F0;
    --ui-border-light: #F1F5F9;
    --ui-text: #0F172A;
    --ui-text-muted: #64748B;
    --ui-text-light: #94A3B8;
    --ui-radius: 14px;
    --ui-radius-sm: 10px;
    --ui-radius-lg: 20px;
    --ui-shadow-sm: 0 1px 3px rgba(11, 22, 52, 0.06);
    --ui-shadow: 0 4px 20px rgba(11, 22, 52, 0.08);
    --ui-shadow-lg: 0 12px 40px rgba(11, 22, 52, 0.12);
    --ui-shadow-gold: 0 8px 24px rgba(255, 204, 0, 0.2);
    --ui-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --bs-primary: #0B1634;
    --bs-primary-rgb: 11, 22, 52;
    --bs-link-color: #152248;
    --bs-link-hover-color: #0B1634;
}


/* ---- Base ---- */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ui-font) !important;
    background: var(--ui-bg);
    color: var(--ui-text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--ui-font-display) !important;
    font-weight: 700;
    color: var(--ui-text);
    letter-spacing: -0.02em;
}

.main-content {
    min-height: auto;
}


/* ---- Top Bar ---- */

.top-bar {
    background: linear-gradient(90deg, #070E22 0%, var(--ui-navy) 45%, var(--ui-navy-mid) 100%) !important;
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255, 204, 0, 0.12);
    color: rgba(255, 255, 255, 0.92);
    padding: 0.45rem 0;
}

.top-bar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.top-bar-left {
    justify-self: start;
}

.top-bar-right {
    justify-self: end;
}

.top-bar-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--ui-transition);
}

.top-bar-contact:hover {
    color: var(--ui-gold) !important;
}

.top-bar-contact i {
    color: var(--ui-gold);
    font-size: 0.875rem;
}

.top-bar-contact strong {
    color: #fff;
    font-weight: 700;
}

.top-bar-offer {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem 0.85rem;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.28);
    border-radius: 999px;
    text-decoration: none;
    color: #fff !important;
    white-space: nowrap;
    transition: background var(--ui-transition), border-color var(--ui-transition), transform var(--ui-transition);
}

.top-bar-offer:hover {
    background: rgba(255, 204, 0, 0.16);
    border-color: rgba(255, 204, 0, 0.45);
    color: #fff !important;
    transform: translateY(-1px);
}

.top-bar-offer-flash {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ui-navy);
    background: linear-gradient(135deg, var(--ui-gold), #FFE566);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.top-bar-offer-flash i {
    font-size: 0.625rem;
    color: var(--ui-navy);
}

.top-bar-offer-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar-countdown {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    font-variant-numeric: tabular-nums;
}

.top-bar-countdown .cd-seg {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 1.35rem;
    line-height: 1;
}

.top-bar-countdown .cd-seg b {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--ui-gold);
}

.top-bar-countdown .cd-seg small {
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1px;
}

.top-bar-countdown .cd-dot {
    font-weight: 700;
    color: rgba(255, 204, 0, 0.6);
    font-size: 0.75rem;
    margin-bottom: 0.35rem;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color var(--ui-transition);
}

.top-bar a:hover {
    color: var(--ui-gold) !important;
}

.top-bar i {
    color: var(--ui-gold);
}

.top-bar-sell-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.32rem 0.75rem;
    background: linear-gradient(135deg, var(--ui-gold), var(--ui-gold-dark));
    color: var(--ui-navy) !important;
    font-weight: 700;
    font-size: 0.8125rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(255, 204, 0, 0.3);
    transition: transform var(--ui-transition), box-shadow var(--ui-transition);
}

.top-bar-sell-btn:hover {
    color: var(--ui-navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(255, 204, 0, 0.4);
}

.top-bar-sell-btn i {
    color: var(--ui-navy) !important;
    font-size: 0.8125rem;
}

.top-bar-sell-badge {
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(11, 22, 52, 0.14);
    padding: 0.12rem 0.4rem;
    border-radius: 999px;
}

@media (max-width: 991.98px) {
    .top-bar-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    .top-bar-left,
    .top-bar-right {
        justify-self: center;
    }
    .top-bar-offer-text {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .top-bar-offer-flash span {
        display: none;
    }
}


/* ---- Navbar ---- */

.site-navbar {
    background: #fff !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ui-border);
    padding: 0.65rem 0;
    box-shadow: 0 2px 16px rgba(11, 22, 52, 0.04) !important;
}

.site-navbar .navbar-nav.site-nav-menu {
    gap: 0.15rem;
}

.site-navbar .site-nav-link {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--ui-text) !important;
    padding: 0.45rem 0.7rem !important;
    border-radius: 8px;
    transition: all var(--ui-transition);
    white-space: nowrap;
}

.site-navbar .site-nav-link:hover,
.site-navbar .site-nav-link:focus {
    background: var(--ui-bg-alt);
    color: var(--ui-navy) !important;
}

.site-nav-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: rgba(255, 204, 0, 0.12);
    color: #92680A;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: background var(--ui-transition);
}

.site-nav-link:hover .site-nav-icon {
    background: rgba(255, 204, 0, 0.22);
}

.site-nav-link--offer {
    position: relative;
}

.site-nav-link--offer .site-nav-icon {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.25), rgba(255, 204, 0, 0.12));
    color: var(--ui-navy);
}

.site-nav-badge {
    font-size: 0.5625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #EF4444;
    color: #fff;
    padding: 0.1rem 0.35rem;
    border-radius: 999px;
    line-height: 1.3;
}

.site-nav-link--cart {
    position: relative;
}

.site-nav-link--cart .site-nav-icon {
    background: #F0FDFA;
    color: #0F766E;
}

.site-nav-cart-count {
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #0F766E;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.15rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-nav-link--login {
    margin-left: 0.25rem;
    border: 1.5px solid var(--ui-border);
    background: #fff;
}

.site-nav-link--login:hover {
    border-color: var(--ui-navy);
    background: var(--ui-navy) !important;
    color: #fff !important;
}

.site-nav-link--login:hover .site-nav-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--ui-gold);
}

.site-nav-icon--user {
    background: rgba(11, 22, 52, 0.08);
    color: var(--ui-navy);
}

.site-account-menu {
    min-width: 260px;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    padding: 0.45rem 0;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
}

.site-account-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.site-account-menu .dropdown-item i {
    width: 1.25rem;
    text-align: center;
}

.site-account-menu .dropdown-item:hover {
    background: #F0FDF4;
    color: #047857;
}

.site-account-menu .dropdown-item:hover i {
    color: #059669 !important;
}

.site-account-menu .dropdown-divider {
    margin: 0.35rem 0;
}

.site-mobile-account {
    margin: 0.6rem 0.15rem 0.3rem;
    padding: 0.7rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
}
.site-mobile-account-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #E2E8F0;
}
.site-mobile-account-avatar {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #E8F6F0;
    color: #047857;
    font-size: 1.25rem;
}
.site-mobile-account-head strong { display: block; color: #0F172A; font-size: 0.86rem; }
.site-mobile-account-head small { display: block; margin-top: 0.08rem; color: #64748B; font-size: 0.7rem; }
.site-mobile-account-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; padding-top: 0.65rem; }
.site-mobile-account-actions a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.35rem;
    border: 1px solid #D7E1E8;
    border-radius: 8px;
    background: #fff;
    color: #0F766E;
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}
.site-mobile-account-actions a.is-logout { color: #B91C1C; }
.site-mobile-account-actions a:hover { background: #ECFDF5; color: #047857; }
.site-mobile-account-actions a.is-logout:hover { background: #FEF2F2; color: #B91C1C; }

.site-navbar .nav-link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--ui-text) !important;
    padding: 0.5rem 0.875rem !important;
    border-radius: var(--ui-radius-sm);
    transition: all var(--ui-transition);
}

.site-navbar .nav-link:hover {
    background: var(--ui-bg-alt);
    color: var(--ui-navy) !important;
}

.site-navbar .nav-link i {
    color: var(--ui-gold-dark);
    font-size: 0.875rem;
}


/* ---- Search (header uses homepage search design) ---- */

.site-header-search.home-pro-search {
    max-width: 560px;
    margin-bottom: 0;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    border: 1px solid #E2E8F0;
    z-index: 30;
}

.site-navbar .site-header-search .home-pro-search-input {
    font-size: 0.875rem;
    padding: 0.7rem 0.9rem;
}

.site-navbar .site-header-search .home-pro-cat-filter {
    min-width: 150px;
}

.site-navbar .site-header-search .home-pro-cat-trigger {
    min-height: 42px;
    font-size: 0.8125rem;
    padding: 0.65rem 1.9rem 0.65rem 0.8rem;
}

.site-navbar .site-header-search .home-pro-search-btn {
    padding: 0.7rem 1.05rem;
    font-size: 0.8125rem;
}

.site-navbar .site-header-search .home-pro-cat-menu {
    min-width: 210px;
}

.site-search {
    max-width: 520px;
}

.site-search-inner {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--ui-bg);
    border: 1px solid var(--ui-border);
    border-radius: 999px;
    padding: 0.25rem 0.3rem 0.25rem 0.85rem;
    transition: border-color var(--ui-transition), box-shadow var(--ui-transition);
}

.site-search-inner:focus-within {
    border-color: var(--ui-gold);
    box-shadow: 0 0 0 3px var(--ui-gold-glow);
    background: #fff;
}

.site-search-icon {
    color: var(--ui-text-light);
    font-size: 0.8125rem;
    flex-shrink: 0;
}

.site-search-input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0.35rem 0 !important;
    font-size: 0.875rem;
    min-height: 0;
}

.site-search-input:focus {
    border: none !important;
    box-shadow: none !important;
}

.btn-search-compact {
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--ui-gold), var(--ui-gold-dark));
    color: var(--ui-navy);
    font-size: 0.8125rem;
    flex-shrink: 0;
    transition: transform var(--ui-transition), box-shadow var(--ui-transition);
}

.btn-search-compact:hover {
    background: linear-gradient(135deg, #FFD633, var(--ui-gold));
    color: var(--ui-navy);
    transform: scale(1.05);
    box-shadow: var(--ui-shadow-gold);
}

.site-search .form-control {
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius-sm) 0 0 var(--ui-radius-sm);
    padding: 0.625rem 1rem;
    font-size: 0.9375rem;
    background: var(--ui-bg);
    transition: border-color var(--ui-transition), box-shadow var(--ui-transition);
}

.site-search .form-control:focus {
    border-color: var(--ui-gold);
    box-shadow: 0 0 0 3px var(--ui-gold-glow);
    background: #fff;
}

.site-search .btn-search {
    background: linear-gradient(135deg, var(--ui-gold), var(--ui-gold-dark));
    border: none;
    color: var(--ui-navy);
    font-weight: 600;
    border-radius: 0 var(--ui-radius-sm) var(--ui-radius-sm) 0;
    padding: 0 1.25rem;
    transition: transform var(--ui-transition), box-shadow var(--ui-transition);
}

.site-search .btn-search:hover {
    background: linear-gradient(135deg, #FFD633, var(--ui-gold));
    color: var(--ui-navy);
    transform: translateY(-1px);
    box-shadow: var(--ui-shadow-gold);
}

@media (max-width: 991.98px) {
    .site-navbar .site-nav-menu {
        padding-top: 0.5rem;
        gap: 0.25rem;
    }
    .site-navbar .site-nav-link {
        width: 100%;
        padding: 0.65rem 0.75rem !important;
    }
    .site-nav-link--login {
        margin-left: 0;
        margin-top: 0.25rem;
    }
    .site-search {
        max-width: none;
    }
    .site-header-search.home-pro-search {
        max-width: none;
        width: 100%;
        flex-wrap: wrap;
    }
}


/* ---- Buttons ---- */

.btn {
    font-weight: 600;
    border-radius: var(--ui-radius-sm);
    padding: 0.5rem 1.25rem;
    transition: all var(--ui-transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid)) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(11, 22, 52, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--ui-navy-mid), var(--ui-navy-soft)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 22, 52, 0.3);
}

.btn-accent,
.btn-brand-gold {
    background: linear-gradient(135deg, var(--ui-gold), var(--ui-gold-dark)) !important;
    border: none !important;
    color: var(--ui-navy) !important;
    box-shadow: var(--ui-shadow-gold);
}

.btn-accent:hover,
.btn-brand-gold:hover {
    background: linear-gradient(135deg, #FFD633, var(--ui-gold)) !important;
    color: var(--ui-navy) !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--ui-navy) !important;
    color: var(--ui-navy) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background: var(--ui-navy) !important;
    color: #fff !important;
}

.btn-register {
    background: linear-gradient(135deg, var(--ui-gold), var(--ui-gold-dark)) !important;
    border: none !important;
    color: var(--ui-navy) !important;
    font-weight: 700;
    padding: 0.5rem 1.5rem !important;
    box-shadow: var(--ui-shadow-gold);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 204, 0, 0.35);
    color: var(--ui-navy) !important;
}


/* ---- Post Buy Offer + Trial Dropdown ---- */

.btn-offer {
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid)) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 700;
    padding: 0.5rem 1.25rem !important;
    box-shadow: 0 4px 14px rgba(11, 22, 52, 0.25);
    border-radius: 10px !important;
}

.btn-offer:hover,
.btn-offer:focus,
.btn-offer.show {
    background: linear-gradient(135deg, var(--ui-navy-mid), var(--ui-navy-soft)) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11, 22, 52, 0.3);
}

.btn-offer.dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: middle;
}

.btn-offer i {
    color: var(--ui-gold) !important;
}


/* ---- 3-Day Trial Dropdown (legacy / shared styles) ---- */

.btn-trial {
    background: linear-gradient(135deg, var(--ui-gold), var(--ui-gold-dark)) !important;
    border: none !important;
    color: var(--ui-navy) !important;
    font-weight: 700;
    padding: 0.5rem 1.25rem !important;
    box-shadow: var(--ui-shadow-gold);
    border-radius: 10px !important;
}

.btn-trial:hover,
.btn-trial:focus,
.btn-trial.show {
    background: linear-gradient(135deg, var(--ui-gold-light, #FFD633), var(--ui-gold)) !important;
    color: var(--ui-navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(255, 204, 0, 0.35);
}

.btn-trial.dropdown-toggle::after {
    margin-left: 0.4em;
    vertical-align: middle;
}

.trial-dropdown-menu {
    min-width: 320px;
    padding-bottom: 0.75rem;
    border-radius: 14px !important;
    overflow: hidden;
}

.trial-dropdown-head {
    background: linear-gradient(135deg, rgba(11, 22, 52, 0.04), rgba(255, 204, 0, 0.06));
    border-bottom: 1px solid #EEF2F6;
    margin-bottom: 0.25rem;
}

.trial-dropdown-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--ui-navy);
}

.trial-dropdown-sub {
    font-size: 0.8125rem;
    color: #64748B;
    margin-top: 0.125rem;
}

.trial-option {
    display: flex !important;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem !important;
    white-space: normal;
    transition: background 0.15s;
}

.trial-option:hover {
    background: #F8FAFC !important;
}

.trial-option-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.trial-option-icon--seller {
    background: rgba(255, 204, 0, 0.18);
    color: #92680A;
}

.trial-option-icon--buyer {
    background: rgba(11, 22, 52, 0.08);
    color: var(--ui-navy);
}

.trial-option-icon--bulk {
    background: rgba(255, 204, 0, 0.18);
    color: #92680A;
}

.trial-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    line-height: 1.3;
}

.trial-option-text strong {
    font-size: 0.9375rem;
    color: var(--ui-navy);
}

.trial-option-text small {
    font-size: 0.75rem;
    color: #64748B;
}

.trial-option-arrow {
    color: #CBD5E1;
    font-size: 0.75rem;
    transition: transform 0.15s, color 0.15s;
}

.trial-option:hover .trial-option-arrow {
    color: var(--ui-gold-dark);
    transform: translateX(3px);
}

.trial-nav-dropdown .dropdown-menu {
    animation: trialDropIn 0.2s ease;
}

@keyframes trialDropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .trial-nav-dropdown,
    .offer-nav-dropdown {
        width: 100%;
        margin-top: 0.5rem;
    }
    .trial-nav-dropdown .btn-trial,
    .offer-nav-dropdown .btn-offer {
        width: 100%;
    }
    .trial-dropdown-menu {
        width: 100%;
        min-width: 0;
    }
}


/* ---- Hero ---- */

.hero-section {
    position: relative;
    padding: 5rem 0 5.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ui-navy) 0%, var(--ui-navy-mid) 45%, var(--ui-navy-soft) 100%) !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 204, 0, 0.08) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 204, 0, 0.12);
    border: 1px solid rgba(255, 204, 0, 0.25);
    color: var(--ui-gold);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-section h1 {
    color: #fff !important;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 1.0625rem;
    max-width: 540px;
}

.hero-search {
    background: #fff;
    border-radius: var(--ui-radius);
    padding: 0.375rem;
    box-shadow: var(--ui-shadow-lg);
    max-width: 560px;
}

.hero-search .form-control {
    border: none;
    box-shadow: none !important;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    border-radius: var(--ui-radius-sm);
}

.hero-search .btn {
    border-radius: var(--ui-radius-sm);
    padding: 0.875rem 1.75rem;
}

.hero-visual {
    position: relative;
}

.hero-visual .brand-logo--hero {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.hero-trust-item i {
    color: var(--ui-gold);
}


/* ---- Section Headers ---- */

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--ui-text-muted);
    font-size: 1rem;
    margin: 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ui-gold-dark);
    margin-bottom: 0.5rem;
}


/* ---- Stats ---- */

.stats-section {
    background: var(--ui-surface);
    padding: 4rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.stat-card-pro {
    background: var(--ui-surface);
    border: 1px solid var(--ui-border-light);
    border-radius: var(--ui-radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: var(--ui-shadow);
    transition: transform var(--ui-transition), box-shadow var(--ui-transition);
    height: 100%;
}

.stat-card-pro:hover {
    transform: translateY(-6px);
    box-shadow: var(--ui-shadow-lg);
}

.stat-card-pro .stat-number {
    font-family: var(--ui-font-display);
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-card-pro .stat-label {
    color: var(--ui-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0.375rem 0 0;
}

.stat-card-pro .stat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--ui-gold-dark);
    font-size: 1.25rem;
}


/* ---- Category Cards ---- */

.category-card {
    background: var(--ui-surface) !important;
    border: 1px solid var(--ui-border-light) !important;
    border-radius: var(--ui-radius) !important;
    padding: 1.75rem 1.25rem !important;
    transition: all var(--ui-transition) !important;
    box-shadow: var(--ui-shadow-sm);
}

.category-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--ui-shadow-lg) !important;
    border-color: rgba(255, 204, 0, 0.4) !important;
}

.category-card .cat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    margin: 0 auto 1rem;
    transition: transform var(--ui-transition);
}

.category-card:hover .cat-icon {
    transform: scale(1.08);
    box-shadow: var(--ui-shadow-gold);
}

.category-card h6 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ui-text) !important;
}


/* ---- Catalog Browse ---- */

.catalog-page {
    padding-top: 1.25rem;
}

.catalog-page--browse {
    padding-top: 0;
    padding-bottom: 0;
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.catalog-shell {
    background: #fff;
    border: none;
    border-top: 1px solid var(--ui-border-light);
    border-bottom: 1px solid var(--ui-border-light);
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.catalog-page--browse .catalog-layout {
    gap: 0;
    align-items: stretch;
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: calc(100vh - 72px);
}

.catalog-page--browse .catalog-layout--open {
    display: grid !important;
}

.catalog-page--browse .catalog-sidebar,
.catalog-page--browse .catalog-sub-sidebar.cat-page-sidebar {
    border-radius: 0;
    border: none;
    border-right: 1px solid var(--ui-border-light);
    box-shadow: none;
    position: sticky;
    top: 72px;
    align-self: start;
    min-height: 0;
    max-height: calc(100vh - 72px);
    width: 300px;
    flex-shrink: 0;
    display: flex !important;
    flex-direction: column;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    overflow: hidden;
    z-index: 5;
    background: #fff;
}

.catalog-sidebar--open {
    display: flex !important;
}

.catalog-page--browse .catalog-sidebar-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
    padding-bottom: 0.5rem;
}

.catalog-page--browse .catalog-sidebar-scroll::-webkit-scrollbar {
    width: 5px;
}

.catalog-page--browse .catalog-sidebar-scroll::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 999px;
}

.catalog-page--browse .catalog-sub-filter-nav {
    flex: 0 0 auto;
    max-height: none !important;
    overflow: visible;
    min-height: auto;
}

.catalog-page--browse .catalog-main {
    padding: 1.25rem 1.25rem 1.75rem;
    background: #fff;
    border-left: none;
    min-width: 0;
    width: 100%;
}

.catalog-page--browse .cat-page-stats-bar {
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
    border: none;
    border-top: 1px solid var(--ui-border-light);
}

.catalog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ui-text-muted);
    text-decoration: none;
    margin-bottom: 1rem;
}

.catalog-back-link:hover {
    color: var(--ui-navy);
}

.catalog-home-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.catalog-home-title {
    font-size: 1.375rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
}

.catalog-home-subtitle {
    font-size: 0.875rem;
    color: var(--ui-text-muted);
}

.catalog-home-search {
    position: relative;
    min-width: 240px;
    flex: 1;
    max-width: 320px;
}

.catalog-home-search i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 0.8125rem;
    pointer-events: none;
}

.catalog-home-search input {
    width: 100%;
    border: 1px solid var(--ui-border-light);
    border-radius: 999px;
    padding: 0.55rem 0.85rem 0.55rem 2.25rem;
    font-size: 0.875rem;
    background: #fff;
    outline: none;
}

.catalog-home-search input:focus {
    border-color: var(--ui-navy);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.catalog-home-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 14px;
    border: 1px solid var(--ui-border-light);
    background: #fff;
    text-decoration: none;
    color: var(--ui-text);
    height: 100%;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.catalog-home-card:hover {
    border-color: #CBD5E1;
    box-shadow: var(--ui-shadow-md);
    transform: translateY(-2px);
    color: var(--ui-navy);
}

.catalog-home-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid)) center/cover;
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.catalog-home-card-body strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.2rem;
}

.catalog-home-card-body small {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
}

.catalog-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.catalog-sidebar {
    background: var(--ui-surface);
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    overflow: hidden;
    position: sticky;
    top: 90px;
    box-shadow: var(--ui-shadow-sm);
    display: flex;
    flex-direction: column;
    max-height: none;
}

.catalog-sidebar-card {
    isolation: isolate;
}

.catalog-sidebar-head {
    padding: 1rem 1.15rem;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    color: #fff;
    flex-shrink: 0;
}

.catalog-sidebar-head h2 {
    font-size: 1rem;
    margin: 0 0 0.2rem;
    color: #fff !important;
}

.catalog-sidebar-count {
    font-size: 0.6875rem;
    opacity: 0.85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.catalog-sidebar-search {
    position: relative;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--ui-border-light);
    background: #F8FAFC;
    flex-shrink: 0;
}

.catalog-sidebar-search i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 0.8125rem;
    pointer-events: none;
}

.catalog-sidebar-search input {
    width: 100%;
    border: 1px solid var(--ui-border-light);
    border-radius: 999px;
    padding: 0.5rem 0.75rem 0.5rem 2rem;
    font-size: 0.8125rem;
    line-height: 1.35;
    background: #fff;
    outline: none;
    appearance: none;
}

.catalog-sidebar-search input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.catalog-sidebar-search input:focus {
    border-color: var(--ui-navy);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.catalog-sub-filter-nav {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
}

.catalog-sidebar:not(.cat-page-sidebar) .catalog-sub-filter-nav {
    max-height: min(420px, calc(100vh - 320px));
    overflow-y: auto;
}

.catalog-sub-filter-nav::-webkit-scrollbar {
    width: 5px;
}

.catalog-sub-filter-nav::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 999px;
}

.catalog-sub-filter-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.65rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--ui-text);
    transition: background 0.15s, color 0.15s;
}

.catalog-sub-filter-link:hover {
    background: #F1F5F9;
    color: var(--ui-navy);
}

.catalog-sub-filter-link.active {
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.35);
    color: var(--ui-navy);
    font-weight: 700;
}

.catalog-sub-filter-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid)) center/cover;
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8125rem;
    overflow: hidden;
}

.catalog-sub-filter-text {
    flex: 1;
    min-width: 0;
    font-size: 0.8125rem;
    line-height: 1.3;
}

.catalog-sub-filter-count {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--ui-text-muted);
    background: #F1F5F9;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    flex-shrink: 0;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.catalog-sub-filter-count.is-zero {
    opacity: 0.5;
}

.catalog-sub-filter-link.active .catalog-sub-filter-count {
    background: rgba(255, 204, 0, 0.35);
    color: var(--ui-navy);
}

.catalog-sub-filter-empty {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    padding: 0.75rem;
    margin: 0;
}

.catalog-sidebar-foot {
    padding: 0.75rem;
    border-top: 1px solid var(--ui-border-light);
    background: #F8FAFC;
}

.catalog-sidebar-back {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ui-text-muted);
    text-decoration: none;
}

.catalog-sidebar-back:hover {
    color: var(--ui-navy);
}

.catalog-category-nav-wrap {
    padding: 0.65rem;
    flex-shrink: 0;
}

.catalog-category-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.catalog-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.65rem 0.4rem;
    border-radius: 12px;
    border: 1px solid var(--ui-border-light);
    background: #fff;
    text-decoration: none;
    color: var(--ui-text);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    min-height: 96px;
}

.catalog-category-card:hover {
    border-color: #CBD5E1;
    box-shadow: var(--ui-shadow-sm);
    transform: translateY(-1px);
    color: var(--ui-navy);
}

.catalog-category-card.active {
    border-color: rgba(255, 204, 0, 0.6);
    background: rgba(255, 204, 0, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 204, 0, 0.35);
}

.catalog-category-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid)) center/cover;
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9375rem;
    margin-bottom: 0.35rem;
    overflow: hidden;
}

.catalog-category-card-body strong {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.1rem;
}

.catalog-category-card-body small {
    font-size: 0.625rem;
    color: var(--ui-text-muted);
}

.catalog-category-empty {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    padding: 1rem 0.5rem;
    margin: 0;
    grid-column: 1 / -1;
}

.cat-hub-head {
    margin-bottom: 1rem;
}

.cat-hub-subtitle {
    font-size: 0.875rem;
    color: var(--ui-text-muted);
    margin-top: 0.25rem;
}


/* Subcategory hub — professional 3-column layout */

.cat-hub-pro {
    max-width: none;
    margin: 0;
}

.cat-hub-head-pro {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #F8FAFC 100%);
    border: 1px solid var(--ui-border-light);
    border-radius: 16px;
    box-shadow: var(--ui-shadow-sm);
}

.cat-hub-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0D9488;
    margin-bottom: 0.35rem;
}

.cat-hub-head-pro .cat-hub-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ui-navy);
    margin-bottom: 0.35rem;
}

.cat-hub-count-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: var(--ui-navy);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.cat-hub-sub-card-pro {
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.cat-hub-sub-card-pro:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-color: #CBD5E1;
}

.cat-hub-sub-card-pro .cat-hub-sub-card-top {
    display: flex;
    gap: 0.85rem;
    padding: 1rem;
    border-bottom: 1px solid var(--ui-border-light);
}

.cat-hub-sub-card-pro .cat-hub-sub-thumb {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-hub-sub-card-pro .cat-hub-sub-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-hub-sub-card-pro .cat-hub-sub-icon {
    color: #64748B;
    font-size: 1.5rem;
}

.cat-hub-sub-card-pro .cat-hub-sub-content {
    flex: 1;
    min-width: 0;
}

.cat-hub-sub-card-pro .cat-hub-sub-content h3 {
    font-size: 0.9375rem;
    font-weight: 800;
    margin: 0 0 0.3rem;
    line-height: 1.3;
}

.cat-hub-sub-card-pro .cat-hub-sub-content h3 a {
    color: var(--ui-navy);
    text-decoration: none;
}

.cat-hub-sub-card-pro .cat-hub-sub-content h3 a:hover {
    color: #0D9488;
}

.cat-hub-sub-card-pro .cat-hub-sub-meta {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    margin: 0 0 0.4rem;
}

.cat-hub-sub-card-pro .cat-hub-sub-viewall {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0D9488;
    text-decoration: none;
}

.cat-hub-sub-card-pro .cat-hub-sub-viewall:hover {
    text-decoration: underline;
}

.cat-hub-sub-card-pro .cat-hub-l3-wrap {
    padding: 0.85rem 1rem 1rem;
    background: #F8FAFC;
    flex: 1;
}

.cat-hub-sub-card-pro .cat-hub-l3-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ui-text-muted);
    margin-bottom: 0.55rem;
}

.cat-hub-sub-card-pro .cat-hub-l3-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.cat-hub-sub-card-pro .cat-hub-l3-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid var(--ui-border-light);
    background: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--ui-navy);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.cat-hub-sub-card-pro .cat-hub-l3-pill:hover {
    background: #EFF6FF;
    border-color: #93C5FD;
    color: var(--ui-navy);
}

.cat-hub-sub-card-pro .cat-hub-l3-count {
    font-size: 0.625rem;
    background: #E2E8F0;
    padding: 0.05rem 0.35rem;
    border-radius: 999px;
    color: var(--ui-text-muted);
}

.cat-hub-sub-card--compact {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cat-hub-sub-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 0.75rem;
    border-bottom: 1px solid var(--ui-border-light);
}

.cat-hub-sub-card-link:hover .cat-hub-sub-content h3 {
    color: #0D9488;
}

.cat-hub-sub-card--compact .cat-hub-sub-thumb {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.cat-hub-sub-card--compact .cat-hub-sub-content h3 {
    font-size: 0.8125rem;
    font-weight: 800;
    margin: 0 0 0.2rem;
    color: var(--ui-text);
}

.cat-hub-sub-card--compact .cat-hub-l3-wrap {
    padding: 0.55rem 0.65rem;
    flex: 1;
}

.cat-hub-sub-card--compact .cat-hub-l3-pill {
    font-size: 0.625rem;
    padding: 0.2rem 0.45rem;
}

.cat-hub-sub-card--wide {
    padding: 0;
    overflow: hidden;
}

.cat-hub-sub-card-top {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem;
    border-bottom: 1px solid var(--ui-border-light);
}

.cat-hub-sub-meta {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    margin: 0 0 0.35rem;
}

.cat-hub-sub-viewall {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0D9488;
    text-decoration: none;
}

.cat-hub-sub-viewall:hover {
    text-decoration: underline;
}

.cat-hub-l3-wrap {
    padding: 0.75rem 0.85rem;
    background: #F8FAFC;
}

.cat-hub-l3-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ui-text-muted);
    margin-bottom: 0.5rem;
}

.cat-hub-l3-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.cat-hub-l3-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    border: 1px solid var(--ui-border-light);
    background: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--ui-navy);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.cat-hub-l3-pill:hover {
    background: #EFF6FF;
    border-color: #93C5FD;
    color: var(--ui-navy);
}

.cat-hub-l3-count {
    font-size: 0.625rem;
    background: #E2E8F0;
    padding: 0.05rem 0.3rem;
    border-radius: 999px;
    color: var(--ui-text-muted);
}

.catalog-category-nav {
    padding: 0.5rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    max-height: min(520px, calc(100vh - 260px));
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
}

.catalog-category-nav::-webkit-scrollbar {
    width: 6px;
}

.catalog-category-nav::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 999px;
}

.catalog-category-nav::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

.catalog-category-empty {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    padding: 1.5rem 1rem;
    margin: 0;
}

.catalog-category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--ui-text);
    transition: background 0.2s, transform 0.2s;
    margin-bottom: 0.25rem;
}

.catalog-category-link:hover {
    background: var(--ui-bg-alt);
    color: var(--ui-navy);
}

.catalog-category-link.active {
    background: rgba(255, 204, 0, 0.15);
    border: 1px solid rgba(255, 204, 0, 0.35);
}

.catalog-category-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.catalog-category-text {
    flex: 1;
    min-width: 0;
}

.catalog-category-text strong {
    display: block;
    font-size: 0.875rem;
    line-height: 1.3;
}

.catalog-category-text small {
    color: var(--ui-text-muted);
    font-size: 0.75rem;
}

.catalog-category-arrow {
    color: #CBD5E1;
    font-size: 0.75rem;
}

.catalog-main {
    min-width: 0;
}


/* Catalog hero — auto category image */

.catalog-hero-banner {
    position: relative;
    min-height: 140px;
    background-color: #0F172A;
    background-image: var(--catalog-hero-bg, linear-gradient(135deg, #0F172A, #1E3A5F));
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
}

.catalog-hero-banner--browse {
    margin-bottom: 0;
}

.catalog-hero-content.container-fluid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.catalog-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(30, 58, 95, 0.75));
}

.catalog-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 0;
    color: #fff;
}

.catalog-hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 204, 0, 0.2);
    border: 1px solid rgba(255, 204, 0, 0.4);
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.catalog-hero-content h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: #fff !important;
}

.catalog-hero-content p {
    margin: 0;
    opacity: 0.85;
    font-size: 0.9375rem;
}

.catalog-trust-program {
    margin-bottom: 0;
}

.catalog-trust-program-head {
    margin-bottom: 1.15rem;
    text-align: center;
}

.catalog-trust-program-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #B45309;
    margin-bottom: 0.55rem;
}

.catalog-trust-program-title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ui-navy, #0B1634);
    line-height: 1.3;
}

.catalog-trust-program-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.55;
}

.home-trust-section .catalog-trust-program {
    margin-bottom: 0;
}

.catalog-trust-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.catalog-trust-card:hover {
    box-shadow: var(--ui-shadow);
    transform: translateY(-2px);
}

.catalog-trust-card:focus-visible {
    outline: 2px solid var(--ui-primary);
    outline-offset: 2px;
}

.catalog-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.catalog-trust-card--orange .catalog-trust-icon {
    background: #FFF7ED;
    color: #EA580C;
}

.catalog-trust-card--green .catalog-trust-icon {
    background: #F0FDF4;
    color: #16A34A;
}

.catalog-trust-card--blue .catalog-trust-icon {
    background: #EFF6FF;
    color: #2563EB;
}

.catalog-trust-card--gold .catalog-trust-icon {
    background: #FFFBEB;
    color: #D97706;
}

.catalog-trust-card h4 {
    font-size: 0.8125rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.catalog-trust-card p {
    font-size: 0.6875rem;
    color: var(--ui-text-muted);
    margin: 0 0 0.25rem;
    line-height: 1.4;
}

.catalog-trust-card small {
    font-size: 0.625rem;
    color: #94A3B8;
    display: block;
}

.catalog-trust-more {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--ui-primary);
}


/* Trust badge modal */

.trust-badge-modal .modal-header {
    align-items: flex-start;
    border-bottom: 1px solid var(--ui-border-light);
    padding: 1rem 1.25rem;
}

.trust-badge-modal-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.trust-badge-modal-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.trust-badge-modal-icon--orange {
    background: #FFF7ED;
    color: #EA580C;
}

.trust-badge-modal-icon--green {
    background: #F0FDF4;
    color: #16A34A;
}

.trust-badge-modal-icon--blue {
    background: #EFF6FF;
    color: #2563EB;
}

.trust-badge-modal-icon--gold {
    background: #FFFBEB;
    color: #D97706;
}

.trust-badge-modal-icon--teal {
    background: #F0FDFA;
    color: #0D9488;
}

.trust-badge-modal .modal-title {
    font-size: 1rem;
    font-weight: 800;
}

.trust-badge-modal-lead {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--ui-text);
    margin-bottom: 1rem;
}

.trust-badge-modal-check {
    color: #16A34A;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.trust-badge-modal-subtitle {
    font-size: 0.875rem;
    font-weight: 800;
    margin: 0 0 0.65rem;
}

.trust-badge-modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-badge-modal-list li {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--ui-text-muted);
}

.trust-badge-modal-list li>i {
    color: #16A34A;
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.trust-badge-modal-footer {
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    line-height: 1.5;
    margin: 0;
}

.trust-badge-modal-note {
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    line-height: 1.5;
    margin: 1rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--ui-border-light);
}

.cat-hub-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cat-hub-featured {
    min-height: 320px;
    border-radius: 14px;
    background: linear-gradient(135deg, #334155, #1E293B) center/cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.cat-hub-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 40%, rgba(0, 0, 0, 0.2));
}

.cat-hub-featured-body {
    position: relative;
    z-index: 1;
    padding: 1.25rem;
    width: 100%;
}

.cat-hub-featured-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.15rem 0;
}

.cat-hub-view-all {
    margin-top: 0.75rem;
    background: #0D9488;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 0.45rem 1rem;
    border-radius: 8px;
}

.cat-hub-sub-card {
    border: 1px solid var(--ui-border-light);
    border-radius: 12px;
    background: #fff;
    height: 100%;
    transition: box-shadow 0.2s;
}

.cat-hub-sub-card:hover {
    box-shadow: var(--ui-shadow-sm);
}

.cat-hub-sub-card-inner {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem;
    height: 100%;
}

.cat-hub-sub-thumb-link {
    flex-shrink: 0;
    text-decoration: none;
}

.cat-hub-sub-content h3 a {
    color: var(--ui-text);
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
}

.cat-hub-sub-content h3 a:hover {
    color: #0D9488;
}

.cat-hub-sub-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-hub-sub-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-hub-sub-content h3 {
    font-size: 0.875rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.cat-hub-sub-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-hub-sub-content ul li a {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    text-decoration: none;
    line-height: 1.6;
}

.cat-hub-sub-content ul li a:hover {
    color: #0D9488;
}

.catalog-city-filter-wrap {
    margin-bottom: 1rem;
}


/* ---- Catalog filter panel (location / searches / product categories) ---- */

.catalog-filter-panel {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.catalog-filter-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 1rem;
    border-bottom: 1px solid var(--ui-border-light);
    min-height: 46px;
}

.catalog-filter-row:last-child {
    border-bottom: none;
}

.catalog-filter-row-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 158px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ui-navy);
    white-space: nowrap;
}

.catalog-filter-row-label i {
    width: 1rem;
    text-align: center;
    color: var(--ui-primary);
    font-size: 0.875rem;
}

.catalog-filter-row-track {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.catalog-filter-scroll {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.05rem 0;
    flex: 1 1 auto;
    min-width: 0;
}

.catalog-filter-scroll::-webkit-scrollbar {
    display: none;
}

.catalog-filter-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #F1F5F9;
    color: var(--ui-navy);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.catalog-filter-pill:hover {
    background: #E2E8F0;
    color: var(--ui-navy);
}

.catalog-filter-pill.active {
    background: var(--ui-navy);
    border-color: var(--ui-navy);
    color: #fff;
}

.catalog-filter-pill.active i {
    color: #fff;
}

.catalog-city-pill--near i {
    font-size: 0.6875rem;
}

.catalog-search-pill {
    background: #EFF6FF;
    color: var(--ui-navy);
    border-color: #DBEAFE;
}

.catalog-search-pill:hover {
    background: #DBEAFE;
    border-color: #BFDBFE;
}

.catalog-filter-row--tabs {
    align-items: stretch;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.catalog-tabnav {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.catalog-tabnav::-webkit-scrollbar {
    display: none;
}

.catalog-tab-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.55rem;
    margin: 0;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: var(--ui-text);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}

.catalog-tab-link:hover {
    color: var(--ui-navy);
}

.catalog-tab-link.active {
    color: #EA580C;
    border-bottom-color: #EA580C;
    background: transparent;
}

.catalog-tab-link .pill-count {
    font-size: 0.625rem;
    font-weight: 700;
    background: #F1F5F9;
    color: var(--ui-text-muted);
    padding: 0.05rem 0.35rem;
    border-radius: 999px;
    line-height: 1.3;
}

.catalog-tab-link.active .pill-count {
    background: #FFEDD5;
    color: #C2410C;
}

.catalog-city-filter {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    align-items: center;
}

.catalog-city-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #F1F5F9;
    color: var(--ui-navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.catalog-city-pill.active {
    background: var(--ui-navy);
    border-color: var(--ui-navy);
    color: #fff;
}

.catalog-filter-more {
    position: relative;
    flex-shrink: 0;
    z-index: 20;
}

.catalog-filter-more--inline {
    display: inline-flex;
}

.catalog-filter-more-btn {
    cursor: pointer;
    font-family: inherit;
}

.catalog-filter-more-btn.dropdown-toggle::after {
    margin-left: 0.25rem;
    vertical-align: middle;
    opacity: 0.7;
}

.catalog-filter-more-btn.catalog-tab-link {
    border-bottom: 2px solid transparent;
}

.catalog-filter-more-btn.catalog-tab-link.active {
    border-bottom-color: #EA580C;
}

.catalog-filter-more-menu {
    min-width: 220px;
    max-height: 280px;
    overflow: hidden;
    padding: 0;
    border-radius: 12px;
    border: 1px solid var(--ui-border-light);
    box-shadow: var(--ui-shadow-md);
    z-index: 1080;
}

.catalog-filter-more-search-wrap {
    padding: 0.65rem;
    border-bottom: 1px solid var(--ui-border-light);
    background: #F8FAFC;
    position: sticky;
    top: 0;
    z-index: 1;
}

.catalog-filter-more-search {
    width: 100%;
    border: 1px solid var(--ui-border-light);
    border-radius: 8px;
    padding: 0.4rem 0.65rem;
    font-size: 0.8125rem;
    outline: none;
}

.catalog-filter-more-search:focus {
    border-color: var(--ui-navy);
}

.catalog-filter-more-list {
    max-height: 220px;
    overflow-y: auto;
    padding: 0.35rem;
}

.catalog-filter-more-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.6rem;
    color: var(--ui-navy);
}

.catalog-filter-more-item.active {
    background: rgba(255, 204, 0, 0.15);
    color: var(--ui-navy);
}

.catalog-filter-more-item:hover {
    background: #F1F5F9;
}

.im-product-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.im-product-card:hover {
    box-shadow: var(--ui-shadow);
    transform: translateY(-3px);
}

.im-product-gallery {
    position: relative;
    background: #F8FAFC;
    flex-shrink: 0;
}

.im-gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.im-gallery-empty {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    font-size: 2.5rem;
}

.im-badge-verified {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem 0.2rem 0.2rem;
    border-radius: 999px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
    background: #FFF7ED;
    color: #C2410C;
    border: none;
}

.im-badge-verified.im-seller-badge--orange {
    background: #FFF7ED;
    color: #C2410C;
}

.im-badge-verified.im-seller-badge--green {
    background: #F0FDF4;
    color: #15803D;
}

.im-badge-verified.im-seller-badge--teal {
    background: #F0FDFA;
    color: #0F766E;
}

.im-badge-verified.im-seller-badge--blue {
    background: #EFF6FF;
    color: #1D4ED8;
}

.im-badge-verified.im-seller-badge--gold {
    background: #FFFBEB;
    color: #B45309;
}

.im-badge-verified:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.im-seller-badge-logo,
.pd-pro-badge-logo {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.55rem;
    background: linear-gradient(135deg, #FB923C, #EA580C);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.15);
}

.im-seller-badge--orange .im-seller-badge-logo,
.im-seller-badge--orange .pd-pro-badge-logo,
.pd-pro-verified-pill--orange .pd-pro-badge-logo,
.pd-pro-chip--orange .pd-pro-badge-logo,
.pd-pro-gallery-badge.im-seller-badge--orange .pd-pro-badge-logo {
    background: linear-gradient(135deg, #FB923C, #EA580C);
}

.im-seller-badge--green .im-seller-badge-logo,
.im-seller-badge--green .pd-pro-badge-logo,
.pd-pro-verified-pill--green .pd-pro-badge-logo,
.pd-pro-chip--green .pd-pro-badge-logo,
.pd-pro-gallery-badge.im-seller-badge--green .pd-pro-badge-logo {
    background: linear-gradient(135deg, #4ADE80, #15803D);
}

.im-seller-badge--teal .im-seller-badge-logo,
.im-seller-badge--teal .pd-pro-badge-logo,
.pd-pro-verified-pill--teal .pd-pro-badge-logo,
.pd-pro-chip--teal .pd-pro-badge-logo,
.pd-pro-gallery-badge.im-seller-badge--teal .pd-pro-badge-logo {
    background: linear-gradient(135deg, #2DD4BF, #0F766E);
}

.im-seller-badge--blue .im-seller-badge-logo,
.im-seller-badge--blue .pd-pro-badge-logo,
.pd-pro-verified-pill--blue .pd-pro-badge-logo,
.pd-pro-chip--blue .pd-pro-badge-logo,
.pd-pro-gallery-badge.im-seller-badge--blue .pd-pro-badge-logo {
    background: linear-gradient(135deg, #60A5FA, #1D4ED8);
}

.im-seller-badge--gold .im-seller-badge-logo,
.im-seller-badge--gold .pd-pro-badge-logo,
.pd-pro-verified-pill--gold .pd-pro-badge-logo,
.pd-pro-chip--gold .pd-pro-badge-logo,
.pd-pro-gallery-badge.im-seller-badge--gold .pd-pro-badge-logo {
    background: linear-gradient(135deg, #FBBF24, #B45309);
}

.im-wishlist-form {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    margin: 0;
}

.im-wishlist-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #334155;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.im-wishlist-btn:hover {
    color: #DC2626;
}

.im-gallery-prev,
.im-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    z-index: 2;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.im-gallery-prev {
    left: 8px;
}

.im-gallery-next {
    right: 8px;
}

.im-gallery-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 2;
}

.im-gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.im-gallery-dot.active {
    background: #0D9488;
}

.im-gallery-more {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 6px;
    color: #0D9488;
    z-index: 2;
}

.im-product-body {
    padding: 0.85rem 1.15rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.im-product-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    min-height: 2.5em;
}

.im-product-title a {
    color: var(--ui-text);
    text-decoration: none;
}

.im-product-title a:hover {
    color: #0D9488;
}

.im-product-price {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem 0.45rem;
    margin-bottom: 0.75rem;
    padding-right: 0.25rem;
    min-width: 0;
    box-sizing: border-box;
}

.im-price-main {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0F172A;
    line-height: 1.2;
    flex-shrink: 0;
}

.im-price-main--request {
    font-size: 0.95rem;
    color: #334155;
}

.im-price-unit {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748B;
    flex-shrink: 0;
}

.im-product-price .im-price-moq {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.2rem;
    margin-left: 0.25rem;
    margin-right: 0.15rem;
    padding: 0.18rem 0.45rem 0.18rem 0.35rem;
    border-radius: 999px;
    background: #F8FAFC;
    border: 1px solid #E8ECF1;
    color: #475569;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.2;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
    box-sizing: border-box;
}

.im-product-price .im-price-moq i {
    font-size: 0.55rem;
    color: #0D9488;
}

.im-product-price .im-moq-label {
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.5625rem;
    letter-spacing: 0.02em;
}

.im-product-price .im-price-moq strong {
    font-size: 0.6875rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.01em;
}

.im-product-price .im-moq-unit {
    color: #64748B;
    font-weight: 600;
    font-size: 0.5625rem;
}

@media (max-width: 380px) {
    .im-product-price {
        flex-wrap: wrap;
    }
}

.products-grid-row {
    align-items: stretch;
}

.catalog-products-all {
    padding-bottom: 1.5rem;
}

.catalog-products-all .im-listing-trust-bar {
    margin-top: 1.25rem;
}

.catalog-page--browse .catalog-main {
    padding: 1.15rem 1.25rem 1.75rem;
    background: #F8FAFC;
    min-width: 0;
}

.catalog-page--browse #catalogProductGrid .row>[class*="col-"] {
    display: flex;
}

.catalog-page--browse #catalogProductGrid .im-product-card {
    width: 100%;
}

.catalog-enquiry-dialog {
    max-width: 520px;
}

.catalog-enquiry-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
}

.catalog-enquiry-header {
    align-items: flex-start;
    border-bottom: 1px solid #E2E8F0;
    background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
    padding: 1.15rem 1.25rem 1rem;
}

.catalog-enquiry-header-main {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding-right: 0.5rem;
}

.catalog-enquiry-header-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #CCFBF1;
    color: #0F766E;
    font-size: 1rem;
    flex-shrink: 0;
}

.catalog-enquiry-modal .modal-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 0.15rem;
    letter-spacing: -0.01em;
}

.catalog-enquiry-subtitle {
    font-size: 0.8125rem;
    color: #64748B;
    font-weight: 500;
}

.catalog-enquiry-close {
    margin-top: 0.15rem;
}

.catalog-enquiry-body {
    padding: 1.15rem 1.25rem 0.85rem;
}

.catalog-enquiry-product {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    background: #F0FDFA;
    border: 1px solid #99F6E4;
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
    margin-bottom: 1rem;
}

.catalog-enquiry-product-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0F766E;
}

.catalog-enquiry-product strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #134E4A;
    line-height: 1.35;
    word-break: break-word;
}

.catalog-enquiry-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.catalog-enquiry-hint {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748B;
}

.catalog-enquiry-input {
    position: relative;
}

.catalog-enquiry-input>i {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94A3B8;
    font-size: 0.8125rem;
    pointer-events: none;
    z-index: 2;
}

.catalog-enquiry-input--textarea>i {
    top: 0.95rem;
    transform: none;
}

.catalog-enquiry-input .form-control {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 0.65rem 0.85rem 0.65rem 2.35rem;
    font-size: 0.9375rem;
    color: #0F172A;
    background: #fff;
    box-shadow: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.catalog-enquiry-input--textarea .form-control {
    padding-top: 0.75rem;
    min-height: 110px;
    resize: vertical;
}

.catalog-enquiry-input .form-control:focus {
    border-color: #14B8A6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

.catalog-enquiry-input .form-control::placeholder {
    color: #94A3B8;
}

.catalog-enquiry-qty-row {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
}

.catalog-enquiry-input--qty {
    flex: 1;
}

.catalog-enquiry-unit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 0 0.85rem;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #F8FAFC;
    color: #475569;
    font-size: 0.8125rem;
    font-weight: 700;
}

.catalog-enquiry-user {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 0.875rem;
}

.catalog-enquiry-user>i {
    color: #16A34A;
    margin-top: 0.15rem;
}

.catalog-enquiry-user strong {
    display: block;
    color: #14532D;
    font-size: 0.875rem;
}

.catalog-enquiry-user span {
    display: block;
    color: #4D7C0F;
    font-size: 0.75rem;
    margin-top: 0.1rem;
}

.catalog-enquiry-trust {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.95rem;
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 500;
}

.catalog-enquiry-trust i {
    color: #0D9488;
}

.catalog-enquiry-footer {
    border-top: 1px solid #E2E8F0;
    background: #F8FAFC;
    padding: 0.9rem 1.25rem 1.1rem;
    gap: 0.55rem;
}

.catalog-enquiry-cancel {
    border: 1px solid #CBD5E1;
    background: #fff;
    color: #475569;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.55rem 1rem;
}

.catalog-enquiry-cancel:hover {
    background: #F1F5F9;
    border-color: #94A3B8;
    color: #334155;
}

.catalog-enquiry-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #0D9488;
    border: 1px solid #0D9488;
    color: #fff !important;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.55rem 1.15rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.catalog-enquiry-submit:hover {
    background: #0F766E;
    border-color: #0F766E;
    color: #fff !important;
}

.catalog-enquiry-submit:disabled {
    opacity: 0.75;
    box-shadow: none;
}

.catalog-enquiry-user--login {
    background: #FFF7ED;
    border-color: #FED7AA;
}

.catalog-enquiry-user--login>i {
    color: #EA580C;
}

.catalog-enquiry-user--login strong {
    color: #9A3412;
}

.catalog-enquiry-user--login span {
    color: #C2410C;
}

.catalog-enquiry-footer .catalog-enquiry-submit {
    text-decoration: none;
}

.im-btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.55rem;
    background: #0D9488;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.im-btn-contact:hover {
    background: #0F766E;
    color: #fff;
}

.im-seller-block {
    border-top: 1px solid var(--ui-border-light);
    padding-top: 0.65rem;
    margin-bottom: 0.65rem;
    flex: 1;
}

.im-seller-name {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.im-seller-name a {
    color: var(--ui-text);
    text-decoration: none;
}

.im-seller-name a:hover {
    color: #0D9488;
}

.im-seller-verified-icon {
    color: #2563EB;
    font-size: 0.75rem;
}

.im-seller-chevron {
    font-size: 0.625rem;
    color: var(--ui-text-muted);
}

.im-seller-loc {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.im-seller-loc .fa-location-dot {
    color: #94A3B8;
    font-size: 0.6875rem;
}

.im-seller-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.45rem;
}

.im-seller-badge {
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.12rem 0.4rem 0.12rem 0.12rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.im-seller-badge.js-trust-badge {
    cursor: pointer;
    transition: opacity 0.15s, transform 0.15s;
}

.im-seller-badge.js-trust-badge:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.im-seller-badge.js-trust-badge:focus-visible {
    outline: 2px solid var(--ui-primary);
    outline-offset: 1px;
}

.im-seller-badge--orange {
    background: #FFF7ED;
    color: #C2410C;
}

.im-seller-badge--green {
    background: #F0FDF4;
    color: #15803D;
}

.im-seller-badge--blue {
    background: #EFF6FF;
    color: #1D4ED8;
}

.im-seller-badge--gold {
    background: #FFFBEB;
    color: #B45309;
}

.im-seller-badge--teal {
    background: #F0FDFA;
    color: #0F766E;
}

.im-seller-stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--ui-border-light);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 0.15rem;
    background: #F8FAFC;
}

.im-stat {
    padding: 0.45rem 0.55rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.6875rem;
    color: var(--ui-text-muted);
}

.im-stat+.im-stat {
    border-left: 1px solid var(--ui-border-light);
}

.im-stat-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.im-stat strong {
    color: var(--ui-text);
    font-size: 0.8125rem;
    font-weight: 800;
}

.im-seller-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6875rem;
    color: var(--ui-text-muted);
}

.im-rating .fa-star,
.im-rating .fa-star-half-stroke {
    color: #FBBF24;
    font-size: 0.625rem;
}

.im-rating .fa-regular.fa-star {
    color: #E2E8F0;
    font-size: 0.625rem;
}

.im-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.5rem;
    background: #fff;
    color: #0D9488 !important;
    border: 1.5px solid #0D9488;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8125rem;
    text-decoration: none;
    cursor: pointer;
}

.im-listing-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1rem 1.15rem;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.im-listing-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.im-listing-trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9375rem;
}

.im-listing-trust-icon--green {
    background: #ECFDF5;
    color: #059669;
}

.im-listing-trust-icon--purple {
    background: #F5F3FF;
    color: #7C3AED;
}

.im-listing-trust-icon--orange {
    background: #FFF7ED;
    color: #EA580C;
}

.im-listing-trust-icon--blue {
    background: #EFF6FF;
    color: #2563EB;
}

.im-listing-trust-item strong {
    display: block;
    font-size: 0.8125rem;
    color: var(--ui-text);
}

.im-listing-trust-item span {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
}

@media (max-width: 991.98px) {
    .im-listing-trust-bar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .im-listing-trust-bar {
        grid-template-columns: 1fr;
    }
}

.category-card--dynamic {
    position: relative;
    overflow: hidden;
}

.category-card--dynamic::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--cat-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.category-card--dynamic .cat-icon,
.category-card--dynamic h6 {
    position: relative;
    z-index: 1;
}

.catalog-subnav-wrap {
    background: var(--ui-surface);
    border: 1px solid var(--ui-border-light);
    border-radius: var(--ui-radius);
    padding: 1rem 1.15rem;
    margin-bottom: 1rem;
    box-shadow: var(--ui-shadow-sm);
}

.catalog-subnav-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--ui-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.65rem;
}

.catalog-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.catalog-sub-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--ui-border);
    background: #fff;
    color: var(--ui-text);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: all 0.2s;
}

.catalog-sub-pill:hover {
    border-color: var(--ui-gold);
    color: var(--ui-navy);
}

.catalog-sub-pill.active {
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    border-color: var(--ui-navy);
    color: #fff;
}

.catalog-sub-pill.active .pill-count {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.catalog-thirdnav-wrap {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.catalog-third-pill.active,
.catalog-third-tab.active {
    background: transparent;
    border-color: transparent;
    color: #EA580C;
}

@media (max-width: 767.98px) {
    .catalog-filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.45rem;
        padding: 0.65rem 0.85rem;
    }
    .catalog-filter-row-label {
        min-width: 0;
    }
}

.pill-count {
    font-size: 0.6875rem;
    font-weight: 700;
    background: var(--ui-bg-alt);
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
}

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


/* ---- Buyer-style product cards (catalog listing) ---- */

.buyer-product-card {
    background: var(--ui-surface);
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--ui-shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.buyer-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ui-shadow);
}

.buyer-product-image-wrap {
    display: block;
    position: relative;
    text-decoration: none;
}

.buyer-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--ui-bg-alt);
    display: block;
}

.buyer-product-image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 2.5rem;
}

.buyer-product-stock {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}

.buyer-product-stock.in-stock {
    background: #DCFCE7;
    color: #166534;
}

.buyer-product-stock.out-stock {
    background: #FEE2E2;
    color: #991B1B;
}

.buyer-product-stock.made-order {
    background: #FEF3C7;
    color: #92400E;
}

.buyer-product-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--ui-gold);
    color: var(--ui-navy);
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
}

.buyer-product-body {
    padding: 1.1rem 1.15rem 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.buyer-product-breadcrumb {
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.buyer-product-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
    line-height: 1.35;
}

.buyer-product-title a {
    color: var(--ui-text);
    text-decoration: none;
}

.buyer-product-title a:hover {
    color: var(--ui-navy);
}

.buyer-product-seller {
    font-size: 0.8125rem;
    margin: 0 0 0.45rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.buyer-product-seller-name {
    font-weight: 700;
    color: #2563EB;
}

.buyer-product-verified {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #2563EB;
}

.buyer-product-location {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
}

.buyer-product-short {
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    margin-bottom: 0.65rem;
    line-height: 1.45;
}

.buyer-product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-top: 1px solid var(--ui-border-light);
    border-bottom: 1px solid var(--ui-border-light);
    margin-bottom: 0.65rem;
}

.buyer-product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ui-navy);
}

.buyer-product-moq {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    white-space: nowrap;
}

.buyer-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    margin-bottom: 0.85rem;
}

.buyer-product-meta i {
    color: #94A3B8;
    margin-right: 0.15rem;
}

.buyer-product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.buyer-product-enquiry {
    flex: 1;
    font-weight: 700;
}

.buyer-product-view {
    white-space: nowrap;
}


/* ---- Product detail page ---- */

.product-detail-hero {
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.product-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
}

.product-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.product-detail-breadcrumb a:hover {
    color: var(--ui-gold);
}

.product-detail-breadcrumb span {
    color: #fff;
    font-weight: 600;
}

.product-detail-breadcrumb i {
    font-size: 0.55rem;
    opacity: 0.6;
}

.product-detail-gallery-card,
.product-detail-info-card,
.product-detail-section-card {
    background: var(--ui-surface);
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    box-shadow: var(--ui-shadow-sm);
    overflow: hidden;
}

.product-detail-gallery-card {
    padding: 1rem;
}

.product-detail-main-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--ui-bg-alt);
}

.product-detail-main-image-wrap .buyer-product-stock {
    top: 12px;
    right: 12px;
    left: auto;
}

.product-detail-gallery-next {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
}

.product-detail-price-block {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ui-border-light);
}

.product-detail-moq {
    font-size: 0.875rem;
    color: var(--ui-text-muted);
    margin-top: 0.25rem;
}

.product-detail-main-image {
    width: 100%;
    height: 420px;
    object-fit: contain;
    background: #F8FAFC;
    display: block;
}

.product-detail-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.product-detail-thumb {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 0;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
    overflow: hidden;
    width: 72px;
    height: 72px;
}

.product-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-thumb.active {
    border-color: var(--ui-navy);
}

.product-detail-info-card {
    padding: 1.5rem;
}

.product-detail-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.product-detail-seller-bar {
    background: #F8FAFC;
    border: 1px solid var(--ui-border-light);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
}

.product-detail-seller-main {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.product-detail-seller-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-detail-seller-name {
    font-weight: 700;
    font-size: 0.9375rem;
}

.product-detail-seller-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.2rem;
}

.product-detail-short {
    color: var(--ui-text-muted);
    margin-bottom: 1rem;
}

.product-detail-price-row {
    margin-bottom: 1rem;
}

.product-detail-price {
    font-size: 1.75rem;
}

.product-detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.product-detail-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: #F8FAFC;
    border-radius: 10px;
    padding: 0.65rem 0.75rem;
    font-size: 0.8125rem;
}

.product-detail-meta-item i {
    color: var(--ui-navy);
    margin-top: 0.15rem;
}

.product-detail-meta-item small {
    display: block;
    color: var(--ui-text-muted);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-detail-actions {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.product-detail-enquiry-btn {
    flex: 1;
    font-weight: 700;
}

.product-detail-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    padding-top: 0.75rem;
    border-top: 1px dashed var(--ui-border-light);
}

.product-detail-trust i {
    color: #2563EB;
    margin-right: 0.2rem;
}

.product-detail-section-card {
    padding: 1.25rem 1.5rem;
}

.product-detail-section-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--ui-border-light);
}

.product-detail-description {
    color: var(--ui-text-muted);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.product-detail-specs-table {
    width: 100%;
    font-size: 0.875rem;
}

.product-detail-specs-table th {
    width: 42%;
    padding: 0.5rem 0.75rem 0.5rem 0;
    color: var(--ui-text-muted);
    font-weight: 600;
    vertical-align: top;
}

.product-detail-specs-table td {
    padding: 0.5rem 0;
    font-weight: 600;
}

.product-detail-supplier-facts li {
    padding: 0.25rem 0;
    color: var(--ui-text-muted);
}

.product-detail-supplier-facts i {
    width: 1.1rem;
    color: var(--ui-navy);
}


/* Product detail — fluid layout (no gallery) */

.product-detail-page--fluid {
    padding-top: 1rem;
}

.product-detail-hero--fluid {
    margin-bottom: 0;
}

.pd-top-card {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #F8FAFC 100%);
    border: 1px solid var(--ui-border-light);
    border-radius: 16px;
    box-shadow: var(--ui-shadow-sm);
    margin-bottom: 1.25rem;
}

.pd-top-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
}

.pd-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pd-badge--leading {
    background: #DBEAFE;
    color: #1D4ED8;
}

.pd-top-pricing {
    text-align: right;
    min-width: 180px;
}

.pd-top-pricing .im-product-price {
    font-size: 1.5rem;
    font-weight: 800;
}

.pd-top-rating {
    justify-content: flex-end;
    margin-top: 0.35rem;
}

.pd-top-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.pd-top-actions .im-btn-contact,
.pd-top-actions .im-btn-call {
    margin-bottom: 0;
    text-align: center;
}

.pd-btn-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--ui-border-light);
    background: #fff;
    color: var(--ui-navy);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.pd-btn-feedback:hover {
    background: #FFFBEB;
    border-color: var(--ui-gold);
    color: var(--ui-navy);
}

.pd-seller-card {
    padding: 1.15rem 1.25rem;
}

.pd-desc-card {
    margin-bottom: 1.25rem;
}

.pd-meta-grid-compact {
    grid-template-columns: 1fr 1fr;
}

.pd-section-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--ui-navy);
}

.pd-feedback-section {
    background: var(--ui-surface);
    border: 1px solid var(--ui-border-light);
    border-radius: 16px;
    box-shadow: var(--ui-shadow-sm);
    padding: 1.35rem 1.5rem;
    margin-top: 1.25rem;
}

.pd-feedback-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ui-border-light);
}

.pd-feedback-score {
    text-align: right;
}

.pd-feedback-score strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ui-navy);
    line-height: 1;
}

.pd-feedback-score small {
    display: block;
    color: var(--ui-text-muted);
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

.pd-feedback-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pd-feedback-item {
    padding: 1rem;
    border: 1px solid var(--ui-border-light);
    border-radius: 12px;
    background: #FAFBFC;
}

.pd-feedback-item-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.pd-feedback-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.pd-feedback-item-head strong {
    display: block;
    font-size: 0.875rem;
}

.pd-feedback-stars {
    display: block;
    font-size: 0.75rem;
    color: #F59E0B;
}

.pd-feedback-date {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    white-space: nowrap;
}

.pd-feedback-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.pd-feedback-text {
    font-size: 0.875rem;
    color: var(--ui-text-muted);
    margin: 0;
    line-height: 1.6;
}

.pd-feedback-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--ui-text-muted);
    border: 1px dashed var(--ui-border-light);
    border-radius: 12px;
    background: #FAFBFC;
}

.pd-feedback-empty i {
    font-size: 2rem;
    opacity: 0.35;
    margin-bottom: 0.75rem;
    display: block;
}

.pd-feedback-form-card {
    background: #F8FAFC;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    padding: 1.15rem;
    height: 100%;
}

.pd-star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.15rem;
}

.pd-star-label {
    cursor: pointer;
    color: #CBD5E1;
    font-size: 1.25rem;
    margin: 0;
}

.pd-star-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pd-star-input .pd-star-label:hover,
.pd-star-input .pd-star-label:hover~.pd-star-label,
.pd-star-input .pd-star-label:has(input:checked),
.pd-star-input .pd-star-label:has(input:checked)~.pd-star-label {
    color: #F59E0B;
}

@media (max-width: 991.98px) {
    .pd-top-card {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .pd-top-pricing {
        text-align: left;
    }
    .pd-top-rating {
        justify-content: flex-start;
    }
    .pd-top-actions {
        flex-direction: row;
        flex-wrap: wrap;
        min-width: 0;
    }
    .pd-top-actions .im-btn-contact,
    .pd-top-actions .im-btn-call,
    .pd-btn-feedback {
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 767.98px) {
    .product-detail-meta-grid {
        grid-template-columns: 1fr;
    }
    .pd-meta-grid-compact {
        grid-template-columns: 1fr;
    }
    .buyer-product-actions {
        flex-direction: column;
    }
    .pd-feedback-date {
        display: none;
    }
}


/* ---- Product detail PRO (mockup layout) ---- */

.pd-pro-page {
    background: #F1F5F9;
    min-height: auto;
    padding: 0 0 2.25rem;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.pd-pro-page>.container-fluid {
    max-width: 100% !important;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.pd-pro-page .pd-pro-topbar,
.pd-pro-page .pd-pro-hero,
.pd-pro-page .pd-pro-lower,
.pd-pro-page .pd-pro-feedback-fluid {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.pd-pro-page .pd-pro-hero,
.pd-pro-page .pd-pro-lower {
    --bs-gutter-x: 0.75rem;
}

.pd-pro-page .pd-pro-hero>[class*="col-"],
.pd-pro-page .pd-pro-lower>[class*="col-"] {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
}

.pd-pro-page .pd-pro-hero>[class*="col-"]:first-child,
.pd-pro-page .pd-pro-lower>[class*="col-"]:first-child {
    padding-left: 0;
}

.pd-pro-page .pd-pro-hero>[class*="col-"]:last-child,
.pd-pro-page .pd-pro-lower>[class*="col-"]:last-child {
    padding-right: 0;
}

.pd-pro-page .pd-pro-gallery,
.pd-pro-page .pd-pro-buy-card,
.pd-pro-page .pd-pro-supplier-card,
.pd-pro-page .pd-pro-feedback {
    border-radius: 0;
}

@media (min-width: 992px) {
    .pd-pro-page .pd-pro-info,
    .pd-pro-page .pd-pro-tabs-card {
        border-radius: 14px;
    }
}

.pd-pro-topbar {
    margin-bottom: 0.75rem;
}

.pd-pro-leading {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #0D9488;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    margin-bottom: 0.4rem;
}

.pd-pro-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.3;
}

.pd-pro-breadcrumb a {
    color: #64748B;
    text-decoration: none;
}

.pd-pro-breadcrumb a:hover {
    color: #0D9488;
}

.pd-pro-breadcrumb span {
    color: #334155;
    font-weight: 600;
}

.pd-pro-breadcrumb i {
    font-size: 0.45rem;
    opacity: 0.5;
}

.pd-pro-hero {
    --bs-gutter-x: 0.85rem;
    --bs-gutter-y: 0.85rem;
    align-items: stretch;
}

.pd-pro-hero>[class*="col-"] {
    display: flex;
}

.pd-pro-gallery {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    padding: 0.75rem;
    box-shadow: var(--ui-shadow-sm);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 100%;
}

.pd-pro-gallery-inner {
    display: block;
}

.pd-pro-gallery-main {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #F8FAFC;
    aspect-ratio: 1 / 1;
    min-height: 260px;
}

.pd-pro-main-img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
}

.pd-pro-main-empty {
    min-height: 260px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    font-size: 2.5rem;
}

.pd-pro-best {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0D9488 !important;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    z-index: 2;
}

.pd-pro-gallery-main .buyer-product-stock,
.pd-pro-stock {
    top: 10px;
    left: 10px;
    right: auto;
    width: auto;
    max-width: calc(100% - 56px);
    white-space: nowrap;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 0.28rem 0.55rem;
    z-index: 2;
}

.pd-pro-gallery-main .pd-pro-best+.pd-pro-stock,
.pd-pro-gallery-main .pd-pro-best~.pd-pro-stock {
    left: auto;
    right: 52px;
}

.pd-pro-wish-btn,
a.pd-pro-wish-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: #fff;
    color: #64748B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
    z-index: 3;
    cursor: pointer;
    text-decoration: none;
}

.pd-pro-wish-btn:hover {
    color: #DC2626;
}

.pd-pro-gallery-wish {
    margin: 0;
}

.pd-pro-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #0F172A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.15);
    z-index: 3;
    cursor: pointer;
}

.pd-pro-nav-prev {
    left: 10px;
}

.pd-pro-nav-next {
    right: 10px;
}

.pd-pro-nav:hover {
    background: #0D9488;
    color: #fff;
}

.pd-pro-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
    align-self: stretch;
}

.pd-pro-thumb {
    position: relative;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    background: #F1F5F9;
    aspect-ratio: 1;
    cursor: pointer;
    transition: border-color 0.15s ease;
    min-height: 0;
    flex: none;
}

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

.pd-pro-thumb.active {
    border-color: #0D9488;
}

.pd-pro-thumb:hover {
    border-color: #99F6E4;
}

.pd-pro-thumb-viewall {
    background: #F0FDFA;
    border: 1px dashed #99F6E4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-pro-viewall-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: #0F766E;
    line-height: 1.1;
}

.pd-pro-viewall-label small {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pd-pro-thumb-more {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.55);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}

.pd-pro-gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.pd-pro-gallery-modal-item {
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    background: #F1F5F9;
    aspect-ratio: 1;
    cursor: pointer;
}

.pd-pro-gallery-modal-item:hover {
    border-color: #0D9488;
}

.pd-pro-gallery-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-pro-star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.35rem;
}

.pd-pro-star-input label {
    position: relative;
    cursor: pointer;
    color: #CBD5E1;
    margin: 0;
    font-size: 1.35rem;
    line-height: 1;
    pointer-events: auto;
}

.pd-pro-star-input label input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 1;
}

.pd-pro-star-input label i {
    pointer-events: none;
}

.pd-pro-star-input label:hover,
.pd-pro-star-input label:hover~label,
.pd-pro-star-input label:has(input:checked),
.pd-pro-star-input label:has(input:checked)~label {
    color: #F59E0B;
}

.pd-pro-feedback-fluid {
    margin-top: 0.85rem;
    width: 100%;
    max-width: 100%;
}

.pd-pro-feedback-fluid .pd-pro-feedback {
    margin-top: 0;
}

.pd-pro-supplier-name a {
    color: inherit;
    text-decoration: none;
}

.pd-pro-supplier-name a:hover {
    color: var(--ui-teal, #0D9488);
}

.pd-pro-info {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    padding: 1.15rem 1.25rem;
    box-shadow: var(--ui-shadow-sm);
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pd-pro-wholesale {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0F766E;
    background: #CCFBF1;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.55rem;
}

.pd-pro-verified-pill {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #C2410C;
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    padding: 0.22rem 0.65rem 0.22rem 0.22rem;
    border-radius: 999px;
    margin-bottom: 0.55rem;
    cursor: pointer;
}

.pd-pro-verified-pill:hover {
    filter: brightness(0.98);
}

.pd-pro-verified-pill--orange {
    background: #FFF7ED;
    color: #C2410C;
    border-color: #FED7AA;
}

.pd-pro-verified-pill--green {
    background: #F0FDF4;
    color: #15803D;
    border-color: #BBF7D0;
}

.pd-pro-verified-pill--teal {
    background: #F0FDFA;
    color: #0F766E;
    border-color: #99F6E4;
}

.pd-pro-verified-pill--blue {
    background: #EFF6FF;
    color: #1D4ED8;
    border-color: #BFDBFE;
}

.pd-pro-verified-pill--gold {
    background: #FFFBEB;
    color: #B45309;
    border-color: #FDE68A;
}

.pd-pro-chip--verified {
    background: #F0FDFA;
    border-color: #99F6E4;
    color: #0F766E;
    cursor: pointer;
}

.pd-pro-chip--verified i {
    color: #0D9488;
}

.pd-pro-chip--badge {
    cursor: pointer;
    padding-left: 0.2rem;
}

.pd-pro-chip--orange {
    background: #FFF7ED;
    border-color: #FED7AA;
    color: #C2410C;
}

.pd-pro-chip--green {
    background: #F0FDF4;
    border-color: #BBF7D0;
    color: #15803D;
}

.pd-pro-chip--teal {
    background: #F0FDFA;
    border-color: #99F6E4;
    color: #0F766E;
}

.pd-pro-chip--blue {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1D4ED8;
}

.pd-pro-chip--gold {
    background: #FFFBEB;
    border-color: #FDE68A;
    color: #B45309;
}

.pd-pro-gallery-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem 0.2rem 0.2rem;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.14);
    cursor: pointer;
    background: #FFF7ED;
    color: #C2410C;
}

.pd-pro-gallery-badge.im-seller-badge--orange {
    background: #FFF7ED;
    color: #C2410C;
}

.pd-pro-gallery-badge.im-seller-badge--green {
    background: #F0FDF4;
    color: #15803D;
}

.pd-pro-gallery-badge.im-seller-badge--teal {
    background: #F0FDFA;
    color: #0F766E;
}

.pd-pro-gallery-badge.im-seller-badge--blue {
    background: #EFF6FF;
    color: #1D4ED8;
}

.pd-pro-gallery-badge.im-seller-badge--gold {
    background: #FFFBEB;
    color: #B45309;
}

.pd-pro-gallery-badge .pd-pro-badge-logo {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.58rem;
}

.pd-pro-title {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ui-navy, #0B1634);
    margin: 0 0 0.5rem;
    line-height: 1.28;
}

.pd-pro-subtitle {
    font-size: 0.9rem;
    color: #64748B;
    margin: 0 0 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pd-pro-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0.9rem;
}

.pd-pro-rating strong {
    color: var(--ui-navy);
}

.pd-pro-meta-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
}

.pd-pro-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 9px;
    padding: 0.4rem 0.65rem;
    line-height: 1.2;
}

.pd-pro-chip i {
    color: #0D9488;
    font-size: 0.7rem;
    width: 0.85rem;
    text-align: center;
}

.pd-pro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 0.85rem;
}

.pd-pro-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: #475569;
    background: #F1F5F9;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
}

.pd-pro-features {
    display: none;
}

.pd-pro-sellpoints {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.75rem;
    margin: 0.15rem 0 0.95rem;
    padding-top: 0.85rem;
    border-top: 1px solid #F1F5F9;
}

.pd-pro-sellpoint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.35;
}

.pd-pro-sellpoint-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #F0FDFA;
    color: #0D9488;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.pd-pro-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid #F1F5F9;
}

.pd-pro-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: #64748B;
    line-height: 1.25;
}

.pd-pro-trust-item i {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #F0FDFA;
    color: #0D9488;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.pd-pro-supplier-inline {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem 0.9rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    margin-top: auto;
}

.pd-pro-supplier-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #CCFBF1;
    color: #0D9488;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-pro-supplier-name {
    font-weight: 700;
    font-size: 0.925rem;
    color: #0F172A;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
}

.pd-pro-verified {
    font-size: 0.7rem;
    font-weight: 700;
    color: #0D9488;
}

.pd-pro-supplier-meta {
    font-size: 0.75rem;
    color: #64748B;
    margin-top: 0.25rem;
    line-height: 1.45;
}

.pd-pro-supplier-badges {
    margin-top: 0.45rem;
}

.pd-pro-buy-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    padding: 1.1rem 1.15rem;
    box-shadow: var(--ui-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
    min-height: 0;
    position: static;
}

.pd-pro-sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: sticky;
    top: 76px;
}

.pd-pro-buy-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    align-self: flex-start;
    margin: -0.1rem 0 0.25rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #CCFBF1;
    color: #0F766E;
    font-size: 0.72rem;
    font-weight: 800;
}

.pd-pro-buy-verified i {
    font-size: 0.75rem;
}

.pd-pro-about-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--ui-shadow-sm);
}

.pd-pro-about-card-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.1rem;
    background: #F0FDFA;
    border-bottom: 1px solid #CCFBF1;
    color: #0F766E;
    font-size: 0.95rem;
    font-weight: 800;
}

.pd-pro-about-card-body {
    padding: 1.05rem 1.1rem 1.15rem;
}

.pd-pro-about-brand {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.pd-pro-about-logo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E2E8F0;
    background: #0F172A;
    flex-shrink: 0;
}

.pd-pro-about-logo--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    color: #FBBF24;
}

.pd-pro-about-brand-copy {
    min-width: 0;
}

.pd-pro-about-brand-copy h3 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.pd-pro-about-type {
    display: inline-flex;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #CCFBF1;
    color: #0F766E;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.pd-pro-about-brand-copy p {
    margin: 0.35rem 0 0;
    font-size: 0.8125rem;
    color: #334155;
    line-height: 1.45;
}

.pd-pro-about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.pd-pro-about-grid--3,
.pd-pro-about-grid--4,
.pd-pro-about-grid--5,
.pd-pro-about-grid--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pd-pro-about-grid--5 .pd-pro-about-fact:last-child,
.pd-pro-about-grid--4 .pd-pro-about-fact:last-child {
    grid-column: auto;
}

.pd-pro-about-fact {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    padding: 0.75rem 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-height: 84px;
}

.pd-pro-about-fact i {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.pd-pro-about-fact--teal i {
    color: #0D9488;
}

.pd-pro-about-fact--blue i {
    color: #2563EB;
}

.pd-pro-about-fact--green i {
    color: #16A34A;
}

.pd-pro-about-fact--gold i {
    color: #D97706;
}

.pd-pro-about-fact--slate i {
    color: #475569;
}

.pd-pro-about-fact--teal {
    background: #F0FDFA;
    border-color: #99F6E4;
}

.pd-pro-about-fact--blue {
    background: #EFF6FF;
    border-color: #BFDBFE;
}

.pd-pro-about-fact--green {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.pd-pro-about-fact--gold {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border-color: #FCD34D;
}

.pd-pro-about-fact--slate {
    background: #F8FAFC;
    border-color: #E2E8F0;
}

.pd-pro-about-fact.is-badge {
    align-items: flex-start;
    position: relative;
}

.pd-pro-about-fact.is-badge::after {
    content: 'Badge';
    position: absolute;
    top: 0.55rem;
    right: 0.45rem;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #B45309;
    background: #FFF7ED;
    border: 1px solid #FDBA74;
    border-radius: 999px;
    padding: 0.1rem 0.35rem;
}

.pd-pro-about-fact strong {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
    word-break: break-word;
    padding-right: 0.2rem;
}

.pd-pro-about-fact.is-badge strong {
    padding-right: 2.6rem;
}

.pd-pro-about-fact small {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748B;
}

@media (max-width: 575.98px) {
    .pd-pro-about-grid,
    .pd-pro-about-grid--3,
    .pd-pro-about-grid--4,
    .pd-pro-about-grid--5,
    .pd-pro-about-grid--6 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .pd-pro-about-grid,
    .pd-pro-about-grid--3,
    .pd-pro-about-grid--4,
    .pd-pro-about-grid--5,
    .pd-pro-about-grid--6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pd-pro-about-profile-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.9rem;
    min-height: 44px;
    border-radius: 10px;
    border: 1.5px solid #0D9488;
    color: #0D9488;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
}

.pd-pro-about-profile-link:hover {
    background: #0D9488;
    color: #fff;
}

@media (max-width: 991.98px) {
    .pd-pro-sidebar-stack {
        position: static;
    }
}

.pd-pro-price {
    font-size: 1.55rem;
    font-weight: 800;
    color: #0D9488;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pd-pro-moq {
    font-size: 0.8125rem;
    color: #64748B;
    margin: -0.15rem 0 0.35rem;
}

.pd-pro-buy-card .im-btn-contact,
.pd-pro-buy-card .im-btn-call,
.pd-pro-buy-card .pd-pro-wishlist,
.pd-pro-buy-card .pd-pro-about-btn {
    margin-bottom: 0 !important;
    min-height: 46px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
    box-sizing: border-box;
}

.pd-pro-buy-card .im-btn-call {
    border-width: 1.5px;
}

.pd-pro-buy-card form {
    margin: 0;
}

.pd-pro-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    color: #334155;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    min-height: 46px;
}

.pd-pro-wishlist:hover {
    background: #fff;
    border-color: #CBD5E1;
    color: var(--ui-navy);
}

.pd-pro-about-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: 1.5px solid #0D9488;
    background: #F0FDFA;
    color: #0F766E;
    font-weight: 700;
    font-size: 0.875rem;
    min-height: 46px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pd-pro-about-btn:hover {
    background: #0D9488;
    border-color: #0D9488;
    color: #fff;
}

.pd-about-modal .modal-content {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
}

.pd-about-modal-head {
    background: #0D9488;
    color: #fff;
    border-bottom: 0;
    padding: 1rem 1.25rem;
}

.pd-about-modal-head .modal-title {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.pd-about-modal-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}

.pd-about-modal-type {
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0.75rem;
}

.pd-about-modal-desc {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.pd-about-modal-facts {
    margin-bottom: 0;
}

.pd-about-modal-footer {
    border-top: 1px solid #E2E8F0;
    gap: 0.5rem;
}

.pd-about-modal-link {
    width: auto !important;
    margin: 0 !important;
    padding: 0.55rem 1.15rem !important;
    min-height: 42px;
    text-decoration: none;
}

.pd-pro-contact-btn {
    flex-direction: row;
    gap: 0.55rem;
    min-height: 52px !important;
}

.pd-pro-contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
    text-align: left;
}

.pd-pro-contact-text strong {
    font-size: 0.875rem;
    font-weight: 800;
}

.pd-pro-contact-text small {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.9;
}

.pd-pro-meta-box {
    margin-top: auto;
    padding: 0.75rem 0.85rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #F8FAFC;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 0.75rem;
}

.pd-pro-meta-box div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.pd-pro-meta-box span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #94A3B8;
}

.pd-pro-meta-box strong {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0F172A;
    word-break: break-word;
}

.pd-pro-stats {
    display: none;
}

.pd-pro-lower {
    margin-top: 0.85rem;
    align-items: start;
}

.pd-pro-lower>[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.pd-pro-tabs-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    box-shadow: var(--ui-shadow-sm);
    overflow: hidden;
    margin-top: 0;
    width: 100%;
}

.pd-pro-tabs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #E2E8F0;
    background: #F8FAFC;
}

.pd-pro-tabs li {
    flex: 1;
    min-width: 120px;
}

.pd-pro-tab {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0.85rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #64748B;
    text-align: center;
    line-height: 1.3;
}

.pd-pro-tab:hover {
    color: #0D9488;
}

.pd-pro-tab.active {
    color: #0D9488;
    background: #fff;
    box-shadow: inset 0 -2px 0 #0D9488;
}

.pd-pro-tab-panel {
    display: none;
    padding: 1.15rem 1.25rem 1.35rem;
}

.pd-pro-tab-panel.active {
    display: block;
}

.pd-pro-desc-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
}

.pd-pro-desc-layout.has-highlights {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
}

.pd-pro-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #334155;
    white-space: pre-wrap;
    word-break: break-word;
    text-align: left;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .pd-pro-desc-layout.has-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .pd-pro-thumbs {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .pd-pro-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pd-pro-sellpoints {
        grid-template-columns: 1fr;
    }
    .pd-pro-buy-card {
        position: static;
        min-height: 0;
    }
    .pd-pro-gallery-main {
        aspect-ratio: 4 / 3;
    }
    .pd-pro-hero>[class*="col-"] {
        display: block;
    }
    .pd-pro-gallery,
    .pd-pro-info {
        min-height: 0;
    }
}

.pd-pro-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pd-pro-highlight {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.75rem 0.85rem;
    border: 1px solid #E2E8F0;
    border-radius: 11px;
    background: #F8FAFC;
}

.pd-pro-highlight i {
    color: #0D9488;
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pd-pro-highlight strong {
    display: block;
    font-size: 0.8125rem;
    color: #0F172A;
    line-height: 1.3;
}

.pd-pro-highlight small {
    display: block;
    color: #64748B;
    font-size: 0.75rem;
    margin-top: 0.15rem;
    line-height: 1.35;
}

.pd-pro-policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-pro-policy-list li {
    display: flex;
    gap: 0.65rem;
    padding: 0.55rem 0;
    font-size: 0.875rem;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
}

.pd-pro-policy-list li:last-child {
    border-bottom: 0;
}

.pd-pro-policy-list i {
    color: #0D9488;
    width: 1.1rem;
    margin-top: 0.15rem;
}

.pd-pro-supplier-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--ui-shadow-sm);
    height: auto;
    width: 100%;
    margin-top: 0;
}

.pd-pro-supplier-card-head {
    background: #0D9488;
    color: #fff;
    font-weight: 800;
    font-size: 0.9375rem;
    padding: 0.9rem 1.15rem;
    letter-spacing: -0.01em;
}

.pd-pro-supplier-card-body {
    padding: 1.15rem 1.2rem 1.25rem;
}

.pd-pro-supplier-card-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.pd-pro-supplier-card-body p {
    font-size: 0.8125rem;
    color: #64748B;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.pd-pro-supplier-facts {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.pd-pro-supplier-facts li {
    font-size: 0.8125rem;
    color: #475569;
    padding: 0.4rem 0;
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    border-bottom: 1px solid #F1F5F9;
}

.pd-pro-supplier-facts li:last-child {
    border-bottom: 0;
}

.pd-pro-supplier-facts i {
    color: #0D9488;
    width: 1rem;
    margin-top: 0.15rem;
    text-align: center;
}

.pd-pro-supplier-link {
    display: block;
    text-align: center;
    padding: 0.7rem 1rem;
    border: 1.5px solid #0D9488;
    border-radius: 10px;
    color: #0D9488;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    min-height: 46px;
    line-height: 1.4;
    box-sizing: border-box;
}

.pd-pro-supplier-link:hover {
    background: #0D9488;
    color: #fff;
}

.pd-pro-feedback {
    margin-top: 0.85rem;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    padding: 1.1rem 1.2rem 1.25rem;
    box-shadow: var(--ui-shadow-sm);
    width: 100%;
}

.pd-pro-feedback-head {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F1F5F9;
}

.pd-pro-feedback-head h2 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.2rem;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.pd-pro-feedback-head p {
    font-size: 0.8125rem;
    color: #64748B;
    margin: 0;
}

.pd-pro-feedback-row {
    --bs-gutter-x: 0.85rem;
    --bs-gutter-y: 0.85rem;
    align-items: stretch;
}

.pd-pro-feedback-row>[class*="col-"] {
    display: flex;
}

.pd-pro-feedback-summary {
    text-align: center;
    padding: 1rem 0.9rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    background: #FAFBFC;
    width: 100%;
}

.pd-pro-feedback-summary>strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ui-navy);
    line-height: 1;
}

.pd-pro-feedback-stars {
    display: block;
    color: #F59E0B;
    margin: 0.35rem 0;
}

.pd-pro-feedback-summary small {
    color: #64748B;
    font-size: 0.75rem;
}

.pd-pro-feedback-main {
    min-width: 0;
    width: 100%;
}

.pd-pro-rating-bars {
    margin-top: 0.85rem;
    text-align: left;
}

.pd-pro-rating-bar-row {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: #64748B;
    margin-bottom: 0.3rem;
}

.pd-pro-rating-bar {
    height: 7px;
    background: #E2E8F0;
    border-radius: 999px;
    overflow: hidden;
}

.pd-pro-rating-bar span {
    display: block;
    height: 100%;
    background: #0D9488;
    border-radius: 999px;
}

.pd-pro-rating-bar-row em {
    font-style: normal;
    font-size: 0.6875rem;
    text-align: right;
}

.pd-pro-feedback-empty {
    text-align: center;
    padding: 1.5rem 1rem;
    color: #64748B;
    border: 1px dashed #E2E8F0;
    border-radius: 12px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    width: 100%;
}

.pd-pro-feedback-empty i {
    font-size: 1.75rem;
    opacity: 0.35;
    display: block;
    margin-bottom: 0.45rem;
}

.pd-pro-feedback-empty p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    max-width: 220px;
}

.pd-pro-write-review {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 1.1rem 1rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pd-pro-write-review h3 {
    font-size: 0.875rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #0F172A;
}

.pd-pro-write-review .im-btn-contact,
.pd-pro-write-review a.im-btn-contact,
.pd-pro-write-review button.im-btn-contact {
    margin-bottom: 0 !important;
    min-height: 46px;
    border-radius: 10px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 3;
    text-decoration: none;
}

.pd-pro-write-stars {
    color: #CBD5E1;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.catalog-product-card {
    background: var(--ui-surface);
    border: 1px solid var(--ui-border-light);
    border-radius: var(--ui-radius);
    overflow: hidden;
    box-shadow: var(--ui-shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.catalog-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ui-shadow);
}

.catalog-product-image-link {
    display: block;
    position: relative;
}

.catalog-product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--ui-bg-alt);
}

.catalog-product-image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 2rem;
}

.catalog-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--ui-gold);
    color: var(--ui-navy);
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
}

.catalog-product-body {
    padding: 1rem;
}

.catalog-product-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.catalog-product-title a {
    color: var(--ui-text);
    text-decoration: none;
}

.catalog-product-title a:hover {
    color: var(--ui-navy);
}

.catalog-product-desc {
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.45;
}

.catalog-product-price {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--ui-navy);
    margin-bottom: 0.35rem;
}

.catalog-product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.75rem;
    color: var(--ui-text-muted);
}

.catalog-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--ui-text-muted);
    background: var(--ui-surface);
    border: 1px dashed var(--ui-border);
    border-radius: var(--ui-radius);
}

.catalog-empty-state i {
    font-size: 2rem;
    opacity: 0.35;
    margin-bottom: 0.75rem;
    display: block;
}

#catalogProductGrid.is-loading {
    opacity: 0.55;
    pointer-events: none;
    transition: opacity 0.2s;
}

@media (max-width: 991.98px) {
    .catalog-page--browse {
        padding-top: 0;
    }
    .catalog-shell {
        border-radius: 0;
    }
    .catalog-layout,
    .catalog-page--browse .catalog-layout {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .catalog-page--browse .catalog-sidebar,
    .catalog-page--browse .catalog-sub-sidebar.cat-page-sidebar {
        position: relative;
        top: auto;
        min-height: auto;
        max-height: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--ui-border-light);
        overflow: visible;
    }
    .catalog-page--browse .catalog-sidebar-scroll {
        flex: none;
        min-height: auto;
        overflow: visible;
    }
    .catalog-page--browse .catalog-main {
        padding: 1rem;
    }
    .catalog-sidebar {
        position: static;
        max-height: none;
    }
    .catalog-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 575.98px) {
    .catalog-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ---- CTA Section ---- */

.cta-section {
    background: linear-gradient(135deg, var(--ui-navy) 0%, var(--ui-navy-mid) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    color: #fff !important;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75) !important;
}


/* ---- Auth Pages ---- */

.auth-page-wrap {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, var(--ui-bg) 0%, var(--ui-bg-alt) 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-card {
    max-width: 480px;
    margin: 0 auto;
}

.auth-card-pro {
    background: var(--ui-surface);
    border: 1px solid var(--ui-border-light);
    border-radius: var(--ui-radius-lg);
    box-shadow: var(--ui-shadow-lg);
    overflow: hidden;
}

.auth-card-pro .card-body {
    padding: 2.5rem 2rem !important;
}

@media (min-width: 576px) {
    .auth-card-pro .card-body {
        padding: 3rem 2.5rem !important;
    }
}

.auth-card-pro .form-control,
.auth-card-pro .form-select {
    border: 1px solid var(--ui-border);
    border-radius: var(--ui-radius-sm);
    padding: 0.75rem 1rem;
    transition: border-color var(--ui-transition), box-shadow var(--ui-transition);
}

.auth-card-pro .form-control:focus {
    border-color: var(--ui-gold);
    box-shadow: 0 0 0 3px var(--ui-gold-glow);
}

.auth-card-pro .input-group-text {
    background: var(--ui-bg);
    border-color: var(--ui-border);
    color: var(--ui-text-muted);
    border-radius: var(--ui-radius-sm) 0 0 var(--ui-radius-sm);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--ui-text-light);
    font-size: 0.8125rem;
    margin: 1.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ui-border);
}


/* Register role cards */

.role-card {
    background: var(--ui-surface);
    border: 2px solid var(--ui-border-light);
    border-radius: var(--ui-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--ui-transition);
    height: 100%;
    box-shadow: var(--ui-shadow-sm);
}

.role-card:hover {
    border-color: var(--ui-gold);
    transform: translateY(-4px);
    box-shadow: var(--ui-shadow-lg);
}

.role-card .role-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}


/* ---- Footer ---- */

.site-prefooter {
    background: #fff;
    border-top: 1px solid #E2E8F0;
    padding: 2.25rem 0 0.5rem;
}

.site-prefooter-block {
    padding: 0 0 1.65rem;
    margin-bottom: 1.65rem;
    border-bottom: 1px solid #EEF2F7;
}

.site-prefooter-block--last {
    border-bottom: 0;
    margin-bottom: 0.75rem;
}

.site-prefooter-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.site-prefooter-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.site-prefooter-icon--blue {
    background: #EFF6FF;
    color: #2563EB;
}

.site-prefooter-icon--green {
    background: #ECFDF5;
    color: #059669;
}

.site-prefooter-icon--orange {
    background: #FFF7ED;
    color: #EA580C;
}

.site-prefooter-head h3 {
    margin: 0 0 0.2rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ui-navy) !important;
    letter-spacing: -0.01em;
}

.site-prefooter-head p {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748B;
    line-height: 1.45;
}

.site-prefooter-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0;
    line-height: 1.7;
    padding-left: 0.15rem;
}

.site-prefooter-links a {
    color: #64748B;
    font-size: 0.8125rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
}

.site-prefooter-links a:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

.site-prefooter-sep {
    color: #CBD5E1;
    margin: 0 0.55rem;
    font-size: 0.75rem;
    user-select: none;
}

.site-footer {
    --footer-accent: #1D4ED8;
    --footer-accent-soft: #EFF6FF;
    background: linear-gradient(180deg, #F1F5F9 0%, #F8FAFC 28%, #FFFFFF 100%) !important;
    color: var(--ui-text);
    padding: 0 !important;
    margin-top: 0 !important;
    border-top: 1px solid #E2E8F0;
}

.footer-shell {
    width: 100%;
    max-width: none;
}

.site-footer>.footer-shell {
    padding-top: 2.75rem;
    padding-bottom: 2rem;
}

.footer-trust,
.footer-help {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.04);
}

.footer-trust {
    margin-bottom: 2.75rem;
}

.footer-trust-item,
.footer-help-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    min-width: 0;
    transition: background 0.2s ease;
}

.footer-trust-item:hover,
.footer-help-item:hover {
    background: #FAFBFC;
}

.footer-trust-item+.footer-trust-item,
.footer-help-item+.footer-help-item {
    border-left: 1px solid #EEF2F7;
}

.footer-trust-icon,
.footer-help-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.footer-trust-icon--purple {
    background: linear-gradient(145deg, #F5F3FF, #EDE9FE);
    color: #7C3AED;
}

.footer-trust-icon--green {
    background: linear-gradient(145deg, #ECFDF5, #D1FAE5);
    color: #059669;
}

.footer-trust-icon--orange {
    background: linear-gradient(145deg, #FFF7ED, #FFEDD5);
    color: #EA580C;
}

.footer-help-icon {
    background: linear-gradient(145deg, #EFF6FF, #DBEAFE);
    color: var(--footer-accent);
}

.footer-trust-copy,
.footer-help-copy {
    min-width: 0;
}

.footer-trust-item strong,
.footer-help-item strong {
    display: block;
    font-family: var(--ui-font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ui-navy);
    margin-bottom: 0.3rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.footer-trust-item p,
.footer-help-item p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748B;
}

.footer-help-contact {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-help-item a {
    color: var(--footer-accent);
    font-weight: 600;
    text-decoration: none;
}

.footer-help-item a:hover {
    color: #1E40AF !important;
    text-decoration: underline;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 1.55fr) repeat(4, minmax(0, 1fr));
    gap: 2rem 2.25rem;
    margin-bottom: 2.5rem;
    padding: 0 0.25rem;
}

.footer-col h6 {
    color: var(--ui-navy) !important;
    font-family: var(--ui-font-display);
    font-weight: 700;
    font-size: 0.9375rem;
    margin: 0 0 1.15rem;
    padding-bottom: 0.65rem;
    position: relative;
    letter-spacing: -0.01em;
}

.footer-col h6::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--footer-accent), #60A5FA);
}

.footer-col--about p {
    margin: 0 0 1.25rem;
    max-width: 34rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #64748B;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li+li {
    margin-top: 0.65rem;
}

.footer-col a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.84375rem;
    color: #64748B;
    text-decoration: none;
    transition: color 0.15s, transform 0.15s;
}

.footer-col a i {
    font-size: 0.5rem;
    color: #94A3B8;
    transition: color 0.15s, transform 0.15s;
}

.footer-col a:hover {
    color: var(--footer-accent) !important;
    transform: translateX(2px);
}

.footer-col a:hover i {
    color: var(--footer-accent);
    transform: translateX(1px);
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid #E2E8F0;
    color: #64748B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.footer-social a:hover {
    background: var(--ui-navy);
    border-color: var(--ui-navy);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(11, 22, 52, 0.16);
}

.footer-help {
    margin-bottom: 0;
}

.footer-subscribe {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.85rem;
    max-width: 420px;
}

.footer-subscribe input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 1px solid #D0D7E2;
    border-radius: 11px;
    padding: 0 1rem;
    font-size: 0.84375rem;
    background: #fff;
    color: var(--ui-text);
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.03);
}

.footer-subscribe input::placeholder {
    color: #94A3B8;
}

.footer-subscribe input:focus {
    outline: none;
    border-color: var(--footer-accent);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}

.footer-subscribe button {
    height: 44px;
    padding: 0 1.35rem;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(180deg, #2563EB 0%, #1D4ED8 100%);
    color: #fff;
    font-size: 0.84375rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.28);
    transition: filter 0.15s, transform 0.15s, box-shadow 0.15s;
}

.footer-subscribe button:hover {
    filter: brightness(1.05);
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.34);
}

.footer-bottom-bar {
    margin-top: 2rem;
    background: #fff;
    border-top: 1px solid #E2E8F0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 1.15rem 0;
}

.footer-bottom-brand {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 160px;
}

.footer-bottom-brand .brand-logo-link--footer {
    display: inline-flex;
}

.footer-bottom-tagline {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94A3B8;
    padding-left: 0.1rem;
}

.footer-copy {
    margin: 0;
    font-size: 0.78125rem;
    color: #64748B;
    text-align: center;
    flex: 1 1 auto;
}

.footer-bottom-meta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-country {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--ui-navy);
    padding: 0.4rem 0.75rem;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #F8FAFC;
}

.footer-country i {
    font-size: 0.55rem;
    color: #94A3B8;
}

.footer-flag {
    font-size: 0.95rem;
    line-height: 1;
}

.footer-payments {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    min-width: 46px;
    padding: 0 0.5rem;
    border-radius: 7px;
    border: 1px solid #E2E8F0;
    background: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--ui-navy);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.footer-pay--visa {
    color: #1A1F71;
    font-style: italic;
    letter-spacing: 0.04em;
}

.footer-pay--mc {
    gap: 0;
    min-width: 42px;
    position: relative;
}

.footer-pay--mc i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: block;
}

.footer-pay--mc i:first-child {
    background: #EB001B;
    margin-right: -5px;
}

.footer-pay--mc i:last-child {
    background: #F79E1B;
    opacity: 0.92;
}

.footer-pay--rupay {
    color: #0B5CAB;
}

.footer-pay--upi {
    color: #097939;
}

@media (max-width: 1199.98px) {
    .footer-main {
        grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(0, 1fr));
        gap: 1.75rem 1.5rem;
    }
    .footer-trust-item,
    .footer-help-item {
        padding: 1.35rem 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .site-footer>.footer-shell {
        padding-top: 2rem;
        padding-bottom: 1.5rem;
    }
    .footer-trust,
    .footer-help {
        grid-template-columns: 1fr;
    }
    .footer-trust-item+.footer-trust-item,
    .footer-help-item+.footer-help-item {
        border-left: 0;
        border-top: 1px solid #EEF2F7;
    }
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-col--about {
        grid-column: 1 / -1;
    }
    .footer-bottom-bar {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }
    .footer-copy {
        text-align: left;
        order: 3;
    }
    .footer-bottom-meta {
        width: 100%;
        justify-content: flex-start;
    }
    .footer-subscribe {
        flex-direction: column;
        align-items: stretch;
        max-width: none;
        width: 100%;
        gap: 0.65rem;
    }
    .footer-subscribe input {
        width: 100%;
        max-width: none;
        height: 48px;
        min-height: 48px;
        border-radius: 12px;
        font-size: 0.9rem;
        box-sizing: border-box;
    }
    .footer-subscribe button {
        width: 100%;
        height: 48px;
        border-radius: 12px;
    }
}


/* ---- Alerts ---- */

.alert {
    border: none;
    border-radius: var(--ui-radius-sm);
    font-weight: 500;
    box-shadow: var(--ui-shadow-sm);
}


/* ---- Cards (general) ---- */

.card {
    border: 1px solid var(--ui-border-light);
    border-radius: var(--ui-radius);
    box-shadow: var(--ui-shadow-sm);
}


/* ---- Page sections ---- */

.page-hero-mini {
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    color: #fff;
    padding: 2.5rem 0;
    margin-bottom: 2rem;
}

.page-hero-mini h1 {
    color: #fff !important;
    font-size: 1.75rem;
    margin: 0;
}

.page-hero-mini p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0 0;
}

.search-hero .search-page-form {
    margin-top: 1.25rem;
    max-width: 640px;
}

.search-page-form-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 14px;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.search-page-form-inner>i {
    color: #94A3B8;
    flex-shrink: 0;
}

.search-page-form-inner input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 0.9375rem;
    padding: 0.55rem 0.35rem;
    color: var(--ui-navy);
}

.search-page-form-inner .btn {
    border-radius: 10px;
    font-weight: 800;
    padding: 0.7rem 1.15rem;
    white-space: nowrap;
}

.search-filters h2 {
    font-size: 0.9375rem;
    font-weight: 800;
    margin: 0 0 0.85rem;
    color: var(--ui-navy);
}

.search-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-filter-list li+li {
    margin-top: 0.25rem;
}

.search-filter-list a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    color: #475569;
    text-decoration: none;
    font-size: 0.84375rem;
    font-weight: 600;
    transition: background 0.15s, color 0.15s;
}

.search-filter-list a i {
    width: 1rem;
    text-align: center;
    color: #94A3B8;
}

.search-filter-list a:hover {
    background: #F1F5F9;
    color: var(--ui-navy);
}

.search-filter-list a.is-active {
    background: #EFF6FF;
    color: #1D4ED8;
}

.search-filter-list a.is-active i {
    color: #1D4ED8;
}

.search-pagination .page-link {
    color: var(--ui-navy);
    border-radius: 8px;
    margin: 0 0.15rem;
}

.search-pagination .page-item.active .page-link {
    background: var(--ui-navy);
    border-color: var(--ui-navy);
}

.content-card {
    background: var(--ui-surface);
    border: 1px solid var(--ui-border-light);
    border-radius: var(--ui-radius);
    box-shadow: var(--ui-shadow);
    padding: 2rem;
}

.site-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.65rem;
}

.site-page-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.site-page-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-page-content {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--ui-text);
}

.site-page-content h3 {
    font-size: 1.05rem;
    margin: 1.5rem 0 0.65rem;
    color: var(--ui-navy);
}

.site-page-content p {
    margin-bottom: 0.9rem;
}

.site-page-content ul,
.site-page-content ol {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.site-page-content li+li {
    margin-top: 0.35rem;
}

.site-page-content a {
    color: #1D4ED8;
    font-weight: 600;
}

.site-page-aside h2 {
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
    color: var(--ui-navy);
}

.site-page-aside p {
    font-size: 0.875rem;
    color: var(--ui-text-muted);
    margin-bottom: 1rem;
}

.site-page-aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-page-aside-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.875rem;
    margin-bottom: 0.55rem;
}

.site-page-aside-list i {
    color: #1D4ED8;
    width: 1rem;
    text-align: center;
}

.site-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
}

.site-sitemap-grid a {
    display: block;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--ui-border-light);
    border-radius: 10px;
    background: #F8FAFC;
    color: var(--ui-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.site-sitemap-grid a:hover {
    background: #EFF6FF;
    border-color: #BFDBFE;
    color: #1D4ED8;
}

@media (max-width: 575.98px) {
    .site-sitemap-grid {
        grid-template-columns: 1fr;
    }
}


/* ---- Dashboard legacy sidebar ---- */

.dashboard-sidebar {
    background: var(--ui-surface) !important;
    border-right: 1px solid var(--ui-border) !important;
}

.dashboard-sidebar .nav-link {
    border-radius: var(--ui-radius-sm);
    margin-bottom: 2px;
    font-weight: 500;
    font-size: 0.875rem;
}

.dashboard-sidebar .nav-link.active {
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid)) !important;
    box-shadow: 0 4px 12px rgba(11, 22, 52, 0.2);
}

.dashboard-content {
    background: var(--ui-bg) !important;
}

.card-stat {
    border-radius: var(--ui-radius) !important;
    border: 1px solid var(--ui-border-light) !important;
    box-shadow: var(--ui-shadow) !important;
    transition: transform var(--ui-transition);
}

.card-stat:hover {
    transform: translateY(-3px);
}

.card-stat .stat-icon {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.05)) !important;
    color: var(--ui-gold-dark) !important;
}


/* ---- Admin & Buyer panel enhancements ---- */

.admin-body,
.buyer-body {
    font-family: var(--ui-font) !important;
}

.admin-sidebar,
.buyer-sidebar {
    background: linear-gradient(180deg, var(--ui-navy) 0%, #060D1F 100%) !important;
}

.admin-nav-link.active,
.buyer-nav-link.active {
    background: linear-gradient(135deg, var(--ui-gold), var(--ui-gold-dark)) !important;
    color: var(--ui-navy) !important;
    font-weight: 700;
    box-shadow: var(--ui-shadow-gold);
}

.admin-stat-card,
.buyer-stat-card {
    border-radius: var(--ui-radius) !important;
    transition: transform var(--ui-transition), box-shadow var(--ui-transition);
}

.admin-stat-card:hover,
.buyer-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ui-shadow-lg) !important;
}

.admin-card,
.buyer-card {
    border-radius: var(--ui-radius) !important;
    box-shadow: var(--ui-shadow) !important;
}

.admin-table thead th,
.buyer-table thead th {
    font-family: var(--ui-font);
    letter-spacing: 0.04em;
}

.admin-topbar,
.buyer-topbar {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95) !important;
}

.btn-buyer-primary {
    background: linear-gradient(135deg, #059669, #047857) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: var(--ui-radius-sm);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-buyer-primary:hover {
    transform: translateY(-2px);
    color: #fff !important;
}


/* ---- Admin auth glass ---- */

.admin-auth-body {
    font-family: var(--ui-font) !important;
}

.auth-card {
    backdrop-filter: blur(24px);
    box-shadow: var(--ui-shadow-lg) !important;
}

.auth-btn {
    background: linear-gradient(135deg, var(--ui-gold), var(--ui-gold-dark)) !important;
    color: var(--ui-navy) !important;
    font-weight: 700;
    box-shadow: var(--ui-shadow-gold) !important;
}

.auth-btn:hover:not(:disabled) {
    box-shadow: 0 10px 28px rgba(255, 204, 0, 0.35) !important;
}


/* ---- Animations ---- */

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
    opacity: 0;
}

.animate-delay-2 {
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-delay-3 {
    animation-delay: 0.3s;
    opacity: 0;
}


/* ---- Responsive ---- */

@media (max-width: 991.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    .stats-section {
        margin-top: 0;
        padding: 2.5rem 0;
    }
}


/* ---- Supplier Profile Page ---- */

.sp-page {
    --sp-ink: #0A1F1C;
    --sp-forest: #0B2E28;
    --sp-forest-deep: #06201C;
    --sp-gold: #C9A227;
    --sp-gold-soft: #E8C547;
    --sp-cream: #F7F5F0;
    background: radial-gradient(ellipse 70% 40% at 8% -8%, rgba(201, 162, 39, 0.08), transparent 55%), radial-gradient(ellipse 55% 35% at 92% 0%, rgba(11, 46, 40, 0.06), transparent 50%), #F3F1EC;
    min-height: 60vh;
    padding-bottom: 2.5rem;
}

.sp-breadcrumb {
    margin-bottom: 1rem;
}

.sp-hero {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    margin-bottom: 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sp-hero--premium {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(6, 32, 28, 0.12);
}

.sp-hero-cover {
    position: relative;
    min-height: 0;
    padding: 1.15rem 1.25rem 1.25rem;
    background: linear-gradient(125deg, #06201C 0%, #0B2E28 42%, #134E4A 78%, #1A5C52 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.sp-hero-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(6, 32, 28, 0.92) 0%, rgba(6, 32, 28, 0.72) 48%, rgba(6, 32, 28, 0.45) 100%), radial-gradient(circle at 88% 20%, rgba(201, 162, 39, 0.18), transparent 40%);
    pointer-events: none;
}

.sp-hero-cover-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(circle at 20% 30%, rgba(232, 197, 71, 0.35) 0 1px, transparent 1.5px), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.5px);
    background-size: 28px 28px, 36px 36px;
    pointer-events: none;
}

.sp-hero-main {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1.35rem;
    align-items: flex-end;
    width: 100%;
}

.sp-logo-wrap {
    flex-shrink: 0;
}

.sp-logo {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(201, 162, 39, 0.85);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
    background: #0A1F1C;
}

.sp-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--sp-gold);
    background: linear-gradient(135deg, #0A1F1C, #134E4A);
}

.sp-hero-info {
    flex: 1;
    min-width: 240px;
    padding-top: 0;
}

.sp-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
}

.sp-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
}

.sp-tag-type {
    background: rgba(204, 251, 241, 0.95);
    color: #0F766E;
}

.sp-tag-verified {
    background: #DBEAFE;
    color: #1D4ED8;
    cursor: pointer;
}

.sp-tag-leading {
    background: #FEF3C7;
    color: #B45309;
}

.sp-company-name {
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.3rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sp-name-verified {
    color: var(--sp-gold);
    font-size: 0.8em;
}

.sp-location {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 0.3rem;
}

.sp-location i {
    color: var(--sp-gold);
    margin-right: 0.25rem;
}

.sp-tagline {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 0.75rem;
    max-width: 640px;
    line-height: 1.45;
}

.sp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.sp-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.sp-hero-btn:hover {
    transform: none;
}

.sp-hero-btn--primary {
    background: var(--sp-gold);
    color: #0A1F1C;
    border: 1px solid var(--sp-gold);
}

.sp-hero-btn--primary:hover {
    background: var(--sp-gold-soft);
    border-color: var(--sp-gold-soft);
    color: #0A1F1C;
}

.sp-hero-btn--ghost {
    background: rgba(255, 255, 255, 0.96);
    color: var(--sp-forest);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.sp-hero-btn--ghost:hover {
    background: #fff;
    color: var(--sp-forest-deep);
}

.sp-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    background: transparent;
    border-top: 0;
    padding: 0.55rem 0.65rem 0.65rem;
}

.sp-stats--premium {
    background: linear-gradient(180deg, #0B2E28 0%, #06201C 100%);
}

.sp-stats--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sp-stat {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.55rem;
    border-right: 0;
    min-width: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.22);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.sp-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #E8C547, #C9A227);
}

.sp-stat:last-child {
    border-right: none;
}

.sp-stat-ico {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.16);
    color: #E8C547;
    flex-shrink: 0;
    font-size: 0.7rem;
}

.sp-stat-text {
    min-width: 0;
}

.sp-stat strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.sp-stat span {
    display: block;
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sp-stat em {
    display: none;
}

/* Contact band — compact smart action tiles */

.sp-contact-band {
    background: #fff;
    border: 1px solid #E5E1D8;
    border-radius: 14px;
    padding: 0.7rem 0.8rem 0.8rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 18px rgba(6, 32, 28, 0.05);
}

.sp-contact-band-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    margin-bottom: 0.55rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed #E8E4DC;
}

.sp-contact-band-head h2 {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 800;
    color: #0A1F1C;
}

.sp-contact-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.66rem;
    font-weight: 700;
    color: #0B2E28;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
}

.sp-contact-band-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.sp-reach-card {
    background: #F8F7F4;
    border: 1px solid #E8E4DC;
    border-radius: 12px;
    padding: 0.5rem 0.55rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    min-height: 52px;
    text-decoration: none;
    color: inherit;
    box-shadow: none;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    position: relative;
    overflow: hidden;
}

.sp-reach-card::after {
    content: '';
    position: absolute;
    inset: auto -20% -40% auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.04;
    pointer-events: none;
}

.sp-reach-card:hover {
    background: #fff;
    border-color: #C9A227;
    box-shadow: 0 8px 18px rgba(6, 32, 28, 0.08);
    transform: translateY(-1px);
    color: inherit;
}

.sp-reach-meta {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.sp-reach-ico {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    flex-shrink: 0;
    margin-bottom: 0;
}

.sp-reach-meta strong {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.15;
}

.sp-reach-meta em {
    font-style: normal;
    font-size: 0.66rem;
    font-weight: 600;
    color: #64748B;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sp-reach-go {
    font-size: 0.62rem;
    color: #94A3B8;
    flex-shrink: 0;
}

.sp-reach-card:hover .sp-reach-go {
    color: #C9A227;
}

.sp-reach-card--call {
    color: #059669;
}
.sp-reach-card--call .sp-reach-ico {
    background: linear-gradient(145deg, #ECFDF5, #D1FAE5);
    color: #059669;
}

.sp-reach-card--whatsapp {
    color: #16A34A;
}
.sp-reach-card--whatsapp .sp-reach-ico {
    background: linear-gradient(145deg, #F0FDF4, #BBF7D0);
    color: #16A34A;
}

.sp-reach-card--email {
    color: #2563EB;
}
.sp-reach-card--email .sp-reach-ico {
    background: linear-gradient(145deg, #EFF6FF, #BFDBFE);
    color: #2563EB;
}

.sp-reach-card--browse,
.sp-reach-card--web {
    color: #B45309;
}
.sp-reach-card--browse .sp-reach-ico,
.sp-reach-card--web .sp-reach-ico {
    background: linear-gradient(145deg, #FFFBEB, #FDE68A);
    color: #B45309;
}

.sp-why-band {
    margin-top: 1rem;
    background: linear-gradient(125deg, #06201C 0%, #0B2E28 55%, #134E4A 100%);
    border-radius: 14px;
    padding: 0.75rem 0.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.9rem;
    box-shadow: 0 10px 24px rgba(6, 32, 28, 0.16);
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.sp-why-title {
    margin: 0;
    font-size: 0.84rem;
    font-weight: 800;
    color: #E8C547;
    flex: 0 1 120px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
}

.sp-why-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.5rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-why-item i {
    color: var(--sp-gold);
    margin-top: 0;
    flex-shrink: 0;
    font-size: 0.78rem;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(201, 162, 39, 0.14);
}

.sp-why-item strong {
    display: block;
    font-size: 0.72rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
}

.sp-why-item span {
    display: block;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.62);
}

.sp-panel--about .sp-panel-head {
    background: linear-gradient(180deg, #FAF8F4, #fff);
}

.sp-panel--about .sp-panel-head h2 i {
    color: var(--sp-gold);
}

.sp-fact i,
.sp-fact-ico i,
.sp-detail-item>i {
    color: var(--sp-forest) !important;
}

.sp-panel {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.sp-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #E8E4DC;
    background: linear-gradient(180deg, #FAF8F4, #fff);
}

.sp-panel-head h2 {
    font-size: 0.88rem;
    font-weight: 800;
    margin: 0;
    color: #0F172A;
}

.sp-panel-head h2 i {
    color: #0D9488;
    margin-right: 0.35rem;
}

.sp-panel-meta {
    font-size: 0.72rem;
    color: #64748B;
    font-weight: 600;
}

.sp-panel-body {
    padding: 0.85rem;
}

.sp-about-text {
    font-size: 0.84rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.sp-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.sp-fact {
    border: 1px solid #E8E4DC;
    border-radius: 10px;
    background: #F8F7F4;
    padding: 0.45rem 0.55rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    min-height: 0;
    position: relative;
}

.sp-fact-ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(11, 46, 40, 0.08);
    font-size: 0.72rem;
}

.sp-fact-txt {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.sp-fact i {
    font-size: 0.72rem;
    margin-bottom: 0;
}

.sp-fact--teal .sp-fact-ico { background: #CCFBF1; }
.sp-fact--teal .sp-fact-ico i { color: #0D9488 !important; }

.sp-fact--blue .sp-fact-ico { background: #DBEAFE; }
.sp-fact--blue .sp-fact-ico i { color: #2563EB !important; }

.sp-fact--green .sp-fact-ico { background: #DCFCE7; }
.sp-fact--green .sp-fact-ico i { color: #16A34A !important; }

.sp-fact--gold .sp-fact-ico { background: #FEF3C7; }
.sp-fact--gold .sp-fact-ico i { color: #D97706 !important; }

.sp-fact--slate .sp-fact-ico { background: #E2E8F0; }
.sp-fact--slate .sp-fact-ico i { color: #475569 !important; }

.sp-fact--teal {
    background: #F0FDFA;
    border-color: #99F6E4;
}

.sp-fact--blue {
    background: #EFF6FF;
    border-color: #BFDBFE;
}

.sp-fact--green {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.sp-fact--gold {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border-color: #FCD34D;
}

.sp-fact--slate {
    background: #F8FAFC;
    border-color: #E2E8F0;
}

.sp-fact.is-badge::after {
    content: '★';
    position: absolute;
    top: 0.25rem;
    right: 0.35rem;
    font-size: 0.58rem;
    font-weight: 800;
    color: #B45309;
}

.sp-fact strong {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    word-break: break-word;
    padding-right: 0.2rem;
}

.sp-fact.is-badge strong {
    padding-right: 0.9rem;
}

.sp-fact small {
    font-size: 0.58rem;
    font-weight: 600;
    color: #64748B;
}

.sp-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
}

.sp-detail-item {
    display: flex;
    gap: 0.45rem;
    align-items: flex-start;
    padding: 0.5rem 0.55rem;
    background: #F8F7F4;
    border: 1px solid #E8E4DC;
    border-radius: 10px;
}

.sp-detail-item-wide {
    grid-column: 1 / -1;
}

.sp-detail-item i {
    color: #0D9488;
    font-size: 0.85rem;
    margin-top: 0.1rem;
    width: 1rem;
    text-align: center;
}

.sp-detail-item small {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94A3B8;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.sp-detail-item strong {
    display: block;
    font-size: 0.78rem;
    color: #0F172A;
    font-weight: 700;
    word-break: break-word;
}

.sp-detail-item strong a {
    color: #0D9488;
    text-decoration: none;
}

.sp-detail-item strong a:hover {
    text-decoration: underline;
}

.sp-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1.2rem;
    padding-top: 1.15rem;
    border-top: 1px solid #E2E8F0;
}

.sp-contact-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.sp-contact-card--full {
    width: 100%;
    margin-bottom: 1.5rem;
    position: static;
}

.sp-contact-head {
    background: linear-gradient(135deg, #0B3B3A, #0D9488);
    color: #fff;
    padding: 1.1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sp-contact-head span {
    font-weight: 800;
    font-size: 1.05rem;
    display: block;
}

.sp-contact-head small {
    font-size: 0.75rem;
    opacity: 0.88;
    font-weight: 600;
    display: block;
    margin-top: 0.2rem;
}

.sp-contact-body {
    padding: 1.15rem;
}

.sp-contact-body--full {
    padding: 1.35rem 1.5rem 1.5rem;
}

.sp-contact-full-grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.6fr);
    gap: 1.5rem;
    align-items: stretch;
}

.sp-contact-full-col--person {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-right: 1.25rem;
    border-right: 1px solid #E2E8F0;
}

.sp-contact-full-col--person .sp-contact-person {
    margin-bottom: 0.65rem;
    padding-bottom: 0.85rem;
}

.sp-contact-full-col--person .sp-contact-facts {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.sp-contact-full-col--actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sp-contact-actions--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 0;
    height: 100%;
}

.sp-contact-actions--4 .sp-action-card {
    min-height: 100px;
    justify-content: center;
}

.sp-contact-person {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E2E8F0;
}

.sp-contact-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #CCFBF1;
    color: #0F766E;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-contact-person strong {
    display: block;
    font-size: 0.95rem;
    color: #0F172A;
}

.sp-contact-person small {
    font-size: 0.8rem;
    color: #64748B;
}

.sp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.72rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    margin-bottom: 0.55rem;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.sp-btn:hover {
    transform: translateY(-1px);
}

.sp-btn-primary {
    background: #0D9488;
    color: #fff;
    border: 2px solid #0D9488;
}

.sp-btn-primary:hover {
    background: #0F766E;
    border-color: #0F766E;
    color: #fff;
}

.sp-btn-call {
    background: #059669;
    color: #fff;
    border: 2px solid #059669;
}

.sp-btn-call:hover {
    background: #047857;
    border-color: #047857;
    color: #fff;
}

.sp-btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
}

.sp-btn-whatsapp:hover {
    background: #1DA851;
    border-color: #1DA851;
    color: #fff;
}

.sp-btn-outline {
    background: #fff;
    color: #0D9488;
    border: 2px solid #0D9488;
}

.sp-btn-outline:hover {
    background: #F0FDFA;
    color: #0F766E;
}

.sp-btn-soft {
    background: #F8FAFC;
    color: #334155;
    border: 1.5px solid #E2E8F0;
}

.sp-btn-soft:hover {
    background: #F1F5F9;
    color: #0F172A;
}

.sp-contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.sp-action-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding: 0.8rem 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid transparent;
    min-height: 88px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.sp-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
    filter: brightness(1.03);
}

.sp-action-card i {
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

.sp-action-card strong {
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.2;
}

.sp-action-card small {
    font-size: 0.68rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.3;
    word-break: break-word;
}

.sp-action-card--call {
    background: #059669;
    border-color: #047857;
    color: #fff;
}

.sp-action-card--whatsapp {
    background: #25D366;
    border-color: #1DA851;
    color: #fff;
}

.sp-action-card--email {
    background: #F0FDFA;
    border-color: #99F6E4;
    color: #0F766E;
}

.sp-action-card--browse {
    background: #0D9488;
    border-color: #0F766E;
    color: #fff;
}

.sp-action-card--web {
    background: #F8FAFC;
    border-color: #E2E8F0;
    color: #334155;
}

.sp-contact-facts {
    list-style: none;
    padding: 0.75rem 0 0;
    margin: 0.5rem 0 0;
    border-top: 1px solid #E2E8F0;
}

.sp-contact-facts li {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #64748B;
    padding: 0.38rem 0;
    line-height: 1.4;
}

.sp-contact-facts i {
    color: #0D9488;
    width: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.sp-reviews-summary {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sp-reviews-summary strong {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0F172A;
}

.sp-reviews-count {
    display: block;
    font-size: 0.75rem;
    color: #64748B;
    margin-top: 0.15rem;
}

.sp-review-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sp-review-item {
    padding: 0.9rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
}

.sp-review-head {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    margin-bottom: 0.45rem;
}

.sp-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0D9488;
    color: #fff;
    font-weight: 800;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-review-head strong {
    display: block;
    font-size: 0.875rem;
    color: #0F172A;
}

.sp-review-item p {
    font-size: 0.8125rem;
    color: #475569;
    margin: 0;
    line-height: 1.55;
}

.sp-products {
    margin-top: 1.15rem;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 12px;
    padding: 1rem 1rem 1.15rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.sp-products-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E8E4DC;
}

.sp-products-head h2 {
    font-size: 0.98rem;
    font-weight: 800;
    margin: 0 0 0.15rem;
    color: #0F172A;
    letter-spacing: -0.015em;
}

.sp-products-head p {
    font-size: 0.75rem;
    color: #64748B;
    margin: 0;
}

.sp-products-count {
    font-size: 0.72rem;
    font-weight: 700;
    color: #0B2E28;
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
}

.sp-products .im-product-card,
.sp-products .catalog-product-card {
    border-radius: 12px;
    border: 1px solid #E8E4DC;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.sp-products .im-product-card:hover,
.sp-products .catalog-product-card:hover {
    border-color: #C9A227;
    box-shadow: 0 10px 22px rgba(6, 32, 28, 0.1);
    transform: translateY(-2px);
}

.sp-products .im-product-card .im-product-body,
.sp-products .catalog-product-card .catalog-product-body {
    padding: 0.5rem 0.55rem 0.6rem;
}

.sp-products .im-product-card h3,
.sp-products .catalog-product-card h3 {
    font-size: 0.76rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
}

.sp-products .im-product-gallery,
.sp-products .catalog-product-media {
    aspect-ratio: 1 / 0.92;
}

.sp-products .im-product-price,
.sp-products .catalog-product-price {
    font-size: 0.82rem;
}

.sp-empty {
    text-align: center;
    padding: 2.75rem 1rem;
    color: #64748B;
}

.sp-empty i {
    font-size: 2.25rem;
    color: #CBD5E1;
    margin-bottom: 0.75rem;
}

.sp-empty h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #475569;
    margin-bottom: 0.35rem;
}

@media (max-width: 991.98px) {
    .sp-contact-band-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sp-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sp-contact-full-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }
    .sp-contact-full-col--person {
        padding-right: 0;
        border-right: none;
        padding-bottom: 1rem;
        border-bottom: 1px solid #E2E8F0;
    }
    .sp-contact-actions--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .sp-hero-cover {
        min-height: 0;
        padding: 1.25rem 1.1rem 1.4rem;
    }
    .sp-logo {
        width: 64px;
        height: 64px;
        border-radius: 10px;
    }
    .sp-detail-grid {
        grid-template-columns: 1fr;
    }
    .sp-fact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sp-contact-card {
        position: static;
    }
    .sp-contact-band {
        padding: 0.85rem;
    }
    .sp-contact-band-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sp-why-band {
        padding: 0.75rem;
    }
    .sp-why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sp-stats,
    .sp-stats--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sp-stat {
        border-right: 0;
        border-bottom: 0;
    }
    .sp-stat:nth-child(2n) {
        border-right: none;
    }
    .sp-stat:nth-child(n+3) {
        border-bottom: none;
    }
    .sp-contact-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .sp-fact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sp-contact-actions--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sp-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* ---- Public Buy Leads Page ---- */

.leads-hero {
    background: linear-gradient(135deg, var(--ui-navy) 0%, var(--ui-navy-mid) 55%, #1a4a7a 100%);
    color: #fff;
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.leads-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(255, 204, 0, 0.15), transparent 45%);
    pointer-events: none;
}

.leads-hero .container {
    position: relative;
    z-index: 1;
}

.leads-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 204, 0, 0.15);
    color: var(--ui-gold);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.leads-hero h1 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.leads-hero-desc {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin-bottom: 1.5rem;
}

.leads-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.leads-hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
}

.leads-hero-points i {
    color: var(--ui-gold);
    margin-right: 0.35rem;
}

.leads-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.leads-hero-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.1rem 0.75rem;
    text-align: center;
    backdrop-filter: blur(6px);
}

.leads-hero-stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ui-gold);
    line-height: 1.2;
}

.leads-hero-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.leads-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.leads-btn-gold {
    background: var(--ui-gold);
    color: var(--ui-navy);
    border-color: var(--ui-gold);
}

.leads-btn-gold:hover {
    background: var(--ui-gold-dark);
    border-color: var(--ui-gold-dark);
    color: var(--ui-navy);
    box-shadow: var(--ui-shadow-gold);
}

.leads-btn-primary {
    background: var(--ui-navy);
    color: #fff;
    border-color: var(--ui-navy);
}

.leads-btn-primary:hover {
    background: var(--ui-navy-mid);
    color: #fff;
}

.leads-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.leads-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.leads-btn-light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}

.leads-btn-light:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.leads-btn-block {
    width: 100%;
}

.leads-section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.leads-section-head h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
}

.leads-section-head p {
    color: var(--ui-text-muted);
    margin: 0;
    font-size: 0.9375rem;
}

.leads-card {
    background: #fff;
    border: 1px solid var(--ui-border);
    border-radius: 14px;
    padding: 1.15rem;
    box-shadow: var(--ui-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leads-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ui-shadow);
}

.leads-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
}

.leads-card-top time {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
}

.leads-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.leads-card-desc {
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.leads-card-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
}

.leads-card-meta li {
    padding: 0.15rem 0;
}

.leads-card-meta i {
    color: #0D9488;
    width: 1rem;
    margin-right: 0.25rem;
}

.leads-card-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--ui-border-light);
    border-bottom: 1px solid var(--ui-border-light);
    margin-bottom: 0.75rem;
}

.leads-card-row small {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ui-text-light);
    margin-bottom: 0.15rem;
}

.leads-card-row strong {
    font-size: 0.9375rem;
    color: var(--ui-text);
}

.leads-card-locked {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    background: #F8FAFC;
    border: 1px dashed #CBD5E1;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.85rem;
}

.leads-card-locked i {
    color: #64748B;
}

.leads-card .leads-btn-block {
    background: var(--ui-navy);
    color: #fff;
    border-color: var(--ui-navy);
}

.leads-card .leads-btn-block:hover {
    background: var(--ui-navy-mid);
    color: #fff;
}

.leads-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}

.leads-badge--success {
    background: #DCFCE7;
    color: #166534;
}

.leads-badge--primary {
    background: #DBEAFE;
    color: #1D4ED8;
}

.leads-badge--info {
    background: #E0F2FE;
    color: #0369A1;
}

.leads-badge--secondary {
    background: #F1F5F9;
    color: #475569;
}

.leads-badge--danger {
    background: #FEE2E2;
    color: #991B1B;
}

.leads-step {
    background: #fff;
    border: 1px solid var(--ui-border);
    border-radius: 14px;
    padding: 1.35rem;
    height: 100%;
    text-align: center;
}

.leads-step-num {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ui-navy);
    color: var(--ui-gold);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.leads-step h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.leads-step p {
    font-size: 0.875rem;
    color: var(--ui-text-muted);
    margin: 0;
}

.leads-plan {
    background: #fff;
    border: 1px solid var(--ui-border);
    border-radius: 14px;
    padding: 1.35rem;
    position: relative;
    box-shadow: var(--ui-shadow-sm);
}

.leads-plan--featured {
    border-color: var(--ui-gold);
    box-shadow: var(--ui-shadow-gold);
}

.leads-plan-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ui-gold);
    color: var(--ui-navy);
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
}

.leads-plan h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.leads-plan>p {
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    margin-bottom: 0.75rem;
}

.leads-plan-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ui-navy);
    margin-bottom: 1rem;
}

.leads-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: var(--ui-text-muted);
}

.leads-plan-features li {
    padding: 0.3rem 0;
}

.leads-plan-features i {
    color: #059669;
    margin-right: 0.35rem;
}

.leads-plan .leads-btn-outline {
    color: var(--ui-navy);
    border-color: var(--ui-navy);
}

.leads-plan .leads-btn-outline:hover {
    background: var(--ui-navy);
    color: #fff;
}

.leads-cta {
    background: linear-gradient(135deg, var(--ui-navy) 0%, var(--ui-navy-mid) 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    color: #fff;
}

.leads-cta-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

.leads-cta h2 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.leads-cta p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    font-size: 0.9375rem;
}

.leads-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

@media (max-width: 767.98px) {
    .leads-hero-stats {
        grid-template-columns: 1fr;
    }
    .leads-hero-actions {
        flex-direction: column;
    }
    .leads-hero-actions .leads-btn {
        width: 100%;
    }
    .leads-cta-actions {
        width: 100%;
        flex-direction: column;
    }
    .leads-cta-actions .leads-btn {
        width: 100%;
    }
}


/* ---- Big Offers (admin-posted) ---- */

.big-offers-page {
    background: var(--ui-bg);
    padding-top: 0 !important;
}

.big-offers-page.bo-listing--shop,
.big-offers-page .bo-listing--shop {
    margin-top: 0;
}

.bo-listing--shop {
    margin-top: 0;
    padding-top: 0;
}

.big-offers-fluid {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.big-offers-grid .big-offer-card {
    height: 100%;
}

.big-offer-filters .nav-link {
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ui-text-muted);
    padding: 0.45rem 1rem;
}

.big-offer-filters .nav-link.active {
    background: var(--ui-navy);
    color: #fff;
}


/* Listing redesign */

.bo-listing {
    --bo-ink: #0B1634;
    --bo-teal: #0D9488;
    --bo-teal-dark: #0F766E;
}

.bo-hero {
    position: relative;
    background: radial-gradient(ellipse 80% 60% at 10% 0%, rgba(13, 148, 136, 0.14), transparent 55%), radial-gradient(ellipse 70% 50% at 90% 20%, rgba(11, 22, 52, 0.08), transparent 50%), linear-gradient(180deg, #EEF4F8 0%, #F4F7FB 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.bo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(11, 22, 52, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 22, 52, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
    pointer-events: none;
}

.bo-hero-inner {
    position: relative;
    max-width: none;
    margin: 0;
    padding: 12px 3px 14px;
    text-align: center;
}

.bo-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.55rem;
    margin: 0 auto 1rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(8px);
    animation: boFadeUp 0.45s ease both;
}

.bo-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #334155;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 700;
}

.bo-breadcrumb a i {
    font-size: 0.7rem;
    color: #0F766E;
}

.bo-breadcrumb a:hover {
    color: #0F766E;
}

.bo-breadcrumb-sep {
    font-size: 0.55rem;
    color: #94A3B8;
}

.bo-breadcrumb-current {
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0F172A;
}

.bo-hero-brand {
    font-family: var(--ui-font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bo-teal);
    margin: 0 0 0.55rem;
    animation: boFadeUp 0.55s ease both;
}

.bo-hero-title {
    font-family: var(--ui-font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--bo-ink);
    letter-spacing: -0.03em;
    margin: 0 0 0.55rem;
    animation: boFadeUp 0.55s ease 0.06s both;
}

.bo-hero-sub {
    max-width: 36rem;
    margin: 0 auto 1.35rem;
    color: #64748B;
    font-size: 0.975rem;
    line-height: 1.55;
    animation: boFadeUp 0.55s ease 0.12s both;
}

.bo-filters {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(11, 22, 52, 0.06);
    animation: boFadeUp 0.55s ease 0.18s both;
}

.bo-filter {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #64748B;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.bo-filter i {
    font-size: 0.75rem;
    opacity: 0.85;
}

.bo-filter:hover {
    color: var(--bo-ink);
    background: #F1F5F9;
}

.bo-filter.is-active {
    background: var(--bo-ink);
    color: #fff;
    box-shadow: 0 6px 16px rgba(11, 22, 52, 0.22);
}

.bo-listing-body.container-fluid {
    --bs-gutter-x: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.bo-listing--shop {
    background: #f1f3f6;
}

.bo-shop-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-height: 36px;
    margin: 0 0 4px;
    padding: 0 2px;
}

.bo-shop-bar__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #212121;
    line-height: 1.2;
}

.bo-shop-bar__count {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: #878787;
}

.bo-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-top: 1.25rem;
    padding: 0.85rem 0.25rem 0.35rem;
    border-top: 1px solid #E5E7EB;
}

.bo-pagination__meta {
    font-size: 0.8rem;
    color: #64748B;
}

.bo-pagination__meta strong {
    color: #0B1634;
    font-weight: 700;
}

.bo-pagination__list .page-link {
    color: #0B1634;
    border-color: #D8DEE8;
    border-radius: 8px;
    margin: 0 0.12rem;
    min-width: 34px;
    text-align: center;
    font-weight: 600;
}

.bo-pagination__list .page-item.active .page-link {
    background: #0F766E;
    border-color: #0F766E;
    color: #fff;
}

.bo-pagination__list .page-item.disabled .page-link {
    color: #94A3B8;
}

.bo-pagination__list .page-link:hover {
    background: #F0FDFA;
    border-color: #99F6E4;
    color: #0F766E;
}

.bo-pagination__list .page-item.active .page-link:hover {
    background: #0F766E;
    border-color: #0F766E;
    color: #fff;
}

.bo-shop-top {
    display: none;
}

.bo-shop-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 32px;
    padding: 0 4px;
}

.bo-shop-top__text {
    min-width: 0;
}

.bo-shop-top__main {
    display: block;
    margin-bottom: 2px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2874f0;
}

.bo-shop-top__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #212121;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.bo-shop-top__count {
    flex-shrink: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #878787;
}

.bo-listing-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    margin: 0 0 8px;
    padding: 8px 10px;
    border-radius: 2px;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-size: 0.8125rem;
    color: #878787;
    font-weight: 600;
}

.bo-listing-meta__left {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
}

.bo-listing-meta__left strong {
    color: #212121;
    font-size: 0.9rem;
    font-weight: 700;
}

.bo-listing-meta__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.45rem;
    border-radius: 2px;
    background: #f0f5ff;
    color: #2874f0;
    font-size: 0.7rem;
    font-weight: 700;
}

.bo-listing--hub {
    --bo-green: #0B5C3B;
    --bo-green-dark: #08472E;
    --bo-green-soft: #E8F5EE;
    background: #F7F8FA;
    padding: 0.35rem 0 1.75rem;
}

.bo-hub {
    max-width: none;
    width: 100%;
    margin: 0;
    --bs-gutter-x: 0;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

@media (min-width: 768px) {
    .bo-hub {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (min-width: 1200px) {
    .bo-hub {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

.bo-hub-crumbbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem 0.85rem;
    margin: 0 0 0.65rem;
    padding: 0.55rem 0.7rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.bo-hub-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    margin: 0;
    padding: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748B;
    min-width: 0;
}

.bo-hub-crumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--bo-green);
    text-decoration: none;
}

.bo-hub-crumb a:hover {
    color: var(--bo-green-dark);
    text-decoration: underline;
}

.bo-hub-crumb > i {
    font-size: 0.55rem;
    color: #94A3B8;
}

.bo-hub-crumb span[aria-current="page"] {
    color: #0B1634;
    font-weight: 700;
}

.bo-hub-crumb-search {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 1 1 220px;
    max-width: 420px;
    margin-left: auto;
    padding: 0.2rem 0.2rem 0.2rem 0.7rem;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
}

.bo-hub-crumb-search:focus-within {
    background: #fff;
    border-color: #86EFAC;
    box-shadow: 0 0 0 3px rgba(11, 92, 59, 0.08);
}

.bo-hub-crumb-search > i {
    color: #94A3B8;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.bo-hub-crumb-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 0.82rem;
    font-weight: 500;
    color: #0B1634;
    padding: 0.4rem 0.15rem;
}

.bo-hub-crumb-search input::placeholder {
    color: #94A3B8;
}

.bo-hub-crumb-search__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 0;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    background: var(--bo-green);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.bo-hub-crumb-search__btn:hover {
    background: var(--bo-green-dark);
}

.bo-hub-crumb-search__btn i {
    font-size: 0.65rem;
}

.bo-hub-empty {
    text-align: center;
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748B;
}

.bo-hub-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: start;
    margin: 0;
    padding: 0;
}

@media (min-width: 992px) {
    .bo-hub-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        gap: 0.85rem;
    }
}

@media (min-width: 1200px) {
    .bo-hub-layout {
        grid-template-columns: 250px minmax(0, 1fr);
        gap: 0.9rem;
    }
}

.bo-hub-side {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.bo-hub-side__box {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.bo-hub-side__head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #F1F5F9;
    color: #0B1634;
}

.bo-hub-side__head i {
    color: var(--bo-green);
    font-size: 0.9rem;
}

.bo-hub-side__head strong {
    font-size: 0.92rem;
    font-weight: 800;
}

.bo-hub-side__nav {
    display: flex;
    flex-direction: column;
    max-height: min(62vh, 520px);
    overflow: auto;
}

.bo-hub-side__link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.72rem 0.95rem;
    text-decoration: none;
    color: #1E293B;
    border-bottom: 1px solid #F8FAFC;
    transition: background 0.15s ease, color 0.15s ease;
}

.bo-hub-side__link:hover {
    background: var(--bo-green-soft);
    color: var(--bo-green-dark);
}

.bo-hub-side__ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--bo-green-soft);
    color: var(--bo-green);
    font-size: 0.78rem;
    flex-shrink: 0;
}

.bo-hub-side__name {
    flex: 1;
    min-width: 0;
    font-size: 0.84rem;
    font-weight: 650;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bo-hub-side__arrow {
    font-size: 0.62rem;
    color: #CBD5E1;
    flex-shrink: 0;
}

.bo-hub-side__link--all {
    border-bottom: 0;
    color: var(--bo-green);
    font-weight: 700;
}

.bo-hub-help {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 1.05rem 1rem 1.1rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.bo-hub-help h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--bo-green);
    line-height: 1.35;
}

.bo-hub-help p {
    margin: 0.4rem 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #64748B;
    line-height: 1.4;
}

.bo-hub-help__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.72rem 0.9rem;
    border-radius: 999px;
    background: var(--bo-green);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background 0.15s ease, transform 0.15s ease;
}

.bo-hub-help__btn:hover {
    background: var(--bo-green-dark);
    color: #fff;
    transform: translateY(-1px);
}

.bo-hub-main {
    min-width: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.bo-hub-intro {
    text-align: left;
    margin: 0 0 0.75rem;
    padding: 0;
    width: 100%;
}

.bo-hub-intro__kicker {
    margin: 0 0 0.3rem;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bo-green);
}

.bo-hub-intro__title {
    margin: 0;
    padding: 0;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0B1634;
    line-height: 1.15;
}

.bo-hub-intro__title em {
    font-style: normal;
    color: var(--bo-green);
    position: relative;
    display: inline-block;
}

.bo-hub-intro__title em::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    border-radius: 99px;
    background: var(--bo-green);
}

.bo-hub-intro__lead {
    margin: 0.5rem 0 0;
    padding: 0;
    max-width: none;
    font-size: 0.86rem;
    font-weight: 500;
    color: #64748B;
    line-height: 1.45;
}

.bo-hub-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.75rem 0 0;
    max-width: none;
    width: 100%;
    padding: 0.28rem 0.28rem 0.28rem 0.85rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.bo-hub-search:focus-within {
    border-color: #86EFAC;
    box-shadow: 0 10px 26px rgba(11, 92, 59, 0.12);
}

.bo-hub-search > i {
    color: #94A3B8;
    flex-shrink: 0;
}

.bo-hub-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: #0B1634;
    padding: 0.55rem 0.2rem;
}

.bo-hub-search input::placeholder {
    color: #94A3B8;
}

.bo-hub-search__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 0;
    border-radius: 999px;
    padding: 0.65rem 1.05rem;
    background: var(--bo-green);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.bo-hub-search__btn:hover {
    background: var(--bo-green-dark);
}

.bo-hub__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    width: 100%;
}

@media (min-width: 640px) {
    .bo-hub__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.9rem;
    }
}

@media (min-width: 1200px) {
    .bo-hub__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (min-width: 1400px) {
    .bo-hub__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.bo-hub-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    min-height: 0;
    padding: 0.85rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    text-decoration: none;
    color: #0B1634;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    animation: boFadeUp 0.45s ease both;
    animation-delay: calc(var(--bo-i, 0) * 0.03s);
}

.bo-hub-card:hover,
.bo-hub-card:focus,
.bo-hub-card:focus-visible {
    transform: translateY(-3px);
    border-color: #D1D5DB;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
    color: #0B1634;
    outline: none;
}

.bo-hub-card__top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.7rem;
    min-height: 40px;
}

.bo-hub-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
    flex: 1;
}

.bo-hub-card__ico {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    background: var(--bo-green-soft);
    color: var(--bo-green);
}

.bo-hub-card__name {
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bo-hub-card__count {
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748B;
    line-height: 1.2;
}

.bo-hub-card__media {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 16 / 11;
    border-radius: 10px;
    background: #F1F5F9;
    color: #94A3B8;
    font-size: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.bo-hub-card__media.has-photo {
    background: #F1F5F9;
}

.bo-hub-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.bo-hub-card:hover .bo-hub-card__media img {
    transform: scale(1.04);
}

.bo-hub-card__cta {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--bo-green);
    line-height: 1;
    background: #fff;
    border: 1px solid #D1D5DB;
    border-radius: 999px;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.bo-hub-card__cta i {
    font-size: 0.78rem;
    transition: none;
}

.bo-hub-card:hover .bo-hub-card__cta {
    background: var(--bo-green-soft);
    border-color: var(--bo-green);
    color: var(--bo-green-dark);
}

.bo-hub-card:hover .bo-hub-card__cta i {
    transform: none;
}

.bo-hub-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.15rem;
    margin-left: 0;
    margin-right: 0;
    padding: 0.9rem 0.85rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

@media (min-width: 640px) {
    .bo-hub-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .bo-hub-trust {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.5rem;
        padding: 1.05rem 1.15rem;
    }
}

.bo-hub-trust__item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    min-width: 0;
    padding: 0.25rem 0.35rem;
}

.bo-hub-trust__ico {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bo-green-soft);
    color: var(--bo-green);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.bo-hub-trust__item strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: #0B1634;
    line-height: 1.25;
}

.bo-hub-trust__item span {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #64748B;
}

.big-offers-page.bo-hub-page {
    background: #F7F8FA;
}

@media (max-width: 991.98px) {
    .bo-hub-side {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .bo-listing--hub {
        padding: 0.45rem 0 1.5rem;
    }
    .bo-hub {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .bo-hub-search {
        padding-left: 0.75rem;
    }
    .bo-hub-search__btn {
        padding: 0.55rem 0.8rem;
        font-size: 0.8rem;
    }
}

.bo-browse-main .bo-grid {
    --bs-gutter-x: 0.65rem;
    --bs-gutter-y: 0.75rem;
}

/* Big Offers category browse */
.bo-browse {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    margin: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    min-height: calc(100vh - 72px);
}

.bo-browse--subs {
    grid-template-columns: 260px minmax(0, 1fr);
}

.bo-listing--shop .bo-browse {
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

.bo-cat-panel {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    position: sticky;
    top: 0;
    max-height: calc(100vh - 56px);
    z-index: 4;
    background: #fff;
    border-right: 1px solid #e0e0e0;
    width: 260px;
}

.bo-cat-panel--subs {
    width: 260px;
}

.bo-subcat-back {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: grid;
    place-items: center;
    background: #F1F5F9;
    color: #0B1634;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.bo-subcat-back:hover {
    background: #0F766E;
    color: #fff;
}

.bo-shop-bar__text {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
    flex-wrap: wrap;
}

.bo-shop-bar__crumb {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2874f0;
    text-decoration: none;
}

.bo-shop-bar__crumb:hover {
    text-decoration: underline;
}

.bo-shop-bar__sep {
    color: #94A3B8;
    font-size: 0.75rem;
}

.bo-maincat-rail {
    width: 92px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-right: 1px solid #e0e0e0;
}

.bo-maincat-rail__head {
    flex-shrink: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
    text-align: center;
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #878787;
    background: #fafafa;
    border-bottom: 1px solid #e0e0e0;
}

.bo-maincat-rail__scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0.15rem 0.2rem 0.45rem;
    scrollbar-width: thin;
    background: #fff;
}

.bo-maincat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.22rem;
    padding: 0.45rem 0.2rem 0.4rem;
    margin-bottom: 0.1rem;
    border-radius: 2px;
    text-decoration: none;
    color: #212121;
    transition: background 0.15s, color 0.15s;
    border: 1px solid transparent;
}

.bo-maincat-item:hover {
    background: #f5f7fa;
    color: #2874f0;
}

.bo-maincat-item.is-active {
    background: #f0f5ff;
    color: #2874f0;
    border-color: #d6e4ff;
    box-shadow: inset 3px 0 0 #2874f0;
}

.bo-maincat-item__icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: #f1f3f6;
    background-size: cover;
    background-position: center;
    font-size: 0.9rem;
    color: #565656;
    overflow: hidden;
}

.bo-maincat-item.is-active .bo-maincat-item__icon {
    background: #fff;
    color: #2874f0;
    border: 1px solid #d6e4ff;
}

.bo-maincat-item__icon.has-photo {
    border: 1px solid #e0e0e0;
}

.bo-maincat-item__name {
    font-size: 0.68rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
}

.bo-maincat-item__count {
    font-style: normal;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 0.08rem 0.35rem;
    border-radius: 999px;
    background: #f1f3f6;
    color: #878787;
}

.bo-maincat-item.is-active .bo-maincat-item__count {
    background: #2874f0;
    color: #fff;
}

.bo-subcat-box {
    flex: 1;
    width: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.bo-subcat-head {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    height: 44px;
    padding: 0 0.5rem;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    min-height: 44px;
    box-sizing: border-box;
}

.bo-subcat-head > div {
    min-width: 0;
}

.bo-subcat-head__icon {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    background: rgba(13, 148, 136, 0.12);
    color: #0F766E;
    flex-shrink: 0;
    font-size: 0.75rem;
}

.bo-subcat-head strong {
    display: block;
    font-size: 0.78rem;
    color: #212121;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bo-subcat-head small {
    display: block;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #878787;
    margin-top: 0;
    line-height: 1.1;
}

.bo-subcat-search {
    position: relative;
    margin: 0.25rem 0.4rem 0.1rem;
}

.bo-subcat-search i {
    position: absolute;
    left: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #94A3B8;
    pointer-events: none;
}

.bo-subcat-search input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.45rem 0.55rem 0.45rem 1.75rem;
    font-size: 0.78rem;
    background: #fff;
    outline: none;
}

.bo-subcat-search input:focus {
    border-color: #2874f0;
    box-shadow: 0 0 0 2px rgba(40, 116, 240, 0.12);
}

.bo-subcat-nav {
    flex: 1;
    overflow-y: auto;
    padding: 0.15rem 0.4rem 0.55rem;
    scrollbar-width: thin;
}

.bo-subcat-link {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.55rem;
    padding: 0.48rem 0.5rem;
    border-radius: 10px;
    text-decoration: none;
    color: #334155;
    margin-bottom: 0.12rem;
    transition: background 0.15s, color 0.15s;
    min-height: 46px;
}

.bo-subcat-link:hover {
    background: #fff;
    color: #0B1634;
}

.bo-subcat-link.is-active {
    background: #fff;
    color: #0F766E;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), inset 3px 0 0 #0D9488;
    font-weight: 700;
}

.bo-subcat-link__ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: #E2E8F0;
    background-size: cover;
    background-position: center;
    color: #64748B;
    font-size: 0.8rem;
}

.bo-subcat-link__ico.has-photo {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.bo-subcat-link__txt {
    min-width: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bo-subcat-link__count {
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 800;
    color: #94A3B8;
    background: rgba(15, 23, 42, 0.05);
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    justify-self: end;
}

/* Accordion: fabric-filter style (header + checkbox list + more) */
.bo-sub-acc {
    margin: 0 0 0.15rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-bottom: 0.15rem;
}

.bo-sub-acc:last-child {
    border-bottom: 0;
}

.bo-fabric-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    padding: 0.45rem 0.15rem 0.35rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #0F172A;
}

.bo-fabric-head__title {
    flex: 1;
    min-width: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.2;
}

.bo-fabric-head__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.bo-fabric-head__chev {
    color: #64748B;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
    transform: rotate(180deg);
}

.bo-sub-acc.is-open .bo-fabric-head__chev {
    transform: rotate(0deg);
}

.bo-fabric-head.is-active .bo-fabric-head__title,
.bo-sub-acc.is-open .bo-fabric-head__title {
    color: #0B1634;
}

.bo-fabric-head__count {
    font-style: normal;
    font-size: 0.65rem;
    font-weight: 800;
    color: #878787;
    background: #f1f3f6;
    padding: 0.08rem 0.38rem;
    border-radius: 999px;
    min-width: 1.25rem;
    text-align: center;
}

.bo-fabric-head.is-active .bo-fabric-head__count {
    background: #e8f1ff;
    color: #2874f0;
}

.bo-fabric-panel {
    padding: 0 0.1rem 0.35rem 0.1rem;
    animation: boAccOpen 0.2s ease;
}

@keyframes boAccOpen {
    from { opacity: 0; transform: translateY(-3px); }
    to { opacity: 1; transform: none; }
}

.bo-fabric-opt {
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.32rem 0.15rem;
    text-decoration: none;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
    border-radius: 2px;
}

.bo-fabric-opt:hover {
    color: #0B1634;
    background: rgba(15, 23, 42, 0.03);
}

.bo-fabric-opt__txt {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bo-fabric-opt__count {
    font-style: normal;
    font-size: 0.62rem;
    font-weight: 800;
    color: #94A3B8;
    background: rgba(15, 23, 42, 0.05);
    padding: 0.05rem 0.35rem;
    border-radius: 999px;
}

.bo-fabric-check {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    border: 1.5px solid #94A3B8;
    border-radius: 2px;
    background: #fff;
    position: relative;
}

.bo-fabric-opt.is-checked {
    color: #0B1634;
    font-weight: 700;
}

.bo-fabric-opt.is-checked .bo-fabric-check {
    border-color: #2563EB;
    background: #2563EB;
}

.bo-fabric-opt.is-checked .bo-fabric-check::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.bo-fabric-opt__txt {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bo-fabric-more {
    display: inline-block;
    margin: 0.25rem 0 0.1rem 1.55rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: #2563EB;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.bo-fabric-more:hover {
    text-decoration: underline;
}

.bo-active-sub-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #fff;
}

.bo-active-sub-bar .bo-subnav-label {
    margin-bottom: 0.15rem;
}

.bo-active-sub-bar strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0B1634;
}

.bo-subcat-hint {
    margin: 0.75rem 0.5rem;
    font-size: 0.78rem;
    color: #94A3B8;
    line-height: 1.45;
}

.bo-browse-main {
    padding: 4px 6px 8px;
    min-width: 0;
    background: #f1f3f6;
    display: flex;
    flex-direction: column;
}

.bo-browse-main .bo-grid {
    margin-left: 0;
    margin-right: 0;
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
    align-items: stretch;
}

.bo-grid-item {
    display: flex;
    animation: boFadeUp 0.5s ease both;
    animation-delay: calc(var(--bo-i, 0) * 0.05s);
}

.bo-grid-item > .bo-card {
    width: 100%;
}

.bo-subnav-wrap {
    margin-bottom: 8px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.bo-subnav-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #878787;
    margin-bottom: 0.45rem;
}

.bo-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.bo-sub-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem 0.4rem 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    color: #334155;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}

.bo-sub-pill:hover {
    border-color: #0D9488;
    color: #0F766E;
}

.bo-sub-pill.is-active {
    background: linear-gradient(135deg, #0B1634, #16305F);
    border-color: #0B1634;
    color: #fff;
    box-shadow: 0 6px 16px rgba(11, 22, 52, 0.18);
}

.bo-sub-pill__ico {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #E2E8F0;
    background-size: cover;
    background-position: center;
    font-size: 0.65rem;
    color: #64748B;
}

.bo-sub-pill.is-active .bo-sub-pill__ico {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.bo-sub-pill__ico.has-photo {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.bo-sub-pill em {
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.05rem 0.35rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #64748B;
}

.bo-sub-pill.is-active em {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.bo-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #0F766E;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.bo-cart-link:hover {
    color: #0B1634;
}

.bo-filter-bar {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(220px, 1.4fr) auto;
    align-items: end;
    gap: 0.85rem 1rem;
    margin-bottom: 1.1rem;
    padding: 0.95rem 1.05rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(11, 22, 52, 0.03);
}

.bo-filter-bar__info .bo-subnav-label {
    margin-bottom: 0.25rem;
}

.bo-filter-bar__info strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0B1634;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.bo-third-select-wrap {
    min-width: 0;
}

.bo-third-select-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94A3B8;
}

.bo-third-select-label i {
    color: #0D9488;
    font-size: 0.72rem;
}

.bo-third-select-box {
    position: relative;
}

.bo-third-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    height: 44px;
    padding: 0 2.4rem 0 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 11px;
    background: #F8FAFC;
    color: #0B1634;
    font-size: 0.875rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.bo-third-select:hover {
    background: #fff;
    border-color: rgba(13, 148, 136, 0.35);
}

.bo-third-select:focus {
    background: #fff;
    border-color: #0D9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.bo-third-select-caret {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #64748B;
    pointer-events: none;
}

.bo-third-select-wrap--empty {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bo-third-select-empty {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 0.9rem;
    border-radius: 11px;
    border: 1px dashed rgba(15, 23, 42, 0.12);
    background: #F8FAFC;
    color: #94A3B8;
    font-size: 0.8125rem;
    font-weight: 600;
}

.bo-filter-bar .bo-third-back {
    align-self: end;
    height: 44px;
}

.bo-third-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-shrink: 0;
    height: 36px;
    padding: 0 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #0F766E;
    text-decoration: none;
    border-radius: 999px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.12);
}

.bo-third-back:hover {
    color: #0B1634;
    background: rgba(11, 22, 52, 0.06);
    border-color: rgba(15, 23, 42, 0.08);
}

.bo-third-empty {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    background: #F1F5F9;
    color: #64748B;
    font-size: 0.85rem;
}

.bo-third-empty i {
    color: #0D9488;
}

.bo-empty--inline {
    margin-top: 0.25rem;
}

.bo-browse-main .bo-grid {
    margin-left: 0;
    margin-right: 0;
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.5rem;
    align-items: stretch;
}

@media (max-width: 1199.98px) {
    .bo-browse,
    .bo-browse--subs {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .bo-cat-panel,
    .bo-cat-panel--subs {
        width: 240px;
    }
}

@media (max-width: 991.98px) {
    .bo-browse,
    .bo-browse--subs {
        grid-template-columns: 1fr;
        border-radius: 2px;
        min-height: 0;
    }

    .bo-cat-panel,
    .bo-cat-panel--subs {
        position: static;
        width: 100%;
        max-height: none;
        border-right: 0;
        border-bottom: 1px solid #e0e0e0;
        overflow-x: auto;
    }

    .bo-subcat-box {
        width: 100%;
        min-height: 0;
        max-height: 320px;
    }

    .bo-browse-main {
        padding: 6px;
    }

    .bo-filter-bar {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .bo-filter-bar .bo-third-back {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .bo-cat-panel,
    .bo-cat-panel--subs {
        flex-direction: column;
    }

    .bo-subcat-box {
        width: 100%;
        max-height: 280px;
    }
}

.bo-grid-item {
    display: flex;
    animation: boFadeUp 0.5s ease both;
    animation-delay: calc(var(--bo-i, 0) * 0.05s);
}

.bo-grid-item > .bo-card {
    width: 100%;
}

@keyframes boFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.bo-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.bo-card:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.bo-card-media {
    display: block;
    position: relative;
    aspect-ratio: 1;
    background: #f5f5f5;
    overflow: hidden;
}

.bo-card-media-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.bo-card-media img,
.bo-card-media-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.35s ease;
    display: block;
}
.bo-card-media img.is-fade {
    animation: boCardImgFade 0.4s ease;
}
@keyframes boCardImgFade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

.bo-card:hover .bo-card-media img {
    transform: scale(1.04);
}

.bo-card-slider.is-paused:hover .bo-card-media img,
.bo-card-slider:hover img {
    transform: none;
}

.bo-card-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0F172A;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    cursor: pointer;
    font-size: 0.7rem;
}
.bo-card-slider:hover .bo-card-slider-nav,
.bo-card-slider:focus-within .bo-card-slider-nav {
    opacity: 1;
    pointer-events: auto;
}
.bo-card-slider-nav--prev { left: 0.45rem; }
.bo-card-slider-nav--next { right: 0.45rem; }

.bo-card-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 0.55rem;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.28rem;
    align-items: center;
}
.bo-card-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
    cursor: pointer;
}
.bo-card-slider-dot.is-active {
    background: #fff;
    width: 16px;
    border-radius: 999px;
}

.bo-card-slider-count {
    position: absolute;
    right: 0.5rem;
    bottom: 0.5rem;
    z-index: 3;
    font-size: 0.625rem;
    font-weight: 800;
    color: #fff;
    background: rgba(15, 23, 42, 0.55);
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.bo-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #64748B;
    background: linear-gradient(145deg, #DCE5F0, #F8FAFC);
}

.bo-card-badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bo-card-badge--deal {
    background: #EA580C;
}

.bo-card-badge--hot {
    background: #DC2626;
}

.bo-card-badge--best {
    background: #5B21B6;
}

.bo-card-badge--new {
    background: #0369A1;
}

.bo-card-badge--bulk {
    background: #0F766E;
}

.bo-card-off {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    background: #15803D;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
}

.bo-card-body {
    padding: 0.75rem 0.8rem 0.85rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.bo-card-type {
    align-self: flex-start;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    background: #EFF6FF;
    color: #1D4ED8;
}

.bo-card-type--bulk {
    background: #FFF7ED;
    color: #C2410C;
}

.bo-card-type--both {
    background: #F0FDFA;
    color: #0F766E;
}

.bo-card-title {
    font-family: var(--ui-font-display);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.bo-card-title a {
    color: #212121;
    text-decoration: none;
}

.bo-card-title a:hover {
    color: #2874f0;
}

.bo-card-desc {
    font-size: 0.75rem;
    color: #64748B;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bo-card-price {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.15rem;
}

.bo-card-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem 0.45rem;
}

.bo-card-price strong {
    font-family: var(--ui-font-display);
    font-size: 1.02rem;
    font-weight: 800;
    color: #212121;
}

.bo-card-price small {
    color: #64748B;
    font-size: 0.6875rem;
    font-weight: 600;
}

.bo-card-price del {
    color: #94A3B8;
    font-size: 0.75rem;
}

.bo-card-pack-total {
    font-family: var(--ui-font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: #0F766E;
    line-height: 1.2;
}

.bo-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.1rem;
    padding: 0.5rem 0.55rem;
    border-radius: 8px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.bo-card-meta-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.4rem 0.55rem;
    overflow: hidden;
}

.bo-card-moq {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: #0F172A;
    white-space: nowrap;
}

.bo-card-moq i {
    color: #0F766E;
    font-size: 0.7rem;
}

.bo-card-max {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748B;
    white-space: nowrap;
}

.bo-card-sizes {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.28rem;
    overflow: hidden;
    min-height: 1.55rem;
}

.bo-card-sizes-label {
    flex: 0 0 auto;
    font-size: 0.6875rem;
    font-weight: 800;
    color: #64748B;
    margin-right: 0.1rem;
}

.bo-card-sizes em {
    font-style: normal;
    flex: 0 0 auto;
    min-width: 1.55rem;
    height: 1.45rem;
    padding: 0 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid #CBD5E1;
    background: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    color: #334155;
}

.bo-card-sizes-more {
    flex: 0 0 auto;
    font-size: 0.62rem;
    font-weight: 800;
    color: #0F766E;
    text-decoration: none;
    white-space: nowrap;
    padding: 0 0.2rem;
}

.bo-card-sizes-more:hover {
    color: #0D9488;
    text-decoration: underline;
}

.bo-card-colors {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.bo-card-swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bo-swatch, #94A3B8);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #CBD5E1;
}

.bo-card-swatch-more {
    font-size: 0.6875rem;
    font-weight: 800;
    color: #64748B;
}

.bo-card-bulk {
    display: none;
}

.bo-card-bulk-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
    font-size: 0.6875rem;
    font-weight: 800;
    color: #334155;
}

.bo-card-bulk-top i {
    color: var(--bo-teal);
    margin-right: 0.2rem;
}

.bo-card-bulk-top em {
    font-style: normal;
    background: #fff;
    border: 1px solid #E2E8F0;
    color: #475569;
    padding: 0.12rem 0.4rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
}

.bo-card-bulk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.bo-card-bulk-grid span {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 0.1rem;
}

.bo-card-bulk-grid strong {
    font-family: var(--ui-font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--bo-ink);
}

.bo-card-bulk-note {
    margin: 0.5rem 0 0;
    font-size: 0.625rem;
    color: #64748B;
    font-weight: 600;
}

.bo-card-timer {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #C2410C;
    margin-top: auto;
}

.bo-card-timer i {
    opacity: 0.8;
}

.bo-card-timer .cd-seg b {
    font-weight: 800;
}

.bo-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-top: 0.45rem;
}

.bo-card-cart-form {
    display: contents;
}

/* Compact listing cards (post-offer shop grid) */
.bo-card--compact .bo-card-media {
    aspect-ratio: 1;
    max-height: 180px;
}

.bo-card--compact .bo-card-body {
    padding: 0.4rem 0.45rem 0.5rem;
    gap: 0.12rem;
}

.bo-card--compact .bo-card-type {
    display: none;
}

.bo-card--compact .bo-card-title {
    font-size: 0.75rem;
    min-height: 2em;
}

.bo-card--compact .bo-card-price strong {
    font-size: 0.88rem;
}

.bo-card-moq-line {
    font-size: 0.65rem;
    font-weight: 600;
    color: #878787;
    line-height: 1.25;
}

.bo-card--compact .bo-card-actions {
    margin-top: 0.3rem;
    gap: 0.28rem;
}

.bo-card--compact .bo-btn-primary,
.bo-card--compact .bo-btn-cart {
    font-size: 0.62rem;
    padding: 0.38rem 0.3rem;
    min-height: 32px;
    border-radius: 4px;
}

.bo-card--compact .bo-btn-ico {
    width: 14px;
    height: 14px;
    font-size: 0.55rem;
}

.bo-card--compact .bo-card-badge,
.bo-card--compact .bo-card-off {
    top: 0.35rem;
    font-size: 0.55rem;
    padding: 0.15rem 0.35rem;
}

.bo-card--compact .bo-card-badge {
    left: 0.35rem;
}

.bo-card--compact .bo-card-off {
    right: 0.35rem;
}

.bo-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    background: var(--bo-ink) !important;
    border: 1px solid var(--bo-ink) !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.6875rem;
    border-radius: 8px;
    padding: 0.4rem 0.45rem;
    box-shadow: 0 4px 10px rgba(11, 22, 52, 0.12);
    transition: background 0.2s, transform 0.15s;
}

.bo-btn-primary:hover {
    background: #152248 !important;
    border-color: #152248 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.bo-btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    background: #fff !important;
    border: 1.5px solid #0F766E !important;
    color: #0F766E !important;
    font-weight: 700;
    font-size: 0.6875rem;
    border-radius: 8px;
    padding: 0.4rem 0.4rem;
    text-decoration: none !important;
    transition: background 0.15s, transform 0.12s;
}

.bo-btn-cart:hover {
    background: #F0FDFA !important;
    color: #0F766E !important;
    transform: translateY(-1px);
}

.bo-btn-ico {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #CCFBF1;
    color: #0F766E;
    font-size: 0.55rem;
}

.bo-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    color: #334155 !important;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
}

.bo-btn-ghost:hover {
    background: #EEF2F7 !important;
    color: var(--bo-ink) !important;
}

.bo-cart-toast {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 1rem;
    padding: 0.9rem 1.05rem;
    border-radius: 14px;
    border: 1px solid #A7F3D0;
    background: linear-gradient(135deg, #ECFDF5 0%, #F0FDFA 55%, #FFFFFF 100%);
    box-shadow: 0 10px 28px rgba(15, 118, 110, 0.08);
}

.bo-cart-toast--exists {
    border-color: #FDE68A;
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 45%, #FFFFFF 100%);
    box-shadow: 0 10px 28px rgba(180, 83, 9, 0.08);
}

.bo-cart-toast-ico {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0F766E;
    color: #fff;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.bo-cart-toast--exists .bo-cart-toast-ico {
    background: #D97706;
}

.bo-cart-toast-body {
    flex: 1 1 180px;
    min-width: 0;
}

.bo-cart-toast-body strong {
    display: block;
    font-family: var(--ui-font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    color: #065F46;
    margin-bottom: 0.1rem;
}

.bo-cart-toast--exists .bo-cart-toast-body strong {
    color: #92400E;
}

.bo-cart-toast-body span {
    display: block;
    font-size: 0.8125rem;
    color: #047857;
    font-weight: 600;
}

.bo-cart-toast--exists .bo-cart-toast-body span {
    color: #B45309;
}

.bo-cart-toast-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.8rem;
    border-radius: 9px;
    border: 1.5px solid #0F766E;
    background: #fff;
    color: #0F766E !important;
    font-size: 0.8125rem;
    font-weight: 800;
    text-decoration: none !important;
}

.bo-cart-toast-btn:hover {
    background: #F0FDFA;
}

.bo-cart-toast-btn--dark {
    background: #0F172A;
    border-color: #0F172A;
    color: #fff !important;
}

.bo-cart-toast-btn--dark:hover {
    background: #1E293B;
    color: #fff !important;
}

.bo-cart-toast--exists .bo-cart-toast-btn {
    border-color: #D97706;
    color: #B45309 !important;
}

.bo-cart-toast--exists .bo-cart-toast-btn:hover {
    background: #FFFBEB;
}

.bo-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 800;
    color: #0F766E;
    text-decoration: none;
}

.bo-cart-link:hover {
    color: #0D9488;
}

.bo-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 10px;
    padding: 12px 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    box-shadow: none;
}

.bo-listing--shop .bo-sell-cta {
    margin: 10px 0 4px;
}

.bo-trust-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.bo-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.bo-trust-icon--price {
    background: #EEF2FF;
    color: #4338CA;
}

.bo-trust-icon--verify {
    background: #ECFDF5;
    color: #047857;
}

.bo-trust-icon--bulk {
    background: #F0FDFA;
    color: #0F766E;
}

.bo-trust-icon--ship {
    background: #FFF7ED;
    color: #C2410C;
}

.bo-trust-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--bo-ink);
    margin-bottom: 0.1rem;
}

.bo-trust-item p {
    margin: 0;
    font-size: 0.75rem;
    color: #64748B;
    line-height: 1.4;
}

.bo-sell-cta {
    text-align: center;
    margin: 1.5rem 0 0;
    font-size: 0.8125rem;
    color: #64748B;
}

.bo-sell-cta a {
    color: var(--bo-teal-dark);
    font-weight: 700;
    text-decoration: none;
}

.bo-sell-cta a:hover {
    text-decoration: underline;
}

.bo-empty {
    text-align: center;
    padding: 3.5rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 16px;
}

.bo-empty i {
    font-size: 2rem;
    color: #94A3B8;
    margin-bottom: 0.75rem;
}

.bo-empty h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--bo-ink);
    margin: 0 0 0.35rem;
}

.bo-empty p {
    color: #64748B;
    margin: 0 0 1rem;
}

.bo-empty .bo-btn-primary {
    width: auto;
    display: inline-flex;
}

@media (max-width: 991.98px) {
    .bo-trust {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .bo-hero-inner {
        padding-top: 1.5rem;
        padding-bottom: 1.25rem;
    }
    .bo-filters {
        width: 100%;
        border-radius: 14px;
    }
    .bo-filter {
        flex: 1 1 auto;
        justify-content: center;
    }
    .bo-trust {
        grid-template-columns: 1fr;
    }
    .bo-browse-main .bo-grid {
        --bs-gutter-x: 0.45rem;
        --bs-gutter-y: 0.55rem;
    }
    .bo-card-media {
        aspect-ratio: 1;
    }
    .bo-card-body {
        padding: 0.55rem 0.5rem 0.6rem;
        gap: 0.22rem;
    }
    .bo-card-title {
        font-size: 0.78rem;
    }
    .bo-card-price strong {
        font-size: 0.9rem;
    }
    .bo-card-pack-total {
        font-size: 0.95rem;
    }
    .bo-card-meta {
        padding: 0.4rem 0.45rem;
        gap: 0.28rem;
        border-radius: 7px;
    }
    .bo-card-moq,
    .bo-card-max,
    .bo-card-sizes-label {
        font-size: 0.62rem;
    }
    .bo-card-sizes {
        min-height: 1.35rem;
    }
    .bo-card-sizes em {
        min-width: 1.35rem;
        height: 1.3rem;
        padding: 0 0.25rem;
        font-size: 0.58rem;
    }
    .bo-card-sizes-more {
        font-size: 0.55rem;
    }
    .bo-card-actions {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    .bo-btn-primary,
    .bo-btn-cart {
        font-size: 0.68rem;
        padding: 0.4rem 0.35rem;
        min-height: 32px;
    }
    .bo-shop-top__title {
        font-size: 0.92rem;
    }
    .bo-cat-panel {
        max-height: none;
    }
}


/* Legacy card hooks (detail / compact embeds) */

.big-offer-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--ui-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.big-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.big-offer-card-media {
    display: block;
    position: relative;
    aspect-ratio: 1;
    background: #F1F5F9;
    overflow: hidden;
}

.big-offer-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.big-offer-card:hover .big-offer-card-media img {
    transform: scale(1.04);
}

.big-offer-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #64748B;
    background: linear-gradient(135deg, #E2E8F0, #F8FAFC);
}

.big-offer-card-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: #EA580C;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}

.big-offer-card-discount {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    background: #16A34A;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}

.big-offer-card-body {
    padding: 0.85rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.big-offer-type-badge {
    font-size: 0.625rem;
    align-self: flex-start;
    margin-bottom: 0.35rem;
}

.big-offer-card-title {
    font-size: 0.875rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.big-offer-card-title a {
    color: inherit;
    text-decoration: none;
}

.big-offer-card-title a:hover {
    color: var(--ui-primary);
}

.big-offer-card-desc {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.big-offer-card-price {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

.big-offer-card-price strong {
    color: var(--ui-navy);
    font-weight: 800;
}

.big-offer-card-price del {
    color: #94A3B8;
    font-size: 0.75rem;
    margin-left: 0.35rem;
}

.big-offer-card-price small {
    color: var(--ui-text-muted);
    font-size: 0.6875rem;
}

.big-offer-card-moq {
    font-size: 0.6875rem;
    color: var(--ui-text-muted);
    margin: 0 0 0.35rem;
}

.big-offer-card-countdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    color: #EA580C;
    font-weight: 700;
    margin-top: auto;
    padding-top: 0.35rem;
}

.big-offer-card-countdown .cd-seg b {
    font-size: 0.8125rem;
}

.big-offer-detail-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #F1F5F9;
}

.big-offer-detail-img {
    width: 100%;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.big-offer-detail-placeholder {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #64748B;
    background: linear-gradient(135deg, #CBD5E1, #F8FAFC);
    font-size: 4rem;
}

.big-offer-detail-placeholder span {
    font-size: 1rem;
    font-weight: 700;
}

.big-offer-detail-card {
    border-radius: 16px;
}

.big-offer-detail-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}

.big-offer-price-now {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--ui-navy);
}

.big-offer-price-mrp {
    color: #94A3B8;
    font-size: 1rem;
}

.big-offer-price-off {
    background: #DCFCE7;
    color: #15803D;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.big-offer-price-unit {
    color: var(--ui-text-muted);
    font-size: 0.875rem;
}

.big-offer-detail-countdown .big-offer-card-countdown {
    font-size: 0.875rem;
    gap: 0.35rem;
}

.big-offer-detail-countdown .cd-seg {
    background: #FFF7ED;
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 52px;
}

.big-offer-detail-countdown .cd-seg b {
    display: block;
    font-size: 1.125rem;
    color: #EA580C;
}


/* ===== Offer Product Detail (PDP) — wholesale professional layout ===== */

.opd-page {
    --opd-blue: #1D4ED8;
    --opd-blue-dark: #1E3A8A;
    --opd-blue-soft: #EFF6FF;
    --opd-green: #16A34A;
    --opd-orange: #EA580C;
    --opd-border: #E2E8F0;
    --opd-ink: #0F172A;
    --opd-muted: #64748B;
    background: #F8FAFC;
    padding: 1rem 0 3rem;
}

.opd-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.opd-page .opd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.45rem;
    font-size: 0.8125rem;
    color: var(--opd-muted);
    margin-bottom: 1rem;
}

.opd-page .opd-breadcrumb a {
    color: var(--opd-blue);
    text-decoration: none;
    font-weight: 600;
}

.opd-page .opd-breadcrumb a:hover {
    text-decoration: underline;
}

.opd-page .opd-breadcrumb i {
    font-size: 0.55rem;
    color: #94A3B8;
}

.opd-page .opd-breadcrumb span[aria-current="page"] {
    color: var(--opd-ink);
    font-weight: 600;
    max-width: 280px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.opd-pro {
    display: grid;
    /* Bootstrap-style 12 cols: image 5 | details 4 | buy 3 */
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
    gap: 0.75rem;
    align-items: start;
}

.opd-pro-content {
    /* Flatten so media / info / side sit as 5-4-3 siblings */
    display: contents;
}

.opd-pro-media {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.opd-pro-gallery {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 16px;
    padding: 0.75rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.opd-pro-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 2px;
}

.opd-pro-thumb {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 10px;
    border: 2px solid #E2E8F0;
    background: #F8FAFC;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.15s;
}

.opd-pro-thumb.is-active {
    border-color: var(--opd-blue);
    box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.15);
}

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

.opd-pro-thumb-more {
    display: none;
}

.opd-pro-stage {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    min-width: 0;
}

.opd-pro-main-img {
    position: relative;
    aspect-ratio: 1;
    max-height: 420px;
    background: #F8FAFC;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #EEF2F7;
}

.opd-pro-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    display: block;
    opacity: 1;
    transition: opacity 0.35s ease;
}
.opd-pro-main-img img.is-fading {
    animation: opdImgFade 0.4s ease;
}
@keyframes opdImgFade {
    from { opacity: 0.35; }
    to { opacity: 1; }
}

.opd-pro-zoom {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--opd-ink);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    z-index: 3;
}

.opd-pro-main-img .opd-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--opd-ink);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.opd-pro-main-img .opd-nav--prev { left: 0.55rem; }
.opd-pro-main-img .opd-nav--next { right: 0.55rem; }

.opd-pro-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: linear-gradient(90deg, #EFF6FF, #F8FBFF);
    border: 1px solid #DBEAFE;
    border-radius: 12px;
    margin-top: 0.65rem;
    overflow: hidden;
}

.opd-pro-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.65rem 0.3rem;
    text-align: center;
    border-right: 1px solid #DBEAFE;
    font-size: 0.625rem;
    font-weight: 700;
    color: #1E40AF;
    line-height: 1.25;
}

.opd-pro-feature:last-child { border-right: none; }
.opd-pro-feature i { color: var(--opd-blue); font-size: 0.9rem; }

.opd-pro-info {
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 16px;
    padding: 1.05rem 1rem 1.15rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    min-width: 0;
}

.opd-pro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}

.opd-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 800;
}

.opd-pro-badge--green { background: #DCFCE7; color: #15803D; }
.opd-pro-badge--blue { background: #DBEAFE; color: #1D4ED8; }
.opd-pro-badge--hot { background: #FEF3C7; color: #B45309; }

.opd-pro-title {
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    font-weight: 800;
    color: var(--opd-ink);
    line-height: 1.3;
    margin: 0 0 0.55rem;
    letter-spacing: -0.02em;
}

.opd-pro-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.6rem;
    font-size: 0.8125rem;
    color: var(--opd-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid #F1F5F9;
}

.opd-pro-meta strong { color: var(--opd-ink); }
.opd-pro-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #CBD5E1;
}
.opd-pro-rating i { color: #F59E0B; font-size: 0.75rem; }
.opd-pro-rating strong { margin-left: 0.2rem; }
.opd-pro-rating em { font-style: normal; color: var(--opd-muted); }

.opd-pro-specs h2,
.opd-pro-trust h2,
.opd-pro-about h2 {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--opd-ink);
    margin: 0 0 0.7rem;
}

.opd-pro-specs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.opd-pro-specs li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid #EEF2F7;
    border-radius: 12px;
    background: #FCFCFD;
}

.opd-pro-spec-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #EFF6FF;
    color: var(--opd-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.opd-pro-spec-body {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.opd-pro-spec-label {
    color: var(--opd-muted);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.opd-pro-spec-val {
    color: var(--opd-ink);
    font-weight: 700;
    font-size: 0.875rem;
    text-align: left;
}

.opd-pro-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.opd-pro-chips span {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #E2E8F0;
    color: #334155;
    font-size: 0.71875rem;
    font-weight: 700;
}

.opd-pro-side {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: sticky;
    top: 1rem;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.opd-pro-price-card,
.opd-pro-buy-card {
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.045);
    margin: 0;
}

.opd-pro-price-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    padding: 0.7rem 0.75rem;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-bottom: 1px solid #BFDBFE;
}
.opd-pro-price-head h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--opd-blue-dark);
}
.opd-pro-price-head-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: flex-end;
}
.opd-pro-price-head-badges > span,
.opd-pro-gst-badge {
    font-size: 0.6875rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}
.opd-pro-price-head-badges > span:not(.opd-pro-gst-badge) {
    color: #B45309;
    background: #FEF3C7;
}
.opd-pro-gst-badge--none {
    color: #475569;
    background: #E2E8F0;
}
.opd-pro-gst-badge--exclusive {
    color: #1D4ED8;
    background: #DBEAFE;
}
.opd-pro-gst-badge--inclusive {
    color: #047857;
    background: #D1FAE5;
}
.opd-pro-gst-note {
    margin: 0.15rem 0 0;
    font-size: 0.6875rem;
    color: var(--opd-muted);
    font-weight: 600;
}
.opd-pro-total-gst {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    background: #EFF6FF;
    color: var(--opd-blue);
    font-size: 0.6875rem;
    font-weight: 800;
}

.opd-pro-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}
.opd-pro-price-table th {
    text-align: left;
    padding: 0.5rem 0.7rem;
    background: #F8FAFC;
    color: var(--opd-muted);
    font-weight: 700;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.opd-pro-price-table td {
    padding: 0.6rem 0.7rem;
    border-top: 1px solid #F1F5F9;
    color: var(--opd-ink);
}
.opd-pro-price-table tr:hover td { background: #F8FBFF; }
.opd-pro-price-table tr.is-active td {
    background: #EFF6FF;
}
.opd-pro-price-table tr.is-active td:first-child {
    box-shadow: inset 3px 0 0 var(--opd-blue);
}
.opd-pro-price-table td:last-child { text-align: right; }
.opd-pro-price-table strong { color: var(--opd-blue-dark); font-size: 0.9375rem; }

.opd-pro-price-live {
    margin: 0.75rem 0.75rem 0;
    padding: 0.75rem 0.8rem;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.opd-pro-price-live-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--opd-muted);
}
.opd-pro-price-live-row strong {
    color: var(--opd-ink);
    font-size: 0.8125rem;
}
.opd-pro-price-live-row--total {
    margin-top: 0.15rem;
    padding-top: 0.45rem;
    border-top: 1px dashed #CBD5E1;
    font-weight: 700;
    color: var(--opd-ink);
}
.opd-pro-price-live-row--total strong {
    color: var(--opd-blue-dark);
    font-size: 1rem;
}

.opd-pro-mrp {
    padding: 0.4rem 0.7rem 0;
    font-size: 0.71875rem;
    color: var(--opd-muted);
}
.opd-pro-mrp del { margin: 0 0.2rem; }

.opd-pro-price-tip {
    margin: 0.55rem 0.65rem 0.75rem;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    background: #ECFDF5;
    color: #047857;
    font-size: 0.6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.opd-pro-buy-card { padding: 0.85rem 0.75rem 0.9rem; }

.opd-pro-supplier {
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #F1F5F9;
}
.opd-pro-supplier-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}
.opd-pro-supplier-top strong {
    color: var(--opd-blue);
    font-size: 0.9375rem;
}
.opd-pro-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 800;
    color: var(--opd-blue);
}
.opd-pro-supplier-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    font-size: 0.75rem;
    color: var(--opd-muted);
}
.opd-pro-supplier-meta i { color: var(--opd-blue); }
.opd-pro-chip {
    background: #EFF6FF;
    color: var(--opd-blue);
    font-weight: 800;
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
}

.opd-pro-ends {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #B45309;
    background: #FFFBEB;
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
    margin-bottom: 0.85rem;
}

.opd-pro-qty-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 0.75rem;
    align-items: center;
    margin: 0.75rem 0;
}
.opd-pro-qty-row label {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--opd-ink);
}
.opd-pro-qty-row small {
    grid-column: 2;
    font-size: 0.6875rem;
    color: var(--opd-muted);
}
.opd-pro-qty-row .opd-qty {
    justify-self: start;
}

.opd-pro-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    background: #F8FAFC;
    border-radius: 10px;
    margin-bottom: 0.85rem;
    font-size: 0.8125rem;
    color: var(--opd-muted);
}
.opd-pro-total-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
}
.opd-pro-total-meta strong {
    color: var(--opd-ink);
    font-size: 0.8125rem;
}
.opd-pro-total > strong {
    font-size: 1.125rem;
    color: var(--opd-ink);
    white-space: nowrap;
}

.opd-pro-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.opd-pro-btn-cart,
.opd-pro-btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.7rem 0.45rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.75rem;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
    white-space: nowrap;
}

.opd-pro-btn-cart {
    background: #fff;
    color: var(--opd-blue);
    border-color: var(--opd-blue);
}
.opd-pro-btn-cart:hover {
    background: var(--opd-blue-soft);
    color: var(--opd-blue-dark);
}

.opd-pro-btn-buy {
    background: var(--opd-blue);
    color: #fff !important;
    border-color: var(--opd-blue);
}
.opd-pro-btn-buy:hover {
    background: var(--opd-blue-dark);
    border-color: var(--opd-blue-dark);
    color: #fff !important;
}

.opd-pro-utils {
    display: flex;
    gap: 0.35rem;
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid #F1F5F9;
}
.opd-pro-util {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.45rem 0.25rem;
    border: 1px solid var(--opd-border);
    border-radius: 8px;
    background: #fff;
    color: #475569;
    font-size: 0.6875rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.opd-pro-util:hover {
    border-color: #BFDBFE;
    color: var(--opd-blue);
    background: #F8FBFF;
}

.opd-pro-trust {
    margin-top: 1.5rem;
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 16px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
.opd-pro-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.opd-pro-trust-grid > div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}
.opd-pro-trust-grid i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--opd-blue-soft);
    color: var(--opd-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
}
.opd-pro-trust-grid strong {
    font-size: 0.875rem;
    color: var(--opd-ink);
}
.opd-pro-trust-grid span {
    font-size: 0.75rem;
    color: var(--opd-muted);
}

.opd-pro-about {
    margin-top: 0;
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 16px;
    padding: 1rem 1.1rem 1.15rem;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    width: 100%;
    max-width: 100%;
    display: block;
}
.opd-pro-about h2 {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--opd-ink);
    margin: 0 0 0.65rem;
}
.opd-pro-about p {
    margin: 0 0 0.65rem;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}
.opd-pro-about p:last-child { margin-bottom: 0; }

.opd-pro-form .opd-fields { margin-bottom: 0.5rem; }
.opd-pro-form .opd-auto-pack {
    margin-bottom: 0.75rem;
}

@media (max-width: 1199.98px) {
    .opd-pro {
        grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
        gap: 0.75rem;
    }
    .opd-pro-side {
        grid-column: 1 / -1;
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
}

@media (max-width: 991.98px) {
    .opd-pro {
        grid-template-columns: 1fr;
    }
    .opd-pro-gallery { max-width: none; }
    .opd-pro-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .opd-pro-gallery {
        grid-template-columns: 1fr;
        max-width: none;
    }
    .opd-pro-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        order: 2;
        padding-top: 0.35rem;
    }
    .opd-pro-stage { order: 1; }
    .opd-pro-main-img { max-height: none; }
    .opd-pro-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .opd-pro-feature:nth-child(2) { border-right: none; }
    .opd-pro-feature:nth-child(1),
    .opd-pro-feature:nth-child(2) { border-bottom: 1px solid #DBEAFE; }
    .opd-pro-cta { grid-template-columns: 1fr; }
    .opd-pro-trust-grid { grid-template-columns: 1fr 1fr; }
}

/* Keep legacy form field styles usable inside new PDP */

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

.opd-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    font-size: 0.8125rem;
    color: #64748B;
}

.opd-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #334155;
    text-decoration: none;
    font-weight: 700;
}

.opd-breadcrumb a i {
    font-size: 0.7rem;
    color: #0F766E;
}

.opd-breadcrumb a:hover {
    color: #0F766E;
}

.opd-breadcrumb-sep {
    font-size: 0.55rem;
    color: #94A3B8;
}

.opd-breadcrumb-current {
    max-width: min(280px, 55vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
    color: #0F172A;
}

.opd-top-actions {
    display: flex;
    gap: 0.5rem;
}

.opd-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--opd-border);
    background: #fff;
    color: #334155;
    border-radius: 10px;
    padding: 0.5rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.opd-icon-btn:hover {
    border-color: #99F6E4;
    color: var(--opd-blue);
    background: #F0FDFA;
}


/* Progress stepper */

.opd-steps {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 16px;
    margin-bottom: 1.15rem;
    padding: 0.95rem 1.15rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.opd-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1 1 0;
    min-width: 0;
    color: #94A3B8;
    position: relative;
}

.opd-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    color: #64748B;
    border: 2px solid #E2E8F0;
    position: relative;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.opd-step-num i {
    font-size: 0.95rem;
    display: none;
}

.opd-step-num em {
    font-style: normal;
    font-size: 0.9375rem;
    font-weight: 800;
    font-family: var(--ui-font-display);
}

.opd-step-text {
    min-width: 0;
}

.opd-step-text strong {
    display: block;
    font-family: var(--ui-font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    color: inherit;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.opd-step-text small {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94A3B8;
    margin-top: 0.12rem;
}

.opd-step-connector {
    flex: 0 0 clamp(28px, 6vw, 72px);
    height: 3px;
    margin: 0 0.55rem;
    border-radius: 999px;
    background: #E2E8F0;
    align-self: center;
}

.opd-step-connector.is-done {
    background: linear-gradient(90deg, #0F766E, #14B8A6);
}

.opd-step.is-active {
    color: var(--opd-ink);
}

.opd-step.is-active .opd-step-num {
    background: linear-gradient(145deg, #0F766E, #0D9488);
    border-color: #0F766E;
    color: #fff;
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.28);
}

.opd-step.is-active .opd-step-num i {
    display: inline;
}

.opd-step.is-active .opd-step-num em {
    display: none;
}

.opd-step.is-active .opd-step-text strong {
    color: var(--opd-ink);
}

.opd-step.is-active .opd-step-text small {
    color: #0F766E;
}

.opd-step.is-done {
    color: var(--opd-ink);
}

.opd-step.is-done .opd-step-num {
    background: #ECFDF5;
    border-color: #6EE7B7;
    color: #047857;
}

.opd-step.is-done .opd-step-num i {
    display: inline;
}

.opd-step.is-done .opd-step-num em {
    display: none;
}

.opd-step.is-done .opd-step-text small {
    color: #059669;
}

.opd-layout {
    display: grid;
    grid-template-columns: minmax(260px, 1.05fr) minmax(300px, 1.15fr) minmax(260px, 0.9fr);
    gap: 1.15rem;
    align-items: start;
}

.opd-layout--no-bulk {
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.2fr);
}

.opd-gallery {
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 16px;
    padding: 0.85rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.opd-gallery-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #F1F5F9;
    aspect-ratio: 1;
}

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

.opd-gallery-ph {
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9CA3AF;
    font-size: 3.5rem;
}

.opd-gallery-ph span {
    font-size: 0.9375rem;
    font-weight: 700;
}

.opd-gallery-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    z-index: 2;
}

.opd-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
    font-size: 0.6875rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.opd-badge--hot {
    background: var(--opd-orange);
}

.opd-badge--off {
    background: var(--opd-green);
}

.opd-wish-fab {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: #EF4444;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.opd-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .95);
    color: #374151;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.opd-nav--prev {
    left: 0.65rem;
}

.opd-nav--next {
    right: 0.65rem;
}

.opd-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-top: 0.65rem;
}

.opd-thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: #F3F4F6;
    aspect-ratio: 1;
}

.opd-thumb.is-active {
    border-color: var(--opd-blue);
}

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

.opd-thumb-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9CA3AF;
}

.opd-buy {
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 16px;
    padding: 1.25rem 1.3rem 1.35rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.opd-type-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: #CCFBF1;
    color: #0F766E;
}

.opd-type-badge--bulk {
    background: #FEF3C7;
    color: #B45309;
}

.opd-title {
    font-family: var(--ui-font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 800;
    color: var(--opd-ink);
    margin: 0.6rem 0 0.5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.opd-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 0.85rem;
}

.opd-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.8125rem;
    color: #374151;
}

.opd-rating i {
    color: #F59E0B;
    font-size: 0.75rem;
}

.opd-rating em {
    font-style: normal;
    font-weight: 800;
    margin-left: 0.25rem;
}

.opd-rating small {
    color: var(--opd-muted);
}

.opd-sold {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #047857;
    background: #ECFDF5;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
}

.opd-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 0.65rem;
    margin-bottom: 0.35rem;
}

.opd-price strong {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--opd-ink);
    letter-spacing: -0.02em;
}

.opd-price del {
    color: #9CA3AF;
    font-size: 1rem;
}

.opd-off {
    background: #DCFCE7;
    color: #15803D;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
}

.opd-moq {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: var(--opd-muted);
    margin-bottom: 0.9rem;
}

.opd-moq i {
    color: #9CA3AF;
}

.opd-price-unit {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--opd-muted);
    margin-left: 0.1rem;
}

.opd-detail-card {
    margin: 0.85rem 0 1rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid #D1FAE5;
    background: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 55%);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.opd-detail-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: #6B7280;
    font-weight: 600;
}

.opd-detail-card-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.opd-detail-card-row span i {
    color: #9CA3AF;
    width: 1rem;
    text-align: center;
}

.opd-detail-card-row strong {
    color: #111827;
    font-weight: 800;
}

.opd-detail-card-row--total {
    margin-top: 0.15rem;
    padding-top: 0.65rem;
    border-top: 1px dashed #E5E7EB;
}

.opd-detail-card-row--total strong {
    font-size: 1.05rem;
    color: #0F172A;
}

.opd-qty-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.opd-cta-row--stack,
.opd-cta-row--buy {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: end;
    gap: 0.5rem;
}

.opd-cta-row--buy .opd-qty-block {
    max-width: none;
}

.opd-cta-row--buy .opd-qty {
    height: 44px;
    border-radius: 10px;
    border-color: #CBD5E1;
}

.opd-cta-row--buy .opd-qty button {
    width: 38px;
    background: #F8FAFC;
    color: #0F172A;
    font-size: 1.05rem;
}

.opd-cta-row--buy .opd-qty input {
    width: 52px;
    font-size: 0.9rem;
}

.opd-cta-row--buy .opd-btn-buy,
.opd-cta-row--buy .opd-btn-cart {
    width: 100%;
    min-height: 36px;
    margin-top: 29px !important;
    height: 46px !important;
}

.opd-countdown {
    margin-bottom: 1rem;
}

.opd-countdown--top {
    margin: 0.65rem 0 0.85rem;
}

.opd-auto-pack {
    border: 1px solid #E2E8F0;
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 12px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.85rem;
}

.opd-auto-pack-head {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.opd-auto-pack-head>i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ECFDF5;
    color: #0F766E;
    flex-shrink: 0;
}

.opd-auto-pack-head strong {
    display: block;
    font-size: 0.875rem;
    color: #0F172A;
}

.opd-auto-pack-head small {
    display: block;
    font-size: 0.75rem;
    color: #64748B;
    margin-top: 0.1rem;
}

.opd-auto-pack-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.opd-auto-pack-sizes span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #CBD5E1;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
}

.opd-auto-pack-sizes em {
    font-style: normal;
    color: #0F766E;
    font-weight: 800;
}

.opd-countdown-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--opd-muted);
    margin-bottom: 0.4rem;
}

.opd-countdown-grid {
    display: flex;
    gap: 0.45rem;
}

.opd-cd {
    min-width: 58px;
    text-align: center;
    border: 1.5px solid #FDBA74;
    border-radius: 8px;
    background: #FFF7ED;
    padding: 0.4rem 0.35rem;
}

.opd-cd b {
    display: block;
    font-size: 1.05rem;
    color: var(--opd-orange);
    font-weight: 800;
    line-height: 1.1;
}

.opd-cd small {
    font-size: 0.625rem;
    color: #9A3412;
    font-weight: 700;
    text-transform: uppercase;
}

.opd-fields {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    margin-bottom: 1rem;
}

.opd-field-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.4rem;
}

.opd-size-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.opd-size {
    min-width: 44px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: 8px;
    border: 1.5px solid var(--opd-border);
    background: #fff;
    color: #374151;
    font-weight: 700;
    font-size: 0.875rem;
}

.opd-size.is-active,
.opd-size:hover {
    border-color: var(--opd-blue);
    color: var(--opd-blue);
    background: #EFF6FF;
}

.opd-color-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.opd-color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--opd-swatch, #94A3B8);
    box-shadow: 0 0 0 1px #D1D5DB;
    position: relative;
    padding: 0;
}

.opd-color i {
    display: none;
    color: #fff;
    font-size: 0.65rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.opd-color.is-active {
    box-shadow: 0 0 0 2px var(--opd-blue);
}

.opd-color.is-active i {
    display: inline;
}

.opd-color-name {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: var(--opd-muted);
    font-weight: 600;
}

.opd-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.opd-field--full {
    grid-column: 1 / -1;
}

.opd-select,
.opd-input {
    width: 100%;
    border: 1px solid var(--opd-border);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
    background: #fff;
    color: var(--opd-ink);
    box-shadow: none !important;
}

.opd-select:focus,
.opd-input:focus {
    border-color: var(--opd-blue);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, .12) !important;
}

.opd-cta-row {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 0.55rem;
    align-items: stretch;
    margin-bottom: 0.85rem;
}

.opd-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--opd-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.opd-qty button {
    width: 36px;
    border: 0;
    background: #F9FAFB;
    color: #374151;
    font-size: 1.1rem;
    font-weight: 700;
}

.opd-qty input {
    width: 56px;
    border: 0;
    border-left: 1px solid var(--opd-border);
    border-right: 1px solid var(--opd-border);
    text-align: center;
    font-weight: 800;
    font-size: 0.9375rem;
    color: var(--opd-ink);
    -moz-appearance: textfield;
}

.opd-qty input::-webkit-outer-spin-button,
.opd-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.opd-btn-buy,
.opd-btn-cart,
.opd-btn-bulk {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: var(--ui-font-display);
    font-weight: 700;
    border-radius: 8px;
    padding: 0.4rem 0.7rem;
    font-size: 0.75rem;
    letter-spacing: 0.01em;
    line-height: 1.1;
    white-space: nowrap;
    text-decoration: none !important;
    transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .12s ease, color .15s ease;
}

.opd-btn-ico {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.6rem;
}

.opd-btn-buy i,
.opd-btn-cart i,
.opd-btn-bulk i {
    font-size: inherit;
    line-height: 1;
    margin: 0;
}

.opd-btn-buy {
    background: #0F172A;
    border: 1px solid #0F172A;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.18);
}

.opd-btn-buy .opd-btn-ico {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.opd-btn-buy:hover,
.opd-btn-buy:focus {
    background: #1E293B;
    border-color: #1E293B;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.22);
}

.opd-btn-cart {
    background: #fff;
    border: 1.5px solid #0F766E;
    color: #0F766E !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.opd-btn-cart .opd-btn-ico {
    background: #CCFBF1;
    color: #0F766E;
}

.opd-btn-cart:hover,
.opd-btn-cart:focus {
    background: #F0FDFA;
    border-color: #0D9488;
    color: #0F766E !important;
    transform: translateY(-1px);
}

.opd-login-hint {
    font-size: 0.75rem;
    color: var(--opd-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.5rem;
}

.opd-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    background: #F0FDFA;
    border: 1px solid #CCFBF1;
    border-radius: 12px;
    padding: 0.85rem 0.7rem;
    margin-top: 0.35rem;
}

.opd-trust>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #115E59;
    line-height: 1.25;
}

.opd-trust i {
    color: #0F766E;
    font-size: 1rem;
}

.opd-bulk {
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 12px;
    padding: 1rem 1.05rem 1.15rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.opd-bulk-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    color: var(--opd-blue);
    font-size: 0.9375rem;
}

.opd-bulk-head i {
    font-size: 1.1rem;
}

.opd-bulk-summary {
    background: #EFF6FF;
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 0.85rem;
}

.opd-bulk-summary>div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}

.opd-bulk-summary span {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1E40AF;
}

.opd-bulk-summary strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--opd-ink);
}

.opd-bulk-summary em {
    display: block;
    margin-top: 0.25rem;
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--opd-blue);
}

.opd-bulk-table-wrap {
    overflow-x: auto;
    margin-bottom: 0.75rem;
}

.opd-bulk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
}

.opd-bulk-table th {
    text-align: left;
    color: var(--opd-muted);
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.4rem 0.25rem;
    border-bottom: 1px solid var(--opd-border);
}

.opd-bulk-table td {
    padding: 0.55rem 0.25rem;
    border-bottom: 1px solid #F3F4F6;
    color: #374151;
    font-weight: 600;
}

.opd-bulk-table td:last-child,
.opd-bulk-table th:last-child {
    text-align: right;
}

.opd-bulk-note {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--opd-muted);
    margin-bottom: 0.65rem;
}

.opd-btn-bulk {
    background: var(--opd-blue);
    border: 1px solid var(--opd-blue);
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(26, 86, 219, 0.28);
    width: 100%;
    margin-bottom: 0.85rem;
}

.opd-btn-bulk:hover {
    background: var(--opd-blue-dark);
    border-color: var(--opd-blue-dark);
    color: #fff !important;
}

.opd-bulk-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.opd-bulk-perks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
}

.opd-bulk-perks i {
    color: var(--opd-blue);
    width: 1rem;
    text-align: center;
}

.opd-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.opd-info-card {
    background: #fff;
    border: 1px solid var(--opd-border);
    border-radius: 14px;
    padding: 1.1rem 1.1rem 1.15rem;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: border-color .15s ease, transform .15s ease;
}

.opd-info-card:hover {
    border-color: #99F6E4;
    transform: translateY(-2px);
}

.opd-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F0FDFA;
    color: #0F766E;
    margin-bottom: 0.7rem;
}

.opd-info-card h3 {
    font-family: var(--ui-font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--opd-ink);
    margin: 0 0 0.35rem;
}

.opd-info-card p {
    font-size: 0.8125rem;
    color: var(--opd-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1199.98px) {
    .opd-layout {
        grid-template-columns: 1fr 1fr;
    }
    .opd-bulk {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .opd-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        padding: 0.9rem 1rem;
    }
    .opd-step-connector {
        flex: none;
        width: 3px;
        height: 18px;
        margin: 0 0 0 1.3rem;
    }
    .opd-layout,
    .opd-layout--no-bulk {
        grid-template-columns: 1fr;
    }
    .opd-cta-row {
        grid-template-columns: 1fr;
    }
    .opd-cta-row--stack,
    .opd-cta-row--buy {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
    .opd-cta-row--buy .opd-qty-block {
        grid-column: 1 / -1;
    }
    .opd-cta-row--buy .opd-qty {
        width: 100%;
        justify-content: space-between;
    }
    .opd-cta-row--buy .opd-qty input {
        flex: 1;
        width: auto;
    }
    .opd-cta-row--buy .opd-btn-buy,
    .opd-cta-row--buy .opd-btn-cart {
        width: 100%;
        justify-content: center;
    }
    .opd-trust {
        grid-template-columns: 1fr;
    }
    .opd-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    .opd-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .opd-info-grid {
        grid-template-columns: 1fr;
    }
}


/* Offer Buy Now / Checkout / Success */

.ob-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--ui-text-muted);
}

.ob-breadcrumb a {
    color: var(--ui-navy);
    text-decoration: none;
    font-weight: 600;
}

.ob-breadcrumb a:hover {
    color: #0D9488;
}

.ob-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    padding: 0.85rem 1rem;
}

.ob-step {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #94A3B8;
}

.ob-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    color: #64748B;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.ob-step.is-active {
    color: #0F172A;
}

.ob-step.is-active span {
    background: #CCFBF1;
    color: #0F766E;
}

.ob-step.is-done {
    color: #0F766E;
}

.ob-step.is-done span {
    background: #0D9488;
    color: #fff;
}

.ob-buy-panel {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    overflow: visible;
}

.ob-buy-panel-top {
    padding: 1.35rem 1.35rem 0.5rem;
}

.ob-buy-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0.55rem 0 0.65rem;
    letter-spacing: -0.02em;
}

.ob-meta {
    font-size: 0.875rem;
    color: var(--ui-text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.ob-buy-form {
    padding: 1rem 1.35rem 1.35rem;
    border-top: 1px solid #F1F5F9;
    margin-top: 1rem;
}

.ob-buy-fields {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.ob-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 1rem;
}

.ob-form-grid--qty {
    margin-top: 0;
}

.ob-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.ob-field--full,
.ob-field:has(textarea) {
    grid-column: 1 / -1;
}

.ob-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    margin: 0;
}

.ob-input,
.ob-select {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
    box-shadow: none !important;
    width: 100%;
    background: #fff;
    color: #0F172A;
}

.ob-select {
    appearance: auto;
    -webkit-appearance: menulist;
    cursor: pointer;
    min-height: 44px;
}

.ob-input:focus,
.ob-select:focus {
    border-color: #14B8A6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15) !important;
}

.ob-qty-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.ob-qty-row .ob-input {
    flex: 1;
}

.ob-qty-unit {
    min-width: 84px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #F8FAFC;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #475569;
}

.ob-buy-summary {
    margin: 1.1rem 0 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #F0FDFA, #ECFEFF);
    border: 1px solid #99F6E4;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.ob-buy-summary>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ob-buy-summary span {
    font-size: 0.8125rem;
    color: #0F766E;
    font-weight: 600;
}

.ob-buy-summary strong {
    font-size: 1.25rem;
    color: #134E4A;
    font-weight: 800;
}

.ob-buy-summary small {
    color: #64748B;
    font-size: 0.75rem;
}

.ob-btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: #0D9488;
    border: 1px solid #0D9488;
    color: #fff !important;
    font-weight: 800;
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.28);
}

.ob-btn-buy:hover {
    background: #0F766E;
    border-color: #0F766E;
    color: #fff !important;
}

.ob-secure-note {
    margin-top: 0.85rem;
    font-size: 0.75rem;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
}

.ob-secure-note i {
    color: #0D9488;
}

.ob-login-gate {
    margin: 1rem 1.35rem 1.35rem;
    padding: 1.5rem;
    border-radius: 14px;
    text-align: center;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
}

.ob-login-gate-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin: 0 auto 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FEF3C7;
    color: #D97706;
    font-size: 1.25rem;
}

.ob-checkout-page,
.ob-success-page {
    background: var(--ui-bg);
}


/* ===== Offer Checkout (oc-*) — matches professional checkout mock ===== */

.oc-page {
    --oc-green: #16A34A;
    --oc-green-dark: #15803D;
    --oc-border: #E5E7EB;
    --oc-ink: #111827;
    --oc-muted: #6B7280;
    background: #F3F4F6;
    padding: 1.25rem 0 3rem;
}

.oc-wrap {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0.75rem;
}

.oc-steps {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid var(--oc-border);
    border-radius: 16px;
    margin-bottom: 1.15rem;
    padding: 0.95rem 1.15rem;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.oc-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1 1 0;
    min-width: 0;
    color: #94A3B8;
}

.oc-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    color: #64748B;
    border: 2px solid #E2E8F0;
    position: relative;
}

.oc-step-num i {
    font-size: 0.95rem;
    display: none;
}

.oc-step-num em {
    font-style: normal;
    font-size: 0.9375rem;
    font-weight: 800;
    font-family: var(--ui-font-display);
}

.oc-step-text {
    min-width: 0;
}

.oc-step-text strong {
    display: block;
    font-family: var(--ui-font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    color: inherit;
    line-height: 1.25;
}

.oc-step-text small {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94A3B8;
    margin-top: 0.12rem;
}

.oc-step-connector {
    flex: 0 0 clamp(28px, 6vw, 72px);
    height: 3px;
    margin: 0 0.55rem;
    border-radius: 999px;
    background: #E2E8F0;
}

.oc-step-connector.is-done {
    background: linear-gradient(90deg, #16A34A, #22C55E);
}

.oc-step.is-active {
    color: var(--oc-ink);
}

.oc-step.is-active .oc-step-num {
    background: linear-gradient(145deg, #16A34A, #22C55E);
    border-color: #16A34A;
    color: #fff;
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.28);
}

.oc-step.is-active .oc-step-num i {
    display: inline;
}

.oc-step.is-active .oc-step-num em {
    display: none;
}

.oc-step.is-active .oc-step-text small {
    color: #15803D;
}

.oc-step.is-done {
    color: var(--oc-ink);
}

.oc-step.is-done .oc-step-num {
    background: #ECFDF5;
    border-color: #86EFAC;
    color: #15803D;
}

.oc-step.is-done .oc-step-num i {
    display: inline;
}

.oc-step.is-done .oc-step-num em {
    display: none;
}

.oc-step.is-done .oc-step-text small {
    color: #16A34A;
}

.oc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
    gap: 1.15rem;
    align-items: start;
}

.oc-card,
.oc-summary {
    background: #fff;
    border: 1px solid var(--oc-border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.oc-card {
    padding: 1.35rem 1.4rem 1.5rem;
}

.oc-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--oc-ink);
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}

.oc-sub {
    color: var(--oc-muted);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.oc-section-title {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--oc-ink);
    margin: 0 0 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.oc-section-title i {
    color: var(--oc-green);
}

.oc-addr-list {
    display: grid;
    gap: 0.65rem;
}

.oc-addr-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    border: 1.5px solid var(--oc-border);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    cursor: pointer;
    background: #fff;
    position: relative;
}

.oc-addr-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.oc-addr-card.is-active {
    border-color: var(--oc-green);
    background: #F0FDF4;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.oc-addr-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #DCFCE7;
    color: var(--oc-green);
    font-size: 1rem;
}

.oc-addr-icon--plus {
    background: #F3F4F6;
    color: #64748B;
}

.oc-addr-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.oc-addr-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.oc-addr-top strong {
    font-size: 0.9375rem;
    color: var(--oc-ink);
}

.oc-addr-default {
    font-style: normal;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: var(--oc-green);
    color: #fff;
    border-radius: 4px;
    padding: 0.15rem 0.4rem;
}

.oc-addr-edit {
    margin-left: auto;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--oc-green);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.oc-addr-edit:hover {
    text-decoration: underline;
}

.oc-addr-name {
    font-size: 0.8125rem;
    color: #334155;
    font-weight: 600;
}

.oc-addr-lines {
    font-size: 0.8125rem;
    color: var(--oc-muted);
    line-height: 1.45;
}

.oc-addr-card--new {
    border-style: dashed;
}

.oc-addr-empty {
    display: flex;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    color: #92400E;
}

.oc-addr-empty i {
    color: #D97706;
    font-size: 1.2rem;
    margin-top: 0.15rem;
}

.oc-addr-empty strong {
    display: block;
    font-size: 0.875rem;
}

.oc-addr-empty span {
    font-size: 0.8125rem;
    color: #B45309;
}

.oc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
}

.oc-form-grid.is-collapsed,
.oc-form-grid[hidden] {
    display: none !important;
}

.oc-form-grid.is-open {
    display: grid;
    animation: ocAddrOpen 0.22s ease;
}

@keyframes ocAddrOpen {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oc-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.oc-field--full {
    grid-column: 1 / -1;
}

.oc-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #374151;
    margin: 0;
}

.oc-label span {
    color: #DC2626;
}

.oc-input,
.oc-select {
    border: 1px solid var(--oc-border);
    border-radius: 8px;
    padding: 0.65rem 0.85rem;
    font-size: 0.9375rem;
    background: #fff;
    color: var(--oc-ink);
    box-shadow: none !important;
    width: 100%;
}

.oc-input:focus,
.oc-select:focus {
    border-color: var(--oc-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12) !important;
}

.oc-input[readonly] {
    background: #F9FAFB;
    color: #475569;
}

.oc-save-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
}

.oc-check {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
}

.oc-check input {
    accent-color: var(--oc-green);
}

.oc-pay-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.65rem;
}

.oc-pay-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    border: 1.5px solid var(--oc-border);
    border-radius: 10px;
    padding: 0.85rem 0.75rem;
    cursor: pointer;
    background: #fff;
    position: relative;
    min-height: 96px;
}

.oc-pay-card input {
    position: absolute;
    opacity: 0;
}

.oc-pay-card i {
    color: #64748B;
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
}

.oc-pay-card strong {
    font-size: 0.8125rem;
    color: var(--oc-ink);
}

.oc-pay-card small {
    font-size: 0.625rem;
    color: var(--oc-muted);
    line-height: 1.3;
}

.oc-pay-card.is-active {
    border-color: var(--oc-green);
    background: #F0FDF4;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.oc-pay-card.is-active i {
    color: var(--oc-green);
}

.oc-pay-panels {
    margin-top: 0.15rem;
}

.oc-pay-panel {
    display: none;
    border: 1px solid var(--oc-border);
    border-radius: 12px;
    background: #F9FAFB;
    padding: 1rem 1.05rem;
}

.oc-pay-panel.is-open {
    display: block;
}

.oc-pay-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.oc-pay-panel-head strong {
    font-size: 0.9375rem;
    color: var(--oc-ink);
}

.oc-pay-demo {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: #FEF3C7;
    color: #B45309;
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.oc-pay-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.oc-pay-app {
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    background: #fff;
    border: 1px solid var(--oc-border);
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
}

.oc-pay-hint {
    margin: 0.65rem 0 0;
    font-size: 0.75rem;
    color: var(--oc-muted);
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
}

.oc-pay-hint i {
    color: #0EA5E9;
    margin-top: 0.1rem;
}

.oc-pay-banks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.oc-pay-bank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    border: 1.5px solid var(--oc-border);
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #374151;
    cursor: pointer;
    position: relative;
}

.oc-pay-bank input {
    position: absolute;
    opacity: 0;
}

.oc-pay-bank.is-active {
    border-color: var(--oc-green);
    background: #F0FDF4;
    color: var(--oc-green-dark);
}

.oc-pay-cod-note {
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.oc-pay-group {
    display: grid;
    gap: 0.65rem;
}

.oc-pay-group-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--oc-border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.oc-pay-group-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.oc-pay-group-card>i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    color: #0F172A;
    flex-shrink: 0;
}

.oc-pay-group-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--oc-ink);
}

.oc-pay-group-card small {
    display: block;
    font-size: 0.75rem;
    color: var(--oc-muted);
    margin-top: 0.1rem;
}

.oc-pay-group-card small em {
    font-style: normal;
    color: #15803D;
    font-weight: 700;
}

.oc-pay-group-badge {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: #ECFDF5;
    color: #047857;
    white-space: nowrap;
}

.oc-pay-group-badge--cod {
    background: #FFF7ED;
    color: #C2410C;
}

.oc-pay-group-card.is-active {
    border-color: var(--oc-green);
    background: #F0FDF4;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.oc-pay-group-card.is-active>i {
    background: #DCFCE7;
    color: #15803D;
}

.oc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
}

.oc-actions--back-only {
    justify-content: flex-start;
}

.oc-btn-place {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--oc-green);
    border: 1px solid var(--oc-green);
    color: #fff !important;
    font-weight: 800;
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 8px 18px rgba(22, 163, 74, 0.25);
}

.oc-btn-place--full {
    width: 100%;
    justify-content: center;
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
}

.oc-btn-place:hover {
    background: var(--oc-green-dark);
    border-color: var(--oc-green-dark);
    color: #fff !important;
}

.oc-btn-ghost {
    border: 1px solid var(--oc-border);
    background: #fff;
    color: #374151;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.65rem 1rem;
}

.oc-btn-ghost:hover {
    border-color: #CBD5E1;
    background: #F9FAFB;
    color: var(--oc-ink);
}

.oc-addr-manage {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #E2E8F0;
}

.oc-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.oc-trust-row>div {
    background: #fff;
    border: 1px solid var(--oc-border);
    border-radius: 10px;
    padding: 0.85rem 0.9rem;
}

.oc-trust-row i {
    color: var(--oc-green);
    margin-bottom: 0.35rem;
    display: block;
}

.oc-trust-row strong {
    display: block;
    font-size: 0.8125rem;
    color: var(--oc-ink);
    margin-bottom: 0.15rem;
}

.oc-trust-row span {
    font-size: 0.75rem;
    color: var(--oc-muted);
    line-height: 1.35;
}

.oc-summary {
    padding: 1.2rem 1.2rem 1.35rem;
    position: sticky;
    top: 1rem;
}

.oc-summary>h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--oc-ink);
    margin: 0 0 1rem;
}

.oc-summary-product {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.oc-summary-product img,
.oc-summary-ph {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    background: #F3F4F6;
    flex-shrink: 0;
    border: 1px solid var(--oc-border);
}

.oc-summary-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 1.5rem;
}

.oc-summary-product strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--oc-ink);
    margin-bottom: 0.25rem;
}

.oc-summary-product span {
    display: block;
    font-size: 0.8125rem;
    color: var(--oc-muted);
    margin-top: 0.25rem;
}

.oc-type-badge {
    display: inline-flex;
    font-style: normal;
    font-size: 0.6875rem;
    font-weight: 800;
    background: #EDE9FE;
    color: #6D28D9;
    border-radius: 6px;
    padding: 0.15rem 0.45rem;
}

.oc-summary-fields {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    border-top: 1px solid #F3F4F6;
}

.oc-summary-fields li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.8125rem;
}

.oc-summary-fields span {
    color: var(--oc-muted);
}

.oc-summary-fields strong {
    color: var(--oc-ink);
    text-align: right;
}

.oc-bulk-box {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    margin-bottom: 1rem;
}

.oc-bulk-box-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
    color: #C2410C;
}

.oc-bulk-box-head strong {
    font-size: 0.875rem;
}

.oc-bulk-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.oc-bulk-box-grid span {
    display: block;
    font-size: 0.6875rem;
    color: #9A3412;
    font-weight: 600;
}

.oc-bulk-box-grid em {
    font-style: normal;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #7C2D12;
}

.oc-bulk-box-grid b {
    font-size: 0.9375rem;
    color: var(--oc-green);
    font-weight: 800;
}

.oc-summary-totals {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.oc-summary-totals>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--oc-muted);
}

.oc-summary-totals strong {
    color: var(--oc-ink);
    font-weight: 700;
}

.oc-summary-totals em {
    font-style: normal;
    color: #9CA3AF;
    font-weight: 600;
}

.oc-summary-grand {
    padding-top: 0.65rem;
    border-top: 1px dashed #E5E7EB;
    margin-top: 0.15rem;
}

.oc-summary-grand span {
    font-weight: 700;
    color: var(--oc-ink);
}

.oc-summary-grand strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--oc-green);
}

.oc-secure-box {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: #166534;
    font-weight: 600;
}

.oc-secure-box i {
    color: var(--oc-green);
    margin-top: 0.15rem;
}

.oc-summary-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.oc-summary-trust>div {
    border: 1px solid var(--oc-border);
    border-radius: 8px;
    padding: 0.65rem 0.7rem;
    background: #F9FAFB;
}

.oc-summary-trust i {
    color: var(--oc-green);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: block;
}

.oc-summary-trust strong {
    display: block;
    font-size: 0.75rem;
    color: var(--oc-ink);
}

.oc-summary-trust span {
    font-size: 0.6875rem;
    color: var(--oc-muted);
}

@media (max-width: 991.98px) {
    .oc-layout {
        grid-template-columns: 1fr;
    }
    .oc-summary {
        position: static;
    }
    .oc-pay-grid {
        grid-template-columns: 1fr 1fr;
    }
    .oc-trust-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .oc-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        padding: 0.9rem 1rem;
    }
    .oc-step-connector {
        flex: none;
        width: 3px;
        height: 18px;
        margin: 0 0 0 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .oc-form-grid.is-open {
        grid-template-columns: 1fr;
    }
    .oc-actions {
        flex-direction: column-reverse;
    }
    .oc-actions .btn {
        width: 100%;
    }
    .oc-bulk-box-grid {
        grid-template-columns: 1fr;
    }
}


/* Offer Cart (ofc-*) */

.ofc-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.ofc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.75fr);
    gap: 1.1rem;
    align-items: start;
}

.ofc-list {
    display: grid;
    gap: 0.85rem;
}

.ofc-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.95rem;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 0.95rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.ofc-item-media {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    overflow: hidden;
    background: #F1F5F9;
    display: block;
}

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

.ofc-item-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 1.5rem;
}

.ofc-item-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
}

.ofc-item-title {
    font-family: var(--ui-font-display);
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.ofc-item-title a {
    color: #0F172A;
    text-decoration: none;
}

.ofc-item-title a:hover {
    color: #0F766E;
}

.ofc-item-meta {
    margin: 0;
    font-size: 0.75rem;
    color: #64748B;
    font-weight: 600;
}

.ofc-remove {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #FECACA;
    background: #FEF2F2;
    color: #DC2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ofc-remove:hover {
    background: #FEE2E2;
}

.ofc-item-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 0.85rem;
}

.ofc-qty {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    height: 40px;
}

.ofc-qty button {
    width: 36px;
    border: 0;
    background: #F8FAFC;
    color: #0F172A;
    font-size: 1.05rem;
    font-weight: 700;
}

.ofc-qty button:disabled {
    opacity: 0.4;
}

.ofc-qty-form {
    display: flex;
}

.ofc-qty input {
    width: 56px;
    border: 0;
    border-left: 1px solid #E2E8F0;
    border-right: 1px solid #E2E8F0;
    text-align: center;
    font-weight: 800;
    font-size: 0.875rem;
    color: #0F172A;
    -moz-appearance: textfield;
}

.ofc-qty input::-webkit-outer-spin-button,
.ofc-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ofc-item-total {
    margin-left: auto;
    text-align: right;
}

.ofc-item-total span {
    display: block;
    font-size: 0.6875rem;
    color: #64748B;
    font-weight: 600;
}

.ofc-item-total strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
}

.ofc-summary {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 1.15rem 1.2rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    position: sticky;
    top: 1rem;
}

.ofc-summary h2 {
    font-family: var(--ui-font-display);
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.85rem;
    color: #0F172A;
}

.ofc-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #64748B;
    font-weight: 600;
    margin-bottom: 0.55rem;
}

.ofc-summary-row strong {
    color: #0F172A;
}

.ofc-summary-grand {
    margin-top: 0.5rem;
    padding-top: 0.7rem;
    border-top: 1px dashed #E2E8F0;
}

.ofc-summary-grand span,
.ofc-summary-grand strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
}

.ofc-btn-block {
    width: 100%;
}

.ofc-btn-primary,
.ofc-btn-checkout,
.ofc-btn-ghost,
.ofc-btn-danger-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.65rem 0.95rem;
    text-decoration: none !important;
}

.ofc-btn-primary,
.ofc-btn-checkout {
    background: #0F172A;
    border: 1px solid #0F172A;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}

.ofc-btn-primary:hover,
.ofc-btn-checkout:hover {
    background: #1E293B;
    border-color: #1E293B;
    color: #fff !important;
}

.oc-summary-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.oc-summary-product {
    margin-bottom: 0;
}

.oc-summary-line {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0F766E;
}

.ofc-btn-ghost {
    background: #fff;
    border: 1.5px solid #0F766E;
    color: #0F766E !important;
}

.ofc-btn-ghost:hover {
    background: #F0FDFA;
    color: #0F766E !important;
}

.ofc-btn-danger-ghost {
    background: #fff;
    border: 1px solid #FECACA;
    color: #DC2626 !important;
}

.ofc-btn-danger-ghost:hover {
    background: #FEF2F2;
}

.ofc-empty {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 3rem 1.5rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.ofc-empty-ico {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F0FDFA;
    color: #0F766E;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ofc-empty h2 {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.ofc-empty p {
    color: #64748B;
    margin: 0 0 1.15rem;
}

@media (max-width: 991.98px) {
    .ofc-layout {
        grid-template-columns: 1fr;
    }
    .ofc-summary {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .ofc-item {
        grid-template-columns: 72px minmax(0, 1fr);
    }
    .ofc-item-media {
        width: 72px;
        height: 72px;
    }
    .ofc-item-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .ofc-item-total {
        margin-left: 0;
        text-align: left;
    }
    .ofc-btn-checkout {
        width: 100%;
    }
}

.ob-checkout-card,
.ob-summary-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 18px;
    padding: 1.35rem 1.4rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.ob-checkout-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
    color: #0F172A;
}

.ob-checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: space-between;
    align-items: center;
}

.ob-pay-options {
    display: grid;
    gap: 0.65rem;
}

.ob-pay-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.15rem 0.65rem;
    align-items: start;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    background: #fff;
}

.ob-pay-option input {
    margin-top: 0.2rem;
}

.ob-pay-option strong {
    font-size: 0.875rem;
    color: #0F172A;
}

.ob-pay-option span {
    grid-column: 2;
    font-size: 0.75rem;
    color: #64748B;
}

.ob-pay-option.is-active {
    border-color: #14B8A6;
    background: #F0FDFA;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}

.ob-section-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 0.75rem;
}

.ob-section-label i {
    color: #0D9488;
}

.ob-addr-list {
    display: grid;
    gap: 0.65rem;
}

.ob-addr-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.65rem;
    align-items: start;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    cursor: pointer;
    background: #fff;
    margin: 0;
}

.ob-addr-card input {
    margin-top: 0.25rem;
}

.ob-addr-card.is-active {
    border-color: #14B8A6;
    background: #F0FDFA;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}

.ob-addr-card--new {
    border-style: dashed;
}

.ob-addr-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.ob-addr-card-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ob-addr-card-top strong {
    font-size: 0.875rem;
    color: #0F172A;
}

.ob-addr-default {
    font-style: normal;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #CCFBF1;
    color: #0F766E;
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
}

.ob-addr-name {
    font-size: 0.8125rem;
    color: #334155;
    font-weight: 600;
}

.ob-addr-lines {
    font-size: 0.8125rem;
    color: #64748B;
    line-height: 1.45;
}

.ob-addr-empty {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
}

.ob-addr-empty i {
    color: #D97706;
    font-size: 1.15rem;
    margin-top: 0.15rem;
}

.ob-addr-empty strong {
    display: block;
    font-size: 0.875rem;
    color: #92400E;
}

.ob-addr-empty span {
    font-size: 0.8125rem;
    color: #B45309;
}

.ob-save-box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
}

.ob-check {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
    margin: 0;
    cursor: pointer;
}

.btn-outline-teal {
    border: 1px solid #0D9488;
    color: #0D9488;
    background: #fff;
    font-weight: 700;
    border-radius: 8px;
}

.btn-outline-teal:hover {
    background: #F0FDFA;
    color: #0F766E;
    border-color: #0F766E;
}

.ob-addr-manage {
    border-top: 1px dashed #E2E8F0;
    padding-top: 0.75rem;
}

.ob-input[readonly] {
    background: #F8FAFC;
    color: #475569;
}

.ob-summary-product {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin-bottom: 1rem;
}

.ob-summary-product img,
.ob-summary-ph {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    background: #F1F5F9;
    flex-shrink: 0;
}

.ob-summary-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 1.5rem;
}

.ob-summary-product strong {
    display: block;
    font-size: 0.9375rem;
    color: #0F172A;
}

.ob-summary-product span {
    font-size: 0.8125rem;
    color: #64748B;
}

.ob-summary-fields {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    border-top: 1px solid #F1F5F9;
}

.ob-summary-fields li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 0.8125rem;
}

.ob-summary-fields span {
    color: #64748B;
}

.ob-summary-fields strong {
    color: #0F172A;
    text-align: right;
}

.ob-summary-totals {
    display: grid;
    gap: 0.55rem;
    padding-top: 0.35rem;
}

.ob-summary-totals>div {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #64748B;
}

.ob-summary-grand {
    padding-top: 0.55rem;
    border-top: 1px dashed #E2E8F0;
}

.ob-summary-grand strong {
    font-size: 1.125rem;
    color: #0F172A;
    font-weight: 800;
}

.ob-success-hero {
    border-radius: 18px;
    border: 1px solid #BBF7D0;
    background: linear-gradient(180deg, #F0FDF4, #fff);
}

.ob-success-icon {
    font-size: 3rem;
    color: #16A34A;
    margin-bottom: 0.5rem;
}

.ob-success-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #14532D;
    margin-bottom: 0.35rem;
}

.ob-order-number {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
}

.ob-order-number span {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #15803D;
}

.ob-order-number strong {
    font-size: 1.0625rem;
    color: #14532D;
    letter-spacing: 0.02em;
}

@media (max-width: 767.98px) {
    .ob-steps {
        grid-template-columns: 1fr;
    }
    .ob-form-grid {
        grid-template-columns: 1fr;
    }
    .ob-checkout-actions {
        flex-direction: column-reverse;
    }
    .ob-checkout-actions .btn {
        width: 100%;
    }
}

.catalog-sub-sidebar {
    display: flex;
    flex-direction: column;
}

.catalog-page--browse .catalog-sub-sidebar {
    max-height: calc(100vh - 72px);
}

.catalog-sub-sidebar:not(.cat-page-sidebar) .catalog-sub-filter-nav {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
}

.catalog-page--browse .catalog-sidebar-head,
.catalog-page--browse .catalog-sidebar-search {
    flex-shrink: 0;
}

.cat-page-sidebar-head {
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid)) !important;
}

.cat-page-sidebar-brand {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.cat-page-sidebar-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 204, 0, 0.2);
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cat-page-sidebar-cta {
    margin: 0.75rem;
    padding: 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ui-navy), var(--ui-navy-mid));
    color: #fff;
    text-align: center;
    flex-shrink: 0;
}

.cat-page-sidebar-cta-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    border-radius: 50%;
    background: rgba(255, 204, 0, 0.2);
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.cat-page-sidebar-cta h3 {
    font-size: 0.875rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: #fff !important;
}

.cat-page-sidebar-cta p {
    font-size: 0.6875rem;
    opacity: 0.85;
    margin: 0 0 0.75rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88) !important;
}

.cat-page-sidebar-help {
    margin: 0 0.75rem 0.75rem;
    padding: 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    flex-shrink: 0;
}

.cat-page-sidebar-help h3 {
    font-size: 0.875rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.cat-page-sidebar-help p {
    font-size: 0.6875rem;
    color: var(--ui-text-muted) !important;
    margin: 0 0 0.65rem;
    line-height: 1.4;
}

.catalog-page--browse .catalog-sidebar-foot {
    margin-top: 0.25rem;
}

.cat-page-sidebar-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ui-navy);
    text-decoration: none;
}

.cat-page-sidebar-help-btn:hover {
    color: var(--ui-primary);
}


/* Category page hero */

.cat-page-hero {
    min-height: 180px;
    margin-bottom: 0;
}

.cat-page-hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 58, 95, 0.82));
}

.cat-page-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    color: #fff;
}

.cat-page-hero-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 280px;
}

.cat-page-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(234, 88, 12, 0.25);
    border: 1px solid rgba(234, 88, 12, 0.45);
    color: #FDBA74;
    font-size: 1.5rem;
}

.cat-page-hero-title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.35rem;
}

.cat-page-hero-title-row h1 {
    font-size: 1.75rem !important;
    font-weight: 800;
    margin: 0 !important;
    color: #fff !important;
}

.cat-page-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #EA580C;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.cat-page-hero-tagline {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin: 0;
    max-width: 520px;
}

.cat-page-hero .cat-page-hero-tagline,
.cat-page-hero #catalogHeroDesc {
    color: rgba(255, 255, 255, 0.92) !important;
    margin-bottom: 0;
}

.cat-page-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.cat-page-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    min-width: 140px;
}

.cat-page-hero-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 204, 0, 0.2);
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cat-page-hero-feature strong {
    display: block;
    font-size: 0.75rem;
    line-height: 1.2;
}

.cat-page-hero-feature small {
    display: block;
    font-size: 0.625rem;
    opacity: 0.8;
}


/* Category hub visual */

.cat-page-hub-head {
    align-items: center !important;
}

.cat-page-hub-visual {
    position: relative;
    width: 180px;
    height: 120px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--ui-shadow-sm);
}

.cat-page-hub-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-page-hub-visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, #E2E8F0, #F8FAFC);
    font-size: 2.25rem;
    color: #64748B;
}

.cat-page-hub-visual-hint {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #94A3B8;
}

.cat-page-hub-count {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.625rem !important;
}

.cat-page-sub-desc {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    margin: 0 0 0.35rem;
    line-height: 1.4;
}

.cat-page-l3-empty {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 10px;
    padding: 0.65rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.cat-page-info-bar {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 16px;
}

.cat-page-info-item {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.cat-page-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cat-page-info-item strong {
    display: block;
    font-size: 0.8125rem;
    margin-bottom: 0.15rem;
}

.cat-page-info-item p {
    font-size: 0.6875rem;
    color: var(--ui-text-muted);
    margin: 0;
    line-height: 1.4;
}

.cat-page-stats-bar {
    background: linear-gradient(135deg, #EFF6FF, #F0F9FF);
    border-top: 1px solid var(--ui-border-light);
    padding: 0.9rem 0;
}

.cat-page-stat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    justify-content: center;
    text-align: left;
    min-width: 0;
}

.cat-page-stat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 10px;
    background: #fff;
    color: #2563EB;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    line-height: 0;
    box-sizing: border-box;
    box-shadow: var(--ui-shadow-sm);
}

.cat-page-stat-icon i {
    display: block;
    font-size: 0.875rem;
    line-height: 1;
    width: 1em;
    height: 1em;
    margin: 0;
    padding: 0;
    text-align: center;
}

.cat-page-stat > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
}

.cat-page-stat strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ui-navy);
    line-height: 1.15;
}

.cat-page-stat span:not(.cat-page-stat-icon) {
    display: block;
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    line-height: 1.25;
}

@media (max-width: 991.98px) {
    .cat-page-hero-inner {
        padding: 1.5rem 1rem;
    }
    .cat-page-hero-features {
        justify-content: flex-start;
        width: 100%;
    }
    .cat-page-hub-visual {
        display: none;
    }
    .cat-page-stat {
        padding: 0.65rem;
    }
}


/* ---- All Categories Home ---- */

.cat-all-hero {
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 55%, #0F172A 100%);
    overflow: hidden;
    margin-bottom: 0;
}

.cat-all-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.08), transparent 45%);
    pointer-events: none;
}

.cat-all-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 0;
    color: #fff;
}

.cat-all-hero-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.cat-all-hero-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFCC00, #F59E0B);
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 204, 0, 0.25);
}

.cat-all-hero-left h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: #fff !important;
}

.cat-all-hero-left p {
    margin: 0;
    opacity: 0.85;
    font-size: 0.9375rem;
}

.cat-all-hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.cat-all-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
    min-width: 150px;
}

.cat-all-hero-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 204, 0, 0.18);
    color: #FFCC00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.cat-all-hero-feature strong {
    display: block;
    font-size: 0.6875rem;
    line-height: 1.2;
}

.cat-all-hero-feature small {
    display: block;
    font-size: 0.5625rem;
    opacity: 0.75;
}

.cat-all-hero-visual {
    position: relative;
    width: 120px;
    height: 100px;
    flex-shrink: 0;
}

.cat-all-hero-visual-box {
    position: absolute;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.cat-all-hero-visual-box--1 {
    width: 52px;
    height: 52px;
    background: #EA580C;
    top: 0;
    left: 0;
    font-size: 1.25rem;
}

.cat-all-hero-visual-box--2 {
    width: 44px;
    height: 44px;
    background: #2563EB;
    top: 18px;
    right: 0;
    font-size: 1rem;
}

.cat-all-hero-visual-box--3 {
    width: 40px;
    height: 40px;
    background: #16A34A;
    bottom: 0;
    left: 28px;
    font-size: 0.9rem;
}

.catalog-page--home {
    padding-top: 1.5rem;
    max-width: 1320px;
}

.cat-all-home-head {
    margin-bottom: 1.5rem;
}

.cat-all-home-search {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    min-width: 280px;
}

.cat-all-home-search .catalog-home-search {
    flex: 1;
    max-width: none;
}

.cat-all-search-btn {
    width: 44px;
    border: none;
    border-radius: 10px;
    background: var(--ui-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.15s;
}

.cat-all-search-btn:hover {
    background: var(--ui-navy-mid);
}

.cat-all-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--ui-border-light);
    background: #fff;
    text-decoration: none;
    color: var(--ui-text);
    height: 100%;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: var(--ui-shadow-sm);
}

.cat-all-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
    color: var(--ui-text);
}

.cat-all-card--green:hover {
    border-color: #86EFAC;
}

.cat-all-card--blue:hover {
    border-color: #93C5FD;
}

.cat-all-card--gold:hover {
    border-color: #FCD34D;
}

.cat-all-card-count {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    min-width: 28px;
    height: 28px;
    padding: 0 0.4rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-all-card-icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 2px dashed #CBD5E1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: #fff;
}

.cat-all-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cat-icon-bg, #F1F5F9);
    color: var(--cat-icon-color, #64748B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.cat-all-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cat-all-card-body strong {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.cat-all-card-body small {
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    line-height: 1.45;
    margin-bottom: 1rem;
    min-height: 2.2em;
}

.cat-all-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid currentColor;
    background: transparent;
    transition: background 0.15s, color 0.15s;
}

.cat-all-card:hover .cat-all-card-btn {
    background: currentColor;
    color: #fff !important;
}

.cat-all-stats {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #F8FAFC, #EFF6FF);
    border: 1px solid var(--ui-border-light);
    border-radius: 16px;
    overflow: hidden;
}

.cat-all-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem;
    height: 100%;
    border-right: 1px solid var(--ui-border-light);
}

.cat-all-stats .col-lg-3:last-child .cat-all-stat,
.cat-all-stats .col-6:nth-child(2n) .cat-all-stat {
    border-right: none;
}

.cat-all-stat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    border-radius: 10px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    line-height: 0;
    box-sizing: border-box;
    background: #fff;
    box-shadow: var(--ui-shadow-sm);
}

.cat-all-stat-icon i {
    display: block;
    font-size: 0.875rem;
    line-height: 1;
    width: 1em;
    height: 1em;
    margin: 0;
    padding: 0;
    text-align: center;
}

.cat-all-stat--green .cat-all-stat-icon {
    color: #16A34A;
}

.cat-all-stat--blue .cat-all-stat-icon {
    color: #2563EB;
}

.cat-all-stat--purple .cat-all-stat-icon {
    color: #9333EA;
}

.cat-all-stat--orange .cat-all-stat-icon {
    color: #EA580C;
}

.cat-all-stat > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
}

.cat-all-stat strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--ui-navy);
    line-height: 1.15;
}

.cat-all-stat span:not(.cat-all-stat-icon) {
    display: block;
    font-size: 0.75rem;
    color: var(--ui-text-muted);
    line-height: 1.25;
}

@media (max-width: 991.98px) {
    .cat-all-hero-inner {
        grid-template-columns: 1fr;
        padding: 1.5rem 0;
    }
    .cat-all-hero-features {
        grid-template-columns: 1fr 1fr;
    }
    .cat-all-hero-visual {
        display: none;
    }
    .cat-all-home-search {
        min-width: 100%;
        width: 100%;
    }
    .cat-all-stat {
        border-right: none;
        border-bottom: 1px solid var(--ui-border-light);
    }
}


/* ---- Homepage Pro Layout ---- */

.home-pro {
    position: relative;
    background: linear-gradient(135deg, #0B1220 0%, var(--ui-navy) 42%, #1E3A5F 100%);
    background-image: var(--home-hero-bg, none);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.home-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 18, 32, 0.94) 0%, rgba(15, 23, 42, 0.88) 55%, rgba(30, 58, 95, 0.82) 100%);
    pointer-events: none;
}

.home-pro-map {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.35) 0, transparent 45%), radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.25) 0, transparent 40%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='1.5' fill='%23ffffff'/%3E%3C/svg%3E");
    pointer-events: none;
}

.home-pro-container,
.home-pro-row {
    position: relative;
    z-index: 1;
}

.home-pro-main {
    display: flex;
    flex-direction: column;
}

.home-pro-aside {
    display: flex;
    flex-direction: column;
}

.home-pro-hero-col {
    padding: 2rem 1rem 1.25rem 1.25rem;
}

.home-pro-aside-top {
    padding: 1.5rem 1.25rem 1rem 0.5rem;
}

.home-pro-cards-col {
    padding: 0 1rem 1.5rem 1.25rem;
}

.home-pro-cards-aside {
    padding: 0 1.25rem 1.5rem 0.75rem;
}

.home-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 204, 0, 0.12);
    border: 1px solid rgba(255, 204, 0, 0.28);
    color: var(--ui-gold);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.home-pro-title {
    color: #fff !important;
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.85rem;
    max-width: 640px;
}

.home-pro-title-accent {
    display: inline;
    color: var(--ui-gold);
}

.home-pro-subtitle {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.9375rem;
    line-height: 1.55;
    max-width: 560px;
    margin: 0 0 1.35rem;
}

.home-pro-search {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    padding: 0.4rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    max-width: 680px;
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 20;
}

.home-pro-search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    outline: none;
    padding: 0.85rem 1rem;
    font-size: 0.9375rem;
    border-radius: 10px;
    background: transparent;
}

.home-pro-cat-filter {
    position: relative;
    flex: 0 0 auto;
    min-width: 168px;
    border-right: 1px solid #E2E8F0;
}

.home-pro-cat-trigger {
    width: 100%;
    height: 100%;
    min-height: 46px;
    border: 0;
    background: #F8FAFC;
    padding: 0.75rem 2.1rem 0.75rem 0.85rem;
    font-size: 0.84375rem;
    font-weight: 700;
    color: var(--ui-navy);
    text-align: left;
    cursor: pointer;
    position: relative;
    border-radius: 10px 0 0 10px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.home-pro-cat-grid-icon {
    color: #64748B;
    font-size: 0.8rem;
}

.home-pro-cat-trigger i.fa-chevron-down {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    color: #64748B;
    transition: transform 0.15s;
}

.home-pro-cat-filter.is-open .home-pro-cat-trigger {
    background: #EFF6FF;
    color: #1D4ED8;
}

.home-pro-cat-filter.is-open .home-pro-cat-trigger i.fa-chevron-down {
    transform: translateY(-50%) rotate(180deg);
    color: #1D4ED8;
}

.home-pro-cat-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: -1px;
    right: -1px;
    min-width: 220px;
    max-height: 280px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.16);
    padding: 0.35rem;
    z-index: 40;
}

.home-pro-cat-menu[hidden] {
    display: none !important;
}

.home-pro-cat-option {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 0.65rem 0.8rem;
    border-radius: 8px;
    font-size: 0.84375rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: background 0.12s, color 0.12s;
}

.home-pro-cat-option:hover {
    background: #F1F5F9;
    color: var(--ui-navy);
}

.home-pro-cat-option.is-active {
    background: #2563EB;
    color: #fff;
}

.home-pro-search-btn {
    flex: 0 0 auto;
    border: none;
    border-radius: 10px;
    background: var(--ui-gold);
    color: var(--ui-navy);
    font-weight: 800;
    font-size: 0.875rem;
    padding: 0.85rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: background 0.15s, transform 0.15s;
    margin-left: 0.15rem;
}

.home-pro-search-btn:hover {
    background: #FFD633;
    color: var(--ui-navy);
}

.home-pro-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem 1.5rem;
    margin-bottom: 0.5rem;
}

.home-pro-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8125rem;
    min-width: 140px;
}

.home-pro-trust-item i {
    color: var(--ui-gold);
    margin-top: 0.15rem;
    font-size: 1rem;
}

.home-pro-trust-item strong {
    display: block;
    font-weight: 700;
    line-height: 1.2;
}

.home-pro-trust-item small {
    display: block;
    opacity: 0.75;
    font-size: 0.6875rem;
}

/* ---- Hero visual (right panel) ---- */
.home-pro-visual {
    position: relative;
    min-height: 460px;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.home-pro-visual-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    right: 12%;
    top: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.28) 0%, rgba(59, 130, 246, 0.12) 42%, transparent 70%);
    filter: blur(4px);
    animation: homeProGlow 6s ease-in-out infinite alternate;
}

.home-pro-visual-globe {
    position: absolute;
    width: 260px;
    height: 260px;
    right: 16%;
    top: 22%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.12), transparent 40%),
        radial-gradient(circle at 55% 55%, rgba(255, 204, 0, 0.35), transparent 28%),
        linear-gradient(145deg, #0B1B3A 0%, #16325F 55%, #0A162E 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 10px rgba(255, 204, 0, 0.05),
        0 0 40px rgba(37, 99, 235, 0.25),
        inset 0 0 40px rgba(0, 0, 0, 0.35);
}

.home-pro-visual-globe::after {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 204, 0, 0.35);
    opacity: 0.7;
}

.home-pro-float-cards {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.home-pro-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff;
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    min-width: 210px;
    max-width: 250px;
    animation: homeProFloat 4.5s ease-in-out infinite;
}

.home-pro-float-card strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.home-pro-float-card small {
    display: block;
    font-size: 0.6875rem;
    color: #64748B;
    line-height: 1.3;
    margin-top: 0.12rem;
}

.home-pro-float-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.home-pro-float-icon--blue {
    background: #DBEAFE;
    color: #1D4ED8;
}

.home-pro-float-icon--green {
    background: #DCFCE7;
    color: #15803D;
}

.home-pro-float-icon--purple {
    background: #EDE9FE;
    color: #6D28D9;
}

.home-pro-float-card--leads {
    top: 8%;
    left: 4%;
    animation-delay: 0s;
}

.home-pro-float-card--shop {
    top: 8%;
    right: 2%;
    animation-delay: 0.6s;
}

.home-pro-float-card--biz {
    top: 28%;
    right: 0;
    animation-delay: 1.2s;
}

.home-pro-devices {
    position: absolute;
    inset: auto 0 4% 0;
    height: 58%;
    z-index: 2;
}

.home-pro-phone {
    position: absolute;
    left: 10%;
    bottom: 8%;
    width: 118px;
    height: 230px;
    background: #0B1220;
    border-radius: 22px;
    border: 3px solid #1E293B;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    padding: 10px 8px 8px;
    z-index: 3;
    animation: homeProFloat 5s ease-in-out infinite;
}

.home-pro-phone-notch {
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: #334155;
    margin: 0 auto 8px;
}

.home-pro-phone-screen {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF2FF 100%);
    border-radius: 14px;
    height: calc(100% - 14px);
    padding: 0.55rem 0.45rem;
}

.home-pro-phone-brand {
    font-size: 0.55rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 0.35rem;
}

.home-pro-phone-banner {
    background: linear-gradient(90deg, #F59E0B, #FBBF24);
    color: #0F172A;
    font-size: 0.45rem;
    font-weight: 800;
    border-radius: 6px;
    padding: 0.35rem 0.3rem;
    text-align: center;
    margin-bottom: 0.45rem;
}

.home-pro-phone-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
    margin-bottom: 0.45rem;
}

.home-pro-phone-cats span {
    aspect-ratio: 1;
    border-radius: 50%;
    background: #DBEAFE;
}

.home-pro-phone-cats span:nth-child(2) { background: #DCFCE7; }
.home-pro-phone-cats span:nth-child(3) { background: #FEF3C7; }
.home-pro-phone-cats span:nth-child(4) { background: #EDE9FE; }
.home-pro-phone-cats span:nth-child(5) { background: #FCE7F3; }
.home-pro-phone-cats span:nth-child(6) { background: #E0E7FF; }

.home-pro-phone-suppliers {
    font-size: 0.45rem;
    font-weight: 700;
    color: #475569;
    background: #fff;
    border-radius: 6px;
    padding: 0.35rem;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.home-pro-laptop {
    position: absolute;
    right: 6%;
    bottom: 6%;
    width: 250px;
    z-index: 2;
    animation: homeProFloat 5.5s ease-in-out infinite reverse;
}

.home-pro-laptop-screen {
    background: #0F172A;
    border: 3px solid #1E293B;
    border-radius: 10px 10px 4px 4px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.home-pro-laptop-bar {
    background: #1E293B;
    color: #E2E8F0;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.35rem 0.55rem;
}

.home-pro-laptop-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    padding: 0.55rem;
    background: linear-gradient(180deg, #F8FAFC, #EEF2FF);
    min-height: 110px;
}

.home-pro-laptop-stat {
    background: #fff;
    border-radius: 8px;
    padding: 0.4rem 0.45rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.home-pro-laptop-stat em {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0F172A;
}

.home-pro-laptop-stat small {
    font-size: 0.55rem;
    color: #64748B;
}

.home-pro-laptop-chart {
    grid-column: 1 / -1;
    height: 42px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, transparent 8%, #93C5FD 8% 14%, transparent 14% 22%, #86EFAC 22% 28%, transparent 28% 36%, #FCD34D 36% 42%, transparent 42% 50%, #C4B5FD 50% 56%, transparent 56%),
        #fff;
    background-size: 100% 70%, 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom, center;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.home-pro-laptop-base {
    height: 10px;
    margin: 0 -8px;
    background: linear-gradient(180deg, #334155, #1E293B);
    border-radius: 0 0 10px 10px;
}

.home-pro-delivery {
    position: absolute;
    left: 38%;
    bottom: 4%;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
}

.home-pro-boxes {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
}

.home-pro-boxes span {
    width: 22px;
    height: 18px;
    background: linear-gradient(145deg, #D97706, #92400E);
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.home-pro-boxes span:nth-child(2) {
    height: 24px;
    width: 24px;
}

.home-pro-boxes span:nth-child(3) {
    height: 16px;
}

.home-pro-truck {
    background: #fff;
    border-radius: 8px;
    padding: 0.35rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    color: #1D4ED8;
}

.home-pro-truck i {
    font-size: 1.1rem;
}

.home-pro-truck small {
    font-size: 0.45rem;
    font-weight: 800;
    color: #DC2626;
    letter-spacing: 0.02em;
}

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

@keyframes homeProGlow {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.06); }
}

.home-pro-categories {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem 1.35rem 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.home-pro-categories-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
    padding: 0 0.15rem;
}

.home-pro-categories-head h2 {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0;
    color: var(--ui-navy) !important;
}

.home-pro-view-all {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1D4ED8;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-pro-view-all:hover {
    color: var(--ui-navy);
}

.home-pro-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding: 0 0.1rem;
    flex: 1;
    align-content: start;
}

.home-pro-cat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border: 1px solid #E8EEF5;
    border-radius: 14px;
    text-decoration: none;
    color: var(--ui-text);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s, background 0.15s;
    min-height: 72px;
}

.home-pro-cat-card:hover {
    border-color: #BFDBFE;
    background: #F8FBFF;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
    color: var(--ui-navy);
}

.home-pro-cat-popular {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #DCFCE7;
    color: #15803D;
    font-size: 0.5625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
}

.home-pro-cat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--cat-icon-bg, #F1F5F9);
    color: var(--cat-icon-color, var(--ui-navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.home-pro-cat-body {
    min-width: 0;
    padding-right: 0.25rem;
}

.home-pro-cat-body strong {
    display: block;
    font-size: 0.84375rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.home-pro-cat-body small {
    display: block;
    font-size: 0.71875rem;
    color: #64748B;
}

.home-pro-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: #F8FAFC;
    border-top: 1px solid #EEF2F7;
    margin: 0 -1.35rem;
    margin-top: auto;
    padding: 0.85rem 0.75rem;
}

.home-pro-stat {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.25rem 0.65rem;
    border-right: 1px solid #E2E8F0;
    min-width: 0;
}

.home-pro-stat:last-child {
    border-right: none;
}

.home-pro-stat-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 9px;
    background: #fff;
    border: 1px solid #E2E8F0;
    color: #1D4ED8;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    line-height: 0;
    box-sizing: border-box;
}

.home-pro-stat-icon i {
    display: block;
    font-size: 0.8125rem;
    line-height: 1;
    width: 1em;
    height: 1em;
    margin: 0;
    padding: 0;
    text-align: center;
}

.home-pro-stat > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
}

.home-pro-stat strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--ui-navy);
    line-height: 1.15;
    white-space: nowrap;
}

.home-pro-stat span:not(.home-pro-stat-icon) {
    display: block;
    font-size: 0.6875rem;
    color: var(--ui-text-muted);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-pro-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    height: 100%;
    min-height: 100%;
}

.home-pro-req-card {
    background: linear-gradient(145deg, #0B1634 0%, #152248 55%, #1E3A6E 100%);
    border-radius: 18px;
    padding: 1.5rem 1.4rem 1.25rem;
    color: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-pro-req-card h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: #fff !important;
    letter-spacing: -0.01em;
}

.home-pro-req-card>p {
    font-size: 0.8125rem;
    opacity: 0.88;
    margin: 0 0 1rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88) !important;
}

.home-pro-req-input {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    font-size: 0.84375rem;
    resize: vertical;
    min-height: 108px;
    margin-bottom: 0.9rem;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.home-pro-req-btn {
    font-weight: 800;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
}

.home-pro-req-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.home-pro-req-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.12rem;
    padding: 0.45rem 0.25rem 0.4rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 0;
}

.home-pro-req-feature-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    margin-bottom: 0.05rem;
    box-shadow: none;
}

.home-pro-req-feature-icon i {
    font-size: 0.5rem;
    line-height: 1;
}

.home-pro-req-feature-icon--blue {
    background: rgba(59, 130, 246, 0.18);
    color: #60A5FA;
    box-shadow: none;
}

.home-pro-req-feature-icon--green {
    background: rgba(34, 197, 94, 0.18);
    color: #4ADE80;
    box-shadow: none;
}

.home-pro-req-feature-icon--purple {
    background: rgba(168, 85, 247, 0.18);
    color: #C084FC;
    box-shadow: none;
}

.home-pro-req-feature strong {
    display: block;
    font-size: 0.5625rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    max-width: 100%;
}

.home-pro-req-feature small {
    display: block;
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.15;
}

.home-pro-join-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.55rem 1.4rem 1.35rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(226, 232, 240, 0.9);
    display: flex;
    flex-direction: column;
}

.home-pro-join-card h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    margin: 0 0 1.15rem;
    color: var(--ui-navy) !important;
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.home-pro-join-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1.15rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid #EEF2F7;
}

.home-pro-join-stat {
    text-align: center;
    padding: 0.15rem 0.1rem;
}

.home-pro-join-stat-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.45rem;
    border-radius: 10px;
    background: linear-gradient(145deg, #F8FAFC, #EEF2F7);
    color: #1D4ED8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    border: 1px solid #E2E8F0;
}

.home-pro-join-stat strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--ui-navy);
    line-height: 1.2;
    margin-bottom: 0.15rem;
}

.home-pro-join-stat small {
    display: block;
    font-size: 0.6875rem;
    color: #64748B;
    font-weight: 500;
}

.home-pro-join-card form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-pro-phone-label {
    display: block;
    font-size: 0.75rem;
    color: #64748B;
    margin-bottom: 0.55rem;
    font-weight: 500;
    line-height: 1.4;
}

.home-pro-phone-wrap {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #D0D7E2;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.9rem;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.home-pro-phone-wrap:focus-within {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.home-pro-phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.9rem;
    background: #F8FAFC;
    border-right: 1px solid #E2E8F0;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ui-navy);
}

.home-pro-phone-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.85rem 0.95rem;
    font-size: 0.875rem;
    min-width: 0;
    background: transparent;
}

.home-pro-phone-input::placeholder {
    color: #94A3B8;
}

.home-pro-join-btn {
    font-weight: 800;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    margin-bottom: 1.1rem;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    box-shadow: 0 8px 20px rgba(11, 22, 52, 0.18);
    transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.home-pro-join-btn:hover {
    filter: brightness(1.05);
    box-shadow: 0 10px 24px rgba(11, 22, 52, 0.22);
}

.home-pro-join-btn i {
    font-size: 0.75rem;
    transition: transform 0.15s;
}

.home-pro-join-btn:hover i {
    transform: translateX(2px);
}

.home-pro-join-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.85rem;
    justify-content: center;
    padding-top: 0.15rem;
}

.home-pro-join-features span {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748B;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-pro-join-features i {
    color: var(--ui-gold-dark);
    font-size: 0.7rem;
}

@media (min-width: 1200px) {
    .home-pro-cat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .home-pro-hero-col,
    .home-pro-aside-top,
    .home-pro-cards-col,
    .home-pro-cards-aside {
        padding: 1.25rem 0.75rem;
    }
    .home-pro-cards-col {
        padding-top: 0;
        padding-bottom: 0.5rem;
    }
    .home-pro-cards-aside {
        padding-top: 0.5rem;
    }
    .home-pro-categories {
        flex: none;
        margin: 0 0 1rem;
        border-radius: 16px;
    }
    .home-pro-cat-grid {
        flex: none;
    }
    .home-pro-req-card {
        height: auto;
        margin-top: 0;
    }
    .home-pro-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin: 0 -1.35rem;
    }
    .home-pro-stat:nth-child(2) {
        border-right: none;
    }
    .home-pro-stat:nth-child(1),
    .home-pro-stat:nth-child(2) {
        border-bottom: 1px solid var(--ui-border-light);
    }
}

@media (max-width: 575.98px) {
    .home-pro-search {
        flex-direction: column;
        padding: 0.55rem;
        flex-wrap: wrap;
    }
    .home-pro-cat-filter {
        border-right: none;
        border-top: 1px solid #E2E8F0;
        min-width: 0;
        width: 100%;
        order: -1;
    }
    .home-pro-cat-trigger {
        border-radius: 8px;
        min-height: 44px;
    }
    .home-pro-cat-menu {
        left: 0;
        right: 0;
        min-width: 0;
    }
    .home-pro-search-btn {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 0.35rem;
    }
    .home-pro-cat-grid {
        grid-template-columns: 1fr;
    }
    .home-pro-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        padding: 0.75rem;
        margin: 0;
        border-top: 1px solid #EEF2F7;
        background: #F8FAFC;
    }
    .home-pro-stat {
        border-right: none;
        border-bottom: none;
        padding: 0.7rem 0.65rem;
        border-radius: 12px;
        background: #fff;
        border: 1px solid #E2E8F0;
        align-items: flex-start;
    }
    .home-pro-stat:nth-child(1),
    .home-pro-stat:nth-child(2) {
        border-bottom: 1px solid #E2E8F0;
    }
    .home-pro-stat > div span:not(.home-pro-stat-icon) {
        white-space: normal;
    }
}


/* ---- Homepage How It Works ---- */

.home-how {
    padding: 4rem 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
}

.home-how-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.home-how-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 204, 0, 0.35);
    background: rgba(255, 204, 0, 0.08);
    color: var(--ui-gold-dark);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.home-how-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--ui-navy) !important;
    margin: 0 0 0.5rem;
}

.home-how-head p {
    margin: 0;
    color: var(--ui-text-muted) !important;
    font-size: 0.9375rem;
}

.home-how-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.home-how-step {
    position: relative;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 16px;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-how-step-num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
}

.home-how-step--blue .home-how-step-num {
    color: #2563EB;
}

.home-how-step--green .home-how-step-num {
    color: #16A34A;
}

.home-how-step--orange .home-how-step-num {
    color: #EA580C;
}

.home-how-step-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0.5rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-how-step-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
}

.home-how-step--blue .home-how-step-icon-ring {
    background: #EFF6FF;
    border-top-color: #93C5FD;
    border-right-color: #BFDBFE;
    transform: rotate(-35deg);
}

.home-how-step--green .home-how-step-icon-ring {
    background: #F0FDF4;
    border-top-color: #86EFAC;
    border-right-color: #BBF7D0;
    transform: rotate(-35deg);
}

.home-how-step--orange .home-how-step-icon-ring {
    background: #FFF7ED;
    border-top-color: #FDBA74;
    border-right-color: #FED7AA;
    transform: rotate(-35deg);
}

.home-how-step-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
}

.home-how-step--blue .home-how-step-icon i {
    color: #2563EB;
}

.home-how-step--green .home-how-step-icon i {
    color: #16A34A;
}

.home-how-step--orange .home-how-step-icon i {
    color: #EA580C;
}

.home-how-step h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ui-navy) !important;
    margin: 0 0 0.5rem;
}

.home-how-step p {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--ui-text-muted) !important;
    margin: 0 0 1rem;
    max-width: 260px;
}

.home-how-step-accent {
    display: block;
    width: 2rem;
    height: 3px;
    border-radius: 999px;
    margin-top: auto;
}

.home-how-step--blue .home-how-step-accent {
    background: #2563EB;
}

.home-how-step--green .home-how-step-accent {
    background: #16A34A;
}

.home-how-step--orange .home-how-step-accent {
    background: #EA580C;
}

.home-how-step--has-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 1.5rem;
    height: 2px;
    background: #CBD5E1;
    transform: translateY(-50%);
    z-index: 2;
}

.home-how-step--has-link::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.65rem;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #CBD5E1;
    transform: translateY(-50%);
    z-index: 2;
}

.home-how-trust {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    overflow: hidden;
}

.home-how-trust-item {
    flex: 1 1 180px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
    min-width: 0;
}

.home-how-trust-divider {
    width: 1px;
    background: var(--ui-border-light);
    flex-shrink: 0;
    align-self: stretch;
}

.home-how-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.home-how-trust-item--blue .home-how-trust-icon {
    background: #EFF6FF;
    color: #2563EB;
}

.home-how-trust-item--green .home-how-trust-icon {
    background: #F0FDF4;
    color: #16A34A;
}

.home-how-trust-item--gold .home-how-trust-icon {
    background: #FEF3C7;
    color: #D97706;
}

.home-how-trust-item--purple .home-how-trust-icon {
    background: #F3E8FF;
    color: #9333EA;
}

.home-how-trust-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--ui-navy);
    line-height: 1.25;
}

.home-how-trust-item > div span {
    display: block;
    font-size: 0.6875rem;
    color: var(--ui-text-muted);
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .home-how {
        padding: 3rem 0;
    }
    .home-how-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .home-how-step--has-link::before,
    .home-how-step--has-link::after {
        display: none;
    }
    .home-how-trust {
        flex-direction: column;
    }
    .home-how-trust-divider {
        width: 100%;
        height: 1px;
    }
}

@media (max-width: 575.98px) {
    .home-how-trust-item {
        flex: 1 1 100%;
    }
}


/* ---- Homepage Grow CTA ---- */

.home-grow {
    position: relative;
    padding: 4.5rem 0 4rem;
    background: linear-gradient(135deg, #0B1220 0%, var(--ui-navy) 45%, #1E3A5F 100%);
    overflow: hidden;
}

.home-grow-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 50% 40% at 85% 50%, rgba(255, 204, 0, 0.06) 0%, transparent 60%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='1.2' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/svg%3E");
    opacity: 0.9;
}

.home-grow-bg::before {
    content: '';
    position: absolute;
    left: -5%;
    bottom: 10%;
    width: 45%;
    height: 60%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 200'%3E%3Cpath d='M0 120 Q100 40 200 100 T400 80' fill='none' stroke='%23FFCC00' stroke-opacity='0.12' stroke-width='2'/%3E%3Cpath d='M0 150 Q120 70 240 130 T400 110' fill='none' stroke='%23FFCC00' stroke-opacity='0.08' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center/contain;
}

.home-grow-inner {
    position: relative;
    z-index: 1;
}

.home-grow-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.home-grow-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff !important;
    margin: 0 0 0.85rem;
}

.home-grow-title-accent {
    display: block;
    color: var(--ui-gold);
    margin-top: 0.15rem;
}

.home-grow-subtitle {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 1.75rem;
}

.home-grow-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.home-grow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1.35rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    white-space: nowrap;
}

.home-grow-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.home-grow-btn--seller {
    background: var(--ui-gold);
    color: var(--ui-navy);
    box-shadow: 0 8px 24px rgba(255, 204, 0, 0.25);
}

.home-grow-btn--seller:hover {
    background: #FFD633;
    color: var(--ui-navy);
}

.home-grow-btn--buyer {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.home-grow-btn--buyer:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
}

.home-grow-btn-arrow {
    font-size: 0.75rem;
    opacity: 0.85;
}

.home-grow-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0;
}

.home-grow-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
}

.home-grow-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 204, 0, 0.15);
    color: var(--ui-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    flex-shrink: 0;
}

.home-grow-stat-text strong {
    color: #fff;
    font-weight: 800;
    margin-right: 0.25rem;
}

.home-grow-stat-divider {
    width: 1px;
    height: 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.home-grow-features {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    margin-top: 2.5rem;
    margin-bottom: -3.5rem;
    overflow: hidden;
}

.home-grow-feature {
    flex: 1 1 200px;
    text-align: center;
    padding: 1.5rem 1.15rem 1.35rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-grow-feature-divider {
    width: 1px;
    background: var(--ui-border-light);
    flex-shrink: 0;
    align-self: stretch;
}

.home-grow-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
}

.home-grow-feature--orange .home-grow-feature-icon {
    background: #FFF7ED;
    color: #EA580C;
}

.home-grow-feature--green .home-grow-feature-icon {
    background: #F0FDF4;
    color: #16A34A;
}

.home-grow-feature--blue .home-grow-feature-icon {
    background: #EFF6FF;
    color: #2563EB;
}

.home-grow-feature--gold .home-grow-feature-icon {
    background: #FEF3C7;
    color: #D97706;
}

.home-grow-feature h3 {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--ui-navy) !important;
    margin: 0 0 0.4rem;
}

.home-grow-feature p {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--ui-text-muted) !important;
    margin: 0 0 0.85rem;
    max-width: 220px;
}

.home-grow-feature-accent {
    display: block;
    width: 2rem;
    height: 3px;
    border-radius: 999px;
    margin-top: auto;
}

.home-grow-feature--orange .home-grow-feature-accent {
    background: #EA580C;
}

.home-grow-feature--green .home-grow-feature-accent {
    background: #16A34A;
}

.home-grow-feature--blue .home-grow-feature-accent {
    background: #2563EB;
}

.home-grow-feature--gold .home-grow-feature-accent {
    background: #D97706;
}

@media (max-width: 991.98px) {
    .home-grow {
        padding: 3.5rem 0 3.5rem;
    }
    .home-grow-feature-divider {
        display: none;
    }
    .home-grow-feature {
        border-bottom: 1px solid var(--ui-border-light);
    }
    .home-grow-feature:last-child {
        border-bottom: none;
    }
    .home-grow-stat-divider {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .home-grow-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .home-grow-btn {
        justify-content: center;
    }
    .home-grow-stats {
        flex-direction: column;
        gap: 0.35rem;
    }
}


/* ---- Homepage Why Choose ---- */

.home-why {
    padding: 4rem 0 4.5rem;
    background: #fff;
}

.home-why-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.home-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ui-gold-dark);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.home-why-badge-line {
    display: block;
    width: 2rem;
    height: 2px;
    background: rgba(255, 204, 0, 0.45);
    border-radius: 999px;
}

.home-why-head h2 {
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 800;
    color: var(--ui-navy) !important;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.home-why-head p {
    margin: 0;
    color: var(--ui-text-muted) !important;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.home-why-card-sub {
    display: block;
    font-size: 0.75rem;
    color: #94A3B8;
    margin: -0.15rem 0 0.85rem;
    line-height: 1.4;
}

.home-why-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.home-why-card {
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 16px;
    padding: 1.5rem 1.25rem 1.35rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.home-why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

.home-why-card--orange .home-why-card-icon {
    background: #FFF7ED;
    color: #EA580C;
}

.home-why-card--green .home-why-card-icon {
    background: #F0FDF4;
    color: #16A34A;
}

.home-why-card--blue .home-why-card-icon {
    background: #EFF6FF;
    color: #2563EB;
}

.home-why-card--gold .home-why-card-icon {
    background: #FEF3C7;
    color: #D97706;
}

.home-why-card h3 {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--ui-navy) !important;
    margin: 0 0 0.45rem;
}

.home-why-card p {
    font-size: 0.75rem;
    line-height: 1.55;
    color: var(--ui-text-muted) !important;
    margin: 0 0 0.85rem;
    flex: 1;
}

.home-why-card.js-trust-badge {
    cursor: pointer;
}

.home-why-card.js-trust-badge:focus-visible {
    outline: 2px solid var(--ui-primary, #0B1634);
    outline-offset: 2px;
}

.home-why-card--orange .home-why-card-accent {
    background: #EA580C;
}

.home-why-card--green .home-why-card-accent {
    background: #16A34A;
}

.home-why-card--blue .home-why-card-accent {
    background: #2563EB;
}

.home-why-card--gold .home-why-card-accent {
    background: #D97706;
}

.home-why-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ui-navy);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s, gap 0.15s;
}

.home-why-card-link i {
    font-size: 0.65rem;
    transition: transform 0.15s;
}

.home-why-card-link:hover {
    color: var(--ui-gold-dark);
    text-decoration: none;
}

.home-why-card-link:hover i {
    transform: translateX(2px);
}

.home-why-card--orange .home-why-card-link:hover {
    color: #EA580C;
}

.home-why-card--green .home-why-card-link:hover {
    color: #16A34A;
}

.home-why-card--blue .home-why-card-link:hover {
    color: #2563EB;
}

.home-why-card--gold .home-why-card-link:hover {
    color: #D97706;
}

.home-why-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border: 1px solid var(--ui-border-light);
    border-radius: 14px;
    padding: 1.15rem 1.5rem;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.home-why-stat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 1.25rem;
    flex: 1 1 180px;
    justify-content: center;
}

.home-why-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.home-why-stat--purple .home-why-stat-icon {
    background: #F3E8FF;
    color: #9333EA;
}

.home-why-stat--green .home-why-stat-icon {
    background: #F0FDF4;
    color: #16A34A;
}

.home-why-stat--blue .home-why-stat-icon {
    background: #EFF6FF;
    color: #2563EB;
}

.home-why-stat--gold .home-why-stat-icon {
    background: #FEF3C7;
    color: #D97706;
}

.home-why-stat-text {
    font-size: 0.8125rem;
    color: var(--ui-text-muted);
    line-height: 1.35;
}

.home-why-stat-text strong {
    display: inline;
    font-weight: 800;
    color: var(--ui-navy);
    margin-right: 0.2rem;
}

.home-why-stat--gold .home-why-stat-text strong {
    color: var(--ui-gold-dark);
}

.home-why-stat-divider {
    width: 1px;
    height: 2rem;
    background: var(--ui-border-light);
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .home-why {
        padding: 3rem 0 3.5rem;
    }
    .home-why-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-why-stat-divider {
        display: none;
    }
    .home-why-stats {
        gap: 0.75rem;
        padding: 1rem;
    }
    .home-why-stat {
        flex: 1 1 45%;
        padding: 0.35rem 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .home-why-cards {
        grid-template-columns: 1fr;
    }
    .home-why-stat {
        flex: 1 1 100%;
        justify-content: flex-start;
    }
}


/* ---- Homepage Popular Searches ---- */

.home-popular {
    padding: 4rem 0 4.25rem;
    background: radial-gradient(ellipse 80% 60% at 10% 20%, rgba(191, 219, 254, 0.45), transparent 55%), radial-gradient(ellipse 70% 50% at 90% 80%, rgba(221, 214, 254, 0.4), transparent 50%), linear-gradient(180deg, #F0F5FF 0%, #F8FAFF 45%, #EEF2FF 100%);
    overflow: hidden;
}

.home-popular-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.home-popular-head-copy {
    max-width: 560px;
}

.home-popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(234, 88, 12, 0.18);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    color: #EA580C;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.home-popular-badge i {
    font-size: 0.7rem;
}

.home-popular-head h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.25rem);
    font-weight: 800;
    color: var(--ui-navy) !important;
    margin: 0 0 0.45rem;
    line-height: 1.2;
}

.home-popular-head p {
    margin: 0;
    color: var(--ui-text-muted) !important;
    font-size: 0.9375rem;
    line-height: 1.55;
}

.home-popular-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    padding: 0.7rem 1.15rem;
    border-radius: 12px;
    border: 1.5px solid var(--ui-navy);
    background: #fff;
    color: var(--ui-navy);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.home-popular-view-all i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.home-popular-view-all:hover {
    background: var(--ui-navy);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(11, 22, 52, 0.18);
}

.home-popular-view-all:hover i {
    transform: translateX(2px);
}

.home-popular-slider {
    position: relative;
}

.home-popular-track {
    display: flex;
    gap: 1.15rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.35rem 0.15rem 1rem;
    margin: 0 -0.15rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-popular-track::-webkit-scrollbar {
    display: none;
}

.home-popular-card {
    flex: 0 0 min(280px, 78vw);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.home-popular-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.home-popular-card-media {
    position: relative;
    height: 168px;
    background: #E2E8F0;
}

.home-popular-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-popular-card-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.85;
}

.home-popular-card--blue .home-popular-card-fallback {
    background: linear-gradient(145deg, #DBEAFE, #93C5FD);
    color: #1D4ED8;
}

.home-popular-card--green .home-popular-card-fallback {
    background: linear-gradient(145deg, #DCFCE7, #86EFAC);
    color: #15803D;
}

.home-popular-card--orange .home-popular-card-fallback {
    background: linear-gradient(145deg, #FFEDD5, #FDBA74);
    color: #C2410C;
}

.home-popular-card--purple .home-popular-card-fallback {
    background: linear-gradient(145deg, #F3E8FF, #D8B4FE);
    color: #7E22CE;
}

.home-popular-card--navy .home-popular-card-fallback {
    background: linear-gradient(145deg, #E0E7FF, #A5B4FC);
    color: #3730A3;
}

.home-popular-card--teal .home-popular-card-fallback {
    background: linear-gradient(145deg, #CCFBF1, #5EEAD4);
    color: #0F766E;
}

.home-popular-card--gold .home-popular-card-fallback {
    background: linear-gradient(145deg, #FEF3C7, #FCD34D);
    color: #B45309;
}

.home-popular-card--rose .home-popular-card-fallback {
    background: linear-gradient(145deg, #FFE4E6, #FDA4AF);
    color: #BE123C;
}

.home-popular-card-icon {
    position: absolute;
    left: 1rem;
    bottom: -18px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    border: 3px solid #fff;
    z-index: 1;
}

.home-popular-card--blue .home-popular-card-icon {
    background: #DBEAFE;
    color: #2563EB;
}

.home-popular-card--green .home-popular-card-icon {
    background: #DCFCE7;
    color: #16A34A;
}

.home-popular-card--orange .home-popular-card-icon {
    background: #FFEDD5;
    color: #EA580C;
}

.home-popular-card--purple .home-popular-card-icon {
    background: #F3E8FF;
    color: #9333EA;
}

.home-popular-card--navy .home-popular-card-icon {
    background: #E0E7FF;
    color: #3730A3;
}

.home-popular-card--teal .home-popular-card-icon {
    background: #CCFBF1;
    color: #0D9488;
}

.home-popular-card--gold .home-popular-card-icon {
    background: #FEF3C7;
    color: #D97706;
}

.home-popular-card--rose .home-popular-card-icon {
    background: #FFE4E6;
    color: #E11D48;
}

.home-popular-card-body {
    padding: 1.65rem 1.15rem 1.2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-popular-card-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ui-navy) !important;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.home-popular-card-body p {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--ui-text-muted) !important;
    flex: 1;
}

.home-popular-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: filter 0.15s, transform 0.15s, gap 0.15s;
}

.home-popular-card-cta i {
    font-size: 0.7rem;
    transition: transform 0.15s;
}

.home-popular-card-cta:hover {
    text-decoration: none;
    filter: brightness(0.97);
}

.home-popular-card-cta:hover i {
    transform: translateX(3px);
}

.home-popular-card--blue .home-popular-card-cta {
    background: #EFF6FF;
    color: #2563EB;
}

.home-popular-card--green .home-popular-card-cta {
    background: #F0FDF4;
    color: #16A34A;
}

.home-popular-card--orange .home-popular-card-cta {
    background: #FFF7ED;
    color: #EA580C;
}

.home-popular-card--purple .home-popular-card-cta {
    background: #FAF5FF;
    color: #9333EA;
}

.home-popular-card--navy .home-popular-card-cta {
    background: #EEF2FF;
    color: #3730A3;
}

.home-popular-card--teal .home-popular-card-cta {
    background: #F0FDFA;
    color: #0D9488;
}

.home-popular-card--gold .home-popular-card-cta {
    background: #FFFBEB;
    color: #D97706;
}

.home-popular-card--rose .home-popular-card-cta {
    background: #FFF1F2;
    color: #E11D48;
}

.home-popular-nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--ui-border);
    background: #fff;
    color: var(--ui-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    z-index: 2;
    transition: background 0.15s, color 0.15s, opacity 0.15s, transform 0.15s;
}

.home-popular-nav:hover {
    background: var(--ui-navy);
    color: #fff;
}

.home-popular-nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.home-popular-nav--prev {
    left: -8px;
}

.home-popular-nav--next {
    right: -8px;
}

.home-popular-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.35rem;
}

.home-popular-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #CBD5E1;
    cursor: pointer;
    transition: width 0.2s, background 0.2s;
}

.home-popular-dot.is-active {
    width: 22px;
    background: #2563EB;
}

@media (max-width: 991.98px) {
    .home-popular {
        padding: 3rem 0 3.25rem;
    }
    .home-popular-head {
        flex-direction: column;
        align-items: flex-start;
    }
    .home-popular-nav--prev {
        left: 4px;
    }
    .home-popular-nav--next {
        right: 4px;
    }
}

@media (max-width: 575.98px) {
    .home-popular-card {
        flex-basis: min(260px, 82vw);
    }
    .home-popular-view-all {
        width: 100%;
        justify-content: center;
    }
}


/* Site advertisements */

.site-ad-banner {
    padding: 1rem 0 0.25rem;
    background: #F8FAFC;
}

.site-ad-banner-item {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    color: inherit;
}

.site-ad-banner-item img {
    display: block;
    width: 100%;
    height: clamp(140px, 22vw, 280px);
    object-fit: cover;
}

.site-ad-banner-fallback,
.site-ad-sidebar-fallback {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    min-height: 140px;
    padding: 1.25rem;
    background: linear-gradient(135deg, #EFF6FF, #FEF3C7);
}

.site-ad-banner-fallback strong {
    font-size: 1.15rem;
}

.site-ad-banner-fallback span,
.site-ad-banner-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748B;
}

.site-ad-banner-tag {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.site-ad-carousel .carousel-control-prev,
.site-ad-carousel .carousel-control-next {
    width: 44px;
}

.site-ad-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.site-ad-sidebar-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background: #fff;
    text-decoration: none;
    color: inherit;
}

.site-ad-sidebar-item img {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
}
