.ireca-cloud-admin-stores-page {
    width: min(100%, 1120px);
    margin: 0 auto;
    min-height: calc(100dvh - 270px);
    display: grid;
    align-content: start;
    gap: 18px;
}

.ireca-cloud-admin-stores-page *,
.ireca-cloud-admin-stores-page *::before,
.ireca-cloud-admin-stores-page *::after {
    box-sizing: border-box;
}

.ireca-cloud-admin-stores-page .ireca-admin-metric-grid {
    margin: 0;
}

.stores-brand-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stores-brand-switcher .irev-chip {
    text-decoration: none;
}

.stores-brand-switcher .irev-chip.is-active {
    border-color: rgba(255, 111, 18, 0.42);
    color: #fb5a05;
    background: rgba(255, 111, 18, 0.09);
}

.stores-main-grid {
    display: grid;
    grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.stores-form-panel,
.stores-list-panel {
    min-width: 0;
}

.stores-form {
    display: grid;
    gap: 12px;
}

.stores-active-field {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 10px;
    row-gap: 2px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(132, 146, 166, 0.18);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.76);
    cursor: pointer;
}

.stores-active-field input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.stores-active-field > span {
    position: relative;
    grid-row: 1 / span 2;
    width: 36px;
    height: 20px;
    border-radius: 999px;
    background: #d8dee8;
    transition: background 0.16s ease;
}

.stores-active-field > span::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.2);
    transition: transform 0.16s ease;
}

.stores-active-field input:checked + span {
    background: #ff6f12;
}

.stores-active-field input:checked + span::after {
    transform: translateX(16px);
}

.stores-active-field strong {
    color: #071329;
    font-size: 12px;
    font-weight: 850;
}

.stores-active-field em {
    color: #667892;
    font-size: 11px;
    font-style: normal;
    font-weight: 650;
}

.stores-list-panel .ireca-admin-table {
    min-width: 760px;
}

.stores-id,
.stores-name,
.stores-detail-line,
.stores-detail-muted {
    display: block;
}

.stores-id,
.stores-name {
    color: #071329;
    font-weight: 850;
}

.stores-detail-line {
    color: #42526d;
    font-size: 12px;
    font-weight: 650;
}

.stores-detail-muted {
    margin-top: 2px;
    color: #7b8ba4;
    font-size: 11px;
    font-weight: 650;
}

.stores-inline-form {
    margin: 0;
}

.stores-technical-note {
    margin: 0;
    color: #7b8ba4;
    font-size: 11px;
    font-weight: 650;
}

@media (max-width: 1024px) {
    .ireca-cloud-admin-stores-page {
        width: 100%;
    }

    .stores-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ireca-cloud-admin-stores-page {
        gap: 14px;
        min-height: auto;
    }

    .stores-brand-switcher {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .stores-brand-switcher::-webkit-scrollbar {
        display: none;
    }

}
