:root {
    --blue: #0d4a8f;
    --blue2: #0a3d7a;
    --orange: #ff9500;
    --oran2: #e08600;
    --lgray: #f5f6fa;
    --border: #e0e0e0;
    --dark: #1a1a1a;
    --gray: #666;
    --green: #10b981;
    --red: #ef4444;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.page {
    display: none;
    animation: fadeIn .3s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── TOP BAR ── */
.top-bar {
    background: var(--orange);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 6px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.top-bar::-webkit-scrollbar {
    display: none;
}

.top-bar a {
    color: #fff;
    margin: 0 8px;
    cursor: pointer;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* ── NAVBAR ── */
.navbar-main {
    /* background: var(--blue); */
    background: #b0b4b7;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.brand {
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-circle {
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-weight: 900;
    font-size: 13px;
    flex-shrink: 0;
}

.search-pill {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 3px 6px 3px 10px;
    flex: 1;
    max-width: 480px;
}

.search-pill select, .search-pill input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    padding: 7px 6px;
}

.search-pill select {
    border-right: 1px solid var(--border);
    min-width: 90px;
}

.search-pill input {
    flex: 1;
    min-width: 0;
}

.btn-srch {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.btn-srch:hover {
    background: var(--oran2);
}

.nav-link-item {
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: .2s;
}

.nav-link-item:hover {
    color: var(--orange);
}

.btn-req, .btn-primary {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 7px 13px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn-req:hover {
    background: var(--oran2);
}

/* mobile */
.mob-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.mob-menu {
    display: none;
    background: var(--blue2);
    padding: 14px;
}

.mob-menu.open {
    display: block;
}

.mob-menu a, .mob-menu button.mob-btn {
    display: block;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    border: none;
    background: transparent;
    text-align: left;
    width: 100%;
    cursor: pointer;
}

.mob-menu a:hover, .mob-menu button.mob-btn:hover {
    color: var(--orange);
}

.mob-search {
    display: flex;
    background: #fff;
    border-radius: 22px;
    padding: 5px 10px;
    margin-bottom: 12px;
    gap: 6px;
}

.mob-search select, .mob-search input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    flex: 1;
    min-width: 0;
}

.mob-search button {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 6px 13px;
    font-size: 12px;
    font-weight: 700;
}

/* ── FLOATING SIDEBAR ── */
.float-bar {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fi {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
    transition: .2s;
}

.fi:hover {
    transform: scale(1.12);
}

.fi-cam {
    background: #333;
}

.fi-wa {
    background: #25d366;
}

.fi-ph {
    background: var(--orange);
}

.fi-ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ── HERO ── */
.hero {
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1400&h=600&fit=crop')center/cover;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 40px 16px;
}

.hero h1 {
    font-size: clamp(24px, 5vw, 50px);
    font-weight: 900;
    margin-bottom: 10px;
}

.hero p {
    font-size: clamp(13px, 2vw, 17px);
    margin-bottom: 26px;
    opacity: .9;
}

.hero-search {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    background: #fff;
    border-radius: 28px;
    padding: 7px 8px;
    max-width: 560px;
    margin: 0 auto;
    align-items: center;
}

.hero-search select, .hero-search input {
    border: none;
    outline: none;
    font-size: 13px;
    padding: 8px;
    background: transparent;
    flex: 1;
    min-width: 100px;
}

.hero-search select {
    border-right: 1px solid var(--border);
}

.hero-search button {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

/* ── CAT ICON BAR ── */
.cat-bar {
    background: var(--lgray);
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.cat-ic {
    text-align: center;
    cursor: pointer;
    transition: .2s;
}

.cat-ic:hover {
    transform: translateY(-4px);
}

.cat-ic-circle {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.cat-ic span {
    font-size: 10.5px;
    font-weight: 700;
    display: block;
    line-height: 1.3;
}

.btn-allcat {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn-allcat:hover {
    background: var(--blue2);
}

/* ── SECTION HEADINGS ── */
.sec-head {
    color: var(--blue);
    font-size: clamp(17px, 3vw, 22px);
    font-weight: 800;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-view {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.btn-view:hover {
    background: var(--oran2);
}

/* ── TRENDING ── */
.trend-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 7px;
}

.trend-name {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.trend-item {
    cursor: pointer;
    transition: .2s;
}

.trend-item:hover {
    transform: translateY(-4px);
}

/* ── RFQ ── */
.rfq-box {
    background: var(--blue);
    color: #fff;
    padding: 26px;
    border-radius: 10px;
    height: 100%;
}

.rfq-box h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 16px;
}

.rfq-box label {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 3px;
    display: block;
}

.rfq-box input, .rfq-box textarea {
    width: 100%;
    padding: 9px 10px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    margin-bottom: 10px;
}

.rfq-box textarea {
    resize: vertical;
    min-height: 65px;
}

.btn-post {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 11px;
    width: 100%;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.btn-post:hover {
    background: var(--oran2);
}

.stats-box {
    background: var(--lgray);
    padding: 26px;
    border-radius: 10px;
    height: 100%;
}

.stats-box h3 {
    color: var(--blue);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 18px;
}

.stat-v {
    font-size: 26px;
    font-weight: 900;
    color: var(--orange);
}

.stat-l {
    font-size: 11px;
    font-weight: 700;
}

.buyer-card {
    background: #fff;
    padding: 13px;
    border-left: 4px solid var(--orange);
    margin-top: 16px;
    border-radius: 0 6px 6px 0;
}

.buyer-card h6 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 5px;
}

.buyer-card p {
    font-size: 11px;
    color: #555;
    margin-bottom: 3px;
}

.btn-contact {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 7px 13px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* ── TOP CATEGORY CARDS ── */
.cat-card {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: .2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.cat-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.cat-card-title {
    background: var(--blue);
    color: #fff;
    padding: 9px;
    font-size: 11.5px;
    font-weight: 700;
    text-align: center;
}

/* ── PRODUCT CARDS ── */
.prod-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: .2s;
    height: 100%;
    background: #fff;
}

.prod-card:hover {
    box-shadow: 0 5px 18px rgba(0, 0, 0, .12);
    transform: translateY(-3px);
}

.prod-img {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #bbb;
}

.prod-body {
    padding: 13px;
}

.prod-name {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

.prod-desc {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 8px;
}

.prod-link {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.prod-link:hover {
    text-decoration: underline;
}

/* ── BUYERS & SELLERS ── */
.bs-info h3 {
    color: var(--blue);
    font-size: clamp(19px, 3vw, 25px);
    font-weight: 800;
    margin-bottom: 12px;
}

.bs-info p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.benefit-box {
    text-align: center;
}

.benefit-box i {
    font-size: 34px;
    color: var(--orange);
    margin-bottom: 7px;
    display: block;
}

.benefit-box span {
    font-size: 11px;
    font-weight: 700;
}

.bs-banner {
    background: linear-gradient(135deg, #17a697, #1ab5a6);
    color: #fff;
    padding: 34px 26px;
    border-radius: 10px;
    text-align: center;
}

.bs-banner h2 {
    font-size: clamp(17px, 3vw, 24px);
    font-weight: 900;
    line-height: 1.4;
}

/* ── CITIES ── */
.city-item {
    text-align: center;
    cursor: pointer;
    transition: .2s;
}

.city-item:hover {
    transform: scale(1.1);
}

.city-item i {
    font-size: 40px;
    color: var(--blue);
    display: block;
    margin-bottom: 5px;
}

.city-item span {
    font-size: 12px;
    font-weight: 700;
}

/* ── FEATURES ── */
.feat-card {
    text-align: center;
    padding: 24px 14px;
    border-radius: 8px;
    background: #fff;
    height: 100%;
}

.feat-card i {
    font-size: 42px;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}

.feat-card h5 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 7px;
}

.feat-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 12px;
}

.feat-link {
    border: 2px solid var(--blue);
    color: var(--blue);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    transition: .2s;
    cursor: pointer;
}

.feat-link:hover {
    background: var(--blue);
    color: #fff;
}

/* ── BRAND BOX ── */
.brand-box {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--lgray);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85px;
    transition: .2s;
    cursor: pointer;
}

.brand-box:hover {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .1);
}

.brand-box i {
    font-size: 36px;
    color: #bbb;
}

/* ── FOOTER ── */
footer {
    /* background: var(--blue); */
    background: black;
    color: #fff;
    padding: 40px 0 20px;
}

.foot-col h6 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 7px;
    margin-bottom: 12px;
}

.foot-col ul {
    list-style: none;
    padding: 0;
}

.foot-col ul li {
    margin-bottom: 7px;
}

.foot-col ul li a {
    color: #aaa;
    font-size: 12px;
    transition: .2s;
    cursor: pointer;
}

.foot-col ul li a:hover {
    color: var(--orange);
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 16px;
    margin-top: 22px;
    font-size: 12px;
    color: #aaa;
    text-align: center;
}

.soc-lnk {
    width: 33px;
    height: 33px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 3px;
    transition: .2s;
    cursor: pointer;
}

.soc-lnk:hover {
    transform: scale(1.12);
}

/* ══════════════ PAGE: ALL CATEGORIES ══════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    padding: 50px 0 40px;
    text-align: center;
}

.page-hero h2 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    margin-bottom: 8px;
}

.page-hero p {
    font-size: 14px;
    opacity: .85;
}

.breadcrumb-bar {
    background: var(--lgray);
    padding: 10px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-bar span {
    color: var(--gray);
}

.breadcrumb-bar span.cur {
    color: var(--blue);
    font-weight: 700;
}

.breadcrumb-bar i {
    margin: 0 6px;
    color: var(--gray);
}

.all-cat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: .2s;
    height: 100%;
}

.all-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.all-cat-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.all-cat-card-body {
    padding: 16px;
}

.all-cat-card-title {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.all-cat-card-subs a {
    display: inline-block;
    background: var(--lgray);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    color: var(--blue);
    margin: 2px;
    cursor: pointer;
}

.all-cat-card-subs a:hover {
    background: var(--blue);
    color: #fff;
}

.cat-count {
    background: var(--orange);
    color: #fff;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
}

/* ══════════════ PAGE: PRODUCTS ══════════════ */
.sidebar-filter {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
    position: sticky;
    top: 80px;
}

.sidebar-filter h5 {
    font-size: 14px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange);
}

.filter-group {
    margin-bottom: 16px;
}

.filter-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: block;
}

.filter-group .form-check-label {
    font-size: 12px;
}

.filter-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 13px;
    outline: none;
}

.filter-group input[type=range] {
    width: 100%;
}

.prod-list-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: .2s;
    display: flex;
    gap: 0;
    cursor: pointer;
}

.prod-list-card:hover {
    box-shadow: 0 5px 18px rgba(0, 0, 0, .1);
}

.prod-list-img {
    width: 160px;
    min-width: 160px;
    height: 130px;
    background: linear-gradient(135deg, #f0f0f0, #ddd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #bbb;
    flex-shrink: 0;
    height: -webkit-fill-available;
}

.prod-list-body {
    padding: 14px;
    flex: 1;
}

.prod-list-name {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 5px;
}

.prod-list-desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 8px;
}

.prod-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.prod-tag {
    background: var(--lgray);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 11px;
    color: var(--blue);
}

.prod-list-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-rfq {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn-rfq:hover {
    background: var(--oran2);
}

.btn-view2 {
    background: #fff;
    color: var(--blue);
    border: 2px solid var(--blue);
    border-radius: 5px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn-view2:hover {
    background: var(--blue);
    color: #fff;
}

.sort-bar {
    background: var(--lgray);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.sort-bar span {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}

.sort-bar select {
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 12px;
    outline: none;
}

/* ══════════════ PAGE: PRODUCT DETAIL ══════════════ */
.detail-img {
    background: linear-gradient(135deg, #f0f0f0, #ddd);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #bbb;
    min-height: 300px;
}

.detail-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 10px;
}

.detail-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 14px;
}

.detail-badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.spec-table tr {
    border-bottom: 1px solid var(--border);
}

.spec-table td {
    padding: 9px 12px;
    font-size: 13px;
}

.spec-table td:first-child {
    font-weight: 700;
    color: var(--blue);
    width: 40%;
    background: var(--lgray);
}

.tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 20px;
}

.tab-nav button {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    color: var(--gray);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-nav button.active {
    color: var(--blue);
    border-bottom-color: var(--orange);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.seller-card {
    background: var(--lgray);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
}

.seller-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 5px;
}

.seller-info {
    font-size: 12px;
    color: var(--gray);
}

.rating-stars {
    color: var(--orange);
    font-size: 13px;
}

.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 12px;
}

.review-author {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
}

.review-text {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

.related-grid .prod-card {
    cursor: pointer;
}

/* ══════════════ PAGE: RFQ ══════════════ */
.rfq-page-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
}

.rfq-page-form h3 {
    color: var(--blue);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.rfq-page-form label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.rfq-page-form input, .rfq-page-form select, .rfq-page-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    transition: .2s;
    margin-bottom: 14px;
}

.rfq-page-form input:focus, .rfq-page-form select:focus, .rfq-page-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(13, 74, 143, .1);
}

.rfq-page-form textarea {
    resize: vertical;
    min-height: 100px;
}

.rfq-side-box {
    background: var(--lgray);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.rfq-side-box h5 {
    font-size: 14px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
}

.rfq-side-box ul {
    list-style: none;
    padding: 0;
}

.rfq-side-box ul li {
    font-size: 12px;
    color: var(--gray);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rfq-side-box ul li:last-child {
    border: none;
}

.rfq-side-box ul li i {
    color: var(--green);
    font-size: 14px;
}

.step-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-box h6 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--blue);
}

.step-box p {
    font-size: 11px;
    color: var(--gray);
}

/* ══════════════ PAGE: LOGIN / REGISTER ══════════════ */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 40px 16px;
    background: linear-gradient(135deg, #f0f4ff, #e8f0ff);
}

.auth-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.auth-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 6px;
}

.auth-card p.sub {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 24px;
}

.auth-card label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.auth-card input, .auth-card select {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-size: 13px;
    outline: none;
    transition: .2s;
    margin-bottom: 14px;
}

.auth-card input:focus, .auth-card select:focus {
    border-color: var(--blue);
}

.btn-auth {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    border: none;
    padding: 13px;
    width: 100%;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
}

.btn-auth:hover {
    box-shadow: 0 5px 15px rgba(13, 74, 143, .4);
}

.auth-divider {
    text-align: center;
    margin: 16px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    background: #fff;
    padding: 0 12px;
    position: relative;
    font-size: 12px;
    color: var(--gray);
}

.btn-social {
    width: 100%;
    padding: 10px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.btn-social:hover {
    background: var(--lgray);
}

.tab-auth {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}

.tab-auth button {
    flex: 1;
    background: none;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    color: var(--gray);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-auth button.active {
    color: var(--blue);
    border-bottom-color: var(--orange);
}

.auth-toggle {
    display: none;
}

.auth-toggle.active {
    display: block;
}

.input-group-icon {
    position: relative;
}

.input-group-icon input {
    padding-right: 40px;
}

.input-group-icon i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-85%);
    color: var(--gray);
    cursor: pointer;
}

/* ══════════════ PAGE: ABOUT ══════════════ */
.about-hero {
    background: linear-gradient(135deg, var(--blue), #1565c0);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.about-hero h2 {
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 900;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: clamp(13px, 2vw, 17px);
    max-width: 600px;
    margin: 0 auto;
    opacity: .9;
}

.mission-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    height: 100%;
    transition: .2s;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.mission-card i {
    font-size: 46px;
    margin-bottom: 14px;
    display: block;
}

.mission-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}

.mission-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.team-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: .2s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin: 24px auto 14px;
}

.team-card h5 {
    font-size: 15px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3px;
}

.team-card p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 16px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.tl-item {
    position: relative;
    margin-bottom: 28px;
}

.tl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--orange);
    position: absolute;
    left: -30px;
    top: 4px;
}

.tl-year {
    font-size: 12px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 4px;
}

.tl-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px;
}

.tl-desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

.stat-highlight {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.stat-highlight .num {
    font-size: 42px;
    font-weight: 900;
    color: var(--orange);
}

.stat-highlight .lbl {
    font-size: 13px;
    opacity: .9;
}

/* ══════════════ PAGE: CONTACT ══════════════ */
.contact-info-card {
    background: var(--lgray);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    /* height: 100%; */
}

.contact-info-card h5 {
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.contact-item-text strong {
    display: block;
    font-size: 13px;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-item-text span {
    font-size: 12px;
    color: var(--gray);
}

.contact-form-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
}

.contact-form-box h3 {
    color: var(--blue);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
}

.contact-form-box input, .contact-form-box select, .contact-form-box textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    font-size: 13px;
    outline: none;
    transition: .2s;
    margin-bottom: 14px;
}

.contact-form-box input:focus, .contact-form-box select:focus, .contact-form-box textarea:focus {
    border-color: var(--blue);
}

.contact-form-box textarea {
    resize: vertical;
    min-height: 100px;
}

.map-placeholder {
    background: linear-gradient(135deg, #e8f0ff, #cfd8f0);
    border: 1px solid var(--border);
    border-radius: 10px;
    /* min-height: 280px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--blue);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    background: var(--lgray);
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q:hover {
    background: #e8ecf5;
}

.faq-a {
    padding: 14px 16px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    display: none;
    border-top: 1px solid var(--border);
}

.faq-a.open {
    display: block;
}

/* ══════════════ PAGE: CITY SUPPLIERS ══════════════ */
.city-hero {
    padding: 50px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--blue), #1565c0);
    color: #fff;
}

.supplier-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
    transition: .2s;
    height: 100%;
}

.supplier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.sup-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.sup-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 3px;
}

.sup-cat {
    font-size: 11px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 6px;
}

.sup-info {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 3px;
}

.sup-rating {
    font-size: 12px;
    color: var(--orange);
    margin-bottom: 10px;
}

.btn-sup {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

.btn-sup:hover {
    background: var(--blue2);
}

.city-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.city-tab {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

.city-tab.active, .city-tab:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* ══════════════ PAGE: SUCCESS / 404 ══════════════ */
.success-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 16px;
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: #fff;
    margin: 0 auto 22px;
}

.success-page h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 10px;
}

.success-page p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 24px;
}

.btn-home {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.btn-home:hover {
    background: var(--oran2);
}

/* ── UTILITIES ── */
.py-section {
    padding: 40px 0;
}

.bg-lgray {
    background: var(--lgray);
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

.badge-orange {
    background: var(--orange);
    color: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
}

/* ── RESPONSIVE ── */
@media(max-width:991px) {
    .d-desk {
        display: none !important;
    }

    .float-bar {
        display: none;
    }
}

@media(min-width:992px) {
    .mob-nav-toggle {
        display: none !important;
    }

    .mob-menu {
        display: none !important;
    }
}

@media(max-width:767px) {
    .prod-list-card {
        flex-direction: column;
    }

    .prod-list-img {
        width: 100%;
        min-width: 100%;
        height: 160px;
    }

    .rfq-page-form, .auth-card, .contact-form-box {
        padding: 20px;
    }

    .stat-highlight .num {
        font-size: 32px;
    }
}

@media(max-width:575px) {
    .hero {
        min-height: 300px;
    }

    .hero-search select {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .cat-ic-circle {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}

/* PAGINATION */
.pagination-wrap {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.pg-btn {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.pg-btn.active, .pg-btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* TOAST */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-msg {
    background: var(--blue);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInRight .3s ease;
}

.toast-msg.success {
    background: var(--green);
}

.toast-msg.error {
    background: var(--red);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* SCROLL TO TOP */
#scrollTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    z-index: 998;
}

#scrollTop:hover {
    background: var(--blue2);
}

input#tc1, input#regTc {
    width: auto;
    padding: 5px;
}

.p-2.search-item {
    cursor: pointer;
}

/* Select Styling Only */

.select-city {
    width: 140px;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0 35px 0 15px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Optional Custom Arrow */
.search-pill {
    position: relative;
}

.search-pill::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    left: 115px;
    font-size: 11px;
    color: #666;
    pointer-events: none;
}


/* ══════════════════════════════════════════════
       CITY SCROLLER & UI
    ══════════════════════════════════════════════ */
.city-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.city-container {
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    gap: 8px;
    flex: 1;
    scrollbar-width: none;
}

.city-container::-webkit-scrollbar {
    display: none;
}

.city-chip {
    border: 1px solid #ddd;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    flex-shrink: 0;
    background: #fff;
}

.city-chip.active {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
}

@media (max-width: 768px) {
    .prod-list-card {
        flex-direction: column;
    }

    .prod-list-img,
    .prod-company-panel {
        width: 100%;
        border: none;
    }

    .scroll-btn {
        display: none;
    }
}

/* 🔥 Pulse animation */
.near-me {
    position: relative;
    overflow: hidden;
}

.near-me .icon {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* pulse effect */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.city-search-input {
    width: 100px;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.city-search-input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}