:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #081330;
    --muted: #64748b;
    --soft: #f5f7fb;
    --border: #e2e8f0;
    --radius: 24px;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: #0f172a;
    background: #ffffff;
}

.btn {
    border-radius: 999px;
    padding-inline: 1.25rem;
    font-weight: 700;
}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.marketplace-navbar.scrolled {
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: white;
    background: linear-gradient(135deg, var(--primary), #06b6d4);
    box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}
.nav-link {
    font-weight: 700;
    color: #334155;
}
.nav-link:hover {
    color: var(--primary);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
}
.carousel-item {
    min-height: 100vh;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}
.text-white-75 {
    color: rgba(255, 255, 255, 0.78);
}
.section-eyebrow {
    display: inline-flex;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
}
.custom-indicators {
    bottom: 34px;
}
.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
}
.carousel-control-prev,
.carousel-control-next {
    width: 7%;
}

.search-panel-wrapper {
    position: relative;
    z-index: 5;
    margin-top: -70px;
}
.search-panel {
    padding: 28px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.7);
}
.form-label {
    font-weight: 800;
    color: #334155;
    font-size: 0.88rem;
}
.form-control,
.form-select {
    min-height: 48px;
    border-radius: 16px;
    border-color: var(--border);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.12);
}
.input-icon {
    position: relative;
}
.input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}
.input-icon .form-control {
    padding-left: 45px;
}

.section-padding {
    padding: 96px 0;
}
.bg-light-soft {
    background: var(--soft);
}
.section-heading {
    max-width: 650px;
}
.section-heading h2 {
    font-weight: 850;
    letter-spacing: -0.035em;
    margin-top: 0.4rem;
}
.section-heading p {
    color: var(--muted);
    margin-bottom: 0;
}

.category-card {
    display: flex;
    gap: 16px;
    align-items: center;
    min-height: 132px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.25s ease;
}
.category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
}
.category-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}
.category-card h5 {
    font-weight: 850;
    margin-bottom: 4px;
}
.category-card p {
    color: var(--muted);
    margin: 0;
}

.stats-section {
    padding: 48px 0;
    background: #0f172a;
}
.stat-card {
    padding: 26px;
    text-align: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-card strong {
    display: block;
    color: white;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 900;
}
.stat-card span {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
}

.product-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    transition: 0.25s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
}
.product-image {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    color: white;
    background: rgba(15, 23, 42, 0.84);
    font-size: 0.78rem;
    font-weight: 800;
}
.product-body {
    padding: 20px;
}
.product-body h5 {
    min-height: 52px;
    font-weight: 850;
    font-size: 1.05rem;
}
.rating {
    color: #f59e0b;
    font-weight: 800;
}
.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
}
.supplier-name {
    color: var(--muted);
    margin: 0;
    font-weight: 700;
}
.supplier-name i {
    color: #10b981;
}
.product-body small {
    display: block;
    color: var(--muted);
    font-weight: 700;
}
.product-body strong {
    display: block;
    font-size: 1.05rem;
}

.rfq-btn {
    flex-shrink: 0;
    min-width: 82px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    border-radius: 999px;
}

.product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
}

.product-price-info {
    flex: 1;
    min-width: 0;
}

.product-price-info small,
.product-price-info strong {
    display: block;
}

.product-price-info strong {
    line-height: 1.25;
}

.supplier-card {
    padding: 26px;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.05);
}
.supplier-avatar {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a, var(--primary));
    margin-bottom: 18px;
}
.supplier-card h5 {
    font-weight: 850;
}
.supplier-card p {
    color: var(--muted);
    font-weight: 700;
}
.supplier-meta {
    display: grid;
    gap: 8px;
    color: #475569;
    font-size: 0.92rem;
}

.rfq-section {
    padding: 96px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(59, 130, 246, 0.45),
            transparent 34%
        ),
        linear-gradient(135deg, #081330, #0f172a);
}
.rfq-benefits {
    display: grid;
    gap: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}
.rfq-benefits i {
    color: #22c55e;
    margin-right: 8px;
}
.rfq-form {
    padding: 32px;
    border-radius: 28px;
    background: white;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}
.rfq-form h4 {
    font-weight: 900;
}

.footer-section {
    padding: 70px 0 30px;
    background: #ffffff;
}
.footer-section h6 {
    font-weight: 900;
    margin-bottom: 14px;
}
.footer-section a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 9px;
    font-weight: 700;
}

.product-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-filter-btn {
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: #ffffff;
    color: #2563eb;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.25s ease;
}

.product-filter-btn:hover,
.product-filter-btn.active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
}

.product-card-item {
    transition: 0.25s ease;
}

.product-card-item.d-none {
    display: none !important;
}
.footer-section a:hover {
    color: var(--primary);
}
.footer-section hr {
    margin: 36px 0 22px;
    color: var(--border);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding-top: 110px;
    }
    .search-panel-wrapper {
        margin-top: 0;
        padding-top: 22px;
    }
    .section-padding,
    .rfq-section {
        padding: 70px 0;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}

.reveal-left {
    transform: translateX(-48px);
}

.reveal-right {
    transform: translateX(48px);
}

.reveal-left.show,
.reveal-right.show {
    transform: translateX(0);
}

.btn-login {
    background: #ffffff;
    border-color: #88898a;
    color: #334155;
}

.btn-login:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: #0f172a;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.marketplace-navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.custom-navbar-toggler {
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 10px;
    padding: 10px 12px;
    box-shadow: none !important;
}

.custom-navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .marketplace-navbar .container {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .marketplace-navbar .navbar-collapse {
        background: #ffffff;
        margin-top: 16px;
        padding: 18px;
        border-radius: 20px;
        box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
    }

    .marketplace-navbar .navbar-nav {
        gap: 8px;
    }

    .marketplace-navbar .nav-link {
        font-size: 1.05rem;
        font-weight: 800;
        color: #334155;
        padding: 10px 4px;
    }

    .marketplace-navbar .navbar-action {
        margin-top: 12px;
        display: grid !important;
        width: 100%;
    }

    .marketplace-navbar .navbar-action .btn {
        width: 100%;
        padding: 12px 18px;
        border-radius: 999px;
        font-weight: 800;
    }

    .brand-mark {
        flex-shrink: 0;
    }

    .navbar-brand {
        max-width: calc(100vw - 96px);
    }

    .navbar-brand .fw-bold {
        font-size: 1.2rem;
        white-space: nowrap;
    }
}

/* Perbaikan sisi putih karena animasi reveal kanan */
@media (max-width: 767.98px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(48px);
    }

    .reveal-left.show,
    .reveal-right.show {
        transform: translateY(0);
    }
}

/* Product Pages */
.catalog-hero {
    padding: 150px 0 80px;
    background:
        linear-gradient(135deg, rgba(8, 19, 48, 0.92), rgba(37, 99, 235, 0.78)),
        url("https://images.unsplash.com/photo-1586528116493-da09f0464c2d?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.catalog-hero-content {
    max-width: 720px;
}

.catalog-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    margin-top: 14px;
    margin-bottom: 18px;
}

.catalog-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.15rem;
    max-width: 620px;
}

.catalog-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.catalog-filter {
    position: sticky;
    top: 105px;
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.catalog-filter h5 {
    font-weight: 900;
    margin-bottom: 22px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    cursor: pointer;
}

.filter-check input {
    width: 17px;
    height: 17px;
    accent-color: var(--primary);
}

.filter-check span {
    flex: 1;
    font-weight: 750;
    color: #334155;
}

.filter-check small {
    color: var(--muted);
    font-weight: 700;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--border);
}

.catalog-toolbar h4 {
    font-weight: 900;
    margin-bottom: 4px;
}

.catalog-toolbar p {
    margin: 0;
    color: var(--muted);
    font-weight: 650;
}

.catalog-sort {
    width: 220px;
}

.product-category {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 850;
}

.product-location {
    margin: 8px 0 0;
    color: #64748b;
    font-weight: 700;
    font-size: 0.92rem;
}

.catalog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 42px;
}

.page-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: #ffffff;
    border-radius: 50%;
    font-weight: 850;
    color: #334155;
}

.page-btn.active,
.page-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

@media (max-width: 991.98px) {
    .catalog-hero {
        padding: 130px 0 64px;
    }

    .catalog-filter {
        position: static;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-sort {
        width: 100%;
    }
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
}

.product-title-link:hover h5 {
    color: var(--primary);
}

.filter-category-block {
    margin-bottom: 16px;
}

.filter-subcategory-list {
    margin-left: 28px;
    margin-top: 8px;
    display: grid;
    gap: 8px;
}

.filter-check-sub {
    margin-bottom: 0;
}

.filter-check-sub span {
    font-size: 0.9rem;
    font-weight: 650;
    color: #64748b;
}

/* Product Detail*/
.product-detail-section {
    padding: 130px 0 90px;
    background: #f5f7fb;
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-weight: 750;
    color: #64748b;
}

.detail-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.product-detail-gallery {
    display: grid;
    gap: 16px;
}

.product-detail-image {
    min-height: 520px;
    border-radius: 32px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.product-thumb-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.product-thumb {
    height: 110px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.product-thumb.active {
    border-color: var(--primary);
}

.product-detail-info {
    padding: 34px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.07);
}

.product-detail-info h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 950;
    letter-spacing: -0.045em;
    margin: 12px 0 18px;
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.product-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 800;
    font-size: 0.88rem;
}

.product-detail-meta i {
    color: var(--primary);
}

.product-detail-price {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.1),
        rgba(6, 182, 212, 0.08)
    );
    margin-bottom: 22px;
}

.product-detail-price small {
    display: block;
    color: #64748b;
    font-weight: 800;
    margin-bottom: 4px;
}

.product-detail-price strong {
    display: block;
    font-size: 2rem;
    font-weight: 950;
    color: #0f172a;
}

.product-detail-price span {
    color: #475569;
    font-weight: 800;
}

.supplier-mini-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    margin-bottom: 24px;
}

.supplier-mini-card h5 {
    margin-bottom: 4px;
    font-weight: 900;
}

.supplier-mini-card p {
    margin: 0;
    color: #64748b;
    font-weight: 700;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.detail-note {
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 700;
    font-size: 0.92rem;
}

.detail-panel {
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 14px 45px rgba(15, 23, 42, 0.05);
    margin-bottom: 24px;
}

.detail-panel h3 {
    font-weight: 950;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.detail-panel p {
    color: #475569;
    line-height: 1.8;
    font-weight: 650;
    margin-bottom: 0;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.spec-list li {
    display: flex;
    gap: 12px;
    color: #334155;
    font-weight: 750;
}

.spec-list i {
    color: #22c55e;
}

.procurement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.procurement-grid div {
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--border);
}

.procurement-grid span {
    display: block;
    color: #64748b;
    font-weight: 750;
    margin-bottom: 6px;
}

.procurement-grid strong {
    color: #0f172a;
    font-weight: 900;
}

.sticky-detail-card {
    position: sticky;
    top: 110px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.summary-row span {
    color: #64748b;
    font-weight: 750;
}

.summary-row strong {
    text-align: right;
    color: #0f172a;
    font-weight: 900;
}

.related-product-section {
    padding-top: 50px;
}

@media (max-width: 991.98px) {
    .product-detail-section {
        padding: 110px 0 70px;
    }

    .product-detail-image {
        min-height: 360px;
        border-radius: 26px;
    }

    .product-thumb {
        height: 86px;
    }

    .product-detail-info {
        padding: 24px;
        border-radius: 26px;
    }

    .detail-actions .btn {
        width: 100%;
    }

    .sticky-detail-card {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .procurement-grid {
        grid-template-columns: 1fr;
    }

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

/* Supplier */
.supplier-hero {
    padding: 150px 0 80px;
    background:
        linear-gradient(135deg, rgba(8, 19, 48, 0.94), rgba(37, 99, 235, 0.72)),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.supplier-hero-content {
    max-width: 760px;
}

.supplier-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 950;
    letter-spacing: -0.045em;
    margin-top: 14px;
    margin-bottom: 18px;
}

.supplier-hero p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.15rem;
}

.supplier-page-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.supplier-search-card {
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
    margin-top: -120px;
    position: relative;
    z-index: 4;
}

.supplier-page-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 22px;
    margin: 70px 0 28px;
}

.supplier-page-heading h2 {
    font-weight: 950;
    letter-spacing: -0.035em;
    margin-top: 8px;
    margin-bottom: 8px;
}

.supplier-page-heading p {
    color: #64748b;
    font-weight: 650;
    margin: 0;
}

.supplier-sort {
    width: 230px;
}

.supplier-list-card {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
    transition: 0.25s ease;
}

.supplier-list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
    border-color: rgba(37, 99, 235, 0.28);
}

.supplier-list-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
    margin-bottom: 22px;
}

.supplier-avatar-lg {
    width: 72px;
    height: 72px;
    font-size: 1.2rem;
}

.supplier-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 850;
    font-size: 0.78rem;
}

.supplier-badge i {
    color: #10b981;
}

.supplier-list-card h4 {
    font-weight: 950;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
}

.supplier-list-description {
    color: #64748b;
    line-height: 1.7;
    font-weight: 650;
    margin-bottom: 18px;
}

.supplier-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.supplier-tags span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 800;
}

.supplier-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.supplier-stats-grid div {
    padding: 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.supplier-stats-grid small {
    display: block;
    color: #64748b;
    font-weight: 750;
    margin-bottom: 4px;
}

.supplier-stats-grid strong {
    color: #0f172a;
    font-weight: 900;
}

.supplier-stats-grid i {
    color: #f59e0b;
}

.supplier-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 991.98px) {
    .supplier-hero {
        padding: 130px 0 120px;
    }

    .supplier-page-section {
        padding: 60px 0 70px;
    }

    .supplier-search-card {
        margin-top: -105px;
    }

    .supplier-page-heading {
        flex-direction: column;
        align-items: stretch;
        margin-top: 54px;
    }

    .supplier-sort {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .supplier-search-card {
        padding: 20px;
        border-radius: 24px;
    }

    .supplier-card-actions {
        grid-template-columns: 1fr;
    }

    .supplier-stats-grid {
        grid-template-columns: 1fr;
    }
}

.supplier-list-card {
    display: flex;
    flex-direction: column;
}

.supplier-list-description {
    min-height: 84px;
}

.supplier-tags {
    min-height: 38px;
}

.supplier-stats-grid {
    margin-top: auto;
}

.supplier-card-actions {
    margin-top: 24px;
}

.supplier-detail-section {
    padding: 130px 0 90px;
    background: #f5f7fb;
}

.supplier-profile-hero {
    padding: 34px;
    border-radius: 34px;
    background:
        radial-gradient(
            circle at top right,
            rgba(37, 99, 235, 0.16),
            transparent 30%
        ),
        #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 20px 70px rgba(15, 23, 42, 0.08);
}

.supplier-profile-main {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.supplier-profile-avatar {
    width: 96px;
    height: 96px;
    font-size: 1.7rem;
    flex-shrink: 0;
}

.supplier-profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.supplier-profile-badges span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 850;
    font-size: 0.82rem;
}

.supplier-profile-badges i {
    color: #10b981;
}

.supplier-profile-hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 950;
    letter-spacing: -0.045em;
    margin-bottom: 14px;
}

.supplier-profile-hero p {
    max-width: 760px;
    color: #64748b;
    font-weight: 650;
    line-height: 1.8;
    margin-bottom: 18px;
}

.supplier-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.supplier-profile-tags span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-weight: 800;
    font-size: 0.88rem;
}

.supplier-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.supplier-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.supplier-summary-grid div {
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--border);
}

.supplier-summary-grid small {
    display: block;
    color: #64748b;
    font-weight: 750;
    margin-bottom: 4px;
}

.supplier-summary-grid strong {
    color: #0f172a;
    font-weight: 900;
}

.supplier-summary-grid i {
    color: #f59e0b;
}

@media (max-width: 991.98px) {
    .supplier-detail-section {
        padding: 110px 0 70px;
    }

    .supplier-profile-main {
        flex-direction: column;
    }

    .supplier-profile-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .supplier-profile-hero {
        padding: 24px;
        border-radius: 28px;
    }

    .supplier-profile-avatar {
        width: 78px;
        height: 78px;
        font-size: 1.3rem;
    }

    .supplier-summary-grid {
        grid-template-columns: 1fr;
    }
}

/* Kategori */
.category-page-hero,
.category-detail-hero {
    padding: 150px 0 90px;
    background:
        linear-gradient(135deg, rgba(8, 19, 48, .94), rgba(37, 99, 235, .72)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.category-page-hero-content,
.category-detail-content {
    max-width: 780px;
}

.category-page-hero h1,
.category-detail-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 950;
    letter-spacing: -.045em;
    margin-top: 14px;
    margin-bottom: 18px;
}

.category-page-hero p,
.category-detail-hero p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.15rem;
    max-width: 660px;
}

.category-page-section,
.category-detail-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.category-page-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .06);
    transition: .25s ease;
}

.category-page-card:hover {
    transform: translateY(-6px);
    color: inherit;
    border-color: rgba(37, 99, 235, .3);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .1);
}

.category-page-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.category-page-card-top span {
    padding: 8px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 850;
    font-size: .82rem;
}

.category-page-card h4 {
    font-weight: 950;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.category-page-card p {
    color: #64748b;
    line-height: 1.7;
    font-weight: 650;
    margin-bottom: 18px;
}

.category-sub-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.category-sub-list span,
.category-detail-tags span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: .82rem;
    font-weight: 800;
}

.category-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--primary);
}

.category-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.empty-state {
    text-align: center;
    padding: 70px 24px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    margin-top: 24px;
}

.empty-state i {
    font-size: 3rem;
    color: var(--primary);
}

.empty-state h3 {
    font-weight: 950;
    margin-top: 18px;
}

.empty-state p {
    color: #64748b;
    font-weight: 650;
}

@media (max-width: 991.98px) {
    .category-page-hero,
    .category-detail-hero {
        padding: 130px 0 70px;
    }

    .category-page-section,
    .category-detail-section {
        padding: 60px 0 70px;
    }
}

/* RFQ */
.rfq-page-hero {
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, .35), transparent 30%),
        linear-gradient(135deg, rgba(8, 19, 48, .95), rgba(15, 23, 42, .86)),
        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.rfq-page-hero-content {
    max-width: 780px;
}

.rfq-page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 950;
    letter-spacing: -.045em;
    margin-top: 14px;
    margin-bottom: 18px;
}

.rfq-page-hero p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.15rem;
    max-width: 680px;
}

.rfq-page-section {
    padding: 80px 0;
    background: #f5f7fb;
}

.rfq-page-form {
    display: grid;
    gap: 24px;
}

.form-section {
    padding: 30px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(15, 23, 42, .06);
}

.form-section-heading {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.form-section-heading > span {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    background: var(--primary);
    font-weight: 900;
}

.form-section-heading h3 {
    font-weight: 950;
    letter-spacing: -.025em;
    margin-bottom: 5px;
}

.form-section-heading p {
    margin: 0;
    color: #64748b;
    font-weight: 650;
}

.file-upload-dummy {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 22px;
    border: 1.5px dashed #cbd5e1;
    border-radius: 22px;
    background: #f8fafc;
}

.file-upload-dummy i {
    font-size: 2rem;
    color: var(--primary);
}

.file-upload-dummy strong {
    display: block;
    font-weight: 900;
    color: #0f172a;
}

.file-upload-dummy p {
    margin: 3px 0 0;
    color: #64748b;
    font-weight: 650;
}

.rfq-submit-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #081330, #0f172a);
    color: #ffffff;
    box-shadow: 0 22px 65px rgba(15, 23, 42, .22);
}

.rfq-submit-card h4 {
    font-weight: 950;
    margin-bottom: 5px;
}

.rfq-submit-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-weight: 650;
}

.rfq-side-panel {
    position: sticky;
    top: 110px;
    padding: 28px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(15, 23, 42, .06);
}

.rfq-side-panel h3 {
    font-weight: 950;
    letter-spacing: -.025em;
    margin-bottom: 22px;
}

.rfq-step-list {
    display: grid;
    gap: 18px;
}

.rfq-step-item {
    display: flex;
    gap: 14px;
}

.rfq-step-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary);
    background: rgba(37, 99, 235, .1);
    font-size: 1.2rem;
}

.rfq-step-item h5 {
    font-weight: 900;
    margin-bottom: 5px;
}

.rfq-step-item p {
    margin: 0;
    color: #64748b;
    font-weight: 650;
    line-height: 1.6;
}

.rfq-side-note {
    display: flex;
    gap: 14px;
    margin-top: 26px;
    padding: 18px;
    border-radius: 22px;
    background: #eff6ff;
    color: #1e40af;
}

.rfq-side-note i {
    font-size: 1.4rem;
}

.rfq-side-note strong {
    display: block;
    font-weight: 950;
}

.rfq-side-note p {
    margin: 4px 0 0;
    font-weight: 650;
}

@media (max-width: 991.98px) {
    .rfq-page-hero {
        padding: 130px 0 70px;
    }

    .rfq-page-section {
        padding: 60px 0 70px;
    }

    .rfq-side-panel {
        position: static;
    }

    .rfq-submit-card {
        flex-direction: column;
        align-items: stretch;
    }

    .rfq-submit-card .btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .form-section,
    .rfq-side-panel,
    .rfq-submit-card {
        padding: 22px;
        border-radius: 24px;
    }

    .form-section-heading {
        flex-direction: column;
    }

    .file-upload-dummy {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* LOGIN */
.auth-section {
    min-height: calc(100vh - 90px);
    padding-top: 150px;
    padding-bottom: 90px;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.auth-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 42px 42px 38px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.auth-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
}

.auth-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.auth-subtitle {
    color: #64748b;
    margin-bottom: 0;
}

.auth-input {
    min-height: 62px;
    border-radius: 22px;
    padding-left: 18px;
    padding-right: 18px;
    border: 1px solid #dbe4f0;
    font-size: 1rem;
}

.auth-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.12);
}

.auth-submit-btn {
    min-height: 62px;
    border-radius: 999px;
    font-weight: 800;
}

.auth-register-text {
    font-size: 1rem;
}

.auth-register-text a {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .auth-section {
        padding-top: 125px;
        padding-bottom: 60px;
    }

    .auth-card {
        padding: 30px 22px;
        border-radius: 22px;
    }

    .auth-title {
        font-size: 1.6rem;
    }
}

/* ADMIN */
.admin-approval-hero {
    padding: 170px 0 90px;
    background:
        linear-gradient(90deg, rgba(8, 19, 48, .92), rgba(16, 78, 191, .75)),
        url('https://images.unsplash.com/photo-1556761175-b413da4baf72') center/cover no-repeat;
}

.admin-approval-hero-content {
    max-width: 760px;
    color: #fff;
}

.admin-approval-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.admin-approval-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 0;
}

.admin-approval-section {
    padding: 80px 0;
    background: #f8fafc;
}

.admin-approval-toolbar {
    margin-bottom: 32px;
}

.admin-approval-toolbar h2 {
    font-weight: 800;
    margin-bottom: 8px;
}

.admin-approval-toolbar p {
    color: #64748b;
    margin-bottom: 0;
}

.approval-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .06);
    margin-bottom: 24px;
}

.approval-user-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.approval-avatar {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    flex-shrink: 0;
}

.approval-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.approval-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
}

.approval-badge.pending {
    background: rgba(245, 158, 11, .12);
    color: #b45309;
}

.approval-badge.role {
    background: rgba(37, 99, 235, .12);
    color: #1d4ed8;
}

.approval-badge.business {
    background: rgba(16, 185, 129, .12);
    color: #047857;
}

.approval-user-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.approval-user-header p {
    color: #64748b;
}

.approval-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.approval-info-grid > div {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 16px;
    background: #f8fafc;
}

.approval-info-grid small {
    display: block;
    color: #64748b;
    margin-bottom: 6px;
}

.approval-info-grid strong {
    display: block;
    color: #0f172a;
}

.approval-action-panel {
    border-radius: 24px;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.approval-action-panel h4 {
    font-weight: 800;
    margin-bottom: 10px;
}

.approval-action-panel p {
    color: #64748b;
    font-size: .95rem;
    margin-bottom: 20px;
}

.approval-action-panel .btn {
    border-radius: 999px;
    min-height: 50px;
    font-weight: 700;
}

.empty-state {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    padding: 60px 28px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .06);
}

.empty-state i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 18px;
}

.empty-state h3 {
    font-weight: 800;
    margin-bottom: 10px;
}

.empty-state p {
    color: #64748b;
}

@media (max-width: 767.98px) {
    .admin-approval-hero {
        padding: 135px 0 65px;
    }

    .approval-card {
        padding: 20px;
    }

    .approval-user-header {
        align-items: flex-start;
    }

    .approval-info-grid {
        grid-template-columns: 1fr;
    }
}




