.inventory2-mystore-standalone {
    background: #eef7fb;
    color: #111827;
    margin: 0;
}

.inventory2-mystore {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 20px;
}

.inventory2-mystore__header {
    margin-bottom: 24px;
}

.inventory2-mystore__header h1 {
    margin: 0 0 8px;
}

.inventory2-mystore__account {
    color: #52606d;
    font-size: 13px;
    margin-top: 12px;
}

.inventory2-mystore__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.inventory2-mystore__nav a {
    border: 1px solid rgba(20, 33, 61, 0.2);
    border-radius: 4px;
    color: #14213d;
    padding: 7px 12px;
    text-decoration: none;
}

.inventory2-mystore__nav a:hover,
.inventory2-mystore__nav a:focus,
.inventory2-mystore__nav a.is-active {
    background: #14213d;
    color: #fff;
}

.inventory2-mystore__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.inventory2-mystore__cards--compact {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    margin-bottom: 0;
}

.inventory2-mystore__card {
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 6px;
    padding: 18px;
    background: #fff;
}

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

.inventory2-mystore__card-link:hover,
.inventory2-mystore__card-link:focus {
    border-color: rgba(20, 33, 61, 0.42);
    box-shadow: 0 2px 10px rgba(20, 33, 61, 0.08);
}

.inventory2-mystore__card h2 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.inventory2-mystore__card p {
    margin: 0;
}

.inventory2-mystore__card small {
    color: #52606d;
    display: block;
    line-height: 1.4;
    margin-top: 8px;
}

.inventory2-mystore__section {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 6px;
    margin-bottom: 22px;
    padding: 18px;
}

.inventory2-mystore__section-header {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 14px;
}

.inventory2-mystore__section-header h2 {
    font-size: 1.1rem;
    margin: 0 0 6px;
}

.inventory2-mystore__section-header p {
    color: #52606d;
    font-size: 0.9rem;
    margin: 0;
}

.inventory2-mystore__button {
    background: #14213d;
    border: 0;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font: inherit;
    padding: 8px 14px;
}

.inventory2-mystore__button-link {
    display: inline-block;
    text-decoration: none;
}

.inventory2-mystore__button:hover,
.inventory2-mystore__button:focus {
    background: #24365f;
}

.inventory2-mystore__button--secondary {
    background: #52606d;
}

.inventory2-mystore__button--secondary:hover,
.inventory2-mystore__button--secondary:focus {
    background: #3e4a56;
}

.inventory2-mystore__button:disabled {
    background: #8a94a6;
    cursor: not-allowed;
}

.inventory2-mystore__watch-button {
    background: #fff;
    border: 1px solid rgba(20, 33, 61, 0.28);
    border-radius: 4px;
    color: #14213d;
    cursor: pointer;
    font: inherit;
    padding: 7px 10px;
    white-space: nowrap;
}

.inventory2-mystore__watch-button:hover,
.inventory2-mystore__watch-button:focus,
.inventory2-mystore__watch-button.is-active {
    background: #14213d;
    color: #fff;
}

.inventory2-mystore__watch-button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.inventory2-mystore__table-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.inventory2-mystore__table-actions label {
    align-items: center;
    display: flex;
    gap: 8px;
}

.inventory2-mystore__table-actions select {
    border: 1px solid rgba(0, 0, 0, 0.24);
    border-radius: 4px;
    font: inherit;
    padding: 7px 28px 7px 8px;
}

.inventory2-mystore__filters {
    align-items: end;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    margin-bottom: 16px;
    padding: 14px;
}

.inventory2-mystore__filters label {
    color: #52606d;
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
    font-weight: 700;
    gap: 6px;
    text-transform: uppercase;
}

.inventory2-mystore__filters input,
.inventory2-mystore__filters select {
    border: 1px solid rgba(0, 0, 0, 0.24);
    border-radius: 4px;
    color: #111827;
    font: inherit;
    font-weight: 400;
    padding: 8px;
    text-transform: none;
}

.inventory2-mystore__filter-actions {
    display: flex;
    gap: 8px;
}

.inventory2-mystore__filters--search {
    grid-template-columns: minmax(220px, 1fr) auto;
}

.inventory2-mystore__settings-form {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.inventory2-mystore__settings-group {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 14px;
}

.inventory2-mystore__settings-group--wide,
.inventory2-mystore__settings-actions {
    grid-column: 1 / -1;
}

.inventory2-mystore__settings-group legend {
    color: #14213d;
    font-weight: 700;
    padding: 0 4px;
}

.inventory2-mystore__settings-group label {
    color: #52606d;
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
    font-weight: 700;
    gap: 6px;
    text-transform: uppercase;
}

.inventory2-mystore__settings-group input[type="text"],
.inventory2-mystore__settings-group select {
    border: 1px solid rgba(0, 0, 0, 0.24);
    border-radius: 4px;
    color: #111827;
    font: inherit;
    font-weight: 400;
    padding: 8px;
    text-transform: none;
}

.inventory2-mystore__settings-group .inventory2-mystore__checkbox-label {
    align-items: center;
    color: #111827;
    flex-direction: row;
    font-size: 0.95rem;
    font-weight: 400;
    text-transform: none;
}

.inventory2-mystore__checkbox-grid {
    display: grid;
    gap: 10px 16px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.inventory2-mystore__settings-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.inventory2-mystore__table-wrap {
    overflow-x: auto;
}

.inventory2-mystore__table {
    border-collapse: collapse;
    min-width: 980px;
    width: 100%;
}

.inventory2-mystore__table--profiles {
    min-width: 720px;
}

.inventory2-mystore__report-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.inventory2-mystore__report-panel {
    min-width: 0;
}

.inventory2-mystore__report-panel h3 {
    font-size: 1rem;
    margin: 0 0 10px;
}

.inventory2-mystore__report-panel .inventory2-mystore__table {
    min-width: 640px;
}

.inventory2-mystore__metadata-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.inventory2-mystore__metadata-row {
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 12px;
}

.inventory2-mystore__metadata-label {
    color: #52606d;
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.inventory2-mystore__metadata-value {
    display: block;
    overflow-wrap: anywhere;
}

.inventory2-mystore__metadata-empty {
    color: #52606d;
    grid-column: 1 / -1;
}

.inventory2-mystore__chart-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.inventory2-mystore__chart-panel {
    min-width: 0;
}

.inventory2-mystore__chart-panel h3 {
    font-size: 1rem;
    margin: 0 0 10px;
}

.inventory2-mystore__chart {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    width: 100%;
}

.inventory2-mystore__chart--compact {
    border: 0;
    margin-top: 12px;
}

.inventory2-mystore__sparkline-cell {
    min-width: 120px;
}

.inventory2-mystore__sparkline {
    display: block;
    width: 110px;
}

.inventory2-mystore__pager {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 14px;
}

.inventory2-mystore__table th,
.inventory2-mystore__table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 9px 10px;
    text-align: left;
    vertical-align: top;
}

.inventory2-mystore__table th {
    color: #52606d;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.inventory2-mystore__item-cell {
    font-weight: 700;
}

.inventory2-mystore__item-cell a {
    color: #14213d;
}

.inventory2-mystore__item-cell a:hover,
.inventory2-mystore__item-cell a:focus {
    color: #24365f;
}

.inventory2-mystore__catalog-found {
    color: #0f5a52;
}

.inventory2-mystore__catalog-missing {
    color: #8a4b0f;
}

.inventory2-mystore__empty-cell {
    color: #52606d;
    text-align: center;
}

.inventory2-mystore__change {
    font-weight: 700;
}

.inventory2-mystore__change--positive {
    color: #0f766e;
}

.inventory2-mystore__change--negative {
    color: #be123c;
}

@media (max-width: 760px) {
    .inventory2-mystore {
        padding: 20px 12px;
    }

    .inventory2-mystore__section,
    .inventory2-mystore__card {
        padding: 14px;
    }

    .inventory2-mystore__section-header,
    .inventory2-mystore__table-actions,
    .inventory2-mystore__filter-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .inventory2-mystore__filters,
    .inventory2-mystore__filters--search,
    .inventory2-mystore__settings-form {
        grid-template-columns: 1fr;
    }

    .inventory2-mystore__table-wrap {
        overflow-x: visible;
    }

    .inventory2-mystore__table {
        min-width: 0;
    }

    .inventory2-mystore__table thead {
        display: none;
    }

    .inventory2-mystore__table,
    .inventory2-mystore__table tbody,
    .inventory2-mystore__table tr,
    .inventory2-mystore__table td {
        display: block;
        width: 100%;
    }

    .inventory2-mystore__table tr {
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 6px;
        margin-bottom: 12px;
        padding: 8px 10px;
    }

    .inventory2-mystore__table td {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-sizing: border-box;
        padding: 8px 0;
    }

    .inventory2-mystore__table td:last-child {
        border-bottom: 0;
    }

    .inventory2-mystore__table td::before {
        color: #52606d;
        content: attr(data-label);
        display: block;
        font-size: 0.76rem;
        font-weight: 700;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .inventory2-mystore__table td[colspan]::before {
        content: '';
        display: none;
    }

    .inventory2-mystore__sparkline {
        width: 100%;
    }
}
