:root {
    --blue: #1456d9;
    --blue-dark: #0c3b96;
    --blue-deep: #102f72;
    --red: #e63946;
    --red-dark: #c72c39;
    --ink: #172238;
    --text: #657187;
    --muted: #8b96a7;
    --surface: #ffffff;
    --background: #f4f7fc;
    --border: #dce4ef;
    --shadow: 0 12px 34px rgba(25, 52, 92, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--background);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
.container { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(16, 62, 151, 0.97);
    box-shadow: 0 4px 20px rgba(10, 37, 88, 0.2);
}
.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    text-decoration: none;
}
.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    background: var(--red);
    color: #fff;
    font-size: 23px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}
.navbar-logo{
    width:76px;
    height:76px;
    object-fit:contain;
    margin-right:2px;
    border-radius:16px;
    background:#fff;
    padding:4px;
    box-shadow:0 8px 22px rgba(0,0,0,.22);
}

.brand-name{
    display:inline-flex;
    align-items:baseline;
    gap:7px;
    line-height:1;
    letter-spacing:-1px;
    text-shadow:0 3px 10px rgba(0,0,0,.22);
}
.brand-poly{
    color:#ffffff;
    font-size:32px;
    font-weight:900;
}
.brand-connect{
    color:#ff5a64;
    font-size:32px;
    font-weight:900;
}

.polymart-brand{
    display:flex;
    align-items:center;
    font-size:22px;
    font-weight:700;
    text-decoration:none;
}


.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > a {
    padding: 10px 13px;
    color: rgba(255,255,255,.86);
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
.main-nav > a:hover { color: #fff; background: rgba(255,255,255,.1); }
.main-nav .nav-button { padding-inline: 18px; }
.main-nav .nav-register, .main-nav .nav-dashboard { background: var(--red); color: #fff; }
.main-nav .nav-register:hover, .main-nav .nav-dashboard:hover { background: var(--red-dark); }
.main-nav .nav-outline { border: 1px solid rgba(255,255,255,.55); color: #fff; }
.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 27px;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 112px;
    background:
        radial-gradient(circle at 85% 18%, rgba(101, 161, 255, .27), transparent 30%),
        linear-gradient(135deg, #0e347e 0%, #1456d9 70%, #2867df 100%);
    color: #fff;
}
.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -220px;
    bottom: -310px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 64px;
}
.eyebrow {
    display: inline-block;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}
.hero h1 {
    max-width: 660px;
    margin: 19px 0 20px;
    font-size: clamp(40px, 5.3vw, 64px);
    line-height: 1.08;
    letter-spacing: -1.8px;
}
.hero-copy > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.8);
    font-size: 17px;
    line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 11px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-red { background: var(--red); color: #fff; }
.button-red:hover { background: var(--red-dark); }
.button-ghost { border: 1px solid rgba(255,255,255,.7); color: #fff; }
.button-ghost:hover { background: #fff; color: var(--blue); }
.button.compact { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: rgba(255,255,255,.78); font-size: 13px; }

.market-preview {
    padding: 25px;
    border-radius: 24px;
    background: rgba(255,255,255,.97);
    color: var(--ink);
    box-shadow: 0 30px 70px rgba(5, 24, 65, .36);
}
.preview-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.preview-title small, .preview-title strong { display: block; }
.preview-title small { color: var(--text); font-size: 11px; }
.preview-title strong { margin-top: 3px; font-size: 21px; }
.live-badge { padding: 7px 11px; border-radius: 999px; background: #e0f7e9; color: #148148; font-size: 11px; font-weight: 800; }
.preview-list { display: grid; gap: 12px; }
.preview-item { display: flex; align-items: center; gap: 13px; padding: 11px; border-radius: 14px; background: #f5f8fc; }
.preview-image { width: 68px; height: 61px; display: grid; place-items: center; overflow: hidden; border-radius: 11px; background: #e9eef6; font-size: 27px; flex: 0 0 auto; }
.preview-image img { width: 100%; height: 100%; object-fit: cover; }
.preview-info strong, .preview-info span { display: block; }
.preview-info strong { font-size: 14px; }
.preview-info span { margin-top: 4px; color: var(--blue); font-size: 13px; font-weight: 800; }
.preview-empty { padding: 28px 12px; text-align: center; color: var(--text); }
.preview-empty > span { display: block; margin-bottom: 8px; font-size: 38px; }
.preview-empty strong { color: var(--ink); }
.preview-empty p { margin: 5px 0 0; font-size: 13px; }

/* Search */
.search-section { position: relative; z-index: 4; margin-top: -52px; }
.search-panel { padding: 25px; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.search-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.section-kicker { color: var(--blue); font-size: 12px; font-weight: 900; letter-spacing: .8px; text-transform: uppercase; }
.section-kicker.light { color: #89b0ff; }
.search-heading h2, .section-title h2, .products-heading h2 { margin: 5px 0 0; font-size: clamp(26px, 3vw, 34px); line-height: 1.2; }
.login-notice { padding: 10px 13px; border-radius: 10px; background: #fff4df; color: #8d6017; font-size: 12px; font-weight: 800; }
.search-form { display: grid; grid-template-columns: minmax(260px,1fr) 220px auto auto; gap: 12px; }
.search-box { position: relative; display: block; }
.search-box > span { position: absolute; top: 50%; left: 15px; transform: translateY(-50%); }
.search-box input, .search-form select {
    width: 100%;
    height: 50px;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: #f8fafd;
    outline: none;
}
.search-box input { padding: 0 15px 0 46px; }
.search-form select { padding: 0 14px; }
.search-box input:focus, .search-form select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(20,86,217,.1); }
.search-submit, .clear-button { height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 0; border-radius: 11px; font-weight: 800; text-decoration: none; cursor: pointer; }
.search-submit { background: var(--blue); color: #fff; }
.search-submit:hover { background: var(--blue-dark); }
.clear-button { background: #edf1f6; color: var(--text); }

/* Categories */
.categories-section { padding: 68px 0 30px; }
.section-title.centered { text-align: center; }
.category-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 13px; margin-top: 26px; }
.category-card {
    min-height: 125px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 10px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(25,52,92,.05);
    transition: .23s ease;
}
.category-card span { font-size: 30px; }
.category-card strong { font-size: 12px; }
.category-card:hover { transform: translateY(-5px); border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow); }

/* Products */
.products-section { padding: 44px 0 82px; }
.products-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.products-heading p { margin: 7px 0 0; color: var(--text); font-size: 13px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(25,52,92,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-7px); box-shadow: 0 18px 40px rgba(25,52,92,.15); }
.product-image { position: relative; height: 225px; overflow: hidden; background: #edf1f7; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.image-placeholder { height: 100%; display: grid; place-content: center; gap: 6px; color: var(--muted); text-align: center; }
.image-placeholder span { font-size: 44px; }
.condition-badge { position: absolute; top: 13px; right: 13px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--blue); font-size: 10px; font-weight: 900; }
.locked-badge { position: absolute; left: 12px; bottom: 12px; padding: 7px 10px; border-radius: 8px; background: rgba(18,31,55,.9); color: #fff; font-size: 10px; font-weight: 800; }
.product-content { padding: 19px; }
.category-badge { display: inline-block; padding: 5px 9px; border-radius: 999px; background: #eaf1ff; color: var(--blue); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.product-content h3 { min-height: 47px; margin: 11px 0 7px; font-size: 18px; line-height: 1.3; }
.product-description { min-height: 42px; margin: 0 0 12px; color: var(--text); font-size: 13px; }
.product-price { margin-bottom: 16px; color: var(--blue); font-size: 22px; font-weight: 900; }
.product-button { min-height: 42px; display: flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 10px; background: var(--blue); color: #fff; font-size: 13px; font-weight: 800; text-align: center; text-decoration: none; }
.product-button:hover { background: var(--blue-dark); }
.product-button.locked { background: var(--red); }
.product-button.locked:hover { background: var(--red-dark); }
.product-button.disabled { background: #a6afbd; cursor: not-allowed; }
.empty-state { padding: 62px 20px; border: 1px dashed #c6d0df; border-radius: 19px; background: #fff; text-align: center; }
.empty-state > span { font-size: 50px; }
.empty-state h3 { margin: 12px 0 4px; }
.empty-state p { color: var(--text); }
.empty-state a { color: var(--blue); font-weight: 800; }

/* Steps */
.steps-section { padding: 78px 0; background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 30px; }
.step-card { padding: 32px 27px; border-radius: 18px; background: var(--background); text-align: center; }
.step-card > span { width: 50px; height: 50px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 900; }
.step-card h3 { margin: 17px 0 7px; font-size: 19px; }
.step-card p { margin: 0; color: var(--text); font-size: 14px; }

/* About + Footer */
.about-section { padding: 80px 0; background: var(--blue-deep); color: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.about-section h2 { margin: 9px 0 15px; font-size: clamp(31px,4vw,43px); line-height: 1.15; }
.about-section > .container > div > p { color: rgba(255,255,255,.73); line-height: 1.75; }
.about-list { display: grid; gap: 13px; }
.about-list > div { display: flex; align-items: center; gap: 14px; padding: 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(255,255,255,.08); }
.about-list span { font-size: 27px; }
.about-list p { margin: 0; color: rgba(255,255,255,.82); }
.site-footer { padding: 24px 0; background: #091f4d; color: #fff; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-wrap strong, .footer-wrap small { display: block; }
.footer-wrap small, .footer-wrap p { margin: 3px 0 0; color: rgba(255,255,255,.62); font-size: 12px; }

@media (max-width: 1050px) {
    .category-grid { grid-template-columns: repeat(4,1fr); }
    .product-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 850px) {
    .menu-button { display: block; }
    .main-nav {
        position: absolute;
        top: 72px;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 13px;
        border-radius: 14px;
        background: var(--blue-deep);
        box-shadow: var(--shadow);
    }
    .main-nav.open { display: flex; }
    .main-nav > a { text-align: center; }
    .hero-grid, .about-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 64px; }
    .search-form { grid-template-columns: 1fr 1fr; }
    .product-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
    .container { width: min(100% - 26px, 1180px); }
    .brand { font-size: 17px; gap:8px; }
    .navbar-logo { width:54px; height:54px; border-radius:12px; }
    .brand-poly, .brand-connect { font-size:20px; }
    .brand-name { gap:4px; letter-spacing:-.5px; }
    .brand-mark { width: 38px; height: 38px; }
    .hero { padding: 55px 0 88px; }
    .hero h1 { font-size: 39px; letter-spacing: -1px; }
    .hero-points { flex-direction: column; gap: 7px; }
    .search-section { margin-top: -36px; }
    .search-heading, .products-heading, .footer-wrap { align-items: flex-start; flex-direction: column; }
    .search-form { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(2,1fr); }
    .product-grid, .steps-grid { grid-template-columns: 1fr; }
    .product-image { height: 255px; }
}


/* ===== FINAL HOMEPAGE HERO: large PolyMart logo + clean 3-column layout ===== */
.hero {
    padding: 58px 0 94px;
}
.hero-grid {
    grid-template-columns: .72fr 1.05fr .98fr;
    gap: 34px;
}
.hero-logo-showcase {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-logo-showcase img {
    display: block;
    width: min(100%, 390px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 30px;
    opacity: .48;
    mix-blend-mode: screen;
    filter: saturate(1.2) contrast(1.08);
    box-shadow: none;
}
.hero h1 {
    font-size: clamp(40px, 4vw, 58px);
}
.hero-copy > p {
    font-size: 16px;
    line-height: 1.7;
}
.market-preview {
    padding: 24px;
}
.brand-poly, .brand-connect {
    font-size: 35px;
}
.navbar-logo {
    width: 80px;
    height: 80px;
}

@media (max-width: 1050px) {
    .hero-grid {
        grid-template-columns: .72fr 1.28fr;
    }
    .market-preview {
        grid-column: 1 / -1;
    }
}
@media (max-width: 850px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-logo-showcase {
        max-width: 360px;
        margin-inline: auto;
    }
    .market-preview {
        grid-column: auto;
    }
}
@media (max-width: 620px) {
    .hero-logo-showcase {
        max-width: 250px;
    }
    .hero-logo-showcase img {
        border-radius: 22px;
    }
    .brand-poly, .brand-connect {
        font-size: 20px;
    }
    .navbar-logo {
        width: 54px;
        height: 54px;
    }
}


/* ===== HOMEPAGE DESIGN BASED ON USER REFERENCE ===== */
.site-header {
    background: linear-gradient(90deg, #08265f, #073781);
}
.nav-wrap {
    min-height: 74px;
}
.navbar-logo {
    width: 54px;
    height: 54px;
    border-radius: 9px;
    padding: 2px;
    box-shadow: none;
}
.brand-name { gap: 5px; }
.brand-poly, .brand-connect {
    font-size: 29px;
    font-weight: 900;
}
.brand-connect { color: #ff3444; }

.hero {
    padding: 42px 0 86px;
    background:
        radial-gradient(circle at 74% 32%, rgba(33,116,255,.20), transparent 34%),
        linear-gradient(125deg, #073b9d 0%, #0646bc 48%, #062f87 100%);
}
.hero-grid {
    grid-template-columns: .82fr 1.05fr .92fr;
    gap: 42px;
    align-items: center;
}
.hero-logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-logo-showcase img {
    width: min(100%, 330px);
    height: 285px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 24px;
    opacity: .92;
    mix-blend-mode: screen;
    filter: saturate(1.35) contrast(1.18);
}
.hero-logo-wordmark {
    margin-top: -38px;
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 1;
}
.hero-logo-wordmark strong {
    display: block;
    color: #ef3445;
    font-size: 39px;
    font-style: italic;
    font-weight: 950;
    letter-spacing: -2px;
    text-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.hero-logo-wordmark strong span { color: #fff; }
.hero-logo-wordmark small {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 8px;
}
.hero-logo-wordmark em {
    display: block;
    margin-top: 15px;
    color: rgba(255,255,255,.82);
    font-size: 9px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 3px;
}
.eyebrow {
    background: rgba(65,130,255,.35);
    border-color: rgba(255,255,255,.10);
}
.hero h1 {
    margin: 14px 0 17px;
    font-size: clamp(43px, 4.15vw, 60px);
    line-height: 1.02;
    letter-spacing: -1.7px;
}
.hero-copy > p {
    font-size: 15px;
    line-height: 1.6;
}
.hero-actions {
    margin-top: 22px;
}
.hero-points {
    margin-top: 20px;
    gap: 14px;
    font-size: 12px;
}
.market-preview {
    padding: 22px;
    border-radius: 17px;
    box-shadow: 0 18px 50px rgba(3,24,72,.26);
}
.preview-item {
    background: transparent;
    border-bottom: 1px solid #e9eef7;
    border-radius: 0;
    padding: 11px 4px;
}
.preview-image {
    width: 66px;
    height: 60px;
}
.preview-view-all {
    display: block;
    margin-top: 13px;
    text-align: right;
    color: #1456d9;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}
.search-section {
    margin-top: -50px;
}
.search-panel {
    border-radius: 18px;
    padding: 23px 28px;
}
.search-heading h2 {
    font-size: 31px;
}
.category-grid {
    gap: 10px;
}
.category-card {
    min-height: 70px;
}

@media (max-width: 1050px) {
    .hero-grid {
        grid-template-columns: .8fr 1.2fr;
    }
    .market-preview {
        grid-column: 1 / -1;
    }
}
@media (max-width: 850px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-logo-showcase { max-width: 360px; margin-inline: auto; }
    .market-preview { grid-column: auto; }
}
@media (max-width: 620px) {
    .navbar-logo { width: 48px; height: 48px; }
    .brand-poly, .brand-connect { font-size: 20px; }
    .hero-logo-showcase img { height: 230px; }
    .hero-logo-wordmark strong { font-size: 31px; }
    .hero-logo-wordmark small { font-size: 16px; letter-spacing: 6px; }
}


/* =========================================================
   FINAL REFERENCE MATCH OVERRIDES
   ========================================================= */

.site-header{
    background:#082d72 !important;
    box-shadow:none !important;
}
.nav-wrap{
    min-height:72px !important;
}
.navbar-logo{
    width:54px !important;
    height:54px !important;
    padding:2px !important;
    border-radius:8px !important;
    box-shadow:none !important;
}
.brand-name{
    gap:5px !important;
    text-shadow:none !important;
}
.brand-poly,
.brand-connect{
    font-size:30px !important;
    font-weight:900 !important;
}
.brand-connect{
    color:#ff3444 !important;
}

.hero{
    padding:40px 0 82px !important;
    background:
        radial-gradient(circle at 88% 50%, rgba(38,112,255,.18), transparent 34%),
        linear-gradient(125deg,#0a3b98 0%,#0b4fc3 52%,#073488 100%) !important;
}
.hero::before{
    display:none !important;
}
.hero-grid{
    grid-template-columns:.80fr 1.00fr .92fr !important;
    gap:42px !important;
    align-items:center !important;
}
.hero-logo-showcase{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-width:0 !important;
}
.hero-logo-showcase img{
    width:min(100%,350px) !important;
    height:auto !important;
    max-height:390px !important;
    object-fit:contain !important;
    border-radius:0 !important;
    opacity:1 !important;
    mix-blend-mode:normal !important;
    filter:drop-shadow(0 18px 28px rgba(0,0,0,.16)) !important;
    background:transparent !important;
    box-shadow:none !important;
}
.hero-logo-wordmark{
    display:none !important;
}
.eyebrow{
    margin-bottom:4px !important;
    background:rgba(77,139,255,.38) !important;
    border:0 !important;
}
.hero h1{
    margin:10px 0 18px !important;
    max-width:520px !important;
    font-size:clamp(43px,4.1vw,61px) !important;
    line-height:1.03 !important;
    letter-spacing:-1.5px !important;
}
.hero-copy > p{
    max-width:560px !important;
    font-size:15px !important;
    line-height:1.62 !important;
}
.hero-actions{
    margin-top:22px !important;
}
.hero-points{
    margin-top:18px !important;
    gap:15px !important;
    font-size:12px !important;
}

.market-preview{
    padding:22px 24px 18px !important;
    border-radius:16px !important;
    box-shadow:0 18px 45px rgba(4,25,74,.22) !important;
}
.preview-title{
    margin-bottom:8px !important;
}
.preview-item{
    padding:12px 2px !important;
    border-radius:0 !important;
    background:transparent !important;
    border-bottom:1px solid #e6ecf5 !important;
}
.preview-image{
    width:65px !important;
    height:62px !important;
}
.preview-view-all{
    display:block !important;
    margin-top:10px !important;
    text-align:right !important;
    color:#1456d9 !important;
    font-size:12px !important;
    font-weight:800 !important;
    text-decoration:none !important;
}

.search-section{
    margin-top:-54px !important;
}
.search-panel{
    padding:20px 28px 22px !important;
    border-radius:18px !important;
}
.search-heading{
    margin-bottom:16px !important;
}
.search-heading h2{
    font-size:31px !important;
}
.search-form{
    grid-template-columns:1fr 200px 120px !important;
    gap:12px !important;
}
.categories-section{
    margin-top:-6px !important;
}
.category-grid{
    grid-template-columns:repeat(6,1fr) !important;
    gap:10px !important;
}
.category-card{
    min-height:66px !important;
}

@media (max-width:1050px){
    .hero-grid{
        grid-template-columns:.78fr 1.22fr !important;
    }
    .market-preview{
        grid-column:1/-1 !important;
    }
    .category-grid{
        grid-template-columns:repeat(4,1fr) !important;
    }
}
@media (max-width:850px){
    .hero-grid{
        grid-template-columns:1fr !important;
    }
    .hero-logo-showcase{
        max-width:360px !important;
        margin-inline:auto !important;
    }
    .market-preview{
        grid-column:auto !important;
    }
    .search-form{
        grid-template-columns:1fr 1fr !important;
    }
}
@media (max-width:620px){
    .navbar-logo{
        width:48px !important;
        height:48px !important;
    }
    .brand-poly,
    .brand-connect{
        font-size:20px !important;
    }
    .hero-logo-showcase{
        max-width:260px !important;
    }
    .search-form{
        grid-template-columns:1fr !important;
    }
    .category-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}


/* ===== 2026 Dashboard visual enhancement (design only) ===== */
.site-header{
    background:rgba(10,45,112,.96);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 8px 30px rgba(4,28,76,.20);
}
.nav-wrap{min-height:78px}
.navbar-logo{width:58px;height:58px;border-radius:14px;box-shadow:0 8px 24px rgba(0,0,0,.18)}
.brand-name{gap:4px}.brand-poly,.brand-connect{font-size:28px}
.main-nav{gap:6px}.main-nav>a{padding:10px 15px;transition:.2s ease}
.main-nav>a:hover{transform:translateY(-1px);background:rgba(255,255,255,.12)}
.hero{
    padding:72px 0 118px;
    background:
      radial-gradient(circle at 12% 20%,rgba(255,255,255,.09),transparent 28%),
      radial-gradient(circle at 88% 15%,rgba(85,151,255,.28),transparent 31%),
      linear-gradient(125deg,#0a347f 0%,#0f4cba 47%,#1456d9 100%);
}
.hero::after{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:42px 42px;pointer-events:none}
.hero-grid{grid-template-columns:.72fr 1.05fr .92fr;gap:46px}
.hero-logo-showcase{padding:10px;filter:drop-shadow(0 22px 25px rgba(4,24,67,.28))}
.hero-logo-showcase img{transition:transform .35s ease}.hero-logo-showcase:hover img{transform:translateY(-4px) scale(1.015)}
.eyebrow{background:rgba(255,255,255,.13);box-shadow:inset 0 1px 0 rgba(255,255,255,.15)}
.hero h1{font-size:clamp(42px,4.2vw,60px);line-height:1.04;letter-spacing:-2px;text-shadow:0 5px 20px rgba(1,26,77,.18)}
.hero-copy>p{font-size:15px;line-height:1.7;max-width:590px}
.button{border-radius:12px;box-shadow:0 7px 18px rgba(6,36,96,.13)}
.button-red{box-shadow:0 10px 24px rgba(230,57,70,.28)}
.market-preview{border:1px solid rgba(255,255,255,.55);border-radius:22px;box-shadow:0 24px 55px rgba(2,25,75,.28);transition:transform .25s ease,box-shadow .25s ease}
.market-preview:hover{transform:translateY(-4px);box-shadow:0 30px 65px rgba(2,25,75,.34)}
.preview-item{border:1px solid #edf1f7;background:#f8faff;transition:.2s ease}.preview-item:hover{transform:translateX(3px);background:#fff;box-shadow:0 7px 18px rgba(21,57,108,.07)}
.search-section{margin-top:-47px}.search-panel{padding:27px 30px;border-radius:18px;box-shadow:0 16px 38px rgba(18,55,109,.13)}
.search-box input,.search-form select{background:#fbfcff;border-color:#d8e1ed}.search-submit{box-shadow:0 8px 18px rgba(20,86,217,.20);transition:.2s ease}.search-submit:hover{transform:translateY(-1px)}
.category-card,.product-card{transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.category-card:hover,.product-card:hover{transform:translateY(-5px);box-shadow:0 16px 35px rgba(25,52,92,.12)}
@media(max-width:1100px){.hero-grid{grid-template-columns:.65fr 1fr}.market-preview{grid-column:1/-1;max-width:760px;width:100%;margin:0 auto}.hero-logo-showcase{align-self:center}}
@media(max-width:760px){.hero-grid{grid-template-columns:1fr}.hero-logo-showcase{max-width:290px;margin:0 auto}.hero-copy{text-align:center}.hero-copy>p{margin-inline:auto}.hero-actions,.hero-points{justify-content:center}.market-preview{grid-column:auto}.brand-poly,.brand-connect{font-size:23px}.navbar-logo{width:50px;height:50px}}

/* ===== FINAL HOMEPAGE THEME — light blue + navy logo card ===== */
.site-header{background:linear-gradient(90deg,#082f73 0%,#0b3b82 100%) !important;box-shadow:0 5px 18px rgba(7,35,84,.18)!important}
.nav-wrap{min-height:76px!important}.main-nav>a{font-size:15px!important;font-weight:700!important}
.hero{padding:48px 0 96px!important;background:linear-gradient(135deg,#d9efff 0%,#edf8ff 52%,#cfeaff 100%)!important;color:#0b2d5c!important;overflow:hidden!important}
.hero::before{content:""!important;position:absolute!important;inset:0!important;background:radial-gradient(circle at 10% 15%,rgba(255,255,255,.9),transparent 27%),radial-gradient(circle at 88% 20%,rgba(255,255,255,.7),transparent 25%)!important;opacity:.75!important;pointer-events:none!important}
.hero::after{content:""!important;position:absolute!important;inset:0!important;background-image:linear-gradient(rgba(16,88,177,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(16,88,177,.035) 1px,transparent 1px)!important;background-size:48px 48px!important;pointer-events:none!important}
.hero-grid{position:relative!important;z-index:1!important;grid-template-columns:.88fr 1.08fr .98fr!important;gap:44px!important;align-items:center!important}
.hero-logo-showcase{width:100%!important;max-width:390px!important;aspect-ratio:1/1!important;padding:22px!important;border-radius:18px!important;background:linear-gradient(145deg,#0b4197,#062f73)!important;box-shadow:0 20px 42px rgba(6,48,115,.22)!important;display:flex!important;align-items:center!important;justify-content:center!important;filter:none!important}
.hero-logo-showcase img{width:100%!important;height:100%!important;max-height:none!important;object-fit:contain!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;filter:none!important}
.eyebrow{color:#0754c8!important;background:#c7e1ff!important;border:0!important;box-shadow:none!important;font-size:13px!important;font-weight:900!important;letter-spacing:.7px!important;padding:9px 15px!important}
.hero h1{color:#0a2e64!important;text-shadow:none!important;font-size:clamp(43px,4.1vw,61px)!important;line-height:1.06!important;letter-spacing:-1.8px!important;margin:16px 0 18px!important}
.hero-copy>p{color:#294b72!important;font-size:16px!important;line-height:1.65!important;max-width:570px!important}
.hero-points{color:#244a78!important;font-size:13px!important;font-weight:600!important;gap:17px!important;margin-top:20px!important}
.button{font-size:15px!important;font-weight:800!important;padding:14px 24px!important}.button-ghost{color:#0754c8!important;border-color:#1262df!important;background:rgba(255,255,255,.55)!important}.button-ghost:hover{background:#fff!important}
.market-preview{padding:24px!important;border:1px solid rgba(255,255,255,.9)!important;border-radius:20px!important;background:rgba(255,255,255,.94)!important;box-shadow:0 20px 45px rgba(17,62,118,.15)!important;transform:none!important}.market-preview:hover{transform:none!important;box-shadow:0 20px 45px rgba(17,62,118,.15)!important}
.preview-title small{font-size:12px!important;color:#66768a!important}.preview-title strong{font-size:22px!important;color:#101f36!important}.preview-item{padding:11px!important;border:1px solid #e4ebf4!important;border-radius:0!important;background:#fff!important}.preview-info strong{font-size:14px!important;color:#111f35!important}.preview-info span{font-size:14px!important}.preview-view-all{font-size:13px!important}
.search-section{position:relative!important;z-index:3!important;margin-top:-55px!important}.search-panel{padding:24px 28px!important;border-radius:20px!important;box-shadow:0 18px 42px rgba(30,68,111,.13)!important}.search-heading h2{font-size:30px!important}.section-kicker{font-size:13px!important}.search-box input,.search-form select,.search-submit{font-size:14px!important}.login-notice{font-size:13px!important}
body{font-size:15px!important}.section-title h2{font-size:30px!important}.product-info h3{font-size:17px!important}.product-info p{font-size:14px!important}.category-card{font-size:14px!important}
@media(max-width:1050px){.hero-grid{grid-template-columns:.8fr 1.2fr!important}.market-preview{grid-column:1/-1!important;max-width:760px!important;margin-inline:auto!important}.hero-logo-showcase{max-width:340px!important}}
@media(max-width:760px){.hero{padding-top:38px!important}.hero-grid{grid-template-columns:1fr!important}.hero-logo-showcase{max-width:300px!important;margin-inline:auto!important}.hero-copy{text-align:center!important}.hero-copy>p{margin-inline:auto!important}.hero-actions,.hero-points{justify-content:center!important}.market-preview{grid-column:auto!important}.hero h1{font-size:42px!important}}


/* 2026-08-28 homepage readability update - match Light Blue font sizing */
html { font-size: 17px; }
body { font-size: 17px; }
.main-nav > a { font-size: 16px !important; }
.eyebrow { font-size: 14px !important; }
.hero-copy > p { font-size: 19px !important; }
.hero-points { font-size: 15px !important; }
.button { font-size: 16px !important; }
.preview-title small { font-size: 13px !important; }
.preview-title strong { font-size: 24px !important; }
.live-badge { font-size: 13px !important; }
.preview-info strong { font-size: 16px !important; }
.preview-info span { font-size: 15px !important; }
.section-kicker { font-size: 14px !important; }
.login-notice { font-size: 14px !important; }
.search-box input, .search-form select, .search-submit, .clear-button { font-size: 16px !important; }
button, input, select, textarea { font-size: 1rem; }
