:root {
    --green-primary: #51800f;
    --green-dark: #5a871d;
    --green-light: #e8f7ee;
    --green-gradient: linear-gradient(135deg, #74a022 0%, #62911d 60%, #101710 100%);
    --charcoal: #1c2320;
    --charcoal-mid: #2e3b2e;
    --text-main: #1c2320;
    --text-muted: #5a6b5a;
    --bg-white: #fff;
    --bg-mint: #eef8f1;
    --border-subtle: rgba(58, 170, 92, .16);
    --shadow-premium: 0 8px 28px rgba(31, 43, 31, .06), 0 1px 3px rgba(31, 43, 31, .03);
    --shadow-hover: 0 18px 40px rgba(31, 107, 56, .12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-white);
    color: var(--text-main);
    min-height: 100vh;
    padding-bottom: 80px
}

h1,
h2,
h3,
h4 {
    font-family: 'Urbanist', sans-serif
}

a {
    text-decoration: none;
    color: inherit
}

header {
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 16px rgba(31, 43, 31, .05)
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    border-radius: 8px
}

.brand-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1
}

.brand-title span {
    color: var(--green-primary)
}

.brand-slogan {
    font-size: 10px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 3px
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 28px
}

.nav-menu a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 15px;
    transition: .2s
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--green-primary)
}

.profile-action-btn,
.primary-btn {
    background: var(--green-gradient);
    border: 0;
    color: #fff;
    padding: 11px 22px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer
}

.ghost-btn {
    background: var(--bg-mint);
    color: var(--green-dark);
    border: 1px solid var(--border-subtle);
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 6px
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border-subtle);
    padding: 16px 24px;
    gap: 14px
}

.mobile-nav.open {
    display: flex
}

.mobile-nav a {
    font-weight: 700
}

.section-mint-green {
    background: var(--bg-mint);
    padding: 70px 24px;
    position: relative
}

.section-pure-white {
    background: #fff;
    padding: 70px 24px;
    position: relative
}

.container-central {
    max-width: 1240px;
    margin: 0 auto
}

.text-center {
    text-align: center
}

.section-tagline {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-primary);
    margin-bottom: 10px;
    display: block
}

.title-display-main {
    font-size: 42px;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 18px;
    line-height: 1.12
}

.page-hero {
    padding: 50px 24px 52px;
    background: linear-gradient(180deg, #f7fbf5 0%, #eef8f1 100%);
    border-bottom: 1px solid var(--border-subtle)
}

.page-hero-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 36px;
    align-items: center
}

.hero-copy p {
    font-size: 16px;
    line-height: 1.8;
    color: #000;
    max-width: 720px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px
}

.hero-visual {
    min-height: 300px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
    background: #dbead8
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* position: absolute; */
    inset: 0
}

.hero-stats {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
}

.hero-stat {
    background: rgba(255, 255, 255, .92);
    padding: 14px;
    border-radius: 12px
}

.hero-stat strong {
    display: block;
    color: var(--green-primary);
    font-size: 22px;
    font-family: 'Urbanist', sans-serif
}

.hero-stat span {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted)
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.rw-card {
    background: #fff;
    border: 1px solid rgb(58 170 92);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-premium);
    transition: .25s
}

.rw-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green-primary)
}

.icon-pill {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--bg-mint);
    color: var(--green-primary);
    font-size: 24px;
    margin-bottom: 16px
}

.muted {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 15px
}

.kicker {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 8px 13px;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 14px
}

.filter-shell {
    background: #fff;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-premium);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 12px;
    margin-top: 22px
}

.filter-shell input,
.filter-shell select,
.form-control {
    width: 100%;
    border: 1px solid rgba(28, 35, 32, .12);
    border-radius: 10px;
    padding: 13px 14px;
    font: inherit;
    outline: none;
    background: #fff
}

.filter-shell input:focus,
.filter-shell select:focus,
.form-control:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(81, 128, 15, .12)
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: .25s
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--green-primary)
}

.product-img {
    height: 190px;
    background: #f1f5f9;
    overflow: hidden
}

.product-img img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover
}

.product-body {
    padding: 16px
}

.badge {
    display: inline-block;
    background: var(--bg-mint);
    color: var(--green-dark);
    padding: 4px 10px;
    border-radius: 7px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px
}

.price {
    font-size: 22px;
    font-weight: 900;
    color: var(--green-primary);
    font-family: 'Urbanist', sans-serif;
    margin: 8px 0
}

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    border-top: 1px solid #eef2f7;
    margin-top: 13px;
    padding-top: 12px
}

.detail-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px
}

.detail-image {
    height: 460px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-premium)
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.seller-box {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-premium)
}

.spec-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0
}

.spec-item {
    background: var(--bg-mint);
    padding: 13px;
    border-radius: 10px
}

.spec-item span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 800;
    text-transform: uppercase
}

.spec-item strong {
    display: block;
    margin-top: 4px;
    color: var(--charcoal)
}

.form-shell {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    box-shadow: var(--shadow-premium);
    padding: 28px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.form-field label {
    display: block;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 7px
}

.full {
    grid-column: 1/-1
}

textarea.form-control {
    min-height: 120px;
    resize: vertical
}

.auth-wrap {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    background: #fff
}

.auth-panel {
    background: var(--green-gradient);
    color: #fff;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px
}

.auth-panel p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.8
}

.auth-form {
    padding: 38px
}

.footer {
    background: var(--charcoal);
    color: #fff;
    padding: 60px 0 0;
    margin-bottom: 0
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 35px
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--green-primary)
}

.footer-col p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 14px
}

.footer-col ul {
    list-style: none;
    padding: 0
}

.footer-col ul li {
    margin-bottom: 10px
}

.footer-col ul li a {
    color: #d1d5db;
    transition: .3s;
    font-size: 14px
}

.footer-col ul li a:hover {
    color: var(--green-primary);
    padding-left: 5px
}

.footer-bottom {
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    padding: 18px 0
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 13px
}

.sticky-footer-console {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    border-top: 1px solid var(--border-subtle);
    backdrop-filter: blur(16px);
    z-index: 999;
    box-shadow: 0 -6px 25px rgba(31, 43, 31, .06)
}

.footer-action-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 11px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

.footer-nav-shortcuts {
    display: flex;
    gap: 35px
}

.footer-shortcut-anchor {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px
}

.footer-shortcut-anchor i {
    font-size: 18px
}

.footer-shortcut-anchor:hover {
    color: var(--green-primary)
}

.floating-broadcast-btn {
    background: var(--green-gradient);
    color: #fff;
    padding: 11px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(58, 170, 92, .25)
}

@media (max-width:1100px) {

    .page-hero-grid,
    .detail-layout,
    .grid-2 {
        grid-template-columns: 1fr
    }

    .product-grid,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-container {
        grid-template-columns: 1fr 1fr
    }

    .filter-shell {
        grid-template-columns: 1fr 1fr
    }

    .hero-visual {
        min-height: 260px
    }
}

@media (max-width:900px) {
    .nav-menu {
        display: none
    }

    .hamburger {
        display: flex
    }

    .profile-action-btn {
        display: none
    }

    .title-display-main {
        font-size: 34px
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr
    }

    .auth-wrap {
        grid-template-columns: 1fr
    }

    .auth-panel {
        min-height: auto
    }

    .detail-image {
        height: 320px
    }
}

@media (max-width:640px) {
    body {
        padding-bottom: 76px
    }

    .logo-img {
        height: 48px
    }

    .brand-title {
        font-size: 20px
    }

    .brand-slogan {
        font-size: 8px
    }

    .section-mint-green,
    .section-pure-white,
    .page-hero {
        padding: 46px 18px
    }

    .product-grid,
    .grid-3,
    .grid-4,
    .footer-container,
    .filter-shell,
    .form-grid,
    .spec-list {
        grid-template-columns: 1fr
    }

    .hero-stats {
        grid-template-columns: 1fr;
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 14px
    }

    .footer-nav-shortcuts {
        gap: 20px
    }

    .footer-shortcut-anchor span {
        display: none
    }

    .floating-broadcast-btn {
        padding: 11px 16px
    }

    .auth-form,
    .auth-panel,
    .form-shell {
        padding: 24px
    }

    .hero-visual {
        min-height: auto
    }

    .hero-visual img {
        position: relative;
        height: 220px
    }

    .page-hero-grid {
        gap: 22px
    }
}

/* ===== Page Style Bundle ===== */

/* ===== ROOT THEME — Logo-matched: Green (#4cba6e primary) + Charcoal (#1f2b1f) ===== */
:root {
    --green-primary: #51800f;
    --green-dark: #5a871d;
    --green-light: #e8f7ee;
    --green-gradient: linear-gradient(135deg, #74a022 0%, #62911d 60%, #000000 100%);
    --charcoal: #1c2320;
    --charcoal-mid: #2e3b2e;
    --text-main: #1c2320;
    --text-muted: #5a6b5a;
    --bg-white: #ffffff;
    --bg-mint: #eef8f1;
    --bg-card: #ffffff;
    --border-subtle: rgba(58, 170, 92, 0.14);
    --shadow-premium: 0 8px 28px rgba(31, 43, 31, 0.06), 0 1px 3px rgba(31, 43, 31, 0.03);
    --shadow-hover: 0 18px 40px rgba(31, 107, 56, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-white);
    color: var(--text-main);
    min-height: 100vh;
    padding-bottom: 60px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Urbanist', sans-serif;
}

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 16px rgba(31, 43, 31, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* ===== LOGO ===== */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text-details {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-title span {
    color: var(--green-primary);
}

.brand-slogan {
    font-size: 10px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 3px;
}

/* ===== NAV MENU ===== */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--green-primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border-subtle);
    padding: 16px 24px;
    gap: 14px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.profile-action-btn {
    background: var(--green-gradient);
    border: none;
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section-mint-green {
    background: var(--bg-mint);
    padding: 70px 24px;
    position: relative;
}

.section-pure-white {
    background: var(--bg-white);
    padding: 70px 24px;
    position: relative;
}

.container-central {
    max-width: 1240px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-tagline {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-primary);
    margin-bottom: 10px;
    display: block;
}

.title-display-main {
    font-size: 40px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 15px;
        margin-top: 15px;

    line-height: 1.15;
}

/* ===== HERO ===== */
.search-hero-wrapper {
    text-align: center;
    padding: 80px 24px 30px;
}

.search-console-container {
    background: #fff;
    border: 2px solid rgba(58, 170, 92, 0.3);
    padding: 6px 6px 6px 22px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 14px;
    box-shadow: 0 12px 30px rgba(58, 170, 92, 0.08);
}

.search-console-container i {
    color: var(--green-primary);
    font-size: 18px;
    margin-right: 14px;
}

.main-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 500;
    min-width: 0;
}

.trigger-search-btn {
    background: var(--green-gradient);
    color: #fff;
    border: none;
    padding: 13px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
}

.search-guideline-text {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Trust bar */
.trust-brands-section {
    text-align: center;
    margin: 35px 0 20px;
}

.trust-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--green-dark);
    margin-bottom: 18px;
}

.brands-carousel-mock {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.75;
}

.brand-logo-item {
    font-size: 17px;
    font-weight: 800;
    color: #475569;
}

.brand-logo-item i {
    margin-right: 6px;
    color: var(--green-primary);
}

/* Register btn */
.onboarding-panel {
    text-align: center;
    margin-top: 25px;
}

.business-onboard-btn {
    background: var(--green-gradient);
    color: #fff;
    border: none;
    padding: 14px 38px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(58, 170, 92, 0.25);
}

.onboard-helper-notice {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== CATEGORIES ===== */
.grid-header-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: var(--charcoal);
    padding-top: 10px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.premium-categories-mesh {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.premium-category-node {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 26px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    box-shadow: var(--shadow-premium);
}

.premium-category-node:hover {
    transform: translateY(-5px);
    border-color: var(--green-primary);
    box-shadow: var(--shadow-hover);
}

.node-icon-sphere {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--bg-mint);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--green-primary);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.premium-category-node:hover .node-icon-sphere {
    background: var(--green-gradient);
    color: #fff;
    border-color: transparent;
}

.node-label-text {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

/* ===== LISTINGS SLIDER ===== */
.live-listings-slider-viewport {
    overflow: hidden;
    width: 100%;
    margin-top: 18px;
    padding: 12px 0;
}

.listings-cards-row-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.listings-cards-row-container::-webkit-scrollbar {
    display: none;
}

.listing-broadcast-node-card {
    min-width: calc(25% - 15px);
    width: calc(25% - 15px);
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow-premium);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.listing-broadcast-node-card:hover {
    transform: translateY(-4px);
    border-color: var(--green-primary);
    box-shadow: var(--shadow-hover);
}

.node-card-image-frame {
    width: 100%;
    height: 150px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.node-card-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-meta-category {
    background: var(--bg-mint);
    color: var(--green-dark);
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.node-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 7px;
    line-height: 1.3;
}

.node-card-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    height: 58px;
    overflow: hidden;
}

.node-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 600;
}

.node-footer-meta span i {
    color: var(--green-primary);
    margin-right: 4px;
}

.node-action-link-btn {
    background: var(--bg-mint);
    color: var(--green-dark);
    text-align: center;
    text-decoration: none;
    padding: 9px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    display: block;
    transition: all 0.2s ease;
    border: 1px solid rgba(58, 170, 92, 0.15);
}

.node-action-link-btn:hover {
    background: var(--green-gradient);
    color: #fff;
}

/* ===== ABOUT ===== */
.extended-about-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    margin-top: 20px;
}

.about-company-block h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.about-company-block h3 {
    font-size: 20px;
    color: var(--green-primary);
    margin-bottom: 14px;
    font-weight: 700;
}

.about-company-block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: justify;
}

.module-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-primary);
    margin-bottom: 10px;
    display: block;
}

.corporate-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.stat-badge-node {
    background: var(--bg-mint);
    border-left: 4px solid var(--green-primary);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.stat-badge-node h4 {
    font-size: 30px;
    font-weight: 800;
    color: var(--green-primary);
}

.stat-badge-node span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.why-choose-side-card {
    background: var(--bg-mint);
    border: 1px dashed var(--green-primary);
    border-radius: 20px;
    padding: 35px 22px;
}

.why-choose-side-card h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    color: var(--charcoal);
}

.why-choose-side-card i.fa-award {
    font-size: 36px;
    color: var(--green-primary);
    margin-bottom: 12px;
    display: block;
}

.why-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.why-choose-list li {
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: var(--shadow-premium);
}

/* ===== HOW IT WORKS ===== */
.how-it-works-section {
    text-align: center;
}

.how-it-works-section h2 {
    display: inline-block;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 800;
    color: var(--charcoal);
}

.steps-flow-mesh {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.step-node-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px 28px 32px;
    position: relative;
    box-shadow: var(--shadow-premium);
}

.step-badge-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--green-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(58, 170, 92, 0.3);
}

.step-node-card i {
    font-size: 34px;
    color: var(--green-primary);
    margin-bottom: 18px;
}

.step-node-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.step-node-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== TESTIMONIALS — Auto-running marquee carousel ===== */
.testimonials-section {
    max-width: 100%;
    margin: 0 auto 80px;
    padding: 0;
    text-align: center;
}

.testimonials-section .testimonials-heading {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-section h2 {
    display: inline-block;
    margin-bottom: 40px;
    margin-top: 60px;
    font-size: 32px;
    font-weight: 800;
    color: var(--charcoal);
}

.testimonials-marquee-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: testimonialScroll 32s linear infinite;
}

.testimonials-marquee-viewport:hover .testimonials-grid {
    animation-play-state: paused;
}

@keyframes testimonialScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-grid {
        animation: none;
    }
}

.testimonial-bubble-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    padding: 30px 22px;
    text-align: left;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 360px;
    flex-shrink: 0;
}

.stars-row {
    color: #f1c40f;
    margin-bottom: 14px;
    font-size: 13px;
}

.testimonial-feedback-text {
    font-size: 14px;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 18px;
}

.client-profile-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.client-avatar-fallback {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-mint);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid var(--border-subtle);
}

.client-specs h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
}

.client-specs span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== STICKY BOTTOM NAV ===== */
.sticky-footer-console {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.04);
}

.footer-action-layout {
    max-width: 900px;
    margin: 0 auto;
    padding: 11px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav-shortcuts {
    display: flex;
    gap: 35px;
}

.footer-shortcut-anchor {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.footer-shortcut-anchor i {
    font-size: 18px;
}

.footer-shortcut-anchor:hover {
    color: var(--green-primary);
}

.floating-broadcast-btn {
    background: var(--green-gradient);
    color: #fff;
    border: none;
    padding: 11px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: #fff;
    padding: 60px 0 0;
    margin-bottom: 0;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 36px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--green-primary);
}

.footer-col p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--green-primary);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 18px 0;
    margin-bottom: 0;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .premium-categories-mesh {
        grid-template-columns: repeat(4, 1fr);
    }

    .listing-broadcast-node-card {
        min-width: calc(50% - 10px);
        width: calc(50% - 10px);
    }

    .extended-about-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .premium-categories-mesh {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-flow-mesh {
        grid-template-columns: 1fr 1fr;
    }

    .title-display-main {
        font-size: 32px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 640px) {
    .premium-categories-mesh {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .steps-flow-mesh {
        grid-template-columns: 1fr;
    }

    .listing-broadcast-node-card {
        min-width: calc(85vw);
        width: calc(85vw);
    }

    .testimonial-bubble-card {
        width: 280px;
        padding: 24px 18px;
    }

    .testimonials-grid {
        animation-duration: 22s;
        gap: 16px;
    }

    .title-display-main {
        font-size: 26px;
    }

    .search-hero-wrapper {
        padding: 50px 16px 20px;
    }

    .section-mint-green,
    .section-pure-white {
        padding: 50px 16px;
    }

    .corporate-stats-row {
        grid-template-columns: 1fr;
    }

    .footer-nav-shortcuts {
        gap: 20px;
    }

    .footer-shortcut-anchor span {
        display: none;
    }

    .trigger-search-btn {
        padding: 11px 18px;
        font-size: 14px;
    }

    .search-console-container {
        padding: 5px 5px 5px 14px;
    }

    .brands-carousel-mock {
        gap: 22px;
    }

    .logo-img {
        height: 44px;
    }

    .brand-title {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .premium-categories-mesh {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .premium-category-node {
        padding: 18px 10px;
    }

    .node-icon-sphere {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}

/* ===== Asset-separated refinements ===== */
.rw-extra-section {
    scroll-margin-top: 110px;
}

.profile-action-btn {
    text-decoration: none;
    white-space: nowrap;
}

.footer-col p i {
    color: var(--green-primary);
    margin-right: 7px;
}

img {
    max-width: 100%;
}










/* =========================
   RECYCLEWALE WHY CHOOSE US
========================= */

.rwWhyChooseSec{
    padding:80px 20px;
    background:#f7faf9;
    font-family:'Poppins',sans-serif;
}

.rwWhyChooseContainer{
    max-width:1240px;
    margin:auto;
}

.rwWhyChooseContent{
    text-align:center;
}

.rwWhyChooseTag{
    display:inline-block;
    background:#e6f7ef;
    color:#0f8b5f;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.rwWhyChooseTitle{
    font-size:42px;
    font-weight:700;
    color:#1d2939;
    margin-bottom:18px;
    line-height:1.2;
}

.rwWhyChooseDesc{
    max-width:850px;
    margin:0 auto 50px;
    color:#667085;
    font-size:17px;
    line-height:1.8;
}

.rwWhyChooseGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.rwWhyChooseCard{
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:.35s ease;
    border: 1px solid rgb(58 170 92);
}

.rwWhyChooseCard:hover{
    transform:translateY(-8px);
}

.rwWhyChooseIcon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#e9f9f2;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.rwWhyChooseCard h3{
    font-size:22px;
    color:#1d2939;
    margin-bottom:12px;
}

.rwWhyChooseCard p{
    color:#667085;
    font-size:15px;
    line-height:1.7;
}

/* Tablet */
@media(max-width:991px){

    .rwWhyChooseTitle{
        font-size:34px;
    }

    .rwWhyChooseGrid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media(max-width:767px){

    .rwWhyChooseSec{
        padding:60px 15px;
    }

    .rwWhyChooseTitle{
        font-size:28px;
    }

    .rwWhyChooseDesc{
        font-size:15px;
    }

    .rwWhyChooseGrid{
        grid-template-columns:1fr;
    }

    .rwWhyChooseCard{
        padding:28px 20px;
    }

}   









/*==================================
   RECYCLEWALE TERMS PAGE
==================================*/

.rwTermsSection{
    padding:60px 20px;
    background:#f8fafc;
    font-family:'Poppins',sans-serif;
}

.rwTermsContainer{
    max-width:1240px;
    margin:auto;
}

.rwTermsHeader{
    margin-bottom:50px;
}

.rwTermsBadge{
    display:inline-block;
    padding:8px 18px;
    background:#6f9c210f;
    color:#6f9c21;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.rwTermsHeader h1{
    font-size:52px;
    color:#111827;
    margin-bottom:20px;
    line-height:1.2;
}

.rwTermsHeader p{
    /* max-width:00px; */
    font-size:17px;
    line-height:1.9;
    color:#64748b;
}

.rwTermsContent{
    background:#ffffff;
    border-radius:24px;
    padding:50px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.rwTermsBlock{
    margin-bottom:35px;
    padding-bottom:30px;
    border-bottom:1px solid #e5e7eb;
}

.rwTermsBlock:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.rwTermsBlock h3{
    font-size:24px;
    color:#111827;
    margin-bottom:15px;
    font-weight:600;
}

.rwTermsBlock p{
    font-size:16px;
    line-height:1.9;
    color:#4b5563;
}

/* Tablet */

@media(max-width:991px){

    .rwTermsHeader h1{
        font-size:42px;
    }

    .rwTermsContent{
        padding:35px;
    }

}

/* Mobile */

@media(max-width:767px){

    .rwTermsSection{
        padding:60px 15px;
    }

    .rwTermsHeader h1{
        font-size:34px;
    }

    .rwTermsHeader p,
    .rwTermsBlock p{
        font-size:15px;
    }

    .rwTermsBlock h3{
        font-size:20px;
    }

    .rwTermsContent{
        padding:25px;
        border-radius:18px;
    }

}











/*=========================
   RECYCLEWALE FAQ
=========================*/

.rwFaqSection{
    padding:90px 20px;
    background:#f8fafc;
    font-family:'Poppins',sans-serif;
}

.rwFaqContainer{
    max-width:1000px;
    margin:auto;
}

.rwFaqHeading{
    text-align:center;
    margin-bottom:50px;
}

.rwFaqBadge{
    display:inline-block;
    padding:8px 18px;
    background:#e8fff1;
    color:#68961f;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.rwFaqHeading h2{
    font-size:48px;
    color:#111827;
    margin-bottom:15px;
}

.rwFaqHeading p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

.rwFaqWrapper{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.rwFaqItem{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.rwFaqQuestion{
    width:100%;
    background:none;
    border:none;
    padding:24px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    color:#111827;
    text-align:left;
}

.rwFaqQuestion i{
    color:#68961f;
    transition:.3s;
}

.rwFaqAnswer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.rwFaqAnswer p{
    padding:0 25px 25px;
    color:#64748b;
    line-height:1.9;
    font-size:15px;
}

.rwFaqItem.active .rwFaqAnswer{
    max-height:250px;
}

.rwFaqItem.active .rwFaqQuestion i{
    transform:rotate(45deg);
}

/* Responsive */

@media(max-width:768px){

    .rwFaqSection{
        padding:70px 15px;
    }

    .rwFaqHeading h2{
        font-size:32px;
    }

    .rwFaqQuestion{
        font-size:16px;
        padding:20px;
    }

    .rwFaqAnswer p{
        padding:0 20px 20px;
    }

}

/* Pagination Styles */
.pagination {
    display: flex;
    list-style: none;
    padding-left: 0;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.pagination .page-item {
    display: inline-block;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal);
    background-color: var(--bg-white);
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.pagination .page-link:hover {
    color: var(--green-primary);
    background-color: var(--green-light);
    border-color: var(--green-primary);
}

.pagination .page-item.active .page-link {
    color: var(--bg-white);
    background-color: var(--green-primary);
    border-color: var(--green-primary);
    box-shadow: 0 4px 10px rgba(81, 128, 15, 0.2);
}

.pagination .page-item.disabled .page-link {
    color: #cbd5e1;
    pointer-events: none;
    background-color: #fafbfc;
    border-color: #e1e4e8;
    box-shadow: none;
}

/* ===== Responsive Refinements ===== */
.dashboard-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}
.dashboard-sidebar {
    position: sticky;
    top: 100px;
}
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}
.products-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}
.chat-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    height: 600px;
    max-height: 600px;
    border: 1px solid #e1e4e8;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
}
.chat-left-pane {
    border-right: 1px solid #e1e4e8;
    display: flex;
    flex-direction: column;
    background: #fafbfc;
}
.chat-right-pane {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    background: #fff;
    overflow: hidden;
}

@media (max-width: 991px) {
    .dashboard-layout-grid,
    .products-layout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dashboard-sidebar {
        position: static;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .contact-layout-grid,
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    .chat-container {
        grid-template-columns: 1fr;
        height: calc(100vh - 120px);
        max-height: none;
    }
    .chat-container.has-active-chat .chat-left-pane {
        display: none !important;
    }
    .chat-container:not(.has-active-chat) .chat-right-pane {
        display: none !important;
    }
    .chat-back-btn {
        display: flex !important;
    }
}