.admin-stores-summary {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.admin-stores-summary span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 6px 10px;
    color: #374151;
    background: #FFFFFF;
    font-size: 0.85rem;
}

.admin-stores-table th:first-child,
.admin-stores-table td:first-child {
    width: 40px;
}

.admin-stores-table small {
    display: block;
    color: #6B7280;
    font-size: 0.72rem;
    margin-top: 2px;
}

.admin-stores-status {
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: 3px 8px;
    font-size: 0.76rem;
    font-weight: 700;
}

.admin-stores-status--active {
    color: #047857;
    background: #D1FAE5;
}

.admin-stores-status--inactive {
    color: #991B1B;
    background: #FEE2E2;
}

.admin-stores-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.admin-stores-action-btn {
    width: auto;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 0.8rem;
}

.admin-stores-empty {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 160px;
    color: #6B7280;
    text-align: center;
    border: 1px dashed #D1D5DB;
    border-radius: 8px;
    background: #FFFFFF;
    padding: 20px;
}

.admin-store-modal__content {
    max-width: 860px;
    width: min(96vw, 860px);
    max-height: 92vh;
    overflow-y: auto;
}

.admin-store-modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.admin-store-modal__close {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.admin-store-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-store-form__span-2 {
    grid-column: 1 / -1;
}

.admin-store-map-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.admin-store-map-link .btn {
    width: auto;
    min-height: 40px;
    white-space: nowrap;
}

.admin-store-form__hint {
    display: block;
    color: #6B7280;
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 6px;
}

.admin-store-form__hint.is-success {
    color: #047857;
}

.admin-store-form__hint.is-error {
    color: #DC2626;
}

.admin-store-form__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 22px;
}

.admin-store-form__actions .btn {
    width: auto;
    min-width: 130px;
}

@media (max-width: 720px) {
    .admin-store-form__grid {
        grid-template-columns: 1fr;
    }

    .admin-store-form__span-2 {
        grid-column: auto;
    }

    .admin-store-map-link {
        grid-template-columns: 1fr;
    }

    .admin-store-map-link .btn {
        width: 100%;
    }

    .admin-store-form__actions {
        flex-direction: column;
    }

    .admin-store-form__actions .btn {
        width: 100%;
    }
}
