body {
    background: #f4f4f4;
    color: #111827;
    font-family: Arial, Helvetica, sans-serif;
}

.market-page {
    padding-top: 0;
}

.market-page > .container {
    max-width: 1325px;
}

.indo-page {
    max-width: 1295px;
    margin: 0 auto;
    padding: 16px 0 40px;
}

.indo-hero-layout {
    display: grid;
    grid-template-columns: 300px 1fr 285px;
    gap: 10px;
    align-items: stretch;
    margin-bottom: 18px;
}

.indo-category-box {
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.15);
    position: relative;
    z-index: 30;
    min-height: 420px;
}

.category-title-row {
    height: 48px;
    padding: 0 12px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-title-row strong {
    font-size: 15px;
    color: #111827;
}

.category-title-row a {
    font-size: 12px;
    text-decoration: none;
    color: #1d63c8;
}

.category-list {
    padding: 8px 0;
}

.category-item {
    position: relative;
}

.category-main {
    min-height: 32px;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: #111827;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

.category-icon {
    width: 22px;
    text-align: center;
    font-size: 16px;
}

.category-main:hover {
    background: #edf5ff;
    color: #0b5fc7;
}

.category-mega {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 330px;
    min-height: 210px;
    background: #ffffff;
    border: 1px solid #d9e3ef;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    border-radius: 0 8px 8px 0;
    padding: 18px;
    z-index: 50;
}

.category-item:hover .category-mega {
    display: block;
}

.category-mega h4 {
    margin: 0 0 14px;
    font-size: 16px;
    color: #0b3b75;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mega-grid a {
    text-decoration: none;
    color: #334155;
    font-size: 13px;
    padding: 8px;
    border-radius: 6px;
    background: #f8fafc;
}

.mega-grid a:hover {
    background: #e8f2ff;
    color: #0b5fc7;
} 

.home-product-section {
    background: #ffffff;
    border-radius: 7px;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.15);
    overflow: hidden;
    margin-top: 18px;
}

.home-product-header {
    padding: 18px 14px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-product-header h2 {
    margin: 0;
    font-size: 21px;
    color: #111827;
    font-weight: 800;
}

.home-product-header a {
    color: #1d63c8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 16px 8px;
}

.home-product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    overflow: hidden;
    transition: 0.2s;
}

.home-product-card:hover {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    transform: translateY(-2px);
}

.product-image-area {
    display: block;
    height: 190px;
    background: #eef2f7;
    overflow: hidden;
}

.product-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-product-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 700;
}

.product-card-body {
    padding: 10px;
}

.product-title {
    display: block;
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    min-height: 39px;
}

.product-title:hover {
    color: #0b5fc7;
}

.product-price {
    margin-top: 7px;
    color: #ff4b00;
    font-size: 15px;
    font-weight: 800;
}

.supplier-label {
    margin-top: 9px;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.supplier-name {
    margin-top: 4px;
    color: #334155;
    font-size: 13px;
    line-height: 1.25;
}

.supplier-location {
    margin-top: 3px;
    color: #475569;
    font-size: 11px;
}

.empty-product-home {
    grid-column: 1 / -1;
    padding: 24px;
    background: #f8fafc;
    border-radius: 8px;
    color: #64748b;
}

@media (max-width: 1200px) {
    .indo-hero-layout {
        grid-template-columns: 260px 1fr;
    }

    .indo-side-banner {
        display: none;
    }

    .home-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .indo-hero-layout {
        grid-template-columns: 1fr;
    }

    .indo-category-box {
        min-height: auto;
    }

    .category-mega {
        position: static;
        width: auto;
        box-shadow: none;
        border-radius: 0;
        margin: 5px 12px;
    }

    .home-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image-area {
        height: 150px;
    }
}

/* HEADER MODEL INDONETWORK STYLE - CV BINTANG SAIDA TEKNIK */

.bst-indo-header {
    background: #1767c8;
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.bst-header-container {
    max-width: 1295px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
}

.bst-topbar {
    background: #1767c8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.bst-topbar-inner {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.bst-top-left,
.bst-top-right {
    display: flex;
    align-items: center;
    gap: 9px;
}

.bst-top-right a {
    color: #ffffff;
    text-decoration: none;
}

.bst-top-right a:hover {
    text-decoration: underline;
}

.bst-top-right button {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 5px 13px;
    font-size: 12px;
}

.bst-social-dot {
    letter-spacing: 3px;
    font-size: 11px;
}

.bst-mainbar {
    background: #1767c8;
}

.bst-mainbar-inner {
    height: 82px;
    display: grid;
    grid-template-columns: 295px 1fr auto;
    gap: 24px;
    align-items: center;
}

.bst-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #ffffff;
    text-decoration: none;
    min-width: 0;
}

.bst-brand:hover {
    color: #ffffff;
}

.bst-brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bst-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bst-brand-text {
    min-width: 0;
}

.bst-brand-text strong {
    display: block;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bst-brand-text small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bst-search {
    height: 44px;
    background: #ffffff;
    border-radius: 999px;
    display: grid;
    grid-template-columns: 1fr 130px 64px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}

.bst-search input,
.bst-search select {
    border: none;
    outline: none;
    padding: 0 20px;
    font-size: 14px;
    background: #ffffff;
    color: #111827;
}

.bst-search input {
    font-style: italic;
}

.bst-search select {
    border-left: 1px solid #e5e7eb;
}

.bst-search button {
    border: none;
    background: #ff6900;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.bst-search button:hover {
    background: #ef5f00;
}

.bst-auth-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    white-space: nowrap;
}

.bst-login-btn,
.bst-register-btn,
.bst-cart-btn {
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bst-login-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: transparent;
}

.bst-login-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.bst-register-btn {
    color: #ffffff;
    background: #ff6900;
    border: 1px solid #ff6900;
}

.bst-register-btn:hover {
    background: #ef5f00;
    color: #ffffff;
}

.bst-cart-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: transparent;
}

.bst-cart-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.bst-cart-badge {
    background: #dc3545;
    color: #ffffff;
    border-radius: 999px;
    padding: 2px 7px;
    font-size: 11px;
    font-weight: 800;
}

.bst-menu-row {
    background: #ffffff;
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
}

.bst-menu-inner {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bst-menu-left,
.bst-menu-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.bst-menu-left a,
.bst-menu-right a {
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.bst-menu-left a:hover,
.bst-menu-right a:hover,
.bst-menu-left a.active,
.bst-menu-right a.active {
    color: #1767c8;
}

.bst-menu-row .dropdown-menu {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
    padding: 8px;
}

.bst-menu-row .dropdown-item {
    border-radius: 7px;
    font-size: 14px;
    padding: 8px 12px;
}

.bst-menu-row .dropdown-item:hover,
.bst-menu-row .dropdown-item.active {
    background: #edf5ff;
    color: #1767c8;
}

@media (max-width: 1100px) {
    .bst-mainbar-inner {
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .bst-auth-area {
        grid-column: 1 / -1;
        justify-content: flex-start;
        padding-bottom: 14px;
    }

    .bst-mainbar-inner {
        height: auto;
        padding-top: 14px;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .bst-topbar-inner {
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .bst-mainbar-inner {
        grid-template-columns: 1fr;
    }

    .bst-brand-text strong {
        font-size: 18px;
    }

    .bst-search {
        grid-template-columns: 1fr 90px 52px;
        height: 42px;
    }

    .bst-search input,
    .bst-search select {
        padding: 0 12px;
        font-size: 13px;
    }

    .bst-menu-inner {
        height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }

    .bst-menu-left,
    .bst-menu-right {
        gap: 16px;
        flex-wrap: wrap;
    }

    .bst-login-btn,
    .bst-register-btn,
    .bst-cart-btn {
        padding: 9px 16px;
    }
}

/* HALAMAN KATALOG PRODUK */

.catalog-page {
    width: 100%;
    max-width: 1295px;
    margin: 0 auto;
    padding: 18px 0 45px;
}

.catalog-hero {
    background: linear-gradient(135deg, #1767c8, #0b3b75);
    color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 24px;
    align-items: center;
}

.catalog-hero h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 10px;
    font-weight: 900;
}

.catalog-hero p {
    margin: 0;
    color: #eaf3ff;
    line-height: 1.6;
}

.catalog-search-box {
    background: #ffffff;
    border-radius: 999px;
    display: grid;
    grid-template-columns: 1fr 110px;
    overflow: hidden;
    height: 48px;
}

.catalog-search-box input {
    border: none;
    outline: none;
    padding: 0 20px;
    color: #111827;
}

.catalog-search-box button {
    border: none;
    background: #ff6900;
    color: #ffffff;
    font-weight: 900;
}

/* Layout kiri kategori + kanan produk */
.catalog-layout {
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.catalog-sidebar {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.12);
    padding: 12px;
    height: fit-content;
    position: sticky;
    top: 180px;
}

.catalog-sidebar-title {
    font-size: 15px;
    font-weight: 900;
    color: #111827;
    padding: 8px 8px 12px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 8px;
}

.catalog-category-link {
    display: block;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    padding: 10px 11px;
    border-radius: 7px;
    margin-bottom: 4px;
}

.catalog-category-link:hover,
.catalog-category-link.active {
    background: #edf5ff;
    color: #1767c8;
    font-weight: 800;
}

.catalog-content {
    min-width: 0;
    width: 100%;
}

.catalog-toolbar {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.12);
    padding: 16px 18px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-toolbar h2 {
    margin: 0 0 4px;
    font-size: 22px;
    font-weight: 900;
    color: #111827;
}

.catalog-toolbar p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.catalog-reset-btn {
    text-decoration: none;
    color: #1767c8;
    border: 1px solid #1767c8;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 800;
}

.catalog-reset-btn:hover {
    background: #1767c8;
    color: #ffffff;
}

/* INI BAGIAN UTAMA SUPAYA PRODUK JADI KOTAK-KOTAK */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    width: 100%;
}

.catalog-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.10);
    transition: 0.2s ease;
    min-width: 0;
}

.catalog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.16);
}

.catalog-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 185px;
    background: #f8fafc;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.catalog-no-image {
    width: 100%;
    height: 185px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #64748b;
    font-weight: 800;
    background: #f8fafc;
}

.catalog-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.catalog-category-badge {
    display: inline-block;
    width: fit-content;
    background: #edf5ff;
    color: #1767c8;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 8px;
}

.catalog-product-name {
    display: block;
    color: #111827;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
    min-height: 42px;
}

.catalog-product-name:hover {
    color: #1767c8;
}

.catalog-desc {
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
    min-height: 38px;
    margin: 7px 0 10px;
}

.catalog-price {
    color: #ff4b00;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* Tombol detail + icon keranjang */
.catalog-actions {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 8px;
    align-items: center;
    margin-top: auto;
}

.catalog-actions form {
    margin: 0;
    padding: 0;
    width: 44px;
    height: 38px;
}

.btn-catalog-detail {
    width: 100%;
    height: 38px;
    border-radius: 12px;
    background: #eaf2ff;
    color: #0b63ce;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    border: none;
    padding: 0;
}

.btn-catalog-detail:hover {
    background: #dbeafe;
    color: #0b63ce;
}

.btn-catalog-cart {
    width: 44px;
    height: 38px;
    min-width: 44px;
    max-width: 44px;
    padding: 0;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #ff7a00 0%, #ff5f00 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(255, 105, 0, 0.22);
    cursor: pointer;
    transition: 0.22s ease;
}

.btn-catalog-cart:hover {
    background: linear-gradient(135deg, #ff8a1f 0%, #ef5f00 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 105, 0, 0.30);
}

.btn-catalog-cart:active {
    transform: translateY(0) scale(0.96);
}

.cart-icon-svg {
    width: 21px;
    height: 21px;
    display: block;
    color: #ffffff;
}

.catalog-pagination {
    margin-top: 20px;
}

.catalog-empty {
    background: #ffffff;
    border-radius: 8px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.12);
}

.catalog-empty h4 {
    font-weight: 900;
    color: #111827;
}

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

.catalog-empty a {
    display: inline-block;
    background: #1767c8;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
}

/* Responsive */
@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .catalog-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-toolbar {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .catalog-page {
        padding: 14px 12px 35px;
    }

    .catalog-hero {
        padding: 22px;
    }

    .catalog-hero h1 {
        font-size: 24px;
    }

    .catalog-search-box {
        grid-template-columns: 1fr;
        height: auto;
        border-radius: 12px;
    }

    .catalog-search-box input {
        height: 44px;
    }

    .catalog-search-box button {
        height: 42px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-image {
        height: 170px;
    }
}
/* HALAMAN DETAIL PRODUK */

.product-detail-page {
    padding: 18px 0 45px;
}

.product-detail-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.12);
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 28px;
    padding: 24px;
    margin-bottom: 18px;
}

.product-detail-image {
    height: 430px;
    background: #eef2f7;
    border-radius: 9px;
    overflow: hidden;
}

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

.detail-no-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 800;
}

.product-detail-info {
    min-width: 0;
}

.detail-category {
    display: inline-block;
    background: #edf5ff;
    color: #1767c8;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.product-detail-info h1 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 900;
    color: #111827;
    margin-bottom: 14px;
}

.detail-price {
    color: #ff4b00;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 18px;
}

.detail-short-desc {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 22px;
}

.detail-actions {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 12px;
    align-items: start;
}

.btn-buy-now,
.btn-add-cart {
    display: block;
    border: none;
    text-decoration: none;
    border-radius: 8px;
    padding: 13px 18px;
    font-weight: 900;
    text-align: center;
}

.btn-buy-now {
    background: #1767c8;
    color: #ffffff;
}

.btn-buy-now:hover {
    background: #0b5fc7;
    color: #ffffff;
}

.btn-add-cart {
    background: #ff6900;
    color: #ffffff;
    width: 100%;
}

.btn-add-cart:hover {
    background: #ef5f00;
    color: #ffffff;
}

.detail-cart-form {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 10px;
}

.qty-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.qty-row label {
    font-size: 12px;
    color: #64748b;
    font-weight: 800;
}

.qty-row input {
    border: 1px solid #dbe2ea;
    border-radius: 8px;
    height: 44px;
    padding: 0 10px;
}

.product-description-card,
.supplier-info-card,
.related-product-section {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.12);
    padding: 22px;
    margin-bottom: 18px;
}

.product-description-card h3,
.supplier-info-card h3,
.related-product-section h3 {
    font-size: 21px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 14px;
}

.product-description-card p {
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

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

.supplier-info-grid div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 14px;
}

.supplier-info-grid strong {
    display: block;
    color: #111827;
    margin-bottom: 5px;
}

.supplier-info-grid span {
    color: #64748b;
    font-size: 14px;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.related-header a {
    color: #1767c8;
    text-decoration: none;
    font-weight: 800;
}

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

.related-product-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.related-image {
    display: block;
    height: 170px;
    background: #eef2f7;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-body {
    padding: 12px;
}

.related-body a {
    color: #111827;
    text-decoration: none;
    font-weight: 900;
    display: block;
    min-height: 40px;
}

.related-body a:hover {
    color: #1767c8;
}

.related-body div {
    color: #ff4b00;
    font-weight: 900;
    margin-top: 8px;
}

@media (max-width: 992px) {
    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        height: 340px;
    }

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

    .detail-cart-form {
        grid-template-columns: 1fr;
    }

    .detail-meta,
    .supplier-info-grid,
    .related-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-detail-card {
        padding: 16px;
    }

    .product-detail-info h1 {
        font-size: 24px;
    }

    .detail-price {
        font-size: 24px;
    }

    .detail-meta,
    .supplier-info-grid,
    .related-product-grid {
        grid-template-columns: 1fr;
    }
}

/* AREA AKSI DETAIL PRODUK BARU */

.detail-order-section {
    margin-top: 22px;
}

.detail-order-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-order-form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
}

.qty-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.qty-label {
    font-size: 13px;
    font-weight: 800;
    color: #334155;
    margin: 0;
}

.qty-control {
    display: flex;
    align-items: center;
    height: 46px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.qty-btn {
    width: 42px;
    height: 46px;
    border: none;
    background: #f8fafc;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.qty-btn:hover {
    background: #e2e8f0;
}

.qty-input {
    width: 58px;
    height: 46px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    outline: none;
    background: #ffffff;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-cart-mini,
.btn-buy-now-mini {
    height: 46px;
    border: none;
    border-radius: 10px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: 0.2s ease;
    white-space: nowrap;
}

.btn-cart-mini {
    background: #ff6a00;
    color: #ffffff;
}

.btn-cart-mini:hover {
    background: #eb6200;
    color: #ffffff;
}

.btn-buy-now-mini {
    background: #1767c8;
    color: #ffffff;
}

.btn-buy-now-mini:hover {
    background: #0f58af;
    color: #ffffff;
}

.cart-icon {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 768px) {
    .detail-order-row,
    .detail-order-form {
        align-items: stretch;
    }

    .btn-cart-mini,
    .btn-buy-now-mini {
        width: 100%;
    }
}

/* STATUS & STOK SIMPLE MODERN */

.detail-meta-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.meta-status.available {
    background: #eafaf0;
    color: #15803d;
    border: 1px solid #b7ebc6;
}

.meta-status.unavailable {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.meta-stock {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

/* RAPUIKAN JUMLAH DI HALAMAN KERANJANG */

.cart-qty-form {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 160px;
}

.cart-qty-input {
    width: 70px !important;
    min-width: 70px;
    text-align: center;
}

.cart-update-btn {
    white-space: nowrap;
}

/* HALAMAN PEMBAYARAN CHECKOUT KERANJANG */

.checkout-payment-page {
    padding: 18px 0 45px;
}

.checkout-payment-header {
    background: linear-gradient(135deg, #1767c8, #0b3b75);
    color: #ffffff;
    border-radius: 12px;
    padding: 28px 30px;
    margin-bottom: 18px;
}

.checkout-payment-header span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.checkout-payment-header h2 {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 900;
}

.checkout-payment-header p {
    margin: 0;
    color: #eaf3ff;
}

.checkout-payment-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: start;
}

.checkout-items-card,
.checkout-summary-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.12);
}

.checkout-items-card {
    padding: 20px;
}

.checkout-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 14px;
    margin-bottom: 12px;
}

.checkout-card-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    color: #111827;
}

.checkout-card-header small {
    color: #64748b;
    font-weight: 700;
}

.checkout-item-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-item-row {
    display: grid;
    grid-template-columns: 42px 1fr 60px 170px;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
}

.checkout-item-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #edf5ff;
    color: #1767c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.checkout-item-info h5 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 900;
    color: #111827;
}

.checkout-item-info span {
    font-size: 13px;
    color: #64748b;
}

.checkout-item-qty {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 7px 10px;
    text-align: center;
    font-weight: 900;
    color: #334155;
}

.checkout-item-subtotal {
    color: #ff4b00;
    font-weight: 900;
    text-align: right;
}

.checkout-summary-card {
    padding: 20px;
    position: sticky;
    top: 180px;
}

.checkout-summary-card h4 {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 900;
    color: #111827;
}

.summary-group-id {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 13px;
    margin-bottom: 14px;
}

.summary-group-id span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
}

.summary-group-id strong {
    display: block;
    color: #111827;
    font-size: 13px;
    word-break: break-all;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid #edf0f4;
    color: #475569;
    font-size: 14px;
}

.summary-line strong {
    color: #111827;
}

.summary-status {
    color: #d97706 !important;
}

.summary-total {
    margin-top: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.summary-total span {
    display: block;
    color: #9a3412;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

.summary-total strong {
    display: block;
    color: #ff4b00;
    font-size: 25px;
    font-weight: 900;
}

.btn-pay-now,
.btn-payment-history {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    margin-top: 12px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-pay-now {
    border: none;
    background: #1767c8;
    color: #ffffff;
}

.btn-pay-now:hover {
    background: #0f58af;
}

.btn-payment-history {
    background: #edf5ff;
    color: #1767c8;
}

.btn-payment-history:hover {
    background: #dcecff;
    color: #0f58af;
}

.summary-note {
    margin-top: 14px;
    background: #f8fafc;
    color: #64748b;
    border-radius: 10px;
    padding: 12px;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .checkout-payment-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary-card {
        position: static;
    }

    .checkout-item-row {
        grid-template-columns: 36px 1fr;
    }

    .checkout-item-qty,
    .checkout-item-subtotal {
        grid-column: 2 / 3;
        text-align: left;
        width: fit-content;
    }
}

/* HALAMAN PROFIL PERUSAHAAN BARU */

.company-profile-page {
    padding: 18px 0 45px;
}

.company-profile-hero {
    background: linear-gradient(135deg, #1767c8, #0b3b75);
    color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 18px;
}

.company-profile-hero span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 10px;
}

.company-profile-hero h2 {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 900;
}

.company-profile-hero p {
    margin: 0;
    color: #eaf3ff;
    line-height: 1.6;
}

.company-profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 18px;
    align-items: start;
}

.company-profile-sidebar,
.company-section-box-new {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 9px rgba(15, 23, 42, 0.12);
}

.company-logo-box-new {
    padding: 24px;
    text-align: center;
}

.company-logo-frame {
    width: 125px;
    height: 125px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.company-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
}

.company-logo-box-new h4 {
    font-size: 20px;
    font-weight: 900;
    color: #111827;
    margin: 0 0 8px;
}

.company-logo-box-new p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.company-profile-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.company-section-box-new {
    padding: 22px;
}

.company-section-box-new h4 {
    font-size: 21px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 16px;
}

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

.company-info-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
}

.company-info-card strong {
    display: block;
    color: #111827;
    font-size: 13px;
    margin-bottom: 6px;
}

.company-info-card span {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.company-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.company-section-box-new p,
.company-text-preline {
    color: #475569;
    line-height: 1.8;
}

.company-text-preline {
    white-space: pre-line;
}

@media (max-width: 992px) {
    .company-profile-layout {
        grid-template-columns: 1fr;
    }

    .company-info-grid,
    .company-vm-grid {
        grid-template-columns: 1fr;
    }
}

/* CUSTOMER PROFILE FIX */

.profile-sidebar,
.profile-content-box,
.profile-summary-card,
.profile-mini-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

.profile-summary-card {
    padding: 20px;
}

.profile-summary-card h6 {
    color: #64748b;
    font-weight: 800;
    margin-bottom: 10px;
}

.profile-summary-card h3 {
    color: #0f172a;
    font-weight: 900;
    margin: 0;
}

.profile-sidebar {
    padding: 22px;
}

.profile-user-box {
    text-align: center;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.customer-avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1767c8, #0b3b75);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 32px;
    font-weight: 900;
}

.profile-user-box h5 {
    margin: 0 0 5px;
    font-weight: 900;
    color: #111827;
}

.profile-user-box p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    word-break: break-all;
}

.profile-side-menu {
    gap: 8px;
}

.profile-side-menu .nav-link {
    border-radius: 10px;
    color: #334155;
    font-weight: 800;
    padding: 11px 14px;
}

.profile-side-menu .nav-link:hover,
.profile-side-menu .nav-link.active {
    background: #edf5ff;
    color: #1767c8;
}

.profile-content-box {
    padding: 24px;
}

.profile-content-box h4 {
    font-weight: 900;
    color: #111827;
    margin-bottom: 18px;
}

.profile-mini-card {
    padding: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
}

.profile-mini-card strong {
    display: block;
    color: #111827;
    margin-bottom: 6px;
}

.profile-mini-card p {
    margin: 0;
    color: #475569;
}

.profile-tab-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
    font-size: 13px;
}

.profile-tab-badge.blue {
    background: #edf5ff;
    color: #1767c8;
}

.profile-tab-badge.yellow {
    background: #fff7ed;
    color: #ea580c;
}

.profile-table th {
    background: #f8fafc;
    color: #111827;
    font-size: 13px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 900;
    background: #f1f5f9;
    color: #334155;
}

/* CUSTOMER ACCOUNT MODERN HEADER */

.customer-account-hero {
    background: linear-gradient(135deg, #2563eb, #0f172a);
    color: #ffffff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.18);
    margin-bottom: 22px;
}

.customer-account-hero span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.customer-account-hero h1 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.customer-account-hero p {
    margin: 0;
    color: #dbeafe;
    font-size: 15px;
    line-height: 1.7;
    max-width: 720px;
}

.customer-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.customer-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.customer-stat-card span {
    display: block;
    color: #64748b;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 12px;
}

.customer-stat-card strong {
    display: block;
    color: #0f172a;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

@media (max-width: 992px) {
    .customer-stats-grid {
        grid-template-columns: 1fr;
    }

    .customer-account-hero {
        padding: 24px;
    }

    .customer-account-hero h1 {
        font-size: 28px;
    }
}

/* PERBAIKI UKURAN PRODUK DI MEGA KATEGORI */

.product-mega {
    width: 360px;
    min-height: 180px;
    max-height: 420px;
    overflow-y: auto;
    padding: 18px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.16);
    z-index: 99;
}

.product-mega-grid {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.product-mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #0f172a;
    transition: 0.2s ease;
}

.product-mega-item:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.product-mega-item img {
    width: 58px;
    height: 58px;
    min-width: 58px;
    max-width: 58px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.product-mega-item strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    color: #0f172a;
}

.product-mega-item span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 800;
    color: #f97316;
}

.product-mega-no-image {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 10px;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.product-mega-empty {
    margin-top: 14px;
    color: #64748b;
    font-size: 13px;
}

/* MEGA NAVBAR PRODUK SIMPLE */

.product-mega {
    width: 280px;
    min-height: 86px;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
    z-index: 99;
}

.product-mega-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.product-mega-header-end {
    justify-content: flex-end;
}

.product-mega-header h4 {
    display: none;
}

.product-mega-header a {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.product-mega-header a:hover {
    color: #334155;
    text-decoration: underline;
}

.product-mega-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
}

.product-mega-item {
    display: block;
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #0f172a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.2s ease;
}

.product-mega-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

.product-mega-empty {
    padding: 8px 0;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

/* =====================================================
   PROFIL PERUSAHAAN MODERN ABOUT PAGE
===================================================== */

.company-about-page {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding-bottom: 40px;
}

/* HERO */

.about-hero {
    position: relative;
    min-height: 520px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(37, 99, 235, 0.28), transparent 26%),
        linear-gradient(135deg, #0f3ea8 0%, #0b2c78 48%, #071b4f 100%);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 58px;
    color: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 85%, rgba(255, 255, 255, 0.10), transparent 18%),
        radial-gradient(circle at 88% 78%, rgba(255, 122, 0, 0.18), transparent 20%);
    pointer-events: none;
}

.about-hero::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.about-hero::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

.about-hero-content,
.about-hero-visual {
    position: relative;
    z-index: 2;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero h1 {
    margin: 0 0 18px;
    font-size: 56px;
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 950;
    color: #ffffff;
}

.about-hero h1 span {
    display: block;
    color: #ff8a00;
}

.about-hero p {
    max-width: 620px;
    margin: 0;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.85;
    font-weight: 500;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-primary-btn,
.about-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: 0.2s ease;
}

.about-primary-btn {
    background: linear-gradient(135deg, #ff8a00, #ff6b00);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(255, 122, 0, 0.26);
}

.about-primary-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.about-secondary-btn {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-secondary-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

/* HERO VISUAL */

.about-hero-visual {
    min-height: 380px;
}

.about-logo-card {
    position: absolute;
    right: 40px;
    top: 30px;
    width: 260px;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.96);
    color: #0f172a;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22);
}

.about-logo-circle {
    width: 86px;
    height: 86px;
    border-radius: 24px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #dbeafe;
}

.about-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-logo-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
}

.about-logo-card p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.about-floating-card {
    position: absolute;
    width: 210px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.about-floating-card strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
}

.about-floating-card span {
    display: block;
    color: #dbeafe;
    font-size: 13px;
    line-height: 1.5;
}

.card-one {
    left: 20px;
    bottom: 60px;
}

.card-two {
    right: 10px;
    bottom: 20px;
}

/* SECTION HEADER */

.about-section {
    width: 100%;
}

.about-section-header {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.about-section-header span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.about-section-header h2 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.about-section-header p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

/* INTRO */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.about-story-card,
.about-info-panel,
.about-vision-card,
.about-value-card,
.about-highlight-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.about-story-card {
    border-radius: 26px;
    padding: 34px;
}

.about-story-card h3 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 28px;
    font-weight: 950;
    letter-spacing: -0.03em;
}

.about-story-card p {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.9;
}

.about-mini-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.about-mini-list div {
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.about-mini-list strong {
    display: block;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 6px;
}

.about-mini-list span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
}

.about-info-panel {
    border-radius: 26px;
    padding: 26px;
    display: grid;
    gap: 14px;
}

.about-info-item {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    border: 1px solid #e2e8f0;
}

.about-info-item span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 7px;
}

.about-info-item strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.55;
}

/* HIGHLIGHT */

.about-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-highlight-card {
    border-radius: 24px;
    padding: 28px;
    transition: 0.2s ease;
}

.about-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.09);
}

.about-highlight-card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #0f3ea8;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 18px;
}

.about-highlight-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 950;
}

.about-highlight-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.75;
}

/* VISION MISSION */

.about-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-vision-card {
    border-radius: 28px;
    padding: 34px;
    min-height: 260px;
}

.about-vision-card span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: #fff7ed;
    color: #ea580c;
    font-size: 12px;
    font-weight: 950;
    margin-bottom: 16px;
}

.about-vision-card h2 {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.about-vision-card p,
.about-mission-text {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.9;
    white-space: pre-line;
}

/* VALUES */

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-value-card {
    border-radius: 24px;
    padding: 24px;
}

.about-value-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    font-size: 13px;
    margin-bottom: 18px;
}

.about-value-card h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 950;
}

.about-value-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

/* CTA */

.about-cta {
    border-radius: 28px;
    padding: 36px;
    background: linear-gradient(135deg, #0f3ea8, #071b4f);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.about-cta span {
    display: inline-flex;
    height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.about-cta h2 {
    margin: 0 0 10px;
    max-width: 720px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -0.035em;
}

.about-cta p {
    margin: 0;
    color: #dbeafe;
    font-size: 15px;
    line-height: 1.7;
    max-width: 650px;
}

.about-cta a {
    flex-shrink: 0;
    height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8a00, #ff6b00);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(255, 122, 0, 0.25);
}

/* SCROLL TRANSITION */

.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right {
    opacity: 0;
transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);}

.scroll-reveal {
    transform: translateY(38px);
}

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

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

.scroll-reveal.active,
.scroll-reveal-left.active,
.scroll-reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

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

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

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

/* RESPONSIVE */

@media (max-width: 992px) {
    .company-about-page {
        gap: 48px;
    }

    .about-hero {
        grid-template-columns: 1fr;
        padding: 38px;
        gap: 32px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero-visual {
        min-height: 320px;
    }

    .about-logo-card {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
    }

    .about-floating-card {
        position: relative;
        width: 100%;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 14px;
    }

    .about-intro-grid,
    .about-vision-grid,
    .about-highlight-grid {
        grid-template-columns: 1fr;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .company-about-page {
        gap: 36px;
    }

    .about-hero {
        border-radius: 22px;
        padding: 28px;
        min-height: auto;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .about-section-header h2 {
        font-size: 28px;
    }

    .about-mini-list,
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-story-card,
    .about-info-panel,
    .about-vision-card,
    .about-cta {
        padding: 24px;
        border-radius: 22px;
    }

    .about-cta h2 {
        font-size: 26px;
    }
}

.scroll-reveal,
.scroll-reveal-left,
.scroll-reveal-right {
    will-change: opacity, transform;
}

.scroll-reveal.active,
.scroll-reveal-left.active,
.scroll-reveal-right.active {
    pointer-events: auto;
}

/* ==============================
   HALAMAN BUAT PESANAN MODERN
============================== */

.order-create-page {
    padding: 24px;
    background: #f1f5f9;
    min-height: calc(100vh - 120px);
}

.order-hero {
    background: linear-gradient(135deg, #2563eb, #0f172a);
    color: #ffffff;
    border-radius: 24px;
    padding: 34px;
    margin-bottom: 24px;
    box-shadow: 0 18px 42px rgba(37, 99, 235, 0.18);
}

.order-hero span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.order-hero h1 {
    margin: 0 0 8px;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.order-hero p {
    margin: 0;
    max-width: 720px;
    color: #dbeafe;
    font-size: 15px;
    line-height: 1.7;
}

.order-alert {
    border-radius: 16px;
    margin-bottom: 22px;
}

.order-create-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 420px;
    gap: 24px;
    align-items: start;
}

.order-form-card,
.order-detail-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.order-form-card {
    padding: 26px;
}

.order-card-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.order-card-header span {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.order-card-header h3 {
    margin: 0 0 6px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.order-card-header p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.order-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.order-form-group {
    margin-bottom: 18px;
}

.order-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.order-form-control {
    width: 100%;
    height: 48px;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: 0.2s ease;
}

.order-form-control:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.order-form-control[readonly] {
    background: #f1f5f9;
    color: #475569;
    cursor: not-allowed;
}

.order-textarea {
    height: auto;
    min-height: 130px;
    padding: 14px 15px;
    resize: vertical;
    line-height: 1.7;
}

.order-info-note {
    padding: 14px 16px;
    border-radius: 14px;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.order-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
}

.order-btn-primary,
.order-btn-secondary {
    height: 46px;
    padding: 0 20px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
}

.order-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.order-btn-primary:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
}

.order-btn-secondary {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.order-btn-secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* DETAIL PRODUK */

.order-detail-card {
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.order-detail-image {
    width: 100%;
    height: 270px;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-bottom: 1px solid #e2e8f0;
}

.order-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
}

.order-no-image {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.order-detail-body {
    padding: 24px;
}

.order-detail-badge {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.order-detail-body h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.order-price {
    color: #f97316;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 18px;
}

.order-summary-list {
    display: grid;
    gap: 12px;
}

.order-summary-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.order-summary-list span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.order-summary-list strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
    text-align: right;
}

@media (max-width: 992px) {
    .order-create-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {
    .order-create-page {
        padding: 14px;
    }

    .order-hero {
        padding: 24px;
        border-radius: 20px;
    }

    .order-hero h1 {
        font-size: 28px;
    }

    .order-form-card {
        padding: 20px;
    }

    .order-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .order-form-actions {
        flex-direction: column;
    }

    .order-btn-primary,
    .order-btn-secondary {
        width: 100%;
    }

    .order-detail-image {
        height: 220px;
    }
}

.home-btn-detail,
.home-btn-cart {
    height: 38px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: 0.2s ease;
    cursor: pointer;
}

.home-btn-detail {
    background: #eaf2ff;
    color: #0b63ce;
}

.home-btn-detail:hover {
    background: #dbeafe;
    color: #0b63ce;
}

.home-btn-cart {
    width: 100%;
    background: #ff7300;
    color: #ffffff;
}

.home-btn-cart:hover {
    background: #ea580c;
    color: #ffffff;
}

.home-cart-form {
    margin: 0;
}

/* ===============================
   TOMBOL PRODUK BERANDA - SAMA SEPERTI HALAMAN PRODUK
================================ */

.home-product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.home-btn-detail,
.home-btn-cart {
    height: 38px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}

.home-btn-detail {
    width: 86px;
    background: #eaf2ff;
    color: #0b63ce;
}

.home-btn-detail:hover {
    background: #dbeafe;
    color: #0b63ce;
}

.home-cart-form {
    margin: 0;
    flex: 1;
}

.home-btn-cart {
    width: 100%;
    background: #ff7300;
    color: #ffffff;
    padding: 0 10px;
}

.home-btn-cart:hover {
    background: #ea580c;
    color: #ffffff;
}

/* ===============================
   HEADER PUBLIC - SEARCH LEBIH KECIL
================================ */

.bst-mainbar-inner {
    gap: 18px;
}

.bst-brand {
    min-width: 300px;
    max-width: 330px;
    flex-shrink: 0;
}

.bst-brand-text {
    min-width: 0;
}

.bst-brand-text strong {
    display: block;
    max-width: 235px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bst-brand-text small {
    display: block;
    max-width: 235px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bst-search {
    max-width: 620px;
    width: 100%;
    flex: 0 1 500px;
}

.bst-search input {
    min-width: 0;
}

.bst-search select {
    width: 130px;
    flex-shrink: 0;
}

.bst-search button {
    width: 58px;
    flex-shrink: 0;
}

.bst-auth-area {
    flex-shrink: 0;
}

/* Untuk layar laptop sedang */
@media (max-width: 1200px) {
    .bst-brand {
        min-width: 270px;
        max-width: 290px;
    }

    .bst-brand-text strong,
    .bst-brand-text small {
        max-width: 200px;
    }

    .bst-search {
        max-width: 520px;
        flex-basis: 520px;
    }

    .bst-search select {
        width: 115px;
    }

    .bst-search button {
        width: 54px;
    }
}

/* Untuk layar lebih kecil */
@media (max-width: 992px) {
    .bst-mainbar-inner {
        flex-wrap: wrap;
    }

    .bst-brand {
        max-width: none;
        width: auto;
    }

    .bst-brand-text strong,
    .bst-brand-text small {
        max-width: 260px;
    }

    .bst-search {
        order: 3;
        max-width: 100%;
        flex-basis: 100%;
        width: 100%;
    }

    .bst-auth-area {
        margin-left: auto;
    }
}

/* ===============================
   FIX HEADER SEARCH TERLALU LEBAR
   Letakkan paling bawah CSS
================================ */

.bst-mainbar-inner {
    display: grid !important;
    grid-template-columns: 315px 560px auto !important;
    gap: 18px !important;
    align-items: center !important;
}

.bst-brand {
    min-width: 0 !important;
    max-width: 315px !important;
    width: 315px !important;
    overflow: hidden !important;
}

.bst-brand-text {
    min-width: 0 !important;
    overflow: hidden !important;
}

.bst-brand-text strong {
    max-width: 230px !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bst-brand-text small {
    max-width: 230px !important;
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.bst-search {
    width: 560px !important;
    max-width: 560px !important;
    min-width: 0 !important;
}

.bst-search {
    grid-template-columns: 1fr 115px 54px !important;
}

.bst-search select {
    width: 115px !important;
}

.bst-search button {
    width: 54px !important;
}

.bst-auth-area {
    justify-self: end !important;
    white-space: nowrap !important;
}

/* Laptop sedang */
@media (max-width: 1200px) {
    .bst-mainbar-inner {
        grid-template-columns: 300px 480px auto !important;
        gap: 14px !important;
    }

    .bst-brand {
        width: 300px !important;
        max-width: 300px !important;
    }

    .bst-brand-text strong,
    .bst-brand-text small {
        max-width: 215px !important;
    }

    .bst-search {
        width: 480px !important;
        max-width: 480px !important;
    }

    .bst-search {
        grid-template-columns: 1fr 105px 52px !important;
    }

    .bst-search select {
        width: 105px !important;
    }

    .bst-search button {
        width: 52px !important;
    }
}

/* Tablet / HP */
@media (max-width: 992px) {
    .bst-mainbar-inner {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        height: auto !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .bst-brand {
        width: auto !important;
        max-width: 100% !important;
    }

    .bst-brand-text strong,
    .bst-brand-text small {
        max-width: 240px !important;
    }

    .bst-search {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: 100% !important;
        order: 3 !important;
    }

    .bst-auth-area {
        justify-self: end !important;
    }
}

/* ===============================
   HALAMAN KERANJANG MODERN
================================ */

.cart-page {
    padding: 22px 0 45px;
}

.cart-hero {
    background: linear-gradient(135deg, #1767c8, #0b3b75);
    color: #ffffff;
    border-radius: 18px;
    padding: 28px 30px;
    margin-bottom: 18px;
    box-shadow: 0 14px 34px rgba(23, 103, 200, 0.18);
}

.cart-hero span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.cart-hero h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.cart-hero p {
    margin: 0;
    color: #eaf3ff;
    font-size: 15px;
}

.cart-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.cart-table {
    margin: 0;
}

.cart-table thead th {
    background: #f8fafc;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px;
}

.cart-table tbody td {
    vertical-align: middle;
    padding: 14px;
    color: #334155;
    font-size: 14px;
    border-color: #edf0f4;
}

.cart-table tbody tr:hover {
    background: #f8fbff;
}

.cart-product-name {
    font-weight: 900;
    color: #0f172a;
}

.cart-price {
    font-weight: 800;
    color: #0f172a;
}

.cart-subtotal {
    font-weight: 900;
    color: #ff4b00;
}

.cart-check {
    width: 16px;
    height: 16px;
    accent-color: #1767c8;
}

.cart-qty-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.cart-qty-input {
    width: 78px !important;
    height: 38px;
    border-radius: 9px;
    border: 1px solid #dbe2ea;
    text-align: center;
    font-weight: 800;
}

.cart-update-btn {
    height: 38px;
    border: none;
    border-radius: 9px;
    padding: 0 14px;
    background: #1767c8;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.cart-update-btn:hover {
    background: #0f58af;
}

.cart-delete-btn {
    height: 38px;
    border: none;
    border-radius: 9px;
    padding: 0 14px;
    background: #ef4444;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.cart-delete-btn:hover {
    background: #dc2626;
}

.cart-bottom {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: start;
}

.cart-note-card,
.cart-summary-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
    padding: 20px;
}

.cart-note-card h4,
.cart-summary-card h4 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.cart-note-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.cart-total-box {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
}

.cart-total-box span {
    display: block;
    color: #9a3412;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 6px;
}

.cart-total-box strong {
    display: block;
    color: #ff4b00;
    font-size: 26px;
    font-weight: 900;
}

.cart-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cart-continue-btn,
.cart-checkout-btn {
    height: 44px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    font-size: 14px;
    font-weight: 900;
}

.cart-continue-btn {
    background: #edf5ff;
    color: #1767c8;
}

.cart-continue-btn:hover {
    background: #dcecff;
    color: #0f58af;
}

.cart-checkout-btn {
    background: #ff6900;
    color: #ffffff;
}

.cart-checkout-btn:hover {
    background: #ef5f00;
    color: #ffffff;
}

.cart-empty {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.cart-empty h4 {
    color: #0f172a;
    font-weight: 900;
}

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

@media (max-width: 992px) {
    .cart-bottom {
        grid-template-columns: 1fr;
    }

    .cart-table {
        min-width: 850px;
    }

    .cart-card {
        overflow-x: auto;
    }
}

@media (max-width: 576px) {
    .cart-hero {
        padding: 24px;
    }

    .cart-hero h2 {
        font-size: 26px;
    }

    .cart-action-row {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   FIX HEADER CUSTOMER/PUBLIC
   Search lebih kecil, agak kanan, nama CV full
================================ */

.bst-mainbar-inner {
    display: grid !important;
    grid-template-columns: 330px 520px auto !important;
    gap: 28px !important;
    align-items: center !important;
}

.bst-brand {
    width: 330px !important;
    max-width: 330px !important;
    min-width: 330px !important;
    overflow: visible !important;
}

.bst-brand-logo {
    width: 54px !important;
    height: 54px !important;
}

.bst-brand-text {
    min-width: 0 !important;
    overflow: visible !important;
}

.bst-brand-text strong {
    display: block !important;
    max-width: none !important;
    width: auto !important;
    color: #ffffff !important;
    font-size: 19px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

.bst-brand-text small {
    display: none !important;
}

.bst-search {
    width: 520px !important;
    max-width: 520px !important;
    min-width: 0 !important;
    justify-self: start !important;
    margin-left: 12px !important;
    grid-template-columns: 1fr 105px 52px !important;
}

.bst-search input {
    min-width: 0 !important;
    padding-left: 18px !important;
}

.bst-search select {
    width: 105px !important;
    padding-left: 14px !important;
    padding-right: 10px !important;
}

.bst-search button {
    width: 52px !important;
}

.bst-auth-area {
    justify-self: end !important;
    white-space: nowrap !important;
}

/* Laptop sedang */
@media (max-width: 1200px) {
    .bst-mainbar-inner {
        grid-template-columns: 320px 470px auto !important;
        gap: 20px !important;
    }

    .bst-brand {
        width: 320px !important;
        max-width: 320px !important;
        min-width: 320px !important;
    }

    .bst-brand-text strong {
        font-size: 18px !important;
    }

    .bst-search {
        width: 470px !important;
        max-width: 470px !important;
        margin-left: 8px !important;
        grid-template-columns: 1fr 100px 50px !important;
    }

    .bst-search select {
        width: 100px !important;
    }

    .bst-search button {
        width: 50px !important;
    }
}

/* Tablet / HP */
@media (max-width: 992px) {
    .bst-mainbar-inner {
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        height: auto !important;
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        gap: 14px !important;
    }

    .bst-brand {
        width: auto !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .bst-brand-text strong {
        font-size: 18px !important;
    }

    .bst-search {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
    }

    .bst-auth-area {
        justify-self: end !important;
    }
}

/* Hilangkan garis bawah pada kategori beranda */
.category-list a,
.category-item-link,
.category-main a,
.category-main span {
    text-decoration: none !important;
}

.category-item-link:hover,
.category-list a:hover {
    text-decoration: none !important;
}

/* Biar tampilan kategori lebih rapi */
.category-item-link {
    display: block;
    color: inherit;
}

.category-main {
    color: #111827;
}

.category-main:hover {
    background: #edf5ff;
    color: #1767c8;
}

/* =====================================================
   KATEGORI POPULER MODEL MARKETPLACE
===================================================== */

/* Hero jadi 2 kolom karena sidebar kategori dihapus */
.indo-hero-layout {
    grid-template-columns: 1fr 285px !important;
}

/* Card utama kategori populer */
.popular-category-section {
    margin: 18px 0;
}

.popular-category-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.12);
    border: 1px solid #e5e7eb;
}

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

.popular-category-top h2 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.popular-category-top p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.popular-category-top a {
    color: #1767c8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.popular-category-top a:hover {
    color: #0b5fc7;
}

/* Bagian banner + info */
.popular-category-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

.popular-category-banner {
    min-height: 138px;
    border-radius: 10px;
    padding: 22px;
    background: linear-gradient(135deg, #1767c8, #0b3b75);
    color: #ffffff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popular-category-banner::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -70px;
    width: 200px;
    height: 200px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.popular-category-banner div {
    position: relative;
    z-index: 2;
}

.popular-category-banner span {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.popular-category-banner h3 {
    margin: 0 0 6px;
    max-width: 360px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.popular-category-banner p {
    margin: 0;
    max-width: 430px;
    color: #dbeafe;
    font-size: 13px;
    line-height: 1.6;
}

.popular-category-banner a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    margin-top: 12px;
    padding: 0 16px;
    border-radius: 999px;
    background: #ff6900;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.popular-category-banner a:hover {
    background: #ef5f00;
    color: #ffffff;
}

.popular-category-illustration {
    font-size: 70px;
    opacity: 0.95;
    margin-left: 20px;
}

/* Box info kanan */
.popular-category-info {
    min-height: 138px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 18px;
}

.popular-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.popular-info-header h3 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.popular-info-header a {
    color: #1767c8;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.popular-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.popular-info-grid div {
    padding: 16px 12px;
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
}

.popular-info-grid div:last-child {
    border-right: none;
}

.popular-info-grid strong {
    display: block;
    margin-bottom: 5px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.popular-info-grid span {
    display: block;
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
}

/* Pills kategori bawah */
.popular-category-list {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.popular-category-list::-webkit-scrollbar {
    height: 6px;
}

.popular-category-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.popular-category-pill {
    min-width: fit-content;
    height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.popular-category-pill:hover {
    background: #edf5ff;
    border-color: #1767c8;
    color: #1767c8;
    text-decoration: none;
}

.popular-category-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #eff6ff;
    color: #1767c8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
    .indo-hero-layout {
        grid-template-columns: 1fr !important;
    }

    .indo-side-banner {
        display: none;
    }

    .popular-category-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .popular-category-card {
        padding: 14px;
    }

    .popular-category-top {
        flex-direction: column;
    }

    .popular-category-top h2 {
        font-size: 22px;
    }

    .popular-category-banner {
        padding: 18px;
    }

    .popular-category-illustration {
        display: none;
    }

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

    .popular-info-grid div {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .popular-info-grid div:last-child {
        border-bottom: none;
    }
}

/* Hilangkan scrollbar abu-abu di bawah kategori populer */
.popular-category-list {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* Edge lama */
}

.popular-category-list::-webkit-scrollbar {
    display: none !important; /* Chrome, Edge, Safari */
}

/* =====================================================
   FINAL FIX BANNER BERANDA - PRESISI 1295 x 300
===================================================== */

.indo-page {
    width: 100% !important;
    max-width: 1295px !important;
    margin: 0 auto !important;
    padding: 16px 0 40px !important;
}

.indo-hero-layout {
    width: 100% !important;
    max-width: auto !important;
    height: 300px !important;
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    display: block !important;
}

.indo-side-banner {
    display: none !important;
}

.indo-main-slider {
    width: 100% !important;
    max-width: 1295px !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.12) !important;
}

.indo-main-slider .carousel,
.indo-main-slider .carousel-inner,
.indo-main-slider .carousel-item {
    width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
}

.indo-main-slider a {
    display: block !important;
    width: 100% !important;
    height: 300px !important;
}

.indo-main-slider img {
    display: block !important;
    width: 100% !important;
    height: 300px !important;
    max-height: 300px !important;
    object-fit: fill !important;
    object-position: center center !important;
    border-radius: 14px !important;
}

.default-main-banner {
    width: 100% !important;
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    border-radius: 14px !important;
    padding: 36px 46px !important;
}

.indo-main-slider .carousel-control-prev,
.indo-main-slider .carousel-control-next {
    width: 46px !important;
    opacity: 0.85 !important;
}

.indo-main-slider .carousel-control-prev-icon,
.indo-main-slider .carousel-control-next-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background-size: 55% 55% !important;
    background-color: rgba(15, 23, 42, 0.35) !important;
}

.popular-category-section,
.home-product-section {
    width: 100% !important;
    max-width: 1295px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media (max-width: 1300px) {
    .indo-page {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .indo-hero-layout,
    .indo-main-slider,
    .indo-main-slider .carousel,
    .indo-main-slider .carousel-inner,
    .indo-main-slider .carousel-item,
    .indo-main-slider a,
    .indo-main-slider img,
    .default-main-banner {
        height: 599px !important;
        min-height: 599px !important;
        max-height: 599px !important;
    }
}

@media (max-width: 576px) {
    .indo-hero-layout,
    .indo-main-slider,
    .indo-main-slider .carousel,
    .indo-main-slider .carousel-inner,
    .indo-main-slider .carousel-item,
    .indo-main-slider a,
    .indo-main-slider img,
    .default-main-banner {
        height: 599px !important;
        min-height: 599px !important;
        max-height: 599px !important;
    }
}

/* =====================================================
   EDIT PROFIL CUSTOMER - MODERN CLEAN
===================================================== */

.customer-edit-wrapper {
    padding: 24px 0 48px;
}

.customer-edit-header {
    background: linear-gradient(135deg, #1767c8, #0b3b75);
    border-radius: 22px;
    padding: 30px;
    margin-bottom: 22px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 16px 36px rgba(23, 103, 200, 0.18);
}

.customer-edit-header span {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
}

.customer-edit-header h1 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.customer-edit-header p {
    margin: 0;
    max-width: 720px;
    color: #dbeafe;
    font-size: 15px;
    line-height: 1.7;
}

.customer-back-btn {
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.customer-back-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.customer-edit-alert {
    border-radius: 14px;
    margin-bottom: 18px;
}

.customer-edit-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
    align-items: start;
}

.customer-edit-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.customer-edit-card,
.customer-profile-preview {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.customer-edit-card {
    padding: 24px;
}

.customer-card-title {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 18px;
    margin-bottom: 22px;
}

.customer-title-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #edf5ff;
    color: #1767c8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}

.customer-card-title h3 {
    margin: 0 0 5px;
    color: #0f172a;
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.customer-card-title p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.customer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.customer-input-group {
    margin-bottom: 18px;
}

.customer-input-group label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.customer-input-group input,
.customer-input-group textarea {
    width: 100%;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    background: #f8fafc;
    color: #0f172a;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: 0.2s ease;
}

.customer-input-group input {
    height: 48px;
}

.customer-input-group textarea {
    min-height: 128px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
    line-height: 1.7;
}

.customer-input-group input:focus,
.customer-input-group textarea:focus {
    border-color: #1767c8;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(23, 103, 200, 0.12);
}

.customer-map-help {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 13px;
    line-height: 1.6;
}

.customer-edit-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.customer-cancel-btn,
.customer-save-btn {
    height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.customer-cancel-btn {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}

.customer-cancel-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.customer-save-btn {
    background: #1767c8;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(23, 103, 200, 0.22);
}

.customer-save-btn:hover {
    background: #0f58af;
    transform: translateY(-1px);
}

.customer-edit-right {
    position: sticky;
    top: 175px;
}

.customer-profile-preview {
    padding: 24px;
    text-align: center;
}

.customer-preview-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1767c8, #0b3b75);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 36px;
    font-weight: 900;
}

.customer-profile-preview h4 {
    margin: 0 0 5px;
    color: #0f172a;
    font-size: 21px;
    font-weight: 900;
}

.customer-profile-preview p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    word-break: break-all;
}

.customer-preview-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

.customer-preview-info {
    display: grid;
    gap: 10px;
    text-align: left;
}

.customer-preview-info div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px;
}

.customer-preview-info span {
    display: block;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
}

.customer-preview-info strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

.customer-maps-button {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    background: #ff6900;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    margin-top: 16px;
}

.customer-maps-button:hover {
    background: #ef5f00;
    color: #ffffff;
}

.customer-maps-empty {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    color: #64748b;
    border-radius: 12px;
    padding: 13px;
    font-size: 13px;
    font-weight: 700;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .customer-edit-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .customer-edit-grid {
        grid-template-columns: 1fr;
    }

    .customer-edit-right {
        position: static;
    }
}

@media (max-width: 576px) {
    .customer-edit-wrapper {
        padding: 16px 0 36px;
    }

    .customer-edit-header {
        padding: 24px;
        border-radius: 18px;
    }

    .customer-edit-header h1 {
        font-size: 28px;
    }

    .customer-edit-card {
        padding: 20px;
    }

    .customer-card-title {
        flex-direction: column;
    }

    .customer-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .customer-edit-actions {
        flex-direction: column;
    }

    .customer-cancel-btn,
    .customer-save-btn,
    .customer-back-btn {
        width: 100%;
    }
}

/* =====================================================
   FIX FINAL CARD PRODUK BERANDA + ICON KERANJANG
===================================================== */

.home-product-grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 16px 8px !important;
}

.home-product-card {
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-image-area {
    display: block !important;
    width: 100% !important;
    height: 190px !important;
    background: #f8fafc !important;
    overflow: hidden !important;
}

.product-image-area img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.product-card-body {
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}

.product-title {
    display: block !important;
    color: #111827 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    min-height: 40px !important;
}

.product-price {
    margin-top: 8px !important;
    color: #ff4b00 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

.home-product-actions {
    display: grid !important;
    grid-template-columns: 1fr 44px !important;
    gap: 8px !important;
    align-items: center !important;
    margin-top: 12px !important;
}

.home-cart-form {
    margin: 0 !important;
    width: 44px !important;
    height: 38px !important;
}

.home-btn-detail {
    width: 100% !important;
    height: 38px !important;
    border-radius: 12px !important;
    background: #eaf2ff !important;
    color: #0b63ce !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.home-btn-detail:hover {
    background: #dbeafe !important;
    color: #0b63ce !important;
}

.home-btn-cart {
    width: 44px !important;
    height: 38px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    border: none !important;
    background: linear-gradient(135deg, #ff7a00 0%, #ff5f00 100%) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(255, 105, 0, 0.22) !important;
    cursor: pointer !important;
    transition: 0.22s ease !important;
}

.home-btn-cart:hover {
    background: linear-gradient(135deg, #ff8a1f 0%, #ef5f00 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(255, 105, 0, 0.3) !important;
}

.cart-icon-svg {
    width: 21px !important;
    height: 21px !important;
    display: block !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .home-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .product-image-area {
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .home-product-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =====================================================
   POPUP TAMBAH KERANJANG PRODUK
===================================================== */

.cart-product-modal {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
}

.cart-product-modal .modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 18px 20px;
}

.cart-product-modal .modal-title {
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.cart-product-modal .modal-body {
    padding: 20px;
}

.cart-modal-product {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.cart-modal-image {
    width: 92px;
    height: 92px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-modal-image span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
}

.cart-modal-product h6 {
    margin: 0 0 5px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 900;
}

.cart-modal-product p {
    margin: 0 0 7px;
    color: #64748b;
    font-size: 13px;
}

.cart-modal-product strong {
    color: #ff4b00;
    font-size: 18px;
    font-weight: 900;
}

.cart-modal-qty label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 900;
}

.qty-control-modal {
    width: 170px;
    height: 44px;
    border: 1px solid #dbe3ef;
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    background: #ffffff;
}

.qty-control-modal button {
    border: none;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
}

.qty-control-modal button:hover {
    background: #e2e8f0;
}

.qty-control-modal input {
    border: none;
    outline: none;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    color: #0f172a;
}

.cart-modal-qty small {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.cart-product-modal .modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 16px 20px;
}

.btn-cart-cancel,
.btn-cart-submit {
    height: 42px;
    border-radius: 12px;
    border: none;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 900;
}

.btn-cart-cancel {
    background: #f1f5f9;
    color: #334155;
}

.btn-cart-submit {
    background: #ff6900;
    color: #ffffff;
}

.btn-cart-submit:hover {
    background: #ef5f00;
}

/* =====================================================
   FIX TOTAL HARGA KERANJANG SEJAJAR
===================================================== */

.cart-summary-total {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 14px;
    padding: 18px;
}

.cart-summary-total span:first-child {
    display: block;
    color: #9a3412;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 10px;
}

.cart-total-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: #ff4b00;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.cart-total-price span {
    display: inline !important;
    margin: 0 !important;
    color: #ff4b00;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

/* =========================
   JARAK NAVBAR KE HERO
========================= */

/* sebelumnya terlalu jauh, sekarang cukup sedikit */
.market-page > .container > section:first-child,
.market-page > .container > div:first-child {
    margin-top: 14px;
}

/* kalau hero kamu pakai salah satu class ini */
.about-hero,
.tentang-hero,
.company-hero,
.profile-company-hero {
    margin-top: 14px;
    border-radius: 22px;
    overflow: hidden;
}

/* =========================
   POSISI KOTAK KECIL
========================= */

.hero-company-card,
.about-company-card,
.company-profile-card {
    z-index: 3;
}

.hero-floating-card,
.about-floating-card,
.company-floating-card {
    z-index: 2;
}

/* kotak PRODUK: jangan terlalu jauh */
.hero-floating-card.product-card,
.about-floating-card.product-card,
.company-floating-card.product-card {
    right: 235px;
    top: 295px;
}

/* kotak LOGISTIK: cukup dekat saja, jangan terlalu menutupi */
.hero-floating-card.logistic-card,
.about-floating-card.logistic-card,
.company-floating-card.logistic-card {
    right: 28px;
    top: 335px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .market-page > .container > section:first-child,
    .market-page > .container > div:first-child,
    .about-hero,
    .tentang-hero,
    .company-hero,
    .profile-company-hero {
        margin-top: 10px;
    }

    .hero-floating-card,
    .about-floating-card,
    .company-floating-card {
        position: static !important;
        margin-top: 12px;
        max-width: 100%;
    }
}