#view-home .overview-body {
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

#view-home .overview-body::-webkit-scrollbar {
    width: 0;
    height: 0;
}



#view-home>.card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 0;
}

#view-home .home-body {
    flex: 1 1 auto;
    min-height: 0;

    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

#view-home .home-body::-webkit-scrollbar {
    display: none;
}

#homeMount {
    width: 100%;
}

.home-shell {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* ================= HERO ================= */

.home-hero {
    position: relative;
    overflow: hidden;

    padding: 0;

    background-image: url('/assets/img/ecombaze-background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    border-radius: 18px;
}

.home-hero-inner {
    min-height: 260px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 18px 48px;
    box-sizing: border-box;
}

.home-hero-content {
    flex: 1 1 60%;
    max-width: 690px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-hero-logo img {
    display: block;
    width: auto;
    height: 38px;
    margin-bottom: 18px;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;
    padding: 7px 13px;

    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.68);
    color: #2563eb;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.home-hero-title {
    margin: 0 0 16px;

    font-family: var(--font-main);
    font-size: 36px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.025em;

    color: #0f172a;
}

.home-hero-title span {
    color: #2563eb;
}

.home-hero-text {
    max-width: 610px;
    margin: 0;

    font-size: 15px;
    line-height: 1.65;
    color: #64748b;
}

.home-hero-visual {
    flex: 0 0 34%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-icon {
    display: block;

    width: 100%;
    max-width: 310px;
    height: auto;

    object-fit: contain;
}


/* ================= WIDE DESKTOP 1900 ================= */

@media (min-width: 1900px) {
    .home-hero-inner {
        min-height: 260px;
        padding: 0px 44px;
        gap: 36px;
    }
}



/* ================= DESKTOP >=1600 ================= */

@media (min-width: 1600px) {
    .home-hero-visual {
        flex: 0 0 42%;
    }

    .home-hero-icon {
        width: 100%;
        max-width: 470px;
    }

    #homeMount {
        padding-left: 100px;
        padding-right: 100px;
        box-sizing: border-box;
    }
}




/* ================= DESKTOP 1300–1599 ================= */

@media (min-width: 1300px) and (max-width: 1599px) {
    .home-hero-inner {
        min-height: 260px;
        padding: 20px 44px;
        gap: 36px;
    }

    .home-hero-title {
        font-size: 30px;
    }

    .home-hero-text {
        font-size: 18px;
    }

    .home-hero-logo img {
        height: 48px;
    }

    .home-hero-icon {
        max-width: 500px;
    }
}



/* ================= > 1200 ================= */

@media (max-width: 1199px) {
    .home-hero-visual {
        display: none;
    }

    .home-hero-content {
        flex: 1 1 100%;
        max-width: 760px;
    }

    .home-hero-badge {
        display: none;

    }
}




/* ================= LAPTOP 1024–1299 ================= */

@media (min-width: 1024px) and (max-width: 1299px) {
    .home-hero-inner {
        min-height: 260px;
        padding: 20px 36px;
        gap: 28px;
    }

    .home-hero-content {
        flex-basis: 58%;
    }

    .home-hero-visual {
        flex-basis: 42%;
    }

    .home-hero-logo img {
        height: 42px;
        margin-bottom: 22px;
    }

    .home-hero-badge {
        font-size: 14px;
        padding: 8px 14px;
        margin-bottom: 18px;
    }

    .home-hero-title {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .home-hero-text {
        font-size: 16px;
        line-height: 1.6;
    }

    .home-hero-icon {
        max-width: 380px;
    }
}

/* ================= TABLET 768–1023 ================= */

@media (min-width: 768px) and (max-width: 1023px) {
    .home-hero-inner {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 28px;
        gap: 24px;
    }

    .home-hero-content {
        max-width: 100%;
    }

    .home-hero-logo img {
        height: 32px;
        margin-bottom: 20px;
    }

    .home-hero-badge {
        display: none;

    }

    .home-hero-title {
        font-size: 26px;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .home-hero-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .home-hero-visual {
        width: 100%;
        justify-content: center;
    }

    .home-hero-icon {
        max-width: 340px;
    }
}

/* ================= MOBILE <768 ================= */

@media (max-width: 767px) {
    .home-hero-inner {
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        gap: 20px;
    }

    .home-hero-logo img {
        height: 28px;
        margin-bottom: 18px;
    }

    .home-hero-badge {
        display: none;

    }

    .home-hero-title {
        font-size: 26px;
        line-height: 1.14;
        margin-bottom: 14px;
    }

    .home-hero-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .home-hero-visual {
        width: 100%;
        justify-content: center;
    }

    .home-hero-icon {
        max-width: 260px;
    }
}


/* ================= WELCOME + PRODUCTS ================= */

.home-welcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 70fr) minmax(250px, 30fr);
    gap: 16px;
    margin-top: 2px;
}

.home-welcome-card {
    min-height: 300px;
    padding: 30px 34px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    box-sizing: border-box;
    border-radius: 16px;
}

.home-welcome-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #f4f7fb;

    font-size: 26px;
    line-height: 1;
}

.home-welcome-card h2 {
    margin: 0;

    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;

    color: var(--text-primary);
}

.home-welcome-card p {
    max-width: 650px;
    margin: 16px 0 0;

    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
}

.home-welcome-button {
    min-height: 48px;
    margin-top: 24px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    border: 0;
    border-radius: 9px;

    background: #2563eb;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.15s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.home-welcome-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

.home-products {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-product-card {
    min-height: 0;
    padding: 16px 18px;

    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;

    box-sizing: border-box;

    border: 1px solid var(--card-border);
    border-radius: 14px;

    background: #ffffff;
    box-shadow: var(--card-shadow);
}

.home-product-card-active {
    border-color: #2563eb;
    box-shadow:
        0 0 0 1px rgba(37, 99, 235, 0.06),
        var(--card-shadow);
}

.home-product-card-coming {
    opacity: 0.62;
}

.home-product-main {
    display: contents;
}

.home-product-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.home-product-icon img {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.home-product-icon-muted {
    color: #8290a3;
    font-size: 26px;
}

.home-product-content {
    min-width: 0;
}

.home-product-content h3 {
    margin: 0;

    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;

    color: var(--text-primary);
}

.home-product-content p {
    max-width: 210px;
    margin: 5px 0 0;

    font-size: 12px;
    line-height: 1.45;
    color: var(--text-secondary);
}

.home-product-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.home-product-badge {
    min-height: 30px;
    padding: 0 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    border-radius: 8px;

    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.home-product-badge-active {
    background: #eef5ff;
    color: #2563eb;
}

.home-product-badge-coming {
    background: #f1f3f6;
    color: #667085;
}

.home-product-status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #22c55e;
}

.home-product-status small {
    font-size: 11px;
    line-height: 1.2;
    color: var(--text-secondary);
}



@media (min-width: 1024px) and (max-width: 1299px) {
    .home-welcome-grid {
        grid-template-columns: minmax(0, 60fr) minmax(300px, 40fr);
    }

    .home-welcome-card {
        min-height: 250px;
        padding: 26px 28px;
    }

    .home-welcome-card h2 {
        font-size: 25px;
    }

    .home-welcome-card p {
        font-size: 14px;
    }

    .home-product-card {
        padding: 18px;
    }

    .home-product-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .home-product-content h3 {
        font-size: 17px;
    }

    .home-product-content p {
        font-size: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .home-welcome-grid {
        grid-template-columns: 1fr;
    }

    .home-welcome-card {
        min-height: auto;
        padding: 28px;
    }

    .home-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .home-product-card {
        min-height: 145px;
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .home-welcome-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-welcome-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .home-welcome-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 15px;
        font-size: 22px;
    }

    .home-welcome-card h2 {
        font-size: 23px;
    }

    .home-welcome-card p {
        margin-top: 13px;
        font-size: 13px;
        line-height: 1.65;
    }

    .home-welcome-button {
        width: 100%;
        margin-top: 20px;
    }

    .home-products {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 12px;
    }

    .home-product-card {
        min-height: 130px;
        padding: 18px;
    }

    .home-product-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .home-product-content h3 {
        font-size: 17px;
    }

    .home-product-content p {
        font-size: 12px;
    }

    .home-product-badge {
        min-height: 30px;
        padding: 0 9px;
        font-size: 11px;
    }

    .home-product-status small {
        font-size: 10px;
    }
}



/* ================= HOME CAPABILITIES ================= */

.home-capabilities {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;

    margin-top: 10px;
    padding: 18px 10px 10px;
}

.home-capability-item {
    min-width: 0;
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 0 18px;
    box-sizing: border-box;

    border-right: 1px solid #e7ebf1;
}

.home-capability-item:last-child {
    border-right: 0;
}

.home-capability-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;

    display: block;
    object-fit: contain;
}

.home-capability-title {
    min-width: 0;

    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;

    color: var(--text-primary);
}




/* ================= CAPABILITIES  ================= */


@media (min-width: 1024px) and (max-width: 1299px) {
    .home-capability-item {
        gap: 10px;
        padding: 0 10px;
    }

    .home-capability-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .home-capability-title {
        font-size: 12px;
    }

}

@media (min-width: 768px) and (max-width: 1023px) {
    .home-capabilities {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        padding: 14px 0;
    }

    .home-capability-item {
        justify-content: flex-start;
        min-height: 76px;
        padding: 0 16px;

        border-right: 0;
        border: 1px solid var(--card-border);
        border-radius: 12px;
    }

    .home-capability-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .home-capability-item:last-child {
        border-right: 1px solid var(--card-border);
    }
}

@media (max-width: 767px) {
    .home-capabilities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 12px 0;
    }

    .home-capability-item {
        justify-content: flex-start;
        min-height: 78px;
        padding: 10px 12px;

        border-right: 0;
        border: 1px solid var(--card-border);
        border-radius: 12px;
    }

    .home-capability-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .home-capability-title {
        font-size: 12px;
        line-height: 1.35;
    }

    .home-capability-item:last-child {
        border-right: 1px solid var(--card-border);
    }


}